diff --git a/multimedia/graphics/flameshot/actions.py b/multimedia/graphics/flameshot/actions.py new file mode 100644 index 0000000000..7b9ee42ae9 --- /dev/null +++ b/multimedia/graphics/flameshot/actions.py @@ -0,0 +1,20 @@ +#!/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 cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + cmaketools.configure("-DUSE_WAYLAND_CLIPBOARD=ON") + +def build(): + cmaketools.make() + +def install(): + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("CODE_OF_CONDUCT.md", "LICENSE", "README.md") diff --git a/multimedia/graphics/flameshot/files/flameshot-wayland-clipboard.patch b/multimedia/graphics/flameshot/files/flameshot-wayland-clipboard.patch new file mode 100644 index 0000000000..3affff78d1 --- /dev/null +++ b/multimedia/graphics/flameshot/files/flameshot-wayland-clipboard.patch @@ -0,0 +1,154 @@ +From 27961143dd8d73cb9a5cfda8f79f7890e20bf4f5 Mon Sep 17 00:00:00 2001 +From: Jeremy Borgman +Date: Wed, 19 Jan 2022 05:16:36 -0600 +Subject: [PATCH] working on wayland clipboard + +--- + .github/workflows/Linux-pack.yml | 1 + + CMakeLists.txt | 2 ++ + packaging/flatpak/org.flameshot.Flameshot.yml | 5 ++-- + snapcraft.yaml | 2 ++ + src/CMakeLists.txt | 10 +++++++ + src/utils/screenshotsaver.cpp | 26 +++++++++++++++---- + 6 files changed, 39 insertions(+), 7 deletions(-) + +diff --git a/.github/workflows/Linux-pack.yml b/.github/workflows/Linux-pack.yml +index da5ab0d00..9e714965d 100644 +--- a/.github/workflows/Linux-pack.yml ++++ b/.github/workflows/Linux-pack.yml +@@ -484,6 +484,7 @@ jobs: + fcitx-frontend-qt5 \ + openssl \ + ca-certificates ++ + - name: Get go-appimage tool + # Will not use linuxdeployqt anymore, because it suopprts currently still-supported mainstream distribution, + # which is glibc 2.23. For more information, please see https://github.com/probonopd/linuxdeployqt/issues/340. +diff --git a/CMakeLists.txt b/CMakeLists.txt +index 66fd0581e..ec6479a7e 100644 +--- a/CMakeLists.txt ++++ b/CMakeLists.txt +@@ -67,6 +67,7 @@ option(USE_MONOCHROME_ICON "Build using monochrome icon as default" OFF) + option(GENERATE_TS "Regenerate translation source files" OFF) + option(USE_EXTERNAL_SINGLEAPPLICATION "Use external QtSingleApplication library" OFF) + option(USE_LAUNCHER_ABSOLUTE_PATH "Use absolute path for the desktop launcher" ON) ++option(USE_WAYLAND_CLIPBOARD "USE KF Gui Wayland Clipboard" OFF) + + include(cmake/StandardProjectSettings.cmake) + +@@ -108,6 +109,7 @@ option(BUILD_STATIC_LIBS ON) + option(BUILD_SHARED_LIBS OFF) + add_subdirectory(external/Qt-Color-Widgets EXCLUDE_FROM_ALL) + ++ + if (APPLE) + add_subdirectory(external/QHotkey) + endif() +diff --git a/packaging/flatpak/org.flameshot.Flameshot.yml b/packaging/flatpak/org.flameshot.Flameshot.yml +index 183a241b5..31a3d8af5 100644 +--- a/packaging/flatpak/org.flameshot.Flameshot.yml ++++ b/packaging/flatpak/org.flameshot.Flameshot.yml +@@ -26,8 +26,9 @@ modules: + - name: flameshot + buildsystem: cmake-ninja + config-opts: +- - -DCMAKE_BUILD_TYPE=Release ++ - -DCMAKE_BUILD_TYPE=Release ++ - -DUSE_WAYLAND_CLIPBOARD=1 + sources: + - type: git + url: https://github.com/flameshot-org/flameshot.git +- branch: master +\ No newline at end of file ++ branch: master +diff --git a/snapcraft.yaml b/snapcraft.yaml +index 6714d9f3d..8da86f9a9 100644 +--- a/snapcraft.yaml ++++ b/snapcraft.yaml +@@ -46,6 +46,8 @@ parts: + - kde-frameworks-5-qt-5-15-core20 + source: https://github.com/flameshot-org/flameshot.git + plugin: cmake ++ cmake-parameters: ++ - -DUSE_WAYLAND_CLIPBOARD=1 + source-type: git + override-pull: | + snapcraftctl pull +diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt +index 4ae982cb7..4adc66a90 100644 +--- a/src/CMakeLists.txt ++++ b/src/CMakeLists.txt +@@ -10,6 +10,10 @@ find_package( + DBus + LinguistTools) + ++if (USE_WAYLAND_CLIPBOARD) ++ find_package(KF5GuiAddons) ++endif() ++ + set(CMAKE_AUTOMOC ON) + set(CMAKE_AUTORCC ON) + set(CMAKE_AUTOUIC ON) +@@ -190,8 +194,14 @@ target_link_libraries( + Qt5::Widgets + ${QTSINGLEAPPLICATION_LIBRARY} + QtColorWidgets ++ + ) + ++if (USE_WAYLAND_CLIPBOARD) ++ target_compile_definitions(flameshot PRIVATE USE_WAYLAND_CLIPBOARD=1) ++ target_link_libraries(flameshot KF5::GuiAddons) ++endif() ++ + if (APPLE) + set(MACOSX_BUNDLE_IDENTIFIER "org.flameshot") + set_target_properties( +diff --git a/src/utils/screenshotsaver.cpp b/src/utils/screenshotsaver.cpp +index 317a0d65e..8f0d4d9d9 100644 +--- a/src/utils/screenshotsaver.cpp ++++ b/src/utils/screenshotsaver.cpp +@@ -9,6 +9,11 @@ + #include "src/utils/filenamehandler.h" + #include "src/utils/globalvalues.h" + #include "utils/desktopinfo.h" ++ ++#if USE_WAYLAND_CLIPBOARD ++#include ++#endif ++ + #include + #include + #include +@@ -33,15 +38,26 @@ void ScreenshotSaver::saveToClipboardMime(const QPixmap& capture, + QImageWriter imageWriter{ &buffer, imageType.toUpper().toUtf8() }; + imageWriter.write(capture.toImage()); + +- QPixmap pngPixmap; ++ QPixmap formattedPixmap; + bool isLoaded = +- pngPixmap.loadFromData(reinterpret_cast(array.data()), +- array.size(), +- imageType.toUpper().toUtf8()); ++ formattedPixmap.loadFromData(reinterpret_cast(array.data()), ++ array.size(), ++ imageType.toUpper().toUtf8()); + if (isLoaded) { +- QMimeData* mimeData = new QMimeData; ++ ++ auto mimeData = new QMimeData(); ++ ++#ifdef USE_WAYLAND_CLIPBOARD ++ mimeData->setImageData(formattedPixmap.toImage()); ++ mimeData->setData(QStringLiteral("x-kde-force-image-copy"), ++ QByteArray()); ++ KSystemClipboard::instance()->setMimeData(mimeData, ++ QClipboard::Clipboard); ++#else + mimeData->setData("image/" + imageType, array); + QApplication::clipboard()->setMimeData(mimeData); ++#endif ++ + } else { + AbstractLogger::error() + << QObject::tr("Error while saving to clipboard"); diff --git a/multimedia/graphics/flameshot/pspec.xml b/multimedia/graphics/flameshot/pspec.xml new file mode 100644 index 0000000000..027ed408e3 --- /dev/null +++ b/multimedia/graphics/flameshot/pspec.xml @@ -0,0 +1,55 @@ + + + + + flameshot + https://flameshot.org/ + + Idris Kalp + idriskalp@gmail.com + + GPLv3 + app:gui + 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. + 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 + + + + + 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 + + + diff --git a/multimedia/graphics/flameshot/translations.xml b/multimedia/graphics/flameshot/translations.xml new file mode 100644 index 0000000000..6733cd1e97 --- /dev/null +++ b/multimedia/graphics/flameshot/translations.xml @@ -0,0 +1,8 @@ + + + + flameshot + 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. + + diff --git a/pisi-index.xml b/pisi-index.xml index cf27ca3c29..d092c2388b 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -897,41 +897,6 @@ - - - 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 @@ -1887,6 +1852,48 @@ + + + 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 + + + noto-emoji-fonts @@ -1923,63 +1930,6 @@ - - - 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 - - - noto-fonts @@ -2085,6 +2035,63 @@ + + + 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 @@ -2121,6 +2128,41 @@ + + + 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 @@ -2351,48 +2393,6 @@ - - - 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 - - - zekton @@ -2429,99 +2429,6 @@ - - - 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/3.26/eog-plugins-3.26.8.tar.xz - - 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-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 - - - eog @@ -2645,6 +2552,99 @@ + + + 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/3.26/eog-plugins-3.26.8.tar.xz + + 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-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 + + + gnome-photos @@ -2951,6 +2951,68 @@ + + + gnome-dictionary + https://wiki.gnome.org/Apps/Dictionary + + 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 + + + alacarte @@ -3591,70 +3653,6 @@ - - - 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/40/gedit-plugins-40.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 - - - - - 2021-06-02 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - gedit @@ -3767,6 +3765,70 @@ + + + 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/40/gedit-plugins-40.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 + + + + + 2021-06-02 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + ghex @@ -4677,68 +4739,6 @@ - - - gnome-dictionary - https://wiki.gnome.org/Apps/Dictionary - - 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-disk-utility @@ -6220,6 +6220,114 @@ + + + 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-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 @@ -6376,114 +6484,6 @@ - - - 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-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 - - - lollypop @@ -7155,6 +7155,164 @@ + + + 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/41/gnome-desktop-41.3.tar.xz + + meson + itstool + gtk-doc + docbook-xsl + gtk3-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 + 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 + 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-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 @@ -9026,164 +9184,6 @@ components such as the Settings and gnome-shell. - - - 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/41/gnome-desktop-41.3.tar.xz - - meson - itstool - gtk-doc - docbook-xsl - gtk3-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 - 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 - 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-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-doc-utils @@ -9809,81 +9809,6 @@ GNOME Session and the applications that run under it. - - - 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/41/gnome-shell-extensions-41.1.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 - - - - - 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 - - - gnome-shell @@ -10062,6 +9987,81 @@ GNOME Session and the applications that run under it. + + + 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/41/gnome-shell-extensions-41.1.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 + + + + + 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 + + + gnome-user-docs @@ -10179,6 +10179,86 @@ GNOME Session and the applications that run under it. + + + 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 @@ -10284,86 +10364,6 @@ GNOME Session and the applications that run under it. - - - 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 - - - gsettings-desktop-schemas @@ -12643,74 +12643,6 @@ services for numerous locations. - - - 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/41/yelp-tools-41.0.tar.xz - - meson - itstool - libxslt-devel - yelp-xsl-devel - python3-lxml - - desktop/gnome/base/yelp-tools/pspec.xml - - - yelp-tools - - itstool - yelp-xsl - python3-lxml - - - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/share/yelp-tools - - - - - 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 - - - 2020-02-13 - 3.32.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - yelp @@ -12832,6 +12764,74 @@ services for numerous locations. + + + 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/41/yelp-tools-41.0.tar.xz + + meson + itstool + libxslt-devel + yelp-xsl-devel + python3-lxml + + desktop/gnome/base/yelp-tools/pspec.xml + + + yelp-tools + + itstool + yelp-xsl + python3-lxml + + + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/share/yelp-tools + + + + + 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 + + + 2020-02-13 + 3.32.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + zenity @@ -12909,6 +12909,51 @@ services for numerous locations. + + + gnome-icon-theme + http://www.gnome.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + desktop.gnome.lookandfeel + GNOME Icons Set + GNOME Icons Set + GNOME Icons Set + GNOME Icons Set + https://download.gnome.org/sources/gnome-icon-theme/3.12/gnome-icon-theme-3.12.0.tar.xz + + intltool + gtk2-devel + gtk3-devel + icon-theme-hicolor + gnome-icon-theme-symbolic + icon-naming-utils-devel + + desktop/gnome/lookandfeel/gnome-icon-theme/pspec.xml + + + gnome-icon-theme + + /usr/share/icons + /usr/share/locale + /usr/share/pkgconfig + /usr/share/doc + + + + + 2021-06-02 + 3.12.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + gnome-icon-theme-extras @@ -12993,51 +13038,6 @@ services for numerous locations. - - - gnome-icon-theme - http://www.gnome.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.lookandfeel - GNOME Icons Set - GNOME Icons Set - GNOME Icons Set - GNOME Icons Set - https://download.gnome.org/sources/gnome-icon-theme/3.12/gnome-icon-theme-3.12.0.tar.xz - - intltool - gtk2-devel - gtk3-devel - icon-theme-hicolor - gnome-icon-theme-symbolic - icon-naming-utils-devel - - desktop/gnome/lookandfeel/gnome-icon-theme/pspec.xml - - - gnome-icon-theme - - /usr/share/icons - /usr/share/locale - /usr/share/pkgconfig - /usr/share/doc - - - - - 2021-06-02 - 3.12.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - gnome-themes-extra-community @@ -14570,293 +14570,389 @@ services for numerous locations. - akonadi-calendar-tools - https://community.kde.org/KDE_PIM + akonadi + https://userbase.kde.org/Akonadi - Stefan Gronewold - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv2 + LGPLv2.1 + library desktop.kde.applications - CLI tools to manage akonadi calendars - CLI tools to manage akonadi calendars - http://download.kde.org/stable/release-service/21.12.1/src/akonadi-calendar-tools-21.12.1.tar.xz + 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/21.12.1/src/akonadi-21.12.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 - 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 + kio-devel + kaccounts-integration-devel + libaccounts-qt5-devel + extra-cmake-modules + libaccounts-glib-devel + xz-devel - desktop/kde/applications/akonadi-calendar-tools/pspec.xml + desktop/kde/applications/akonadi/pspec.xml - akonadi-calendar-tools - CLI tools to manage akonadi calendars + akonadi + app:console - ki18n + kio + sqlite libgcc - akonadi + ki18n + kcrash kconfig - kcalendarcore + kxmlgui + libxml2 qt5-base - kcalutils + kitemmodels kcoreaddons - calendarsupport - akonadi-calendar - kdelibs4-support - akonadi-notes + 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 + /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-01-10 21.12.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-15 21.08.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-13 21.08.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-16 21.04.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-09 21.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 + + 2020-09-13 20.08.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-11 20.04.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-05-06 + + 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 + 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 + 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. + Version bump Mustafa Cinasal muscnsl@gmail.com - - 2017-12-15 + + 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 + + 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. + Version bump Ali Algul aligulle3801@gmail.com - - 2017-07-04 + + 2017-06-23 17.04.2 Version bump. - Kamil Atlı - suvari@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - - 2016-12-31 + + 2017-03-03 16.12.0 - First Release + 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 + @@ -15229,6 +15325,297 @@ services for numerous locations. + + + 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/21.12.1/src/akonadi-calendar-tools-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.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 @@ -16932,393 +17319,6 @@ services for numerous locations. - - - 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/21.12.1/src/akonadi-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.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 - - - akonadiconsole @@ -20486,342 +20486,6 @@ services for numerous locations. - - - 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/21.12.1/src/bovo-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - calendarsupport @@ -21581,332 +21245,6 @@ services for numerous locations. - - - 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/21.12.1/src/dolphin-plugins-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - dolphin @@ -22305,6 +21643,332 @@ services for numerous locations. + + + 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/21.12.1/src/dolphin-plugins-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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 @@ -27060,368 +26724,6 @@ services for numerous locations. - - - kalarmcal - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Library to provides access and handling of KAlarm calendar data - Library to provides access and handling of KAlarm calendar data - mirrors://kde/stable/release-service/21.12.1/src/kalarmcal-21.12.1.tar.xz - - qt5-base-devel - akonadi-devel - kcalendarcore-devel - kholidays-devel - kidentitymanagement-devel - akonadi-mime-devel - kcalutils-devel - boost-devel - kcalutils-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdoctools-devel - libical-devel - kholidays-devel - extra-cmake-modules - - desktop/kde/applications/kalarmcal/pspec.xml - - - kalarmcal - - qt5-base - kcalendarcore - kcalutils - kholidays - kidentitymanagement - ki18n - libgcc - akonadi - kcalutils - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - - kalarmcal-devel - Development files for kalarmcal - - qt5-base-devel - kalarmcal - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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-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-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-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-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 - - - kalgebra @@ -33433,329 +32735,6 @@ services for numerous locations. - - - 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/21.12.1/src/kcron-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - kdb @@ -39025,356 +38004,6 @@ services for numerous locations. - - - 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/21.12.1/src/kdiamond-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - keditbookmarks @@ -45667,6 +44296,1377 @@ services for numerous locations. + + + 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/21.12.1/src/bovo-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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 + + + + + + kalarmcal + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Library to provides access and handling of KAlarm calendar data + Library to provides access and handling of KAlarm calendar data + mirrors://kde/stable/release-service/21.12.1/src/kalarmcal-21.12.1.tar.xz + + qt5-base-devel + akonadi-devel + kcalendarcore-devel + kholidays-devel + kidentitymanagement-devel + akonadi-mime-devel + kcalutils-devel + boost-devel + kcalutils-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdoctools-devel + libical-devel + kholidays-devel + extra-cmake-modules + + desktop/kde/applications/kalarmcal/pspec.xml + + + kalarmcal + + qt5-base + kcalendarcore + kcalutils + kholidays + kidentitymanagement + ki18n + libgcc + akonadi + kcalutils + + + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + kalarmcal-devel + Development files for kalarmcal + + qt5-base-devel + kalarmcal + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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-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-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-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-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 + + + + + + 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/21.12.1/src/kcron-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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/21.12.1/src/kdiamond-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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 @@ -46010,6 +46010,1367 @@ services for numerous locations. + + + 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/21.12.1/src/kontact-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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/21.12.1/src/ksystemlog-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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/21.12.1/src/kwordquiz-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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/21.12.1/src/lokalize-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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 @@ -47370,313 +48731,6 @@ services for numerous locations. - - - 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/21.12.1/src/kmail-account-wizard-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - kmail @@ -48049,6 +49103,313 @@ services for numerous locations. + + + 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/21.12.1/src/kmail-account-wizard-21.12.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-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 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 @@ -52552,316 +53913,6 @@ services for numerous locations. - - - 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/21.12.1/src/kontact-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - kontactinterface @@ -58537,351 +59588,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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/21.12.1/src/ksystemlog-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - kteatime @@ -64920,362 +65626,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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/21.12.1/src/kwordquiz-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - libgravatar @@ -71222,356 +71572,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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/21.12.1/src/lokalize-21.12.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-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 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 - - - mailcommon @@ -78914,6 +78914,940 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.90/kcontacts-5.90.0.tar.xz + + qt5-base-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 + 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-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.90/kiconthemes-5.90.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-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.90/kquickcharts-5.90.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-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 @@ -81160,371 +82094,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.90/kactivities-stats-5.90.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-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 - - - kactivities @@ -81922,6 +82491,371 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.90/kactivities-stats-5.90.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-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 @@ -85456,391 +86390,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.90/kcontacts-5.90.0.tar.xz - - qt5-base-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 - 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-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 - - - kcoreaddons @@ -93199,393 +93748,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.90/kiconthemes-5.90.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-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 - - - kidletime @@ -100874,168 +101036,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.90/kquickcharts-5.90.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-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 - - - kross @@ -110864,6 +110864,114 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + kget + https://apps.kde.org/kget + + Mathias Freire + mathiasfreire45@gmail.com + + 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 + + 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 + + desktop/kde/network/kget/pspec.xml + + + kget + + 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 + + + kio-gdrive @@ -110983,114 +111091,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - kget - https://apps.kde.org/kget - - Mathias Freire - mathiasfreire45@gmail.com - - 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 - - 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 - - desktop/kde/network/kget/pspec.xml - - - kget - - 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 @@ -111166,6 +111166,223 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + + + + + 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 @@ -111429,218 +111646,515 @@ It supports email, address books, calendars, tasks, news feeds and much more. - qt5-phonon - http://phonon.kde.org + kscreenlocker + https://www.kde.org Pisi Linux Admins admins@pisilinux.org - LGPLv2.1 + LGPLv2 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 + 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.23.5/kscreenlocker-5.23.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 - 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 + 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/phonon/qt5-phonon/pspec.xml + desktop/kde/plasma/kscreenlocker/pspec.xml - qt5-phonon + kscreenlocker + pam + libXi + qt5-base libgcc - qt5-base - qt5-designer - pulseaudio-libs + 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/bin - /usr/lib/libphonon* - /usr/lib/qt5 - /usr/share/dbus-1 - /usr/share/phonon4qt5 + /usr/share /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc - qt5-phonon-devel - Development files for phonon-qt5 + kscreenlocker-devel + Development files for kscreenlocker - qt5-phonon - qt5-base-devel - qt5-designer-devel - pulseaudio-libs-devel + qt5-base-devel + qt5-x11extras-devel + layer-shell-qt-devel + kscreenlocker /usr/include - /usr/lib/pkgconfig /usr/lib/cmake + + 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 + - 2021-08-17 - 4.11.1 - Rebuild qt5.15.2 + 2018-09-29 + 5.12.5 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2020-12-17 - 4.11.1 - Rebuild qt5.15.2 - Mustafa Cinasal - muscnsl@gmail.com + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com - 2020-04-04 - 4.11.1 - Rebuild qt5.14.2 + 2018-05-14 + 5.12.5 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-28 - 4.11.1 - Rebuild qt5.14.1 + 2018-04-23 + 5.12.4 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-12-22 - 4.11.1 - Rebuild qt5.13.2 + 2018-04-06 + 5.12.4 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-10-02 - 4.11.1 - Rebuild qt5.13.2 + 2018-03-22 + 5.12.3 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-26 - 4.11.1 + 2018-02-03 + 5.11.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-15 - 4.11.0 + 2017-12-15 + 5.11.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-04 - 4.11.0 + 2017-11-08 + 5.11.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-06-24 - 4.10.2 - Rebuild. + 2017-11-02 + 5.11.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-04-14 - 4.10.2 - Rebuild. + 2017-10-14 + 5.11.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-01-08 - 4.10.2 + 2017-09-13 + 5.10.5 Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2018-12-12 - 4.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@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 + 2017-03-01 + 5.8.5 Rebuild for new Toolchain. Stefan Gronewold(groni) groni@pisilinux.org - - 2017-02-27 - 4.9.1 + + 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-05-16 - 4.9.0 + 2016-07-30 + 5.7.2 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2016-05-03 - 4.9.0 + 2016-05-18 + 5.6.4 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + Burak Ertürk + burakerturk@pisilinux.org - 2015-08-13 - 4.8.3 + 2016-04-08 + 5.6.2 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -112099,6 +112613,496 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.23.5/breeze-5.23.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-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 @@ -113366,496 +114370,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.23.5/breeze-5.23.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-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 - - - discover @@ -119550,520 +120064,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.23.5/kscreenlocker-5.23.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-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 - - - ksshaskpass @@ -128530,441 +128530,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.23.5/plasma-workspace-wallpapers-5.23.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-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 - - - plasma-workspace @@ -129707,6 +129272,441 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.23.5/plasma-workspace-wallpapers-5.23.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-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 @@ -132411,50 +132411,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - gtk-theme-albatross @@ -132814,6 +132770,50 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -133340,8 +133340,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. - icon-theme-numix-light - https://numixproject.github.io/ + icon-theme-numix + https://github.com/numixproject/numix-icon-theme Stefan Gronewold(groni) groni@pisilinux.org @@ -133352,12 +133352,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.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 + desktop/lookandfeel/icon-theme-numix/pspec.xml - icon-theme-numix-light + icon-theme-numix - /usr/share/icons/Numix-Light + /usr/share/icons/Numix @@ -133386,8 +133386,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. - icon-theme-numix - https://github.com/numixproject/numix-icon-theme + icon-theme-numix-light + https://numixproject.github.io/ Stefan Gronewold(groni) groni@pisilinux.org @@ -133398,12 +133398,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.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 + desktop/lookandfeel/icon-theme-numix-light/pspec.xml - icon-theme-numix + icon-theme-numix-light - /usr/share/icons/Numix + /usr/share/icons/Numix-Light @@ -138408,6 +138408,88 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -138639,6 +138721,157 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -138822,157 +139055,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - engrampa @@ -140155,88 +140237,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - mate-common @@ -143694,6 +143694,59 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -143824,60 +143877,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - lightdm @@ -144013,6 +144012,60 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -144194,6 +144247,59 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -145022,109 +145128,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - - - - grim - https://github.com/emersion/grim - - Idris Kalp - idriskalp@gmail.com - - MIT - app:console - desktop.misc - Screenshot utility for Wayland. - Screenshot utility for Wayland. - grim is a tool to take screenshots on Wayland sessions. - grim is a tool to take screenshots on Wayland sessions. - https://github.com/emersion/grim/releases/download/v1.4.0/grim-1.4.0.tar.gz - - meson - ninja - wayland-devel - libpng-devel - pixman-devel - libjpeg-turbo-devel - - desktop/misc/grim/pspec.xml - - - grim - - wayland-client - libpng - pixman - libjpeg-turbo - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-02-21 - 1.4.0 - First release - Idris Kalp - idriskalp@gmail.com - - - history-manager @@ -146316,6 +146319,210 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + fox + http://www.fox-toolkit.org/ + + fury + uglyside@yandex.ru + + LGPL-3 + library + desktop.toolkit.fox + The FOX GUI Library. + FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. It offers a wide, and growing, collection of Controls, and provides state of the art facilities such as drag and drop, selection, as well as OpenGL widgets for 3D graphical manipulation. FOX also implements icons, images, and user-convenience features such as status line help, and tooltips. Tooltips may even be used for 3D objects! + http://fox-toolkit.org/ftp/fox-1.7.77.tar.gz + + gcc + zlib-devel + mesa-devel + tiff-devel + libXi-devel + libSM-devel + libpng-devel + libXft-devel + libX11-devel + libICE-devel + freetype-devel + mesa-glu-devel + openjpeg2-devel + libXfixes-devel + libXrandr-devel + libXrender-devel + fontconfig-devel + libXcursor-devel + libjpeg-turbo-devel + + desktop/toolkit/fox/fox/pspec.xml + + + fox + + tiff + zlib + bzip2 + libSM + libXi + libICE + libX11 + libXft + libgcc + libpng + libXext + freetype + mesa-glu + libglvnd + libXfixes + libXrandr + fontconfig + libXcursor + libXrender + libjpeg-turbo + + + /usr/bin/fox-config + /usr/lib + /usr/share/doc/fox + + + + adie + Adie is an extremely fast and convenient programming text editor using the FOX Toolkit. + app:gui + GPL-3 + + fox + + + /usr/bin/adie + /usr/bin/Adie.stx + /usr/share/applications/adie.desktop + /usr/share/man/man1/adie.1 + + + adie.desktop + + + + calculator + The FOX Calculator is a simple desktop calculator geared toward the programmer. + app:gui + GPL-3 + + fox + + + /usr/bin/calculator + /usr/share/applications/calculator.desktop + /usr/share/man/man1/calculator.1 + + + calculator.desktop + + + + ControlPanel + Configure desktop settings for FOX Toolkit applications. + app:gui + GPL-3 + + fox + + + /usr/bin/ControlPanel + /usr/share/applications/ControlPanel.desktop + /usr/share/man/man1/ControlPanel.1 + + + ControlPanel.desktop + + + + PathFinder + Simple file manager written in FOX Toolkit. + app:gui + GPL-3 + + fox + + + /usr/bin/PathFinder + /usr/share/applications/PathFinder.desktop + /usr/share/man/man1/PathFinder.1 + + + PathFinder.desktop + + + + reswrap + Reswrap is a tool to turn binary files into C or C++ data arrays. + app:console + pass + + /usr/bin/reswrap + /usr/share/man/man1/reswrap.1 + + + + shutterbug + Shutterbug is a simple screen snapshot application inspired by SGI Snapshot. + app:gui + GPL-3 + + fox + + + /usr/bin/shutterbug + /usr/share/applications/shutterbug.desktop + /usr/share/man/man1/shutterbug.1 + + + shutterbug.desktop + + + + fox-devel + + fox + tiff-devel + zlib-devel + bzip2 + libXi-devel + libX11-devel + libXft-devel + libpng-devel + libXext-devel + freetype-devel + libXfixes-devel + libXrandr-devel + fontconfig-devel + libXcursor-devel + libXrender-devel + libjpeg-turbo-devel + + + /usr/include/fox-1.7 + /usr/lib/pkgconfig/fox17.pc + + + + fox-doc + + /usr/share/doc/fox-1.7 + + + + + 2021-12-25 + 1.7.77 + First release + fury + uglyside@yandex.ru + + + glade @@ -147046,6 +147253,132 @@ 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 + + + clutter-gst @@ -147195,132 +147528,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 - - - cogl @@ -151030,6 +151237,234 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + qt5-location + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtlocation-everywhere-src-5.15.2.tar.xz + + mesa-devel + zlib-devel + icu4c-devel + gypsy-devel + gconf-devel + glib2-devel + geoclue-devel + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-location/pspec.xml + + + qt5-location + + glib2 + icu4c + gconf + zlib + gypsy + libgcc + geoclue + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-location-devel + qt5-location için geliştirme dosyaları + + qt5-location + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-location-docs + + qt5-base + + + /usr/share/doc + + + + + 2021-02-26 + 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-18 + 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 + + + polkit-qt @@ -154628,234 +155063,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - qt5-location - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.2/submodules/qtlocation-everywhere-src-5.15.2.tar.xz - - mesa-devel - zlib-devel - icu4c-devel - gypsy-devel - gconf-devel - glib2-devel - geoclue-devel - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-location/pspec.xml - - - qt5-location - - glib2 - icu4c - gconf - zlib - gypsy - libgcc - geoclue - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-location-devel - qt5-location için geliştirme dosyaları - - qt5-location - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-location-docs - - qt5-base - - - /usr/share/doc - - - - - 2021-02-26 - 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-18 - 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-multimedia @@ -160487,205 +160694,68 @@ It supports email, address books, calendars, tasks, news feeds and much more. - fox - http://www.fox-toolkit.org/ + xfce4-clipman-plugin + https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin fury uglyside@yandex.ru - LGPL-3 - library - desktop.toolkit.fox - The FOX GUI Library. - FOX is a C++ based Toolkit for developing Graphical User Interfaces easily and effectively. It offers a wide, and growing, collection of Controls, and provides state of the art facilities such as drag and drop, selection, as well as OpenGL widgets for 3D graphical manipulation. FOX also implements icons, images, and user-convenience features such as status line help, and tooltips. Tooltips may even be used for 3D objects! - http://fox-toolkit.org/ftp/fox-1.7.77.tar.gz + 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 - gcc - zlib-devel - mesa-devel - tiff-devel - libXi-devel - libSM-devel - libpng-devel - libXft-devel - libX11-devel - libICE-devel - freetype-devel - mesa-glu-devel - openjpeg2-devel - libXfixes-devel - libXrandr-devel - libXrender-devel - fontconfig-devel - libXcursor-devel - libjpeg-turbo-devel + intltool + gtk3-devel + glib2-devel + libXpm-devel + xfconf-devel + libXtst-devel + qrencode-devel + libxfce4ui-devel + xfce4-panel-devel - desktop/toolkit/fox/fox/pspec.xml + desktop/xfce/addon/xfce4-clipman-plugin/pspec.xml - fox + xfce4-clipman-plugin - tiff - zlib - bzip2 - libSM - libXi - libICE + gtk3 + glib2 + xfconf libX11 - libXft - libgcc - libpng - libXext - freetype - mesa-glu - libglvnd - libXfixes - libXrandr - fontconfig - libXcursor - libXrender - libjpeg-turbo + libXtst + qrencode + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util - /usr/bin/fox-config + /etc + /usr/bin /usr/lib - /usr/share/doc/fox - - - - adie - Adie is an extremely fast and convenient programming text editor using the FOX Toolkit. - app:gui - GPL-3 - - fox - - - /usr/bin/adie - /usr/bin/Adie.stx - /usr/share/applications/adie.desktop - /usr/share/man/man1/adie.1 - - - adie.desktop - - - - calculator - The FOX Calculator is a simple desktop calculator geared toward the programmer. - app:gui - GPL-3 - - fox - - - /usr/bin/calculator - /usr/share/applications/calculator.desktop - /usr/share/man/man1/calculator.1 - - - calculator.desktop - - - - ControlPanel - Configure desktop settings for FOX Toolkit applications. - app:gui - GPL-3 - - fox - - - /usr/bin/ControlPanel - /usr/share/applications/ControlPanel.desktop - /usr/share/man/man1/ControlPanel.1 - - - ControlPanel.desktop - - - - PathFinder - Simple file manager written in FOX Toolkit. - app:gui - GPL-3 - - fox - - - /usr/bin/PathFinder - /usr/share/applications/PathFinder.desktop - /usr/share/man/man1/PathFinder.1 - - - PathFinder.desktop - - - - reswrap - Reswrap is a tool to turn binary files into C or C++ data arrays. - app:console - pass - - /usr/bin/reswrap - /usr/share/man/man1/reswrap.1 - - - - shutterbug - Shutterbug is a simple screen snapshot application inspired by SGI Snapshot. - app:gui - GPL-3 - - fox - - - /usr/bin/shutterbug - /usr/share/applications/shutterbug.desktop - /usr/share/man/man1/shutterbug.1 - - - shutterbug.desktop - - - - fox-devel - - fox - tiff-devel - zlib-devel - bzip2 - libXi-devel - libX11-devel - libXft-devel - libpng-devel - libXext-devel - freetype-devel - libXfixes-devel - libXrandr-devel - fontconfig-devel - libXcursor-devel - libXrender-devel - libjpeg-turbo-devel - - - /usr/include/fox-1.7 - /usr/lib/pkgconfig/fox17.pc - - - - fox-doc - - /usr/share/doc/fox-1.7 + /usr/share + /usr/share/locale + /usr/share/doc + + 2021-07-23 + 1.6.2 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + - 2021-12-25 - 1.7.77 - First release - fury - uglyside@yandex.ru + 2020-12-05 + 1.6.1 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com @@ -161760,73 +161830,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - xfce4-datetime-plugin @@ -164110,73 +164113,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - thunar @@ -164357,6 +164293,73 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -165899,6 +165902,156 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -166200,156 +166353,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - pymacs @@ -166418,6 +166421,120 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + + + geany-plugins @@ -166547,120 +166664,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - krita @@ -167348,6 +167351,55 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.1.6/scite516.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 + + + + + 2021-12-18 + 5.1.6 + First build. + fury + uglyside@yandex.ru + + + texlive-bin @@ -167734,55 +167786,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.1.6/scite516.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 - - - - - 2021-12-18 - 5.1.6 - First build. - fury - uglyside@yandex.ru - - - bzflag @@ -168078,6 +168081,57 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + extremetuxracer + https://sourceforge.net/projects/extremetuxracer/ + + Ali Cengiz Kurt + alicengizkurt@gmail.com + + GPLv2 + app:gui + game.arcade + High speed arctic racing game based on Tux Racer. + Buz üzerinde penguen yarışı + Extreme Tux Racer is a racing game which forked off Tux Racer after work on it ceased. It was formerly known as Planet Penguin Racer. + Extreme Tux Penguin racer, buz üzerinde kayarak ve balık toplayarak zamana karşı yarışma oyunudur. + extremetuxracer + https://downloads.sourceforge.net/extremetuxracer/etr-0.8.1.tar.xz + + sfml-devel + libglvnd-devel + mesa-glu-devel + + game/arcade/extremetuxracer/pspec.xml + + + extremetuxracer + + sfml + libgcc + mesa-glu + libglvnd + + + /usr/bin + /usr/share/applications + /usr/share/appdata + /usr/share/doc + /usr/share/etr + /usr/share/pixmaps + + + + + 2022-01-05 + 0.8.1 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + gl117 @@ -168143,57 +168197,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - extremetuxracer - https://sourceforge.net/projects/extremetuxracer/ - - Ali Cengiz Kurt - alicengizkurt@gmail.com - - GPLv2 - app:gui - game.arcade - High speed arctic racing game based on Tux Racer. - Buz üzerinde penguen yarışı - Extreme Tux Racer is a racing game which forked off Tux Racer after work on it ceased. It was formerly known as Planet Penguin Racer. - Extreme Tux Penguin racer, buz üzerinde kayarak ve balık toplayarak zamana karşı yarışma oyunudur. - extremetuxracer - https://downloads.sourceforge.net/extremetuxracer/etr-0.8.1.tar.xz - - sfml-devel - libglvnd-devel - mesa-glu-devel - - game/arcade/extremetuxracer/pspec.xml - - - extremetuxracer - - sfml - libgcc - mesa-glu - libglvnd - - - /usr/bin - /usr/share/applications - /usr/share/appdata - /usr/share/doc - /usr/share/etr - /usr/share/pixmaps - - - - - 2022-01-05 - 0.8.1 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - eboard @@ -168270,60 +168273,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - gnuchess-book - http://www.gnu.org/software/chess/chess.html - - 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 - - - gnuchess-book - - gnuchess - - - /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 @@ -168383,6 +168332,60 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + gnuchess-book + http://www.gnu.org/software/chess/chess.html + + 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 + + + gnuchess-book + + gnuchess + + + /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 + + + gweled @@ -168549,6 +168552,69 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + gnome-chess + https://wiki.gnome.org/Apps/Chess + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + game + Play the classic two-player boardgame of chess + Play the classic two-player boardgame of chess + Klasik iki kişilik satranç tahtası oyununu oynayın + Klasik iki kişilik satranç tahtası oyununu oynayın + https://download.gnome.org/sources/gnome-chess/41/gnome-chess-41.1.tar.xz + + meson + itstool + gtk4-devel + yelp-tools + cairo-devel + vala-devel + glib2-devel + librsvg-devel + gobject-introspection-devel + + game/gnome-chess/pspec.xml + + + gnome-chess + + gtk4 + cairo + glib2 + librsvg + gnuchess + + + /usr/bin + /etc + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/icons + /usr/share/help + /usr/share/glib-2.0/ + /usr/share/dbus-1/services + /usr/share/doc + /usr/share/applications/org.gnome.Chess.desktop + + + + + 2021-10-29 + 41.1 + First release + PisiLinux Community + admins@pisilinux.org + + + hexalate @@ -168612,67 +168678,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - gcompris @@ -168776,6 +168781,67 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -169578,69 +169644,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - gnome-chess - https://wiki.gnome.org/Apps/Chess - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - game - Play the classic two-player boardgame of chess - Play the classic two-player boardgame of chess - Klasik iki kişilik satranç tahtası oyununu oynayın - Klasik iki kişilik satranç tahtası oyununu oynayın - https://download.gnome.org/sources/gnome-chess/41/gnome-chess-41.1.tar.xz - - meson - itstool - gtk4-devel - yelp-tools - cairo-devel - vala-devel - glib2-devel - librsvg-devel - gobject-introspection-devel - - game/gnome-chess/pspec.xml - - - gnome-chess - - gtk4 - cairo - glib2 - librsvg - gnuchess - - - /usr/bin - /etc - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/icons - /usr/share/help - /usr/share/glib-2.0/ - /usr/share/dbus-1/services - /usr/share/doc - /usr/share/applications/org.gnome.Chess.desktop - - - - - 2021-10-29 - 41.1 - First release - PisiLinux Community - admins@pisilinux.org - - - blueman @@ -173599,274 +173602,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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/5.x/wine-5.9.tar.xz - https://github.com/wine-staging/wine-staging/archive/v5.9.tar.gz - - 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 - 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-devel - 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-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 - - - /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 - 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 - - - - - 2020-06-04 - 5.9 - First release - Idris Kalp - idriskalp@gmail.com - - - wine @@ -174303,6 +174038,274 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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/5.x/wine-5.9.tar.xz + https://github.com/wine-staging/wine-staging/archive/v5.9.tar.gz + + 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 + 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-devel + 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-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 + + + /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 + 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 + + + + + 2020-06-04 + 5.9 + First release + Idris Kalp + idriskalp@gmail.com + + + libavc1394 @@ -175768,6 +175771,66 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -175991,6 +176054,97 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -176156,6 +176310,57 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + + + libftdi @@ -177303,208 +177508,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - - - - 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 - - - - - - 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 - - - ifuse @@ -178074,6 +178077,109 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -178771,6 +178877,95 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 @@ -178862,95 +179057,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - libisoburn @@ -179239,109 +179345,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - acpi @@ -180150,6 +180153,256 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.0/cups-2.4.0-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 + 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 + + + + + 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 @@ -180433,256 +180686,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.0/cups-2.4.0-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 - 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 - - - - - 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 - - - enscript @@ -180757,6 +180760,102 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + foomatic-db + http://www.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 + http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20210314.tar.xz + + cleanup-script + + hardware/printer/foomatic-db/pspec.xml + + + foomatic-db + + pnm2ppa + + + /usr/share + + + + + 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 + + + foomatic-db-engine @@ -180953,102 +181052,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - foomatic-db - http://www.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 - http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20210314.tar.xz - - cleanup-script - - hardware/printer/foomatic-db/pspec.xml - - - foomatic-db - - pnm2ppa - - - /usr/share - - - - - 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 - - - gutenprint @@ -182662,6 +182665,61 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + 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 + alsa-lib + + + /etc/alsa/conf.d + /usr/lib/alsa-lib + /usr/share/alsa + + + + + 2022-01-25 + 1.2.6 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + alsa-tools @@ -182973,61 +183031,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - 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 - alsa-lib - - - /etc/alsa/conf.d - /usr/lib/alsa-lib - /usr/share/alsa - - - - - 2022-01-25 - 1.2.6 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - bubblewrap @@ -183317,124 +183320,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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.0/flatpak-builder-1.2.0.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 - - - - - 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 - - - flatpak @@ -183641,6 +183526,124 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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.0/flatpak-builder-1.2.0.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 + + + + + 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 @@ -183694,124 +183697,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - - - - 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 - - - libvirt @@ -183975,6 +183860,124 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + + + + + + 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 + + + ostree @@ -184326,6 +184329,98 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + 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 + + + spice-protocol @@ -184426,98 +184521,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - 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 - - - squeak-vm @@ -184768,127 +184771,6 @@ from a wide variety of machine architectures. - - - 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 - http://download.virtualbox.org/virtualbox/6.1.32/VBoxGuestAdditions_6.1.32.iso - hardware/virtualization/virtualbox-guest-iso/pspec.xml - - - virtualbox-guest-iso - - virtualbox - - - /usr/lib - - - - - 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 - - - virtualbox @@ -185457,95 +185339,122 @@ from a wide variety of machine architectures. - xdg-desktop-portal-gtk - https://github.com/flatpak/xdg-desktop-portal-gtk + virtualbox-guest-iso + https://www.virtualbox.org/ - Ertuğrul Erata - ertugrulerata@gmail.com + PisiLinux Community + admins@pisilinux.org - LGPLv2 + custom + library 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 + 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 + http://download.virtualbox.org/virtualbox/6.1.32/VBoxGuestAdditions_6.1.32.iso + hardware/virtualization/virtualbox-guest-iso/pspec.xml - xdg-desktop-portal-gtk + virtualbox-guest-iso - glib2 - gtk3 - cairo - fontconfig - gnome-desktop - gdk-pixbuf - xdg-desktop-portal - flatpak + virtualbox /usr/lib - /usr/libexec - /usr/share/dbus-1 - /usr/share/applications - /usr/share/xdg-desktop-portal - /usr/share/locale - /usr/share/doc + + 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-09-24 - 1.10.0 + 2021-02-06 + 6.1.18 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-05 - 1.8.0 + 2020-10-04 + 6.1.14 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-03-30 - 1.7.1 + 2020-08-07 + 6.1.12 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-03-10 - 1.6.0 - Version bump. + 2020-05-30 + 6.1.8 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2019-07-07 - 1.4.0 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com + 2020-04-22 + 6.1.6 + Version bump + PisiLinux Community + admins@pisilinux.org - 2019-05-12 - 1.2.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com + 2020-04-05 + 6.1.4 + First release + PisiLinux Community + admins@pisilinux.org @@ -185676,6 +185585,100 @@ from a wide variety of machine architectures. + + + 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 + + + module-fglrx @@ -189460,6 +189463,221 @@ cleaner, which will allow to add new features in the future. + + + 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 + + + + + + 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 @@ -189518,75 +189736,6 @@ cleaner, which will allow to add new features in the future. - - - 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 - - - pipewire @@ -189741,6 +189890,132 @@ cleaner, which will allow to add new features in the future. + + + 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 @@ -189800,221 +190075,6 @@ cleaner, which will allow to add new features in the future. - - - 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 - - - - - - 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 - - - - - - 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 - - - vapoursynth @@ -190082,295 +190142,124 @@ cleaner, which will allow to add new features in the future. - puddletag - https://docs.puddletag.net/ + graphviz + https://www.graphviz.org/ - 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 - - - - - - GraphicsMagick - http://www.graphicsmagick.org - - PisiLinux Community - admins@pisilinux.org - MIT - library + EPL + app 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 + 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 - tiff-devel - webp-devel - lcms2-devel - libSM-devel - libwmf-devel - libICE-devel - jasper-devel - jbigkit-devel - libXext-devel - libjpeg-turbo-devel + 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 - zlib-devel - libxml2-devel - freetype-devel - xz-devel - zstd-devel - - GraphicsMagick-1.3.16-multilib.patch - - multimedia/graphics/GraphicsMagick/pspec.xml + multimedia/graphics/graphviz/pspec.xml - GraphicsMagick - app:console + graphviz - tiff - webp - zstd + gd zlib - bzip2 - libgcc - freetype + perl + glib2 + guile + pango + cairo + expat + libXt libX11 - libxml2 - libpng - lcms2 - libwmf - jasper - libXext - jbigkit - libgomp + libXaw + libXmu + libgcc + python3 + librsvg ghostscript - libjpeg-turbo libtool-ltdl - /etc - /usr/bin/gm - /usr/lib/GraphicsMagick-* - /usr/lib/lib* - /usr/share/GraphicsMagick-* - /usr/share/doc + /usr/bin + /usr/lib + /usr/share/graphviz /usr/share/man - GraphicsMagick-devel - Development files for GraphicsMagick - - GraphicsMagick - + graphviz-docs - /usr/bin/*-config - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/GraphicsMagick/www - /usr/share/man/man1/*-config.* + /usr/share/graphviz/doc - PerlMagick - GraphicsMagick perl bindings + graphviz-demo - GraphicsMagick + graphviz - /usr/lib/perl5 - /usr/share/doc/PerlMagick + /usr/share/graphviz/demo + + + + graphviz-devel + graphviz için geliştirme dosyaları + + graphviz + + + /usr/include + /usr/lib/pkgconfig - - 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 + 2022-01-18 + 2.50.0 + Version bump + fury + uglyside@yandex.ru - 2016-11-06 - 1.3.25 + 2021-06-10 + 2.47.2 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-06-09 - 1.3.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2021-02-24 + 2.46.1 + Version bump. + fury + uglyside@yandex.ru - 2016-01-24 - 1.3.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - 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 + 2017-01-18 + 2.40.1 + First release. + Ali Algul + aligulle3801@gmail.com @@ -191525,6 +191414,61 @@ cleaner, which will allow to add new features in the future. + + + 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 @@ -194533,124 +194477,158 @@ cleaner, which will allow to add new features in the future. - graphviz - https://www.graphviz.org/ + GraphicsMagick + http://www.graphicsmagick.org - fury - uglyside@yandex.ru + PisiLinux Community + admins@pisilinux.org - EPL - app + MIT + library 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 + 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 - 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 + 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 - multimedia/graphics/graphviz/pspec.xml + + GraphicsMagick-1.3.16-multilib.patch + + multimedia/graphics/GraphicsMagick/pspec.xml - graphviz + GraphicsMagick + app:console - gd + tiff + webp + zstd zlib - perl - glib2 - guile - pango - cairo - expat - libXt - libX11 - libXaw - libXmu + bzip2 libgcc - python3 - librsvg + freetype + libX11 + libxml2 + libpng + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp ghostscript + libjpeg-turbo libtool-ltdl - /usr/bin - /usr/lib - /usr/share/graphviz + /etc + /usr/bin/gm + /usr/lib/GraphicsMagick-* + /usr/lib/lib* + /usr/share/GraphicsMagick-* + /usr/share/doc /usr/share/man - graphviz-docs - - /usr/share/graphviz/doc - - - - graphviz-demo + GraphicsMagick-devel + Development files for GraphicsMagick - graphviz - - - /usr/share/graphviz/demo - - - - graphviz-devel - graphviz için geliştirme dosyaları - - graphviz + GraphicsMagick + /usr/bin/*-config /usr/include - /usr/lib/pkgconfig + /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 - - 2022-01-18 - 2.50.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-06-10 - 2.47.2 + + 2021-12-14 + 1.3.37 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-02-24 - 2.46.1 + + 2020-03-05 + 1.3.35 Version bump. - fury - uglyside@yandex.ru + 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 - 2017-01-18 - 2.40.1 - First release. - Ali Algul - aligulle3801@gmail.com + 2016-01-24 + 1.3.23 + First release + Ertuğrul Erata + ertugrulerata@gmail.com @@ -198150,6 +198128,86 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + + 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 @@ -198628,332 +198686,58 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - DirectFB - http://www.directfb.org/ + libavif + https://github.com/AOMediaCodec/libavif 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 - - - - - - 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 - - - - - - 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 - - - - - - OpenColorIO1 - http://opencolorio.org/ - - Pisi Linux Admins - admin@pisilinux.org - BSD - app + library 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 + 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 - yaml-cpp - lcms2-devel - boost-devel - tinyxml-devel - python3-devel - openimageio-devel + nasm + aom-devel + zlib-devel + rav1e-devel + dav1d-devel + glib2-devel + libpng-devel + svt-av1-devel + gdk-pixbuf-devel + libjpeg-turbo-devel - - 8d48ee8da42de2d878db7b42586db8b3c67f83e1.patch - - multimedia/misc/OpenColorIO1/pspec.xml + multimedia/misc/libavif/pspec.xml - OpenColorIO1 + libavif - lcms2 - libgcc - tinyxml + aom + rav1e + dav1d + glib2 + libpng + svt-av1 + gdk-pixbuf + libjpeg-turbo /usr/bin /usr/lib - /usr/share/ocio /usr/share/doc - - opencolorio - - OpenColorIO1-devel - Development files for OpenColorIO1 + libavif-devel + Development files for libavif - OpenColorIO1 + libavif /usr/include @@ -198962,19 +198746,101 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 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-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 + - 2021-10-23 - 1.1.1 - Rebuild boost - Pisi Linux Admins + 2016-06-09 + 2.9.19 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2021-05-11 - 1.1.1 + 2014-11-10 + 2.9.19 First release - Pisi Linux Admins - admin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com @@ -199129,6 +198995,138 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + + 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 + + + exempi @@ -199421,6 +199419,86 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + + 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 @@ -201870,95 +201948,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - libsdl @@ -202781,6 +202770,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -202950,6 +202990,70 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -203032,6 +203136,82 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -203491,6 +203671,61 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -204333,6 +204568,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -204408,94 +204694,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - taglib @@ -204610,6 +204808,94 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -204684,234 +204970,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - audacious-plugins @@ -205409,6 +205467,322 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -207170,58 +207544,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - espeak @@ -207325,6 +207647,58 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -207506,132 +207880,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - flite @@ -207962,6 +208210,126 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 + + + gsm @@ -208134,6 +208502,86 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 + + + jack-audio-connection-kit @@ -209269,51 +209717,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - liblastfm @@ -210993,151 +211396,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - opus-tools @@ -211542,92 +211800,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - pulseaudio @@ -211936,6 +212108,92 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -213031,68 +213289,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - timidity @@ -213206,6 +213402,68 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -213610,206 +213868,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - - - - 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 - - - darkice @@ -214796,6 +214854,127 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -215039,122 +215218,93 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - mlt6 - https://www.mltframework.org/ + libdv + http://libdv.sourceforge.net/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 + GPLv2 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 + 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 - 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 + libsdl-devel + popt-devel - 7063e88e.patch - a87229bc.patch + libdv-0.99-2.6.patch + libdv-1.0.0-pic.patch + libdv-1.0.0-dso-linking.patch + libdv-mmxdetect-athlon.patch - multimedia/tv/mlt6/pspec.xml + multimedia/video/libdv/pspec.xml - python-mlt6 - Python bindings for MLT - programming.language.python + libdv - 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 + popt /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 + libdv-devel + Development files for libdv + libdv için geliştirme dosyaları - mlt6 + libdv - /usr/include + /usr/include/libdv /usr/lib/pkgconfig - /usr/share/man/man3 + + 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 + - 2021-12-09 - 6.26.1 + 2016-01-09 + 1.0.0 First release - Alihan Öztürk - alihan@pisilinux.org + Kamil Atlı + suvarice@gmail.com @@ -217204,126 +217354,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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.18.5.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 - - - - - 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 - - - gstreamer @@ -217537,6 +217567,126 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.18.5.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 + + + + + 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 @@ -217814,98 +217964,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - libdvbpsi @@ -218298,6 +218356,100 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -220059,100 +220211,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - kaffeine @@ -221849,6 +221907,58 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -222438,58 +222548,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - avahi @@ -223733,6 +223791,90 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -224795,102 +224937,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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-logger @@ -224987,6 +225033,102 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -225344,85 +225486,322 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - hexchat - https://hexchat.github.io/ + bridge-utils + http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge 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 + 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 - hexchat + 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 - perl - gtk2 - glib2 - luajit - openssl - python3 - libproxy - pciutils - libnotify - libcanberra - python3-cffi + 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 - /usr/share/locale /usr/share/man - /usr/share/info /usr/share/doc - hexchat-devel - Development files for hexchat + linux-atm-devel + Development files for linux-atm + linux-atm için geliştirme dosyaları - hexchat + linux-atm /usr/include - /usr/lib/pkgconfig + + 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 + - 2021-11-22 - 2.16.0 - First build - fury - uglyside@yandex.ru + 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/20210805/mobile-broadband-provider-info-20210805.tar.xz + + libxslt-devel + + network/connection/mobile-broadband-provider-info/pspec.xml + + + mobile-broadband-provider-info + + /usr/share + + + + + 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 @@ -225670,6 +226049,309 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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.24/network-manager-applet-1.24.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 + + + + + 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 @@ -226027,625 +226709,82 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - bridge-utils - http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge + networkmanager-openvpn + https://gitlab.gnome.org/GNOME/NetworkManager-openvpn - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - GPLv2 - app:console + GPL + service 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 + 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 - bridge-utils + networkmanager-openvpn + + atk + gtk3 + cairo + glib2 + pango + libnma + python3 + harfbuzz + gdk-pixbuf + NetworkManager + - /usr/include /usr/lib - /usr/bin + /usr/share/locale + /usr/share/dbus-1/system.d/nm-openvpn-service.conf /usr/share/doc - /usr/share/man + /usr/share/metainfo/network-manager-openvpn.metainfo.xml - - - 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 + networkmanager-openvpn-devel + Development files for networkmanager-openvpn + networkmanager-openvpn için geliştirme başlıkları - 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/20210805/mobile-broadband-provider-info-20210805.tar.xz - - libxslt-devel - - network/connection/mobile-broadband-provider-info/pspec.xml - - - mobile-broadband-provider-info - - /usr/share - - - - - 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 - - - - - - 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 + networkmanager-openvpn /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.24/network-manager-applet-1.24.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 - - - - - 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 + 2021-11-28 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 + Kamil Atlı + suvari@pisilinux.org @@ -227080,87 +227219,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - aria2 @@ -227359,6 +227417,69 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -227590,69 +227711,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - 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 - - - iproute2 @@ -228253,6 +228311,68 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + 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 @@ -228675,6 +228795,63 @@ functionality to build high-performing, platform-independent programs. + + + 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 @@ -229757,125 +229934,6 @@ functionality to build high-performing, platform-independent programs. - - - 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 - - - - - - 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 - - - claws-mail @@ -232475,73 +232533,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - protobuf @@ -232709,6 +232700,73 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -236883,188 +236941,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - calligra @@ -237476,6 +237352,259 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -242889,6 +243018,168 @@ complete albums that you have purchased from Amazon. + + + 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-03-22 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-20 + 0.0.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-11 + 0.0.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 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 @@ -242960,6 +243251,70 @@ complete albums that you have purchased from Amazon. + + + 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 + + + + + 2021-12-21 + 3.2.59 + First build + fury + uglyside@yandex.ru + + + djvu @@ -244696,111 +245051,6 @@ complete albums that you have purchased from Amazon. - - - 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-03-22 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-20 - 0.0.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-11 - 0.0.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-06 - 0.0.1 - First release - PisiLinux Community - admins@pisilinux.org - - - libvc @@ -246522,6 +246772,116 @@ complete albums that you have purchased from Amazon. + + + 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 + + + tesseract-data @@ -246677,116 +247037,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - texi2html @@ -247121,127 +247371,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - - - - 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 - - - - - 2021-12-21 - 3.2.59 - First build - fury - uglyside@yandex.ru - - - ghostscript @@ -247450,92 +247579,6 @@ complete albums that you have purchased from Amazon. - - - poppler-data - http://poppler.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - data - office.postscript - Poppler encoding files - Poppler kodlama dosyaları - poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. - poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. - http://poppler.freedesktop.org/poppler-data-0.4.10.tar.gz - office/postscript/poppler-data/pspec.xml - - - poppler-data - - /usr/share/doc - /usr/share/poppler - /usr/share/pkgconfig - - - - - 2021-03-10 - 0.4.10 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-02-05 - 0.4.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-31 - 0.4.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 0.4.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-12 - 0.4.8 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-05 - 0.4.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-05 - 0.4.7 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - poppler @@ -247846,6 +247889,92 @@ complete albums that you have purchased from Amazon. + + + poppler-data + http://poppler.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + data + office.postscript + Poppler encoding files + Poppler kodlama dosyaları + poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. + poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. + http://poppler.freedesktop.org/poppler-data-0.4.10.tar.gz + office/postscript/poppler-data/pspec.xml + + + poppler-data + + /usr/share/doc + /usr/share/poppler + /usr/share/pkgconfig + + + + + 2021-03-10 + 0.4.10 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-02-05 + 0.4.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-31 + 0.4.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 0.4.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-12 + 0.4.8 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-05 + 0.4.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.4.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-03-05 + 0.4.7 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + aspell @@ -248518,77 +248647,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - zim @@ -249723,192 +249781,42 @@ complete albums that you have purchased from Amazon. - R-lang - http://www.r-project.org + cargo-c + https://github.com/lu-zero/cargo-c PisiLinux Community admins@pisilinux.org - GPLv2 - LGPLv2.1 - app:console + MIT + library 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 + 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 - 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 + rust curl-devel - minizip-devel + zlib-devel + openssl-devel - - R-3.4.1-parallel.patch - R-3.4.1-rmath-shared.patch - - programming/language/R-lang/pspec.xml + programming/language/cargo-c/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 - + cargo-c - /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 + /usr/share/doc - - 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 + 2021-11-02 + 0.9.5 First release - Ertuğrul Erata - ertugrulerata@gmail.com + PisiLinux Community + admins@pisilinux.org @@ -251774,6 +251682,57 @@ complete albums that you have purchased from Amazon. + + + 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-AnyEvent-I3 @@ -251829,57 +251788,6 @@ complete albums that you have purchased from Amazon. - - - 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-AppConfig @@ -252175,122 +252083,49 @@ complete albums that you have purchased from Amazon. - perl-CGI - https://metacpan.org/release/CGI + perl-Cairo + https://metacpan.org/pod/Cairo - Alihan Öztürk - alihan@pisilinux.org + Pisilinux Community + admins@pisilinux.org - Artistic - GPLv1 + LGPL-2.1 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 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 - perl-Test-Deep - perl-Test-Warn - perl-HTML-Parser + cairo-devel + perl-Font-FreeType + perl-ExtUtils-Depends + perl-Test-Number-Delta + perl-ExtUtils-PkgConfig + perl-ExtUtils-MakeMaker - programming/language/perl/perl-CGI/pspec.xml + programming/language/perl/perl-Cairo/pspec.xml - perl-CGI - Handle Common Gateway Interface requests and responses. + perl-Cairo perl - perl-Test-Deep - perl-Test-Warn - perl-HTML-Parser + cairo + freetype - /usr/share /usr/lib - /usr/share/man /usr/share/doc + /usr/share/man - - 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 + 2021-12-21 + 1.109 + First build. + fury + uglyside@yandex.ru @@ -252442,6 +252277,127 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -252531,29 +252487,28 @@ complete albums that you have purchased from Amazon. - perl-Config-Tiny - https://metacpan.org/release/Config-Tiny + perl-common-sense + https://metacpan.org/release/common-sense 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 + 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-Config-Tiny/pspec.xml + programming/language/perl/perl-common-sense/pspec.xml - perl-Config-Tiny - A module for reading and writing .ini style files with as little code as possible + perl-common-sense + Implements some sane defaults for Perl programs perl @@ -252564,19 +252519,47 @@ complete albums that you have purchased from Amazon. - - 2020-04-22 - 2.24 + + 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 + - 2020-04-09 - 2.23 + 2016-03-27 + 3.74 First release - Kamil Atlı - suvari@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org @@ -252627,6 +252610,47 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -252670,47 +252694,6 @@ complete albums that you have purchased from Amazon. - - - 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-PasswdMD5 @@ -252918,65 +252901,6 @@ complete albums that you have purchased from Amazon. - - - 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-Data-Dump @@ -253055,6 +252979,54 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -253103,6 +253075,108 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -253406,77 +253480,6 @@ complete albums that you have purchased from Amazon. - - - 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-Encode-Locale @@ -253678,6 +253681,46 @@ complete albums that you have purchased from Amazon. + + + 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-ExtUtils-MakeMaker @@ -253744,6 +253787,46 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -253797,6 +253880,48 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -254045,48 +254170,6 @@ complete albums that you have purchased from Amazon. - - - 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-Font-AFM @@ -254158,6 +254241,52 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -254232,80 +254361,88 @@ complete albums that you have purchased from Amazon. - perl-GSSAPI - https://metacpan.org/pod/GSSAPI + perl-Glib + https://metacpan.org/pod/Glib - Pisi Linux Admins + Pisilinux Community admins@pisilinux.org - Artistic + LGPL-2.1 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 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 - mit-kerberos - e2fsprogs-devel + perl-ExtUtils-Depends + perl-ExtUtils-PkgConfig + gobject-introspection-devel - - disable_failing_test.patch - - programming/language/perl/perl-GSSAPI/pspec.xml + programming/language/perl/perl-Glib/pspec.xml - perl-GSSAPI - Perl extension providing access to the GSSAPIv2 library + perl-Glib perl - mit-kerberos - e2fsprogs + glib2 /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 + 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 @@ -254481,34 +254618,36 @@ complete albums that you have purchased from Amazon. - perl-HTML-FormatText-WithLinks-AndTables - https://metacpan.org/pod/HTML::FormatText::WithLinks::AndTables + perl-HTML-Formatter + https://metacpan.org/release/HTML-Formatter - Osman Erkan - osman.erkan@pisilinux.org + Blue Devil + bluedevil@sctzine.com - PerlArtistic GPL + GPLv2 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 + 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-URI - perl-HTML-FormatText-WithLinks + perl-Test-Warnings - programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml + programming/language/perl/perl-HTML-Formatter/pspec.xml - perl-HTML-FormatText-WithLinks-AndTables - Converts HTML to Text with tables in tact. + perl-HTML-Formatter + A Perl module that format HTML as plaintext, RTF and PostScript + perl-HTML-Tree perl - perl-URI - perl-HTML-FormatText-WithLinks /usr/lib @@ -254517,41 +254656,13 @@ complete albums that you have purchased from Amazon. - - 2020-01-14 - 0.07 - Rebuild for new toolchain. + + 2020-02-12 + 2.16 + First release. 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 - @@ -254641,36 +254752,34 @@ complete albums that you have purchased from Amazon. - perl-HTML-Formatter - https://metacpan.org/release/HTML-Formatter + perl-HTML-FormatText-WithLinks-AndTables + https://metacpan.org/pod/HTML::FormatText::WithLinks::AndTables - Blue Devil - bluedevil@sctzine.com + Osman Erkan + osman.erkan@pisilinux.org - GPLv2 + PerlArtistic GPL 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 + 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-Module-Build - perl-File-Slurper - perl-HTML-Tree - perl-Font-AFM perl - perl-Test-Warnings + perl-URI + perl-HTML-FormatText-WithLinks - programming/language/perl/perl-HTML-Formatter/pspec.xml + programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml - perl-HTML-Formatter - A Perl module that format HTML as plaintext, RTF and PostScript + perl-HTML-FormatText-WithLinks-AndTables + Converts HTML to Text with tables in tact. - perl-HTML-Tree perl + perl-URI + perl-HTML-FormatText-WithLinks /usr/lib @@ -254679,13 +254788,41 @@ complete albums that you have purchased from Amazon. - - 2020-02-12 - 2.16 - First release. + + 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 + @@ -254926,84 +255063,6 @@ complete albums that you have purchased from Amazon. - - - 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-Template @@ -255086,6 +255145,84 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -255479,6 +255616,207 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -255584,6 +255922,176 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -255734,6 +256242,207 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -256129,152 +256838,77 @@ complete albums that you have purchased from Amazon. - perl-Image-ExifTool - https://exiftool.org/index.html + perl-JSON + https://metacpan.org/pod/JSON Pisi Linux Admins admins@pisilinux.org Artistic - GPLv2 - app:console + library 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 + 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-Image-ExifTool/pspec.xml + programming/language/perl/perl-JSON/pspec.xml - perl-Image-ExifTool - A command-line application for reading, writing and editing meta information in image, audio and video files + perl-JSON + JSON (JavaScript Object Notation) encoder/decoder perl + perl-JSON-XS + perl-Test-Pod /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/perl /usr/share/doc + /usr/share/man - - 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. + 2020-01-13 + 4.02 + Version bump Blue Devil bluedevil@sctzine.com 2018-07-26 - 11.01 - Version Bump + 2.90 + Rebuild for new toolchain. Pisi Linux Community admin@pisilinux.org 2017-01-24 - 10.40 - Version Bump + 2.90 + Rebuild for new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 10.00 + 2.90 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-27 - 10.00 + 2016-03-27 + 2.90 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 + Osman Erkan + osman.erkan@pisilinux.org @@ -256367,8 +257001,8 @@ complete albums that you have purchased from Amazon. - perl-JSON - https://metacpan.org/pod/JSON + perl-libwww + https://metacpan.org/release/libwww-perl Pisi Linux Admins admins@pisilinux.org @@ -256376,68 +257010,108 @@ complete albums that you have purchased from Amazon. 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 + 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-JSON-XS - perl-Test-Pod + 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-JSON/pspec.xml + programming/language/perl/perl-libwww/pspec.xml - perl-JSON - JSON (JavaScript Object Notation) encoder/decoder + perl-libwww + Application programming interface to the World-Wide Web perl - perl-JSON-XS - perl-Test-Pod + 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/perl /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-13 - 4.02 - Version bump + 2020-01-14 + 6.43 + Version bump. Blue Devil bluedevil@sctzine.com 2018-07-26 - 2.90 + 6.15 Rebuild for new toolchain. Pisi Linux Community admin@pisilinux.org 2017-01-24 - 2.90 + 6.15 Rebuild for new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 2.90 + 6.15 Release Bump Pisi Linux Community admin@pisilinux.org 2016-03-27 - 2.90 + 6.15 First release - Osman Erkan - osman.erkan@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org @@ -256601,6 +257275,48 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -256653,8 +257369,8 @@ complete albums that you have purchased from Amazon. - perl-Mail-AuthenticationResults - https://metacpan.org/pod/Mail::AuthenticationResults + perl-mailtools + https://metacpan.org/pod/MailTools fury uglyside@yandex.ru @@ -256662,21 +257378,18 @@ complete albums that you have purchased from Amazon. 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 + 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 - perl-JSON - perl-Clone - perl-Test-Exception + perl-timedate - programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml + programming/language/perl/perl-mailtools/pspec.xml - perl-Mail-AuthenticationResults + perl-mailtools - perl-JSON + perl-timedate /usr/lib/perl5 @@ -256686,58 +257399,7 @@ complete albums that you have purchased from Amazon. 2021-09-18 - 2.20210915 - First build - fury - uglyside@yandex.ru - - - - - - 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 + 2.21 First build fury uglyside@yandex.ru @@ -256784,6 +257446,46 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -256863,6 +257565,48 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -257044,76 +257788,64 @@ complete albums that you have purchased from Amazon. - perl-NET-HTTP - https://metacpan.org/pod/Net::HTTP + perl-Net-DNS + https://metacpan.org/release/Net-DNS - Osman Erkan - osman.erkan@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org Artistic - GPLv2 - app:console + library 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 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-URI + perl-Test-Pod + perl-Digest-HMAC + perl-Net-LibIDN2 - programming/language/perl/perl-NET-HTTP/pspec.xml + programming/language/perl/perl-Net-DNS/pspec.xml - perl-NET-HTTP - Low-level HTTP connection (client) + perl-Net-DNS + Perl interface to the DNS resolver perl - perl-URI + perl-Net-LibIDN2 /usr/lib /usr/share/doc /usr/share/man - /usr/share + /usr/share/perl - - 2020-01-13 - 6.19 - Version bump + + 2020-10-01 + 1.27 + Minor 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 + 2020-07-20 + 1.26 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2016-03-26 - 6.09 - First release - Alihan Öztürk - alihan@pisilinux.org + 2020-06-02 + 1.24 + Minor version bump. + Blue Devil + bluedevil@sctzine.com @@ -257207,64 +257939,76 @@ complete albums that you have purchased from Amazon. - perl-Net-DNS - https://metacpan.org/release/Net-DNS + perl-NET-HTTP + https://metacpan.org/pod/Net::HTTP - Pisi Linux Admins - admins@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org Artistic - library + GPLv2 + app:console 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 + 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-Test-Pod - perl-Digest-HMAC - perl-Net-LibIDN2 + perl-URI - programming/language/perl/perl-Net-DNS/pspec.xml + programming/language/perl/perl-NET-HTTP/pspec.xml - perl-Net-DNS - Perl interface to the DNS resolver + perl-NET-HTTP + Low-level HTTP connection (client) perl - perl-Net-LibIDN2 + perl-URI /usr/lib /usr/share/doc /usr/share/man - /usr/share/perl + /usr/share - - 2020-10-01 - 1.27 - Minor version bump + + 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 + - 2020-07-20 - 1.26 - Version bump. - Blue Devil - bluedevil@sctzine.com + 2016-06-09 + 6.09 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-06-02 - 1.24 - Minor version bump. - Blue Devil - bluedevil@sctzine.com + 2016-03-26 + 6.09 + First release + Alihan Öztürk + alihan@pisilinux.org @@ -257689,6 +258433,44 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -257729,6 +258511,78 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -257849,6 +258703,50 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -257893,6 +258791,48 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -258052,50 +258992,6 @@ complete albums that you have purchased from Amazon. - - - 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-Exporter @@ -258146,6 +259042,50 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -258206,6 +259146,50 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -258427,6 +259411,125 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -258507,72 +259610,43 @@ complete albums that you have purchased from Amazon. - perl-Test-Exception - https://metacpan.org/pod/Test::Exception + perl-test-exit + https://metacpan.org/release/Test-Exit Pisi Linux Admins - admins@pisilinux.org + admin@pisilinux.org Artistic + GPLv2 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 + 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-Sub-Uplevel + perl-return-multilevel - programming/language/perl/perl-Test-Exception/pspec.xml + programming/language/perl/perl-test-exit/pspec.xml - perl-Test-Exception - Module for testing exception based codes + perl-test-exit perl - perl-Sub-Uplevel + perl-return-multilevel /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 + 2020-04-09 + 0.097 + First release. Kamil Atlı suvari@pisilinux.org @@ -258834,74 +259908,41 @@ complete albums that you have purchased from Amazon. - perl-Test-Pod-Coverage - https://metacpan.org/pod/Test::Pod::Coverage + perl-Test-Number-Delta + https://metacpan.org/pod/Test::Number::Delta - Pisi Linux Admins - admin@pisilinux.org + Pisilinux Community + admins@pisilinux.org - as-is + Apache_2 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 + 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 - perl-Pod-Coverage - programming/language/perl/perl-Test-Pod-Coverage/pspec.xml + programming/language/perl/perl-Test-Number-Delta/pspec.xml - perl-Test-Pod-Coverage - Check for pod coverage in your distribution + perl-Test-Number-Delta perl - perl-Pod-Coverage /usr/lib - /usr/share/man /usr/share/doc + /usr/share/man - - 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 + 2021-12-21 + 1.06 + First build. + fury + uglyside@yandex.ru @@ -258976,6 +260017,79 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -259113,6 +260227,71 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -259238,6 +260417,68 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -259310,6 +260551,45 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -259745,69 +261025,6 @@ complete albums that you have purchased from Amazon. - - - 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-SAX @@ -259875,6 +261092,69 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -259961,1374 +261241,156 @@ complete albums that you have purchased from Amazon. - perl-common-sense - https://metacpan.org/release/common-sense + python-certifi + https://certifi.io/ - Pisi Linux Admins - admins@pisilinux.org + Blue DeviL + bluedevil@sctzine.com - Artistic + MPL-2.0 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 + 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 - perl + python-devel + python-setuptools - programming/language/perl/perl-common-sense/pspec.xml + programming/language/python/python-certifi/pspec.xml - perl-common-sense - Implements some sane defaults for Perl programs - - perl - + python-certifi + Python package for providing Mozilla's CA Bundle - /usr/share/doc - /usr/share/man /usr/lib + /usr/share/doc - - 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 + 2020-07-21 + 2020.6.20 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2017-01-24 - 3.74 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org + 2020-04-07 + 2020.4.5.1 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2016-06-09 - 3.74 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2020-01-28 + 2019.11.28 + Version bump. + Blue DeviL + bluedevil@sctzine.com - 2016-03-27 - 3.74 + 2019-12-07 + 2019.9.11 First release - Osman Erkan - osman.erkan@pisilinux.org + Blue DeviL + bluedevil@sctzine.com - perl-data-munge - https://metacpan.org/release/Data-Munge/ + python-h11 + https://pypi.org/project/h11/ - Kamil Atlı - suvari@pisilinux.org + Blue Devil + bluedevil@sctzine.com - Artistic - GPLv2 + MIT 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 + 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 - perl - perl-test2-suite - perl-Capture-Tiny - perl-Test-Warnings + python-devel + python-setuptools - programming/language/perl/perl-data-munge/pspec.xml + programming/language/python/python-h11/pspec.xml - perl-data-munge - - perl - perl-test2-suite - perl-Capture-Tiny - perl-Test-Warnings - + 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-04-09 - 0.097 - First release. - Kamil Atlı - suvari@pisilinux.org + 2020-01-15 + 0.9.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com - perl-importer - https://metacpan.org/release/Importer + python-pbr + https://pypi.org/project/pbr/ - Kamil Atlı - suvari@pisilinux.org + Blue Devil + bluedevil@sctzine.com - Artistic - GPLv2 + Apache 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 + 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 - perl + python-setuptools + python-devel - programming/language/perl/perl-importer/pspec.xml + programming/language/python/python-pbr/pspec.xml - perl-importer + python-pbr + Python Build Reasonableness - perl + python-setuptools - /usr/lib + /usr/bin/pbr-py2 /usr/share/doc - /usr/share/man + /usr/lib + /usr/share - 2020-08-30 - 0.026 - Minor version bump + 2020-04-08 + 5.4.5 + Patch version bump. Blue Devil bluedevil@sctzine.com - 2020-04-09 - 0.025 - First release - Kamil Atlı - suvari@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 + 5.4.4 First release - Alihan Öztürk - alihan@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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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-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 - @@ -262110,192 +262172,6 @@ complete albums that you have purchased from Amazon. - - - 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-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-anytree @@ -262455,6 +262331,49 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -262516,49 +262435,6 @@ complete albums that you have purchased from Amazon. - - - 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-bcrypt @@ -262818,67 +262694,6 @@ complete albums that you have purchased from Amazon. - - - 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-cffi @@ -263509,6 +263324,55 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -263578,55 +263442,6 @@ complete albums that you have purchased from Amazon. - - - 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-ecdsa @@ -264020,47 +263835,6 @@ complete albums that you have purchased from Amazon. - - - 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-h2 @@ -265217,58 +264991,6 @@ complete albums that you have purchased from Amazon. - - - 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-pillow @@ -265984,6 +265706,115 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -267037,6 +266868,83 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -267500,6 +267408,70 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -267597,70 +267569,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - cython3 @@ -268570,6 +268478,47 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -268672,6 +268621,94 @@ complete albums that you have purchased from Amazon. + + + 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 + + + + + + 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 + + + python-keyutils @@ -268727,6 +268764,87 @@ complete albums that you have purchased from Amazon. + + + 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 + + + + + + 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 @@ -268787,502 +268905,38 @@ complete albums that you have purchased from Amazon. - python3-Babel - https://babel.pocoo.org + python-setproctitle + https://github.com/dvarrazzo/py-setproctitle - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@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 + 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-setuptools python3-devel - python3-pytz + python3-setuptools - programming/language/python3/python3-Babel/pspec.xml + programming/language/python3/python-setproctitle/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-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-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 + python-setproctitle python3 - /usr/lib/python3* - /usr/share/doc/python3-Levenshtein + /usr/share/doc/python-setproctitle + /usr/lib/python3.9/site-packages - - 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-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-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-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-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 + 2022-01-09 + 1.2.2 First release Kamil Atlı suvari@pisilinux.org @@ -269291,132 +268945,45 @@ complete albums that you have purchased from Amazon. - python3-Pygments - https://pygments.org/ + python3-aiml + https://github.com/ArtificialIntelligenceToolkit/aiml PisiLinux Community admins@pisilinux.org - BSD + MIT 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-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 + 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-Unidecode/pspec.xml + programming/language/python3/python3-aiml/pspec.xml - python3-Unidecode - US-ASCII transliterations of Unicode text + python3-aiml + aiml implements an interpreter for AIML python3 - /usr/bin/unidecode + /usr/bin* /usr/lib/python3* - /usr/share/doc/python3-Unidecode + /usr/share/doc/python3-aiml - - 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 + 2022-01-23 + 0.9.3 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com @@ -269671,84 +269238,6 @@ complete albums that you have purchased from Amazon. - - - 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-astroid @@ -269939,6 +269428,74 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -270386,6 +269943,50 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -270762,77 +270363,6 @@ complete albums that you have purchased from Amazon. - - - 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-colorama @@ -271980,79 +271510,6 @@ complete albums that you have purchased from Amazon. - - - 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-ecdsa @@ -272450,6 +271907,76 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -272842,6 +272369,228 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -272894,6 +272643,456 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -273132,76 +273331,6 @@ complete albums that you have purchased from Amazon. - - - 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-future @@ -273327,6 +273456,97 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -274170,63 +274390,6 @@ complete albums that you have purchased from Amazon. - - - 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-imagesize @@ -274823,6 +274986,117 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -275007,6 +275281,56 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -275162,118 +275486,6 @@ complete albums that you have purchased from Amazon. - - - 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-markdown @@ -275405,6 +275617,66 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -276345,56 +276617,6 @@ complete albums that you have purchased from Amazon. - - - 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-pbr @@ -276773,6 +276995,114 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -277047,52 +277377,60 @@ complete albums that you have purchased from Amazon. - python3-pyasn1-modules - https://github.com/etingof/pyasn1-modules/ + python3-pyalsaaudio + http://larsimmisch.github.io/pyalsaaudio/ - Blue Devil - bluedevil@sctzine.com + PisiLinux Community + admins@pisilinux.org - BSD + PSF 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 + 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/23/b1/672d496718562301ce2052b07196ca31874e4f1a497881ae44b2279a4e1d/pyalsaaudio-0.9.0.tar.gz python3-devel + python-setuptools + python-devel python3-setuptools + alsa-lib-devel - programming/language/python3/python3-pyasn1-modules/pspec.xml + programming/language/python3/python3-pyalsaaudio/pspec.xml - python3-pyasn1-modules - A collection of ASN.1-based protocols modules. + python3-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. python3 - python3-pyasn1 + alsa-lib /usr/lib/python3* - /usr/share/doc/python3-pyasn1-modules + /usr/share/doc/python3-pyalsaaudio + + + + python-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + + python + alsa-lib + + + /usr/lib/python* + /usr/share/doc/python-pyalsaaudio - - 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 + 2022-01-23 + 0.9.0 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com @@ -277146,6 +277484,57 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -277227,6 +277616,50 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -277456,64 +277889,6 @@ complete albums that you have purchased from Amazon. - - - 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-pycryptodomex @@ -277624,6 +277999,85 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -278278,6 +278732,67 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -278358,6 +278873,80 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -278447,80 +279036,6 @@ complete albums that you have purchased from Amazon. - - - 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-runner @@ -278582,66 +279097,48 @@ complete albums that you have purchased from Amazon. - python3-pytz - https://pythonhosted.org/pytz/ + python3-pyttsx3 + https://github.com/nateshmbhat/pyttsx3 PisiLinux Community admins@pisilinux.org - MIT - ZPL + MPL2 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 + 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-pytz/pspec.xml + programming/language/python3/python3-pyttsx3/pspec.xml - python3-pytz - World Timezone Definitions for Python + python3-pyttsx3 + pyttsx3 is a text-to-speech conversion library in Python. python3 + espeak + python3-sphinx - /usr/lib - /usr/share/doc/python3-pytz + /usr/lib/python3* + /usr/share/doc/python3-pyttsx3 - - 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 + 2022-01-23 + 2.90 First release - Pisi Linux Community - admin@pisilinux.org + Ali Cengiz Kurt + alicengizkurt@gmail.com @@ -278704,6 +279201,111 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -279871,64 +280473,6 @@ complete albums that you have purchased from Amazon. - - - 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-sip @@ -280499,6 +281043,189 @@ complete albums that you have purchased from Amazon. + + + 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-4.3.0.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 + + + + + 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 @@ -280712,252 +281439,6 @@ complete albums that you have purchased from Amazon. - - - 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-4.3.0.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 - - - - - 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_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-sphinxcontrib-applehelp @@ -281129,56 +281610,6 @@ complete albums that you have purchased from Amazon. - - - 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-sphinxcontrib-log-cabinet @@ -281431,6 +281862,69 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -281908,6 +282402,58 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -283208,639 +283754,192 @@ complete albums that you have purchased from Amazon. - python-configobj - https://github.com/DiffSK/configobj + R-lang + http://www.r-project.org - Kamil Atlı - suvari@pisilinux.org + PisiLinux Community + admins@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 + 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 - python3-devel - python3-setuptools + 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 - programming/language/python3/python-configobj/pspec.xml + + R-3.4.1-parallel.patch + R-3.4.1-rmath-shared.patch + + programming/language/R-lang/pspec.xml - python-configobj + R - 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-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 + 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/python3.9/site-packages - /usr/share/doc/python-jsonpatch + /usr/lib/R + /usr/share/man + /usr/share/R + + System.Package + + + 99R + ld.so.conf + - - - 2022-01-09 - 1.32 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python-jsonschema - https://pypi.python.org/pypi/jsonschema - - Kamil Atlı - suvari@pisilinux.org - - BSD + + R-mathlib + Math library for R + R Mathlib kitaplığı 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 + R - /usr/bin - /usr/lib/python3.9/site-packages - /usr/share/doc/python-jsonschema + /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 - - 2022-01-09 - 3.2.0 - First release - Kamil Atlı - suvari@pisilinux.org + + 2021-02-27 + 3.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.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 + + 2020-03-15 + 3.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.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 + + 2019-04-06 + 3.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - - - - - 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 + + 2018-12-23 + 3.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - - - - - 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 + + 2018-09-09 + 3.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.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 + + 2018-07-08 + 3.5.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.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 + + 2018-02-01 + 3.4.3 + Release bump. + Ertuğrul Erata + ertugrulerata@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 + + 2017-12-01 + 3.4.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.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 + + 2017-06-08 + 3.4.0 + Version Bump + Mustafa Cinasal + muscnsl@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 + 2016-06-27 + 3.3.1 First release - Ali Cengiz Kurt - alicengizkurt@gmail.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/23/b1/672d496718562301ce2052b07196ca31874e4f1a497881ae44b2279a4e1d/pyalsaaudio-0.9.0.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/python* - /usr/share/doc/python-pyalsaaudio - - - - - 2022-01-23 - 0.9.0 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.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 + Ertuğrul Erata + ertugrulerata@gmail.com @@ -284723,39 +284822,250 @@ complete albums that you have purchased from Amazon. - cargo-c - https://github.com/lu-zero/cargo-c + gnu-efi + https://sourceforge.net/projects/gnu-efi/ - PisiLinux Community - admins@pisilinux.org + Ergün Salman + Poyraz76@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 + 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 - cargo-c + 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/share/doc + /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-11-02 - 0.9.5 + 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 + + + + + + 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 @@ -284878,134 +285188,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - appstream @@ -285182,6 +285364,134 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -286027,83 +286337,6 @@ complete albums that you have purchased from Amazon. - - - 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 - - - gom @@ -286175,6 +286408,92 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -286224,6 +286543,48 @@ complete albums that you have purchased from Amazon. + + + 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 @@ -286317,6 +286678,58 @@ complete albums that you have purchased from Amazon. + + + 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 + + + jsoncpp @@ -287352,80 +287765,6 @@ provide integrated access to the cloud providers services. - - - 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 - - - libev @@ -288603,6 +288942,56 @@ provide integrated access to the cloud providers services. + + + 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 @@ -288823,49 +289212,92 @@ provide integrated access to the cloud providers services. - libsocket - https://github.com/dermesser/libsocket + libunibreak + http://vimgadgets.sourceforge.net/libunibreak/ - fury - uglyside@yandex.ru + Pisi Linux Community + admin@pisilinux.org - BSD + zlib 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 + 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 - libsocket - - libgcc - + libunibreak /usr/lib /usr/share/doc - libsocket-devel + libunibreak-devel - libsocket + libunibreak /usr/include + /usr/lib/pkgconfig - 2020-12-22 - 2.5.0 - First build - fury - uglyside@yandex.ru + 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 @@ -289067,6 +289499,64 @@ provide integrated access to the cloud providers services. + + + 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 @@ -289844,6 +290334,58 @@ to create header files and sources from protocol files. + + + 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 @@ -290383,6 +290925,58 @@ to create header files and sources from protocol files. + + + 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 + + + wimlib @@ -290876,537 +291470,185 @@ to create header files and sources from protocol files. - gumbo-parser - https://github.com/google/gumbo-parser + http-parser + https://github.com/nodejs/http-parser - pisilinux community - admins@pisilinux.org + Blue Devil + bluedevil@sctzine.com - Apache-2 + MIT 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 - - - - - - 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 + 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 + - cmake + meson - programming/library/abseil-cpp/pspec.xml + programming/misc/http-parser/pspec.xml - abseil-cpp - - libgcc - - - /usr/lib - /usr/share/doc - - - - abseil-cpp-devel - Development files for abseil-cpp - - abseil-cpp - + http-parser + A http request/response parser for c. + /usr/share/doc/http-parser /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/lib + + 2021-10-28 + 2.9.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-12-10 - 20211102.0 - First release - PisiLinux Community - admins@pisilinux.org + 2020-02-08 + 2.9.3 + First pisi release. + Blue Devil + bluedevil@sctzine.com - gtksourceviewmm3 - https://wiki.gnome.org/Projects/GtkSourceView + libnice + https://nice.freedesktop.org PisiLinux Community admins@pisilinux.org - LGPL-2.1 + MPL-1.1 + LGPLv2.1 + app:console 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 + 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 - 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 + gnutls-devel + gobject-introspection-devel + gstreamer-devel - programming/library/gtksourceviewmm3/pspec.xml + programming/misc/libnice/pspec.xml - gtksourceviewmm3 + libnice - 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 - - - - - - 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 + gnutls + libxml2 + gstreamer /usr/bin /usr/lib /usr/share - /usr/share/man /usr/share/doc - jemalloc-devel - Development files for jemalloc + libnice-devel + Development files for libnice + libnice için geliştirme dosyaları - jemalloc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-20 - 5.2.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 - - - - - - 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 - - - - - - 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 + libnice + glib2-devel + gnutls-devel /usr/include /usr/lib/pkgconfig - /usr/lib/libxml++-2.6 - - 2021-12-18 - 2.42.1 - Fixed. - fury - uglyside@yandex.ru + + 2019-04-22 + 0.1.15 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - - - - - 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 + + 2017-06-09 + 0.1.14 + Version Bump + Kamil Atlı + suvari@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 + 2016-06-09 + 0.1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2021-11-22 - 2.6.1 - First build - fury - uglyside@yandex.ru + 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.3.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 + + + + + 2021-05-26 + 1.0.3 + First release + Pisi Linux Admins + admin@pisilinux.org @@ -291455,6 +291697,93 @@ to create header files and sources from protocol files. + + + 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 @@ -291561,93 +291890,6 @@ to create header files and sources from protocol files. - - - 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 - - - autoconf213 @@ -293099,56 +293341,6 @@ to create header files and sources from protocol files. - - - 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 - - - icu4c @@ -293695,90 +293887,6 @@ to create header files and sources from protocol files. - - - 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 - - - libassuan @@ -294140,100 +294248,6 @@ to create header files and sources from protocol files. - - - 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 - - - libdbusmenu @@ -294374,6 +294388,100 @@ to create header files and sources from protocol files. + + + 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 @@ -294909,6 +295017,90 @@ contacts, tasks, and calendar information. + + + 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 @@ -295131,53 +295323,46 @@ contacts, tasks, and calendar information. - libnice - https://nice.freedesktop.org + liblrdf + http://lrdf.sourceforge.net - PisiLinux Community - admins@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - MPL-1.1 - LGPLv2.1 - app:console + GPLv2 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 + 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 - glib2-devel - gnutls-devel - gobject-introspection-devel - gstreamer-devel + ladspa-sdk + raptor2-devel - programming/misc/libnice/pspec.xml + programming/misc/liblrdf/pspec.xml - libnice + liblrdf - glib2 - gnutls - libxml2 - gstreamer + raptor2 + ladspa-sdk - /usr/bin /usr/lib - /usr/share /usr/share/doc + /usr/share/ladspa - libnice-devel - Development files for libnice - libnice için geliştirme dosyaları + liblrdf-devel + Development files for liblrdf + liblrdf için geliştirme dosyaları - libnice - glib2-devel - gnutls-devel + liblrdf /usr/include @@ -295185,34 +295370,13 @@ contacts, tasks, and calendar information. - - 2019-04-22 - 0.1.15 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-06-09 - 0.1.14 - Version Bump + + 2012-10-09 + 0.6.1 + First release 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 - @@ -297256,54 +297420,6 @@ contacts, tasks, and calendar information. - - - 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.3.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 - - - - - 2021-05-26 - 1.0.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - npth @@ -299149,64 +299265,6 @@ contacts, tasks, and calendar information. - - - 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 - - - php @@ -299989,91 +300047,6 @@ contacts, tasks, and calendar information. - - - 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 - - - libgit2 @@ -300207,6 +300180,91 @@ contacts, tasks, and calendar information. + + + 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 @@ -302421,94 +302479,6 @@ contacts, tasks, and calendar information. - - - 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 - - - cln @@ -304028,6 +303998,94 @@ contacts, tasks, and calendar information. + + + 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 @@ -304869,6 +304927,78 @@ contacts, tasks, and calendar information. + + + 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 @@ -305695,78 +305825,6 @@ contacts, tasks, and calendar information. - - - 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 - - - opencv @@ -310771,124 +310829,6 @@ contacts, tasks, and calendar information. - - - 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 - - - yali @@ -311111,6 +311051,124 @@ contacts, tasks, and calendar information. + + + 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 @@ -311218,47 +311276,6 @@ contacts, tasks, and calendar information. - - - 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 - - - fwupd @@ -311445,6 +311462,47 @@ contacts, tasks, and calendar information. + + + 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 @@ -311920,83 +311978,6 @@ contacts, tasks, and calendar information. - - - 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 - - - pgadmin4 @@ -312134,6 +312115,83 @@ contacts, tasks, and calendar information. + + + 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 @@ -313336,63 +313394,6 @@ contacts, tasks, and calendar information. - - - 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 - - - clamav @@ -313498,6 +313499,63 @@ contacts, tasks, and calendar information. + + + 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 + + + areca @@ -318546,6 +318604,117 @@ contacts, tasks, and calendar information. + + + 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 @@ -318670,117 +318839,6 @@ contacts, tasks, and calendar information. - - - 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 - - - tree @@ -319163,6 +319221,113 @@ contacts, tasks, and calendar information. + + + 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 @@ -321032,113 +321197,6 @@ contacts, tasks, and calendar information. - - - 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-dummy @@ -323956,42 +324014,38 @@ contacts, tasks, and calendar information. - Xaw3d - http://freshmeat.net/projects/xaw3d/ + libXft + https://www.x.org/ PisiLinux Community admins@pisilinux.org - X11 + MIT 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 + 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 - libXt-devel - libXmu-devel - libXpm-devel + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel - - Xaw3d-1.6.1-3Dlabel.patch - Xaw3d-1.6.1-fontset.patch - Xaw3d-1.6.1-hsbar.patch - - x11/library/Xaw3d/pspec.xml + x11/library/libXft/pspec.xml - Xaw3d + libXft - libXt libX11 - libXmu - libXpm - libXext + freetype + fontconfig + libXrender /usr/lib @@ -323999,60 +324053,95 @@ contacts, tasks, and calendar information. - Xaw3d-devel - Development files for Xaw3d - Xaw3d için geliştirme dosyaları + libXft-devel + Development files for libXft + libXft için geliştirme dosyaları - Xaw3d - libXt-devel - libX11-devel - libXmu-devel - libXext-devel + libXft + xorg-proto + freetype-devel + fontconfig-devel + libXrender-devel - /usr/include + /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 - - 2020-01-10 - 1.6.3 - Rebuild + + 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-24 - 1.6.3 + 2019-10-25 + 2.3.3 Version bump. Mustafa Cinasal muscnsl@gmail.com 2018-07-25 - 1.6.2 - Rebuild + 2.3.2 + Rebuild. PisiLinux Community admin@pisilinux.org - 2017-02-05 - 1.6.2 + 2017-02-02 + 2.3.2 Rebuild - PisiLinux Community - admin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org 2016-04-30 - 1.6.2 + 2.3.2 Release bump PisiLinux Community admin@pisilinux.org - 2016-02-21 - 1.6.2 + 2014-08-31 + 2.3.2 First release Marcin Bojara marcin@pisilinux.org @@ -324432,3654 +324521,6 @@ contacts, tasks, and calendar information. - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - - - - 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 - - - libclc @@ -329118,6 +325559,101 @@ contacts, tasks, and calendar information. + + + 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 @@ -329231,6 +325767,128 @@ contacts, tasks, and calendar information. + + + 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 @@ -329437,6 +326095,144 @@ contacts, tasks, and calendar information. + + + 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 @@ -329794,6 +326590,1302 @@ contacts, tasks, and calendar information. + + + 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 @@ -330053,6 +328145,940 @@ contacts, tasks, and calendar information. + + + 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 @@ -330162,8 +329188,8 @@ contacts, tasks, and calendar information. - mesa-glu - http://www.mesa3d.org + libXt + https://www.x.org/ PisiLinux Community admins@pisilinux.org @@ -330171,121 +329197,970 @@ contacts, tasks, and calendar information. 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 + 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 - libglvnd-devel - libgcc + libICE-devel + libSM-devel + xorg-proto + libX11-devel + util-macros - x11/library/mesa-glu/pspec.xml + x11/library/libXt/pspec.xml - mesa-glu + libXt - libglvnd - libgcc + libICE + libSM + libX11 + /usr/bin /usr/lib + /usr/share/X11 + /usr/share/doc - mesa-glu-devel - Development files for mesa-glu - mesa-glu için geliştirme dosyaları + libXt-devel + Development files for libXt + libXt için geliştirme dosyaları - mesa-glu - mesa-devel + libXt + libICE-devel + libSM-devel + xorg-proto + libX11-devel - /usr/include + /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/man - mesa-glu-32bit - 32-bit shared libraries for mesa-glu - mesa-glu için 32-bit paylaşımlı kitaplıklar + libXt-32bit + 32-bit shared libraries for libXt + libXt için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libglvnd-32bit - libgcc + libX11-32bit + libSM-32bit - mesa-glu - libglvnd-32bit - libgcc + libXt + libX11-32bit + libSM-32bit + libICE-32bit /usr/lib32 - - 2021-06-25 - 9.0.2 - Version bump. + + 2021-03-14 + 1.2.0 + Rebuild. 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. + 2020-01-05 + 1.2.0 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-11-21 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org + 2019-10-20 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-07-27 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org + 2019-01-07 + 1.1.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-15 - 9.0.0 - Rebuild for new Mesa + 2018-07-24 + 1.1.5 + Rebuild PisiLinux Community admin@pisilinux.org - 2016-11-03 - 9.0.0 - Rebuild for new Mesa + 2017-02-02 + 1.1.5 + Rebuild PisiLinux Community admin@pisilinux.org 2016-04-30 - 9.0.0 + 1.1.5 Release bump PisiLinux Community admin@pisilinux.org - 2015-01-22 - 9.0.0 + 2015-08-15 + 1.1.5 First release - Ergün Salman - Poyraz76@pisilinux.org + 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 @@ -330939,6 +330814,135 @@ contacts, tasks, and calendar information. + + + 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 @@ -331105,127 +331109,6 @@ contacts, tasks, and calendar information. - - - 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 - - - wayland @@ -331430,6 +331313,361 @@ contacts, tasks, and calendar information. + + + 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 @@ -332142,186 +332380,6 @@ contacts, tasks, and calendar information. - - - 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 - - - - - - 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 - - - argyllcms @@ -336108,6 +336166,138 @@ contacts, tasks, and calendar information. + + + 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/v1.2.201.tar.gz + https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.201.tar.gz + + python3-lxml + libX11-devel + libXrandr-devel + wayland-devel + vulkan-headers + cmake + git + 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 + + + + + 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 @@ -336364,138 +336554,6 @@ contacts, tasks, and calendar information. - - - 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/v1.2.201.tar.gz - https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.201.tar.gz - - python3-lxml - libX11-devel - libXrandr-devel - wayland-devel - vulkan-headers - cmake - git - 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 - - - - - 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 - - - egl-wayland diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index a24eb6f0b1..d64e9bb3aa 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -ea2e28f7b8cc52aa937d6d1a26a00333daed0573 \ No newline at end of file +aca07326f1ebde2499a9754e0ce4abdf55d4107a \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index e3bfe6edf7..7191addaf2 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 78984c27fc..8781a5cb3f 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -4a77a8c03b7a508ec02e6f0e467d21cc7ccd4ce8 \ No newline at end of file +6056531669ddfe752015990014a5ea3cd964ab6f \ No newline at end of file