diff --git a/multimedia/editor/ogre-next/actions.py b/multimedia/editor/ogre-next/actions.py
new file mode 100644
index 0000000000..ee9f6d8640
--- /dev/null
+++ b/multimedia/editor/ogre-next/actions.py
@@ -0,0 +1,30 @@
+#!/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 shelltools
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ shelltools.system("cmake .. -DUSE_INTERNAL_TINYXML=OFF \
+ -DINSTALL_LIBENCFS=ON \
+ -DBUILD_SHARED_LIBS=ON \
+ -DCMAKE_INSTALL_PREFIX=/usr \
+ -G Ninja")
+
+def build():
+ shelltools.cd("build")
+ shelltools.system("ninja")
+
+def install():
+ shelltools.cd("build")
+ shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
+
+ shelltools.cd("..")
+ pisitools.dodoc("COPYING", "README*")
diff --git a/multimedia/editor/ogre-next/pspec.xml b/multimedia/editor/ogre-next/pspec.xml
new file mode 100644
index 0000000000..beb197ccc0
--- /dev/null
+++ b/multimedia/editor/ogre-next/pspec.xml
@@ -0,0 +1,107 @@
+
+
+
+
+ ogre-next
+ https://github.com/OGRECave/ogre-next
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ LGPLv2
+ library
+ Scene-oriented, flexible 3D engine written in C++
+ Ogre-Next is a 3D graphics rendering engine. Not to be confused with a game engine which provides Networking, Sound, Physics, etc.
+ https://github.com/OGRECave/ogre-next/archive/refs/tags/v2.3.0.tar.gz
+
+ git
+ cmake
+ ninja
+ doxygen
+ mesa-devel
+ zlib-devel
+ boost-devel
+ libXt-devel
+ vulkan-devel
+ openvr-devel
+ libX11-devel
+ dejavu-fonts
+ libXaw-devel
+ cppunit-devel
+ libsdl2-devel
+ zziplib-devel
+ openssl-devel
+ tinyxml-devel
+ python3-devel
+ libglvnd-devel
+ mesa-glu-devel
+ graphviz-devel
+ freetype-devel
+ rapidjson-devel
+ libXrandr-devel
+ FreeImage-devel
+
+
+
+
+ ogre-next
+
+ zlib
+ mesa
+ libXt
+ libgcc
+ openvr
+ libX11
+ libXaw
+ openssl
+ tinyxml
+ doxygen
+ cppunit
+ libsdl2
+ zziplib
+ freetype
+ graphviz
+ mesa-glu
+ libglvnd
+ FreeImage
+ rapidjson
+ libXrandr
+ dejavu-fonts
+
+
+ /usr/bin
+ /usr/lib/OGRE
+ /usr/lib/libOgreHlmsPbs.so*
+ /usr/lib/libOgreMeshLodGenerator.so*
+ /usr/lib/libOgreOverlay.so*
+ /usr/lib/libOgreSceneFormat.so*
+ /usr/lib/libOgreMain.so*
+ /usr/lib/libOgreHlmsUnlit.so*
+ /usr/share/OGRE
+ /usr/share/doc
+
+
+
+
+ ogre-next-devel
+ Development files for ogre-next
+
+ ogre-next
+
+
+ /usr/include
+ /usr/lib/OGRE/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-04-30
+ 2.3.0
+ First release.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/multimedia/editor/ogre-next/translations.xml b/multimedia/editor/ogre-next/translations.xml
new file mode 100644
index 0000000000..6e2c70a90f
--- /dev/null
+++ b/multimedia/editor/ogre-next/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ ogre-next
+ C++ ile yazılmış, sahne odaklı, esnek 3B motor
+ Ogre-Next, bir 3D grafik işleme motorudur. Ağ, Ses, Fizik vb. Sağlayan bir oyun motoruyla karıştırılmamalıdır.
+
+
diff --git a/multimedia/misc/openvr/actions.py b/multimedia/misc/openvr/actions.py
new file mode 100644
index 0000000000..706388797e
--- /dev/null
+++ b/multimedia/misc/openvr/actions.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
+ -DBUILD_SHARED=1 \
+ -DUSE_SYSTEM_JSONCPP=True")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+ #pisitools.domove("/usr/share/pkgconfig/openvr.pc","/usr/lib/pkgconfig")
+ #pisitools.removeDir("/usr/share/pkgconfig")
+
+ pisitools.dodoc("LICENSE", "README.md")
diff --git a/multimedia/misc/openvr/files/0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch b/multimedia/misc/openvr/files/0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch
new file mode 100644
index 0000000000..2c43b6f1ec
--- /dev/null
+++ b/multimedia/misc/openvr/files/0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch
@@ -0,0 +1,161 @@
+From ccdcd5a741bead75f60325f97d59ccdc4f082bac Mon Sep 17 00:00:00 2001
+From: Richard Musil
+Date: Thu, 25 Feb 2021 08:52:44 +0100
+Subject: [PATCH] Fixed includes and asserts in v1.6.18 release.
+
+---
+ src/openvr_api_public.cpp | 10 +++++-----
+ src/vrcommon/dirtools_public.cpp | 6 +++---
+ src/vrcommon/envvartools_public.cpp | 4 ++--
+ src/vrcommon/pathtools_public.cpp | 6 +++---
+ src/vrcommon/sharedlibtools_public.cpp | 2 +-
+ src/vrcommon/strtools_public.cpp | 8 ++++----
+ src/vrcommon/vrpathregistry_public.cpp | 12 ++++++------
+ 7 files changed, 24 insertions(+), 24 deletions(-)
+
+diff --git a/src/openvr_api_public.cpp b/src/openvr_api_public.cpp
+index 98ba762..efe6c16 100644
+--- a/src/openvr_api_public.cpp
++++ b/src/openvr_api_public.cpp
+@@ -2,12 +2,12 @@
+ #define VR_API_EXPORT 1
+ #include "openvr.h"
+ #include "ivrclientcore.h"
+-#include
+-#include
+-#include
++#include "vrcommon/pathtools_public.h"
++#include "vrcommon/sharedlibtools_public.h"
++#include "vrcommon/envvartools_public.h"
+ #include "hmderrors_public.h"
+-#include
+-#include
++#include "vrcommon/strtools_public.h"
++#include "vrcommon/vrpathregistry_public.h"
+ #include
+
+ using vr::EVRInitError;
+diff --git a/src/vrcommon/dirtools_public.cpp b/src/vrcommon/dirtools_public.cpp
+index e5fccc1..37828b6 100644
+--- a/src/vrcommon/dirtools_public.cpp
++++ b/src/vrcommon/dirtools_public.cpp
+@@ -1,7 +1,7 @@
+ //========= Copyright Valve Corporation ============//
+-#include
+-#include
+-#include
++#include "vrcommon/dirtools_public.h"
++#include "vrcommon/strtools_public.h"
++#include "vrcommon/pathtools_public.h"
+
+ #include
+ #include
+diff --git a/src/vrcommon/envvartools_public.cpp b/src/vrcommon/envvartools_public.cpp
+index b6de2a8..77f43ff 100644
+--- a/src/vrcommon/envvartools_public.cpp
++++ b/src/vrcommon/envvartools_public.cpp
+@@ -1,6 +1,6 @@
+ //========= Copyright Valve Corporation ============//
+-#include
+-#include
++#include "vrcommon/envvartools_public.h"
++#include "vrcommon/strtools_public.h"
+ #include
+ #include
+ #include
+diff --git a/src/vrcommon/pathtools_public.cpp b/src/vrcommon/pathtools_public.cpp
+index 2503ec6..fe932f4 100644
+--- a/src/vrcommon/pathtools_public.cpp
++++ b/src/vrcommon/pathtools_public.cpp
+@@ -1,6 +1,6 @@
+ //========= Copyright Valve Corporation ============//
+-#include
+-#include
++#include "vrcommon/strtools_public.h"
++#include "vrcommon/pathtools_public.h"
+
+ #if defined( _WIN32)
+ #include
+@@ -66,7 +66,7 @@ std::string Path_GetExecutablePath()
+ return "";
+ }
+ #else
+- AssertMsg( false, "Implement Plat_GetExecutablePath" );
++ //AssertMsg( false, "Implement Plat_GetExecutablePath" );
+ return "";
+ #endif
+
+diff --git a/src/vrcommon/sharedlibtools_public.cpp b/src/vrcommon/sharedlibtools_public.cpp
+index cce1528..d80d6fb 100644
+--- a/src/vrcommon/sharedlibtools_public.cpp
++++ b/src/vrcommon/sharedlibtools_public.cpp
+@@ -1,5 +1,5 @@
+ //========= Copyright Valve Corporation ============//
+-#include
++#include "vrcommon/sharedlibtools_public.h"
+ #include
+
+ #if defined(_WIN32)
+diff --git a/src/vrcommon/strtools_public.cpp b/src/vrcommon/strtools_public.cpp
+index 343ec42..3193f7e 100644
+--- a/src/vrcommon/strtools_public.cpp
++++ b/src/vrcommon/strtools_public.cpp
+@@ -1,5 +1,6 @@
+ //========= Copyright Valve Corporation ============//
+-#include
++#include "vrcommon/strtools_public.h"
++//#include "vrcommon/assert.h"
+ #include
+ #include
+ #include
+@@ -9,7 +10,6 @@
+ #include
+ #include
+ #include
+-#include
+
+ #if defined( _WIN32 )
+ #include
+@@ -128,7 +128,7 @@ std::string Format( const char *pchFormat, ... )
+ // Something went fairly wrong
+ if ( unSize < 0 )
+ {
+- AssertMsg( false, "Format string parse failure" );
++ //AssertMsg( false, "Format string parse failure" );
+ return "";
+ }
+
+@@ -149,7 +149,7 @@ std::string Format( const char *pchFormat, ... )
+ // Double check, just in case
+ if ( unSize < 0 )
+ {
+- AssertMsg( false, "Format string parse failure" );
++ //AssertMsg( false, "Format string parse failure" );
+ return "";
+ }
+
+diff --git a/src/vrcommon/vrpathregistry_public.cpp b/src/vrcommon/vrpathregistry_public.cpp
+index 2746bdb..b8a545f 100644
+--- a/src/vrcommon/vrpathregistry_public.cpp
++++ b/src/vrcommon/vrpathregistry_public.cpp
+@@ -1,11 +1,11 @@
+ //========= Copyright Valve Corporation ============//
+
+-#include
+-#include
+-#include
+-#include
+-#include
+-#include
++#include "vrcommon/vrpathregistry_public.h"
++#include "json/json.h"
++#include "vrcommon/pathtools_public.h"
++#include "vrcommon/envvartools_public.h"
++#include "vrcommon/strtools_public.h"
++#include "vrcommon/dirtools_public.h"
+
+ #if defined( WIN32 )
+ #include
+--
+2.30.2
+
diff --git a/multimedia/misc/openvr/files/fix-missing-stdarg-h.patch b/multimedia/misc/openvr/files/fix-missing-stdarg-h.patch
new file mode 100644
index 0000000000..86060154e0
--- /dev/null
+++ b/multimedia/misc/openvr/files/fix-missing-stdarg-h.patch
@@ -0,0 +1,11 @@
+diff -Nur openvr-1.16.8/src/vrcommon/strtools_public.cpp new/src/vrcommon/strtools_public.cpp
+--- openvr-1.16.8/src/vrcommon/strtools_public.cpp 2021-03-28 20:07:17.901245911 +0200
++++ new/src/vrcommon/strtools_public.cpp 2021-03-28 20:08:25.491270144 +0200
+@@ -1,6 +1,7 @@
+ //========= Copyright Valve Corporation ============//
+ #include "vrcommon/strtools_public.h"
+ //#include "vrcommon/assert.h"
++#include
+ #include
+ #include
+ #include
diff --git a/multimedia/misc/openvr/files/install-library.patch b/multimedia/misc/openvr/files/install-library.patch
new file mode 100644
index 0000000000..a69379172f
--- /dev/null
+++ b/multimedia/misc/openvr/files/install-library.patch
@@ -0,0 +1,22 @@
+diff -Nur old/src/CMakeLists.txt new/src/CMakeLists.txt
+--- old/src/CMakeLists.txt 2021-03-28 20:16:17.261479252 +0200
++++ new/src/CMakeLists.txt 2021-03-28 20:19:31.379804791 +0200
+@@ -68,6 +68,9 @@
+ # Build the library.
+ if(BUILD_SHARED)
+ add_library(${LIBNAME} SHARED ${SOURCE_FILES})
++ set_target_properties(${LIBNAME} PROPERTIES
++ VERSION ${OPENVR_VERSION})
++
+ elseif(BUILD_FRAMEWORK)
+ set( LIBNAME "OpenVR" )
+ add_library( ${LIBNAME}
+@@ -101,7 +104,7 @@
+ target_link_libraries(${LIBNAME} ${EXTRA_LIBS} ${CMAKE_DL_LIBS})
+ target_include_directories(${LIBNAME} PUBLIC ${OPENVR_HEADER_DIR})
+
+-install(TARGETS ${LIBNAME} DESTINATION lib)
++install(TARGETS ${LIBNAME} DESTINATION lib${LIB_SUFFIX})
+ install(FILES ${PUBLIC_HEADER_FILES} DESTINATION include/openvr)
+
+ # Generate a .pc file for linux environments
diff --git a/multimedia/misc/openvr/pspec.xml b/multimedia/misc/openvr/pspec.xml
new file mode 100644
index 0000000000..e6edcc37c4
--- /dev/null
+++ b/multimedia/misc/openvr/pspec.xml
@@ -0,0 +1,65 @@
+
+
+
+
+ openvr
+ https://github.com/ValveSoftware/openvr
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ MIT
+ app
+ API and runtime that allows access to VR hardware from multiple vendors
+ OpenVR is an API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting. This repository is an SDK that contains the API and samples. The runtime is under SteamVR in Tools on Steam.
+ https://github.com/ValveSoftware/openvr/archive/refs/tags/v1.16.8.tar.gz
+
+ cmake
+ jsoncpp-devel
+ libglvnd-devel
+ rapidjson-devel
+
+
+ 0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch
+ fix-missing-stdarg-h.patch
+ install-library.patch
+
+
+
+
+ openvr
+
+ libgcc
+ jsoncpp
+ libglvnd
+ rapidjson
+
+
+ /usr/lib/libopenvr_api.so*
+ /usr/share/doc
+
+
+
+
+ openvr-devel
+ Development files for openvr
+
+ openvr
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/share/pkgconfig
+
+
+
+
+
+ 2022-05-01
+ 1.16.8
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/multimedia/misc/openvr/translations.xml b/multimedia/misc/openvr/translations.xml
new file mode 100644
index 0000000000..1a464010f2
--- /dev/null
+++ b/multimedia/misc/openvr/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ openvr
+ Birden çok satıcıdan VR donanımına erişim sağlayan API ve çalışma zamanı
+ OpenVR, uygulamaların hedefledikleri donanım hakkında özel bilgiye sahip olmalarını gerektirmeden birden fazla satıcıdan VR donanımına erişime izin veren bir API ve çalışma zamanıdır. Bu depo, API ve örnekleri içeren bir SDK'dır. Çalışma zamanı, Steam'deki Araçlar'da SteamVR altındadır.
+
+
+
+ openvr-devel
+ openvr için geliştirme dosyaları
+
+
diff --git a/network/mail/thunderbird/pspec.xml b/network/mail/thunderbird/pspec.xml
index 0396032367..b8a5ea0133 100644
--- a/network/mail/thunderbird/pspec.xml
+++ b/network/mail/thunderbird/pspec.xml
@@ -15,7 +15,7 @@
app:gui
The Stand-Alone Mozilla Mail Component
Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform.
- http://ftp.mozilla.org/pub/thunderbird/releases/91.2.1/source/thunderbird-91.2.1.source.tar.xz
+ http://ftp.mozilla.org/pub/thunderbird/releases/91.8.1/source/thunderbird-91.8.1.source.tar.xz
pisilinux/mozconfig
@@ -470,6 +470,13 @@
+
+ 2022-05-01
+ 91.8.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-31
91.2.1
diff --git a/pisi-index.xml b/pisi-index.xml
index 833affb377..a3bbabafc6 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -33378,331 +33378,253 @@ services for numerous locations.
- kcron
- https://www.kde.org
+ kdb
+ http://www.kexi-project.org/
- PisiLinux Community
- admins@pisilinux.org
+ Alihan Öztürk
+ alihan@pisilinux.org
- GPLv2
+ 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.2/src/kcron-21.12.2.tar.xz
+ A database connectivity and creation framework for various database vendors.
+ Çeşitli veritabanı üreticileri için veritabanı bağlantısı oluşturma çerçevesi.
+ A database connectivity and creation framework for various database vendors
+ https://download.kde.org/stable/kdb/src/kdb-3.2.0.tar.xz
extra-cmake-modules
- qt5-base-devel
+ qt5-base-devel
+ qt5-linguist
+ kcoreaddons-devel
+ icu4c-devel
ki18n-devel
- kdoctools-devel
- kiconthemes-devel
- kio-devel
- kxmlgui-devel
- kiconthemes-devel
+ sqlite-devel
+ mariadb-lib
+ mariadb-client
+ postgresql-lib
- desktop/kde/applications/kcron/pspec.xml
+
+ kdb-3.2.0-build-w-pg12.patch
+ kdb-3.2.0-cmake-pg12.patch
+ kdb-3.2.0-cmake-pg13.patch
+ kdb-3.2.0-qt-5.15.patch
+ kdb-3.2.0-KDEInstallDirs.patch
+
+ desktop/kde/applications/kdb/pspec.xml
- kcron
+ kdb
+ A database connectivity and creation framework for various database vendors.
- kio
- ki18n
+ icu4c
libgcc
- qt5-base
+ sqlite
+ qt5-base
kcoreaddons
- kiconthemes
- kconfigwidgets
- kwidgetsaddons
+ mariadb-lib
+ postgresql-lib
- /etc/xdg
- /usr/share
- /usr/lib
- /usr/share/doc
+ /usr/bin
+ /usr/lib/qt5
+ /usr/lib/libKDb3*
+ /usr/share/locale
+
+
+
+ kdb-devel
+ Development files for kdb.
+
+ kdb
+
+
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+ /usr/include
-
- kdeadmin
-
-
- kdeadmin
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
+ 2022-01-10
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
+ 2021-10-15
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
+ 2021-09-13
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
+ 2021-06-16
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
+ 2021-03-10
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
+ 2020-09-12
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
+ 2020-06-11
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
muscnsl@gmail.com
+ 2020-05-06
+ 3.2.0
+ Rebuild.
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 3.2.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 3.2.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 3.2.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-07-22
+ 3.2.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 3.2.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-02-14
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2019-01-11
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
+ 2018-09-10
+ 3.1.0
+ Version bump
+ Mustafa Cinasl
+ muscnsl@gmail.com
+
+
2018-08-11
- 18.04.1
+ 3.0.2
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
+ 3.0.2
+ Rebuild
+ Mustafa Cinasl
muscnsl@gmail.com
-
- 2017-12-15
- 17.12.0
- Version bump.
- Mustafa Cinasal
+
+ 2017-10-14
+ 3.0.2
+ Version bump
+ Mustafa Cinasl
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
+ 3.0.93
Version bump
Ali Algul
aligulle3801@gmail.com
-
- 2017-06-29
- 17.04.2
+
+ 2017-06-30
+ 3.0.1
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
+ 2017-01-06
+ 3.0.0
First release
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
+ Alihan Öztürk
+ alihan@pisilinux.org
@@ -38821,363 +38743,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.2/src/kdiamond-21.12.2.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-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 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
@@ -39489,6 +39054,319 @@ services for numerous locations.
+
+
+ kfind
+ http://kde.org/applications/utilities/kfind/
+
+ Stefan Gronewold
+ groni@pisilinux.org
+
+ GPLv2
+ desktop.kde.utils
+ Find Files/Folders
+ Find Files/Folders
+ mirrors://kde/stable/release-service/21.12.2/src/kfind-21.12.2.tar.xz
+
+ extra-cmake-modules
+ gettext-devel
+ glibc-devel
+ karchive-devel
+ kdesignerplugin
+ kemoticons-devel
+ kitemmodels-devel
+ kinit-devel
+ kunitconversion-devel
+ kdelibs4-support-devel
+ kdoctools-devel
+ python-devel
+ kfilemetadata-devel
+ qt5-base-devel
+
+ desktop/kde/applications/kfind/pspec.xml
+
+
+ kfind
+ Find Files/Folders
+
+ karchive
+ kdelibs4-support
+ libgcc
+ qt5-base
+ kio
+ ki18n
+ kconfig
+ kxmlgui
+ kservice
+ kcompletion
+ kcoreaddons
+ kjobwidgets
+ kconfigwidgets
+ kfilemetadata
+ kwidgetsaddons
+
+
+ /etc/xdg
+ /usr/bin
+ /usr/share
+ /usr/share/doc
+ /usr/share/man/man1
+
+
+ kde-baseapps
+
+
+ kde-baseapps
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-19
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-03
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-22
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-03
+ 16.11.90
+ First Release
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+
kfloppy
@@ -45290,701 +45168,6 @@ services for numerous locations.
-
-
- kleopatra
- https://www.kde.org/applications/utilities/kleopatra/
-
- Alihan Öztürk
- alihan@pisilinux.org
-
- GPLv2
- FDL-1.1
- LGPLv2
- app:gui
- desktop.kde.applications
- Certificate Manager and Unified Crypto GUI
- Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers.
- mirrors://kde/stable/release-service/21.12.2/src/kleopatra-21.12.2.tar.xz
-
- extra-cmake-modules
- qt5-base-devel
- kcodecs-devel
- kconfig-devel
- kconfigwidgets-devel
- kcoreaddons-devel
- ki18n-devel
- kiconthemes-devel
- kwidgetsaddons-devel
- kwindowsystem-devel
- kxmlgui-devel
- kdbusaddons-devel
- kcmutils-devel
- libkleo-devel
- kdoctools-devel
- kmime-devel
- libassuan-devel
- gpgme-devel
- gpgme-qt5-devel
- kitemmodels-devel
- ktextwidgets-devel
- knotifications-devel
-
- desktop/kde/applications/kleopatra/pspec.xml
-
-
- kleopatra
- Certificate Manager and Unified Crypto GUI
-
- gpgme
- ki18n
- kmime
- libgcc
- kconfig
- kxmlgui
- libkleo
- kcmutils
- qt5-base
- libassuan
- kcoreaddons
- kdbusaddons
- kiconthemes
- ktextwidgets
- libgpg-error
- kwindowsystem
- kconfigwidgets
- knotifications
- kwidgetsaddons
-
-
- /usr/bin
- /etc
- /usr/lib
- /usr/share
- /usr/share/doc
-
-
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-15
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-15
- 17.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-16
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-07-01
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2017-03-09
- 16.12.0
- Rebuild for new Toolchain.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-25
- 16.12.0
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-11-27
- 16.08.3
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-10-22
- 16.08.2
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-10-20
- 16.08.1
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-07-31
- 16.04.3
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
- 2016-06-09
- 16.04.0
- Firs release
- Alihan Öztürk
- alihan@pisilinux.org
-
-
-
-
-
- klettres
- https://www.kde.org/applications/education/klettres/
-
- PisiLinux Community
- admins@pisilinux.org
-
- GPLv2
- app:gui
- desktop.kde.edu
- An alphabet learning application
- Alfabe öğrenme uygulaması
- KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language.
- KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir.
- klettres
- mirrors://kde/stable/release-service/21.12.2/src/klettres-21.12.2.tar.xz
-
- qt5-base-devel
- qt5-svg-devel
- kdoctools-devel
- extra-cmake-modules
- kcompletion-devel
- kemoticons-devel
- kitemmodels-devel
- ki18n-devel
- knewstuff-devel
- kwidgetsaddons-devel
- kconfigwidgets-devel
- kcoreaddons-devel
- kconfig-devel
- kxmlgui-devel
- kcrash-devel
- qt5-phonon-devel
- kpackage-devel
-
- desktop/kde/applications/klettres/pspec.xml
-
-
- klettres
-
- qt5-base
- qt5-svg
- qt5-phonon
- knewstuff
- ki18n
- kcrash
- kconfig
- kxmlgui
- kcompletion
- kcoreaddons
- kconfigwidgets
- kwidgetsaddons
- libgcc
-
-
- /usr/share/doc
- /usr/bin
- /usr/share
- /etc/xdg
-
-
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-11
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-15
- 17.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-14
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-29
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2017-03-09
- 16.12.0
- Rebuild for new Toolchain.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-23
- 16.12.0
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-11-27
- 16.08.3
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-10-22
- 16.08.2
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-10-20
- 16.08.1
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-07-31
- 16.04.3
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
- 2016-05-19
- 16.04.0
- Version bump.
- Burak Ertürk
- burakerturk@pisilinux.org
-
-
- 2016-03-24
- 15.12.3
- First release
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
-
bovo
@@ -46699,251 +45882,1036 @@ services for numerous locations.
- kdb
- http://www.kexi-project.org/
+ kcron
+ https://www.kde.org
- Alihan Öztürk
- alihan@pisilinux.org
+ PisiLinux Community
+ admins@pisilinux.org
- GPLv2+
+ GPLv2
app:gui
desktop.kde.applications
- A database connectivity and creation framework for various database vendors.
- Çeşitli veritabanı üreticileri için veritabanı bağlantısı oluşturma çerçevesi.
- A database connectivity and creation framework for various database vendors
- https://download.kde.org/stable/kdb/src/kdb-3.2.0.tar.xz
+ 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.2/src/kcron-21.12.2.tar.xz
extra-cmake-modules
- qt5-base-devel
- qt5-linguist
- kcoreaddons-devel
- icu4c-devel
+ qt5-base-devel
ki18n-devel
- sqlite-devel
- mariadb-lib
- mariadb-client
- postgresql-lib
+ kdoctools-devel
+ kiconthemes-devel
+ kio-devel
+ kxmlgui-devel
+ kiconthemes-devel
-
- kdb-3.2.0-build-w-pg12.patch
- kdb-3.2.0-cmake-pg12.patch
- kdb-3.2.0-cmake-pg13.patch
- kdb-3.2.0-qt-5.15.patch
- kdb-3.2.0-KDEInstallDirs.patch
-
- desktop/kde/applications/kdb/pspec.xml
+ desktop/kde/applications/kcron/pspec.xml
- kdb
- A database connectivity and creation framework for various database vendors.
+ kcron
- icu4c
+ kio
+ ki18n
libgcc
- sqlite
- qt5-base
+ qt5-base
kcoreaddons
- mariadb-lib
- postgresql-lib
+ kiconthemes
+ kconfigwidgets
+ kwidgetsaddons
- /usr/bin
- /usr/lib/qt5
- /usr/lib/libKDb3*
- /usr/share/locale
-
-
-
- kdb-devel
- Development files for kdb.
-
- kdb
-
-
- /usr/lib/cmake
- /usr/lib/pkgconfig
- /usr/include
+ /etc/xdg
+ /usr/share
+ /usr/lib
+ /usr/share/doc
+
+ kdeadmin
+
+
+ kdeadmin
+
-
- 2022-01-10
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2021-10-15
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2021-09-13
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2021-06-16
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2021-03-10
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2020-09-12
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2020-06-11
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2020-05-06
- 3.2.0
- Rebuild.
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2020-03-30
- 3.2.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2020-02-02
- 3.2.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-09-15
- 3.2.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-07-22
- 3.2.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-04-18
- 3.2.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-03-11
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-02-14
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2019-01-11
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2018-12-26
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2018-11-08
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2018-10-18
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2018-09-10
- 3.1.0
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2018-08-11
- 3.0.2
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-02-03
- 3.0.2
- Rebuild
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2017-10-14
- 3.0.2
- Version bump
- Mustafa Cinasl
- muscnsl@gmail.com
-
-
- 2017-07-17
- 3.0.93
- Version bump
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-30
- 3.0.1
+
+ 2022-02-26
+ 21.12.2
Version bump.
Kamil Atlı
suvari@pisilinux.org
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 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
+
- 2017-01-06
- 3.0.0
+ 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.2/src/kdiamond-21.12.2.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-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-12
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-15
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-15
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump.
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-09
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-23
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-27
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-20
+ 16.08.1
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-05-19
+ 16.04.0
+ Version bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2016-03-20
+ 15.12.3
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
+
+
+ kleopatra
+ https://www.kde.org/applications/utilities/kleopatra/
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ FDL-1.1
+ LGPLv2
+ app:gui
+ desktop.kde.applications
+ Certificate Manager and Unified Crypto GUI
+ Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers.
+ mirrors://kde/stable/release-service/21.12.2/src/kleopatra-21.12.2.tar.xz
+
+ extra-cmake-modules
+ qt5-base-devel
+ kcodecs-devel
+ kconfig-devel
+ kconfigwidgets-devel
+ kcoreaddons-devel
+ ki18n-devel
+ kiconthemes-devel
+ kwidgetsaddons-devel
+ kwindowsystem-devel
+ kxmlgui-devel
+ kdbusaddons-devel
+ kcmutils-devel
+ libkleo-devel
+ kdoctools-devel
+ kmime-devel
+ libassuan-devel
+ gpgme-devel
+ gpgme-qt5-devel
+ kitemmodels-devel
+ ktextwidgets-devel
+ knotifications-devel
+
+ desktop/kde/applications/kleopatra/pspec.xml
+
+
+ kleopatra
+ Certificate Manager and Unified Crypto GUI
+
+ gpgme
+ ki18n
+ kmime
+ libgcc
+ kconfig
+ kxmlgui
+ libkleo
+ kcmutils
+ qt5-base
+ libassuan
+ kcoreaddons
+ kdbusaddons
+ kiconthemes
+ ktextwidgets
+ libgpg-error
+ kwindowsystem
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+
+
+ /usr/bin
+ /etc
+ /usr/lib
+ /usr/share
+ /usr/share/doc
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-15
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-16
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-07-01
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-09
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-25
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-27
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-20
+ 16.08.1
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-06-09
+ 16.04.0
+ Firs release
Alihan Öztürk
alihan@pisilinux.org
@@ -46951,315 +46919,1736 @@ services for numerous locations.
- kfind
- http://kde.org/applications/utilities/kfind/
+ kontact
+ https://community.kde.org/KDE_PIM
Stefan Gronewold
groni@pisilinux.org
- GPLv2
- desktop.kde.utils
- Find Files/Folders
- Find Files/Folders
- mirrors://kde/stable/release-service/21.12.2/src/kfind-21.12.2.tar.xz
+ 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.2/src/kontact-21.12.2.tar.xz
+ boost-devel
extra-cmake-modules
- gettext-devel
- glibc-devel
- karchive-devel
- kdesignerplugin
- kemoticons-devel
- kitemmodels-devel
- kinit-devel
- kunitconversion-devel
- kdelibs4-support-devel
kdoctools-devel
- python-devel
- kfilemetadata-devel
- qt5-base-devel
+ 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/kfind/pspec.xml
+ desktop/kde/applications/kontact/pspec.xml
- kfind
- Find Files/Folders
+ kontact
+ KDE Personal Information Manager
- karchive
- kdelibs4-support
- libgcc
- qt5-base
kio
ki18n
+ kcrash
+ kparts
+ libgcc
kconfig
kxmlgui
+ kcmutils
kservice
+ qt5-base
+ libkdepim
+ kguiaddons
kcompletion
kcoreaddons
- kjobwidgets
+ kiconthemes
+ grantleetheme
+ kwindowsystem
+ qt5-webengine
kconfigwidgets
- kfilemetadata
kwidgetsaddons
+ kontactinterface
/etc/xdg
/usr/bin
/usr/share
+ /usr/lib
+ /usr/lib/qt5
/usr/share/doc
- /usr/share/man/man1
-
- kde-baseapps
-
-
- kde-baseapps
-
-
+
2022-02-26
21.12.2
Version bump.
Kamil Atlı
suvari@pisilinux.org
-
+
2022-01-10
21.12.1
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2021-10-15
21.08.2
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2021-09-13
21.08.1
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2021-06-16
21.04.2
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2021-05-09
21.04.0
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2021-03-10
20.12.3
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2020-09-13
20.08.1
- Version bump
+ Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2020-06-11
20.04.2
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2020-05-06
20.04.0
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2020-03-30
19.12.3
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2020-02-02
19.12.1
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-09-15
19.08.1
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-07-23
19.04.3
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-04-18
19.04.0
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-03-11
18.12.3
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-02-08
18.12.2
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2019-01-12
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
+
+ 2018-04-27
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-02-03
+
+ 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-19
+
+ 2017-10-16
17.08.2
Version bump.
Mustafa Cinasal
muscnsl@gmail.com
-
+
2017-09-14
17.08.1
- Version bump
+ 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.2/src/ksystemlog-21.12.2.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-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
2017-06-29
17.04.2
Version bump.
Kamil Atlı
suvari@pisilinux.org
-
+
2017-03-03
16.12.0
Rebuild for new Toolchain.
Stefan Gronewold(groni)
groni@pisilinux.org
-
- 2016-12-22
+
+ 2016-12-21
16.12.0
Version bump.
Stefan Gronewold(groni)
groni@pisilinux.org
-
- 2016-12-03
- 16.11.90
- First Release
+
+ 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.2/src/kwordquiz-21.12.2.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-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 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.2/src/lokalize-21.12.2.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-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-07-01
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-03
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-21
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-29
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-12
+ 16.08.1
+ Version bump.
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-05-23
+ 16.04.0
+ Version bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2016-03-24
+ 15.12.3
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
+
+
+ klettres
+ https://www.kde.org/applications/education/klettres/
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.kde.edu
+ An alphabet learning application
+ Alfabe öğrenme uygulaması
+ KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language.
+ KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir.
+ klettres
+ mirrors://kde/stable/release-service/21.12.2/src/klettres-21.12.2.tar.xz
+
+ qt5-base-devel
+ qt5-svg-devel
+ kdoctools-devel
+ extra-cmake-modules
+ kcompletion-devel
+ kemoticons-devel
+ kitemmodels-devel
+ ki18n-devel
+ knewstuff-devel
+ kwidgetsaddons-devel
+ kconfigwidgets-devel
+ kcoreaddons-devel
+ kconfig-devel
+ kxmlgui-devel
+ kcrash-devel
+ qt5-phonon-devel
+ kpackage-devel
+
+ desktop/kde/applications/klettres/pspec.xml
+
+
+ klettres
+
+ qt5-base
+ qt5-svg
+ qt5-phonon
+ knewstuff
+ ki18n
+ kcrash
+ kconfig
+ kxmlgui
+ kcompletion
+ kcoreaddons
+ kconfigwidgets
+ kwidgetsaddons
+ libgcc
+
+
+ /usr/share/doc
+ /usr/bin
+ /usr/share
+ /etc/xdg
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-09
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-23
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-27
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-20
+ 16.08.1
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-05-19
+ 16.04.0
+ Version bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2016-03-24
+ 15.12.3
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
@@ -47624,1350 +49013,6 @@ services for numerous locations.
-
-
- konversation
- https://www.kde.org
-
- Pisi Linux Admins
- admin@pisilinux.org
-
- LGPLv2
- app:gui
- desktop.kde.applications
- A user friendly IRC client for KDE
- Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform.
- mirrors://kde/stable/konversation/1.7.7/src/konversation-1.7.7.tar.xz
-
- qt5-base-devel
- qt5-phonon-devel
- extra-cmake-modules
- kdoctools-devel
- kitemviews-devel
- kbookmarks-devel
- kconfig-devel
- kconfigwidgets-devel
- kcoreaddons-devel
- kemoticons-devel
- ki18n-devel
- kidletime-devel
- knotifyconfig-devel
- kio-devel
- kparts-devel
- solid-devel
- sonnet-devel
- kwallet-devel
- kwidgetsaddons-devel
- kglobalaccel-devel
- kdbusaddons-devel
- knotifications-devel
- kwindowsystem-devel
- kiconthemes-devel
- karchive-devel
- qca2-qt5-devel
- python3-devel
- gettext-devel
- docbook-xsl
- kcrash-devel
-
- desktop/kde/applications/konversation/pspec.xml
-
-
- konversation
-
- qt5-base
- qca2-qt5
- kemoticons
- kidletime
- knotifyconfig
- kparts
- kio
- kcrash
- libgcc
- ki18n
- sonnet
- kcodecs
- kconfig
- kwallet
- kxmlgui
- karchive
- kservice
- kbookmarks
- kitemviews
- qt5-phonon
- kcompletion
- kcoreaddons
- kdbusaddons
- kiconthemes
- kglobalaccel
- ktextwidgets
- kwindowsystem
- kconfigwidgets
- knotifications
- kwidgetsaddons
-
-
- /usr/bin
- /usr/share
- /usr/share/locale
- /usr/share/doc
-
-
-
-
- 2022-01-10
- 1.7.7
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 1.7.7
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 1.7.7
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 1.7.7
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 1.7.7
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-12
- 1.7.5
- Rebuild.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 1.7.5
- Rebuild.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 1.7.5
- Rebuild.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 1.7.5
- Rebuild.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-07
- 1.7.5
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-17
- 1.7.5
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-11
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-15
- 17.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-14
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump.
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-29
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2017-05-10
- 16.12.0
- Rebuild for new Toolchain.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-25
- 1.6.2
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-05-28
- 1.6.0
- Release bump
- Stefan Gronewold (groni)
- groni@pisilinux.org
-
-
- 2016-05-08
- 1.6.0
- First release
- Stefan Gronewold (groni)
- groni@pisilinux.org
-
-
-
-
-
- ktimer
- http://kde.org/applications/utilities/ktimer
-
- PisiLinux Community
- admins@pisilinux.org
-
- GPLv2
- app:gui
- desktop.kde.utils
- A countdown launcher
- A countdown launcher
- KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped.
- KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped.
- ktimer
- mirrors://kde/stable/release-service/21.12.2/src/ktimer-21.12.2.tar.xz
-
- qt5-base-devel
- kdoctools-devel
- cmake
- extra-cmake-modules
- ki18n-devel
- kwidgetsaddons-devel
- kio-devel
- kiconthemes-devel
- kdbusaddons-devel
- knotifications-devel
- mesa-devel
-
- desktop/kde/applications/ktimer/pspec.xml
-
-
- ktimer
-
- qt5-base
- kio
- ki18n
- libgcc
- kconfig
- kcoreaddons
- kdbusaddons
- kconfigwidgets
- knotifications
- kwidgetsaddons
-
-
- /usr/share/doc
- /usr/bin
- /usr/share
-
-
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-11
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-15
- 17.12.0
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-14
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-29
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2017-03-09
- 16.12.0
- Rebuild for new Toolchain.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-23
- 16.12.0
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-11-27
- 16.08.3
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-10-22
- 16.08.2
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-10-20
- 16.08.1
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-07-31
- 16.04.3
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
- 2016-05-23
- 16.04.0
- Version bump.
- Burak Ertürk
- burakerturk@pisilinux.org
-
-
- 2016-03-24
- 15.12.3
- First release
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
-
-
-
- libkcddb
- https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio
-
- PisiLinux Community
- admins@pisilinux.org
-
- GPLv2
- library
- desktop.kde.multimedia
- KDE library for CDDB (Compact Disc Database)
- CDDB için KDE kitaplığı (Compact Disc Database)
- KDE library for CDDB (Compact Disc Database).
- CDDB için KDE kitaplığı (Compact Disc Database).
- mirrors://kde/stable/release-service/21.12.2/src/libkcddb-21.12.2.tar.xz
-
- extra-cmake-modules
- musicbrainz5-devel
- kdoctools-devel
- kconfig-devel
- kcodecs-devel
- ki18n-devel
- kio-devel
- qt5-base-devel
- kwidgetsaddons-devel
-
- desktop/kde/applications/libkcddb/pspec.xml
-
-
- libkcddb
-
- kio
- ki18n
- libgcc
- kcodecs
- kconfig
- qt5-base
- kcoreaddons
- musicbrainz5
- kconfigwidgets
- kwidgetsaddons
-
-
- /usr/share
- /usr/share/kservices5
- /usr/share/config.kcfg
- /usr/lib
- /usr/share/doc
- /usr/include
-
-
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-11
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-15
- 17.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-14
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-29
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2017-03-09
- 16.12.0
- Rebuild for new Toolchain.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-22
- 16.12.0
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-11-28
- 16.11.80
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-10-22
- 16.08.2
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-10-09
- 16.08.1
- First release
- Alihan Öztürkr
- alihan@pisilinux.org
-
-
-
-
-
- mailimporter
- https://www.kde.org
-
- Pisi Linux Admins
- admin@pisilinux.org
-
- LGPLv2
- library
- app:library
- desktop.kde.applications
- Mail importer library
- Mail importer library
- mirrors://kde/stable/release-service/21.12.2/src/mailimporter-21.12.2.tar.xz
-
- qt5-base-devel
- kdoctools-devel
- ki18n-devel
- kconfig-devel
- kservice-devel
- kxmlgui-devel
- pimcommon-devel
- cmake
- extra-cmake-modules
- openldap-client
- cyrus-sasl-devel
- kitemviews-devel
- kio-devel
- kdesignerplugin
- kemoticons-devel
- kitemmodels-devel
- kinit-devel
- kunitconversion-devel
- kmime-devel
- kcontacts-devel
- kcalendarcore-devel
- kldap-devel
- libkdepim-devel
- akonadi-calendar-devel
- akonadi-search-devel
- qt5-webkit-devel
- grantlee-qt5-devel
- knewstuff-devel
- kpimtextedit-devel
- kimap-devel
- akonadi-devel
- boost-devel
- karchive-devel
- akonadi-mime-devel
- akonadi-contacts-devel
-
- desktop/kde/applications/mailimporter/pspec.xml
-
-
- mailimporter
-
- qt5-base
- akonadi-mime
- libgcc
- libkdepim
- ki18n
- kmime
- akonadi
- kconfig
- karchive
- kcoreaddons
-
-
- /etc
- /usr/share
- /usr/lib/qt5
- /usr/lib
- /usr/share/doc
-
-
-
- mailimporter-devel
- Development files for mailimporter
-
- mailimporter
- karchive-devel
-
-
- /usr/include
- /usr/lib/cmake
- /usr/lib/pkgconfig
-
-
-
-
- 2022-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 18.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-26
- 18.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-12-12
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-11-08
- 18.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-10-18
- 18.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-08-11
- 18.04.1
- Rebuild
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
- 2018-05-11
- 18.04.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-04-25
- 18.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-03-22
- 17.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-02-03
- 17.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-12-16
- 17.12.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-11-11
- 17.08.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-10-16
- 17.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-09-14
- 17.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-07-17
- 17.04.3
- Version bump.
- Ali Algul
- aligulle3801@gmail.com
-
-
- 2017-06-29
- 17.04.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2016-12-26
- 16.12.0
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-12-08
- 16.08.3
- Version bump.
- Stefan Gronewold(groni)
- groni@pisilinux.org
-
-
- 2016-10-22
- 16.08.2
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilnux.org
-
-
- 2016-10-12
- 16.08.1
- Version bump.
- Stefan Gronewold
- groni@pisilinux.org
-
-
- 2016-07-31
- 16.04.3
- Version bump.
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
- 2016-05-20
- 16.04.0
- First release
- Yusuf Aydemir
- yusuf.aydemir@pisilinux.org
-
-
-
klines
@@ -54936,323 +54981,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.2/src/kontact-21.12.2.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-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 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
@@ -55597,6 +55325,336 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ konversation
+ https://www.kde.org
+
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+ LGPLv2
+ app:gui
+ desktop.kde.applications
+ A user friendly IRC client for KDE
+ Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform.
+ mirrors://kde/stable/konversation/1.7.7/src/konversation-1.7.7.tar.xz
+
+ qt5-base-devel
+ qt5-phonon-devel
+ extra-cmake-modules
+ kdoctools-devel
+ kitemviews-devel
+ kbookmarks-devel
+ kconfig-devel
+ kconfigwidgets-devel
+ kcoreaddons-devel
+ kemoticons-devel
+ ki18n-devel
+ kidletime-devel
+ knotifyconfig-devel
+ kio-devel
+ kparts-devel
+ solid-devel
+ sonnet-devel
+ kwallet-devel
+ kwidgetsaddons-devel
+ kglobalaccel-devel
+ kdbusaddons-devel
+ knotifications-devel
+ kwindowsystem-devel
+ kiconthemes-devel
+ karchive-devel
+ qca2-qt5-devel
+ python3-devel
+ gettext-devel
+ docbook-xsl
+ kcrash-devel
+
+ desktop/kde/applications/konversation/pspec.xml
+
+
+ konversation
+
+ qt5-base
+ qca2-qt5
+ kemoticons
+ kidletime
+ knotifyconfig
+ kparts
+ kio
+ kcrash
+ libgcc
+ ki18n
+ sonnet
+ kcodecs
+ kconfig
+ kwallet
+ kxmlgui
+ karchive
+ kservice
+ kbookmarks
+ kitemviews
+ qt5-phonon
+ kcompletion
+ kcoreaddons
+ kdbusaddons
+ kiconthemes
+ kglobalaccel
+ ktextwidgets
+ kwindowsystem
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+
+
+ /usr/bin
+ /usr/share
+ /usr/share/locale
+ /usr/share/doc
+
+
+
+
+ 2022-01-10
+ 1.7.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 1.7.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 1.7.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 1.7.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 1.7.7
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-12
+ 1.7.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 1.7.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 1.7.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 1.7.5
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-07
+ 1.7.5
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-17
+ 1.7.5
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump.
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-05-10
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-25
+ 1.6.2
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-05-28
+ 1.6.0
+ Release bump
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+
+ 2016-05-08
+ 1.6.0
+ First release
+ Stefan Gronewold (groni)
+ groni@pisilinux.org
+
+
+
korganizer
@@ -60710,358 +60768,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.2/src/ksystemlog-21.12.2.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-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 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
@@ -61404,6 +61110,341 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ ktimer
+ http://kde.org/applications/utilities/ktimer
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.kde.utils
+ A countdown launcher
+ A countdown launcher
+ KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped.
+ KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped.
+ ktimer
+ mirrors://kde/stable/release-service/21.12.2/src/ktimer-21.12.2.tar.xz
+
+ qt5-base-devel
+ kdoctools-devel
+ cmake
+ extra-cmake-modules
+ ki18n-devel
+ kwidgetsaddons-devel
+ kio-devel
+ kiconthemes-devel
+ kdbusaddons-devel
+ knotifications-devel
+ mesa-devel
+
+ desktop/kde/applications/ktimer/pspec.xml
+
+
+ ktimer
+
+ qt5-base
+ kio
+ ki18n
+ libgcc
+ kconfig
+ kcoreaddons
+ kdbusaddons
+ kconfigwidgets
+ knotifications
+ kwidgetsaddons
+
+
+ /usr/share/doc
+ /usr/bin
+ /usr/share
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-09
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-23
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-27
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-20
+ 16.08.1
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-05-23
+ 16.04.0
+ Version bump.
+ Burak Ertürk
+ burakerturk@pisilinux.org
+
+
+ 2016-03-24
+ 15.12.3
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
ktnef
@@ -66891,369 +66932,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.2/src/kwordquiz-21.12.2.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-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 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
@@ -67631,6 +67309,320 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ libkcddb
+ https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ library
+ desktop.kde.multimedia
+ KDE library for CDDB (Compact Disc Database)
+ CDDB için KDE kitaplığı (Compact Disc Database)
+ KDE library for CDDB (Compact Disc Database).
+ CDDB için KDE kitaplığı (Compact Disc Database).
+ mirrors://kde/stable/release-service/21.12.2/src/libkcddb-21.12.2.tar.xz
+
+ extra-cmake-modules
+ musicbrainz5-devel
+ kdoctools-devel
+ kconfig-devel
+ kcodecs-devel
+ ki18n-devel
+ kio-devel
+ qt5-base-devel
+ kwidgetsaddons-devel
+
+ desktop/kde/applications/libkcddb/pspec.xml
+
+
+ libkcddb
+
+ kio
+ ki18n
+ libgcc
+ kcodecs
+ kconfig
+ qt5-base
+ kcoreaddons
+ musicbrainz5
+ kconfigwidgets
+ kwidgetsaddons
+
+
+ /usr/share
+ /usr/share/kservices5
+ /usr/share/config.kcfg
+ /usr/lib
+ /usr/share/doc
+ /usr/include
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-15
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-14
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2017-03-09
+ 16.12.0
+ Rebuild for new Toolchain.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-22
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-11-28
+ 16.11.80
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-09
+ 16.08.1
+ First release
+ Alihan Öztürkr
+ alihan@pisilinux.org
+
+
+
libkcompactdisc
@@ -72991,363 +72983,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.2/src/lokalize-21.12.2.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-02-26
- 21.12.2
- Version bump.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2022-01-10
- 21.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-10-15
- 21.08.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-09-13
- 21.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-06-16
- 21.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-05-09
- 21.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-03-10
- 20.12.3
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-13
- 20.08.1
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-06-11
- 20.04.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-06
- 20.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-30
- 19.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-02
- 19.12.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-09-15
- 19.08.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-07-23
- 19.04.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-04-18
- 19.04.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-03-11
- 18.12.3
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-02-08
- 18.12.2
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2019-01-12
- 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
@@ -73735,6 +73370,371 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ mailimporter
+ https://www.kde.org
+
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+ LGPLv2
+ library
+ app:library
+ desktop.kde.applications
+ Mail importer library
+ Mail importer library
+ mirrors://kde/stable/release-service/21.12.2/src/mailimporter-21.12.2.tar.xz
+
+ qt5-base-devel
+ kdoctools-devel
+ ki18n-devel
+ kconfig-devel
+ kservice-devel
+ kxmlgui-devel
+ pimcommon-devel
+ cmake
+ extra-cmake-modules
+ openldap-client
+ cyrus-sasl-devel
+ kitemviews-devel
+ kio-devel
+ kdesignerplugin
+ kemoticons-devel
+ kitemmodels-devel
+ kinit-devel
+ kunitconversion-devel
+ kmime-devel
+ kcontacts-devel
+ kcalendarcore-devel
+ kldap-devel
+ libkdepim-devel
+ akonadi-calendar-devel
+ akonadi-search-devel
+ qt5-webkit-devel
+ grantlee-qt5-devel
+ knewstuff-devel
+ kpimtextedit-devel
+ kimap-devel
+ akonadi-devel
+ boost-devel
+ karchive-devel
+ akonadi-mime-devel
+ akonadi-contacts-devel
+
+ desktop/kde/applications/mailimporter/pspec.xml
+
+
+ mailimporter
+
+ qt5-base
+ akonadi-mime
+ libgcc
+ libkdepim
+ ki18n
+ kmime
+ akonadi
+ kconfig
+ karchive
+ kcoreaddons
+
+
+ /etc
+ /usr/share
+ /usr/lib/qt5
+ /usr/lib
+ /usr/share/doc
+
+
+
+ mailimporter-devel
+ Development files for mailimporter
+
+ mailimporter
+ karchive-devel
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-02-26
+ 21.12.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2022-01-10
+ 21.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-10-15
+ 21.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-09-13
+ 21.08.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-06-16
+ 21.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-09
+ 21.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-03-10
+ 20.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-13
+ 20.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-06-11
+ 20.04.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-06
+ 20.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-30
+ 19.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-02
+ 19.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-09-15
+ 19.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-07-23
+ 19.04.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-04-18
+ 19.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-03-11
+ 18.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-02-08
+ 18.12.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2019-01-12
+ 18.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-26
+ 18.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-12-12
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-11-08
+ 18.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-10-18
+ 18.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-08-11
+ 18.04.1
+ Rebuild
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+ 2018-05-11
+ 18.04.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-04-25
+ 18.04.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-03-22
+ 17.12.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-02-03
+ 17.12.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-12-16
+ 17.12.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-11-11
+ 17.08.3
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-10-16
+ 17.08.2
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-09-14
+ 17.08.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-07-17
+ 17.04.3
+ Version bump.
+ Ali Algul
+ aligulle3801@gmail.com
+
+
+ 2017-06-29
+ 17.04.2
+ Version bump.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2016-12-26
+ 16.12.0
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-12-08
+ 16.08.3
+ Version bump.
+ Stefan Gronewold(groni)
+ groni@pisilinux.org
+
+
+ 2016-10-22
+ 16.08.2
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilnux.org
+
+
+ 2016-10-12
+ 16.08.1
+ Version bump.
+ Stefan Gronewold
+ groni@pisilinux.org
+
+
+ 2016-07-31
+ 16.04.3
+ Version bump.
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+ 2016-05-20
+ 16.04.0
+ First release
+ Yusuf Aydemir
+ yusuf.aydemir@pisilinux.org
+
+
+
marble
@@ -194114,6 +194114,112 @@ cleaner, which will allow to add new features in the future.
+
+
+ ogre-next
+ https://github.com/OGRECave/ogre-next
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ LGPLv2
+ library
+ multimedia.editor
+ Scene-oriented, flexible 3D engine written in C++
+ C++ ile yazılmış, sahne odaklı, esnek 3B motor
+ Ogre-Next is a 3D graphics rendering engine. Not to be confused with a game engine which provides Networking, Sound, Physics, etc.
+ Ogre-Next, bir 3D grafik işleme motorudur. Ağ, Ses, Fizik vb. Sağlayan bir oyun motoruyla karıştırılmamalıdır.
+ https://github.com/OGRECave/ogre-next/archive/refs/tags/v2.3.0.tar.gz
+
+ git
+ cmake
+ ninja
+ doxygen
+ mesa-devel
+ zlib-devel
+ boost-devel
+ libXt-devel
+ vulkan-devel
+ openvr-devel
+ libX11-devel
+ dejavu-fonts
+ libXaw-devel
+ cppunit-devel
+ libsdl2-devel
+ zziplib-devel
+ openssl-devel
+ tinyxml-devel
+ python3-devel
+ libglvnd-devel
+ mesa-glu-devel
+ graphviz-devel
+ freetype-devel
+ rapidjson-devel
+ libXrandr-devel
+ FreeImage-devel
+
+ multimedia/editor/ogre-next/pspec.xml
+
+
+ ogre-next
+
+ zlib
+ mesa
+ libXt
+ libgcc
+ openvr
+ libX11
+ libXaw
+ openssl
+ tinyxml
+ doxygen
+ cppunit
+ libsdl2
+ zziplib
+ freetype
+ graphviz
+ mesa-glu
+ libglvnd
+ FreeImage
+ rapidjson
+ libXrandr
+ dejavu-fonts
+
+
+ /usr/bin
+ /usr/lib/OGRE
+ /usr/lib/libOgreHlmsPbs.so*
+ /usr/lib/libOgreMeshLodGenerator.so*
+ /usr/lib/libOgreOverlay.so*
+ /usr/lib/libOgreSceneFormat.so*
+ /usr/lib/libOgreMain.so*
+ /usr/lib/libOgreHlmsUnlit.so*
+ /usr/share/OGRE
+ /usr/share/doc
+
+
+
+ ogre-next-devel
+ Development files for ogre-next
+
+ ogre-next
+
+
+ /usr/include
+ /usr/lib/OGRE/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-04-30
+ 2.3.0
+ First release.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
openshot
@@ -194663,158 +194769,124 @@ cleaner, which will allow to add new features in the future.
- GraphicsMagick
- http://www.graphicsmagick.org
+ graphviz
+ https://www.graphviz.org/
- PisiLinux Community
- admins@pisilinux.org
+ fury
+ uglyside@yandex.ru
- 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
+ 2017-01-18
+ 2.40.1
+ First release.
+ Ali Algul
+ aligulle3801@gmail.com
@@ -199040,124 +199112,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
@@ -207900,6 +208006,71 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol
+
+
+ openvr
+ https://github.com/ValveSoftware/openvr
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ MIT
+ app
+ multimedia.misc
+ API and runtime that allows access to VR hardware from multiple vendors
+ Birden çok satıcıdan VR donanımına erişim sağlayan API ve çalışma zamanı
+ OpenVR is an API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting. This repository is an SDK that contains the API and samples. The runtime is under SteamVR in Tools on Steam.
+ OpenVR, uygulamaların hedefledikleri donanım hakkında özel bilgiye sahip olmalarını gerektirmeden birden fazla satıcıdan VR donanımına erişime izin veren bir API ve çalışma zamanıdır. Bu depo, API ve örnekleri içeren bir SDK'dır. Çalışma zamanı, Steam'deki Araçlar'da SteamVR altındadır.
+ https://github.com/ValveSoftware/openvr/archive/refs/tags/v1.16.8.tar.gz
+
+ cmake
+ jsoncpp-devel
+ libglvnd-devel
+ rapidjson-devel
+
+
+ 0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch
+ fix-missing-stdarg-h.patch
+ install-library.patch
+
+ multimedia/misc/openvr/pspec.xml
+
+
+ openvr
+
+ libgcc
+ jsoncpp
+ libglvnd
+ rapidjson
+
+
+ /usr/lib/libopenvr_api.so*
+ /usr/share/doc
+
+
+
+ openvr-devel
+ Development files for openvr
+ openvr için geliştirme dosyaları
+
+ openvr
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/share/pkgconfig
+
+
+
+
+ 2022-05-01
+ 1.16.8
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
openxr
@@ -235420,7 +235591,7 @@ functionality to build high-performing, platform-independent programs.Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir.
Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami.
thunderbird
- http://ftp.mozilla.org/pub/thunderbird/releases/91.2.1/source/thunderbird-91.2.1.source.tar.xz
+ http://ftp.mozilla.org/pub/thunderbird/releases/91.8.1/source/thunderbird-91.8.1.source.tar.xz
pisilinux/mozconfig
@@ -235525,7 +235696,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-be
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org.xpi
@@ -235538,7 +235709,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-ca
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org.xpi
@@ -235551,7 +235722,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-da
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org.xpi
@@ -235564,7 +235735,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-de
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org.xpi
@@ -235577,7 +235748,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-el
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org.xpi
@@ -235590,7 +235761,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-en-US
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org.xpi
@@ -235603,7 +235774,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-en-GB
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-en-GB@thunderbird.mozilla.org.xpi
@@ -235616,7 +235787,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-es-AR
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org.xpi
@@ -235629,7 +235800,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-es-ES
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org.xpi
@@ -235642,7 +235813,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-fi
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org.xpi
@@ -235655,7 +235826,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-fr
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org.xpi
@@ -235668,7 +235839,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-hr
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org.xpi
@@ -235681,7 +235852,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-hu
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org.xpi
@@ -235694,7 +235865,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-it
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org.xpi
@@ -235707,7 +235878,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-lt
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org.xpi
@@ -235720,7 +235891,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-nl
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org.xpi
@@ -235733,7 +235904,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-pl
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org.xpi
@@ -235746,7 +235917,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-pt-BR
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org.xpi
@@ -235759,7 +235930,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-pt-PT
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org.xpi
@@ -235772,7 +235943,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-ro
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org.xpi
@@ -235785,7 +235956,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-ru
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org.xpi
@@ -235798,7 +235969,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-sr
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org.xpi
@@ -235811,7 +235982,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-sv-SE
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org.xpi
@@ -235824,7 +235995,7 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-tr
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org.xpi
@@ -235837,13 +236008,20 @@ functionality to build high-performing, platform-independent programs.system.locale
lang-uk
- thunderbird
+ thunderbird
/usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org.xpi
+
+ 2022-05-01
+ 91.8.1
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-10-31
91.2.1
@@ -274136,6 +274314,64 @@ complete albums that you have purchased from Amazon.
+
+
+ python-py3c
+ https://github.com/encukou/py3c
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ MIT
+ library
+ programming.language.python3
+ py3c helps you port C extensions to Python 3
+ It provides a detailed guide, and a set of macros to make porting easy and reduce boilerplate.
+ https://github.com/encukou/py3c/archive/v1.3.1.tar.gz
+
+ python3-setuptools
+ python3-devel
+
+ programming/language/python3/python-py3c/pspec.xml
+
+
+ python-py3c
+
+ python3
+
+
+ /usr/lib/python3*
+ /usr/share/doc
+
+
+
+ python-py3c-devel
+ Development files for python-py3c
+
+ python-py3c
+
+
+ /usr/include
+ /usr/share/pkgconfig/py3c.pc
+
+
+
+
+ 2021-10-22
+ 1.3.1
+ Rebuild.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2021-03-11
+ 1.3.1
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
python-setproctitle
@@ -274471,84 +274707,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
@@ -275200,6 +275358,60 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-breathe
+ https://github.com/michaeljones/breathe
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ BSD
+ library
+ programming.language.python3
+ ReStructuredText and Sphinx bridge to Doxygen.
+ Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü.
+ python3-breathe is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output.
+ python3-breathe, Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü sunar.
+ https://github.com/michaeljones/breathe/archive/v4.31.0.tar.gz
+
+ python3-devel
+ python3-sphinx
+ python3-setuptools
+
+ programming/language/python3/python3-breathe/pspec.xml
+
+
+ python3-breathe
+ ReStructuredText and Sphinx bridge to Doxygen.
+
+ python3
+ python3-sphinx
+ python3-setuptools
+
+
+ /usr/share/doc/
+ /usr/lib/python3*
+ /usr/bin/breathe-apidoc
+
+
+
+
+ 2021-10-26
+ 4.31.0
+ Version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-24
+ 4.22.0
+ First pisi release.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
python3-bs4
@@ -275620,77 +275832,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
@@ -276326,6 +276467,55 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-dbusmock
+ https://github.com/martinpitt/python-dbusmock
+
+ Berk Çakar
+ berk2238@hotmail.com
+
+ LGPLv3
+ programming.language.python3
+ Mock D-Bus objects for tests
+ Mock D-Bus objects for tests
+ https://github.com/martinpitt/python-dbusmock/releases/download/0.23.1/python-dbusmock-0.23.1.tar.gz
+
+ dbus-python3
+ python-pygobject3
+ python3-setuptools
+
+ programming/language/python3/python3-dbusmock/pspec.xml
+
+
+ python3-dbusmock
+ Mock D-Bus objects for tests
+
+ dbus-python3
+ python-pygobject3
+
+
+ /usr/lib/python3*
+ /usr/share/doc
+
+
+
+
+ 2021-08-21
+ 0.23.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-04-21
+ 0.23.0
+ First release
+ Berk Çakar
+ berk2238@hotmail.com
+
+
+
python3-decorator
@@ -276700,79 +276890,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-docker-py
@@ -277383,167 +277500,6 @@ complete albums that you have purchased from Amazon.
-
-
- python-py3c
- https://github.com/encukou/py3c
-
- Kamil Atlı
- suvari@pisilinux.org
-
- MIT
- library
- programming.language.python3
- py3c helps you port C extensions to Python 3
- It provides a detailed guide, and a set of macros to make porting easy and reduce boilerplate.
- https://github.com/encukou/py3c/archive/v1.3.1.tar.gz
-
- python3-setuptools
- python3-devel
-
- programming/language/python3/python-py3c/pspec.xml
-
-
- python-py3c
-
- python3
-
-
- /usr/lib/python3*
- /usr/share/doc
-
-
-
- python-py3c-devel
- Development files for python-py3c
-
- python-py3c
-
-
- /usr/include
- /usr/share/pkgconfig/py3c.pc
-
-
-
-
- 2021-10-22
- 1.3.1
- Rebuild.
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2021-03-11
- 1.3.1
- First release
- Kamil Atlı
- suvari@pisilinux.org
-
-
-
-
-
- python3-breathe
- https://github.com/michaeljones/breathe
-
- Blue Devil
- bluedevil@sctzine.com
-
- BSD
- library
- programming.language.python3
- ReStructuredText and Sphinx bridge to Doxygen.
- Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü.
- python3-breathe is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output.
- python3-breathe, Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü sunar.
- https://github.com/michaeljones/breathe/archive/v4.31.0.tar.gz
-
- python3-devel
- python3-sphinx
- python3-setuptools
-
- programming/language/python3/python3-breathe/pspec.xml
-
-
- python3-breathe
- ReStructuredText and Sphinx bridge to Doxygen.
-
- python3
- python3-sphinx
- python3-setuptools
-
-
- /usr/share/doc/
- /usr/lib/python3*
- /usr/bin/breathe-apidoc
-
-
-
-
- 2021-10-26
- 4.31.0
- Version bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-24
- 4.22.0
- First pisi release.
- Blue Devil
- bluedevil@sctzine.com
-
-
-
-
-
- python3-dbusmock
- https://github.com/martinpitt/python-dbusmock
-
- Berk Çakar
- berk2238@hotmail.com
-
- LGPLv3
- programming.language.python3
- Mock D-Bus objects for tests
- Mock D-Bus objects for tests
- https://github.com/martinpitt/python-dbusmock/releases/download/0.23.1/python-dbusmock-0.23.1.tar.gz
-
- dbus-python3
- python-pygobject3
- python3-setuptools
-
- programming/language/python3/python3-dbusmock/pspec.xml
-
-
- python3-dbusmock
- Mock D-Bus objects for tests
-
- dbus-python3
- python-pygobject3
-
-
- /usr/lib/python3*
- /usr/share/doc
-
-
-
-
- 2021-08-21
- 0.23.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2021-04-21
- 0.23.0
- First release
- Berk Çakar
- berk2238@hotmail.com
-
-
-
python3-flask-compress
@@ -277610,506 +277566,6 @@ complete albums that you have purchased from Amazon.
-
-
- python3-hpack
- https://github.com/python-hyper/hpack
-
- Blue Devil
- bluedevil@sctzine.com
-
- MIT
- library
- programming.language.python3
- HTTP/2 Header Encoding for Python.
- Python için HTTP/2 başlık kodlaması.
- This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2.
- python3-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar.
- https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz
-
- python3-devel
- python3-setuptools
-
- programming/language/python3/python3-hpack/pspec.xml
-
-
- python3-hpack
- HTTP/2 Header Encoding for Python.
-
- python3
-
-
- /usr/lib
- /usr/share/man
- /usr/share/doc/python3-hpack
-
-
-
-
- 2021-10-28
- 4.0.0
- Rebuild.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-09-23
- 4.0.0
- Major version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2020-01-15
- 3.0.0
- First pisi release.
- Blue Devil
- bluedevil@sctzine.com
-
-
-
-
-
- python3-itsdangerous
- https://palletsprojects.com/p/itsdangerous/
-
- Blue Devil
- bluedevil@sctzine.com
-
- BSDv3
- library
- programming.language.python3
- Safely pass trusted data to untrusted environments and back.
- Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir.
- python3-itsdangerous provides safely pass trusted data to untrusted environments and back.
- python3-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar.
- https://github.com/pallets/itsdangerous/archive/2.0.1.tar.gz
-
- python3-setuptools
- python3-devel
-
- programming/language/python3/python3-itsdangerous/pspec.xml
-
-
- python3-itsdangerous
- Safely pass trusted data to untrusted environments and back.
-
- python3
-
-
- /usr/lib/python3*
- /usr/share/doc/python3-itsdangerous
-
-
-
-
- 2021-10-25
- 2.0.1
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-02-13
- 1.1.0
- First release.
- Blue Devil
- bluedevil@sctzine.com
-
-
-
-
-
- python3-mutagen
- https://github.com/quodlibet/mutagen
-
- PisiLinux Community
- admins@pisilinux.org
-
- GPLv2
- library
- programming.language.python3
- An audio tag editing library
- Müzik dosyalarının etiketlerini düzenlemek için bir python3 kitaplığı
- Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level.
- python3-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir.
- https://github.com/quodlibet/mutagen/archive/release-1.45.1.tar.gz
-
- python3-devel
- python3-setuptools
-
- programming/language/python3/python3-mutagen/pspec.xml
-
-
- python3-mutagen
- An audio tag editing library
-
- python3
-
-
- /usr/bin/mid3cp
- /usr/bin/mid3v2
- /usr/bin/moggsplit
- /usr/bin/mid3iconv
- /usr/bin/mutagen-pony
- /usr/bin/mutagen-inspect
- /usr/lib/python3*
- /usr/share/man/man1/mid3cp.1
- /usr/share/man/man1/mid3v2.1
- /usr/share/man/man1/mid3iconv.1
- /usr/share/man/man1/moggsplit.1
- /usr/share/man/man1/mutagen-pony.1
- /usr/share/man/man1/mutagen-inspect.1
- /usr/share/doc/python3-mutagen
-
-
-
-
- 2021-10-28
- 1.45.1
- Rebuild
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-08-30
- 1.45.1
- Minor version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2020-02-12
- 1.44.0
- Version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2019-12-24
- 1.43.0
- First release.
- Blue Devil
- bluedevil@sctzine.com
-
-
-
-
-
- python3-psutil
- https://github.com/giampaolo/psutil
-
- PisiLinux Community
- admins@pisilinux.org
-
- BSD
- library
- programming.language.python3
- A cross-platform process utilities module for Python
- Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü
- python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat.
- python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır.
- https://github.com/giampaolo/psutil/archive/release-5.8.0.tar.gz
-
- python3-devel
-
- programming/language/python3/python3-psutil/pspec.xml
-
-
- python3-psutil
- A cross-platform process utilities module for Python
-
- python3
-
-
- /usr/lib/python3*
- /usr/share/doc/python3-psutil
-
-
-
-
- 2021-10-22
- 5.8.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-07-21
- 5.7.2
- Patch version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2020-02-21
- 5.7.0
- Version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2020-01-07
- 5.6.7
- Version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2018-08-19
- 5.4.6
- Version Bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2018-01-23
- 5.4.3
- Version Bump
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2017-02-01
- 5.0.1
- Version Bump
- Ayhan Yalçınsoy
- ayhanyalcinsoy@pisilinux.org
-
-
- 2016-06-09
- 4.0.0
- Release Bump
- Pisi Linux Community
- admin@pisilinux.org
-
-
- 2016-06-06
- 4.0.0
- First release
- Ertuğrul Erata
- ertugrulerata@gmail.com
-
-
-
-
-
- python3-pyinotify
- https://github.com/seb-m/pyinotify
-
- PisiLinux Community
- admins@pisilinux.org
-
- MIT
- library
- programming.language.python3
- Monitoring filesystems events with inotify on Linux.
- Monitoring filesystems events with inotify on Linux.
- Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities.
- Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities.
- https://github.com/seb-m/pyinotify/archive/refs/tags/0.9.6.tar.gz
-
- python3-devel
- python3-setuptools
-
- programming/language/python3/python3-pyinotify/pspec.xml
-
-
- python3-pyinotify
- Monitoring filesystems events with inotify on Linux.
-
- python3
-
-
- /usr/bin*
- /usr/lib/python3*
- /usr/share/doc*
-
-
-
-
- 2022-01-23
- 0.9.6
- First release
- PisiLinux Community
- admins@pisilinux.org
-
-
-
-
-
- python3-pyzmq
- https://github.com/zeromq/pyzmq/
-
- Blue DeviL
- bluedevil@sctzine.com
-
- BSD
- library
- programming.language.python3
- PyZMQ: Python3 bindings for zeromq
- PyZMQ: ZeroMQ için Python3 bağlayıcıları
- This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation.
- python3-pyzmq, ZeroMQ için Python3 bağlayıcıları içerir.
- https://github.com/zeromq/pyzmq/archive/v22.3.0.tar.gz
-
- python3-setuptools
- python3-devel
- zeromq-devel
- cython3
-
- programming/language/python3/python3-pyzmq/pspec.xml
-
-
- python3-pyzmq
- PyZMQ: Python3 bindings for zeromq
-
- python3
- zeromq
-
-
- /usr/share/doc/python3-pyzmq
- /usr/lib/python3*
-
-
-
-
- 2021-10-28
- 22.3.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-05-18
- 19.0.1
- Patch version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2020-03-04
- 19.0.0
- Major version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2019-12-31
- 18.1.1
- First pisi release
- Blue DeviL
- bluedevil@sctzine.com
-
-
-
-
-
- python3-smartypants
- https://github.com/leohemsted/smartypants.py
-
- Pisi Linux Admins
- admin@pisilinux.org
-
- BSD
- app
- programming.language.python3
- Python with the SmartyPants
- Python with the SmartyPants
- Python with the SmartyPants
- Python with the SmartyPants
- https://github.com/leohemsted/smartypants.py/archive/refs/tags/v2.0.1.tar.gz
-
- python3-devel
- python3-setuptools
-
- programming/language/python3/python3-smartypants/pspec.xml
-
-
- python3-smartypants
-
- python3
-
-
- /usr/bin
- /usr/lib
- /usr/share/doc
-
-
-
-
- 2021-10-22
- 2.0.1
- Rebuild.
- Pisi Linux Admins
- admin@pisilinux.org
-
-
- 2021-05-26
- 2.0.1
- First release
- Pisi Linux Admins
- admin@pisilinux.org
-
-
-
-
-
- python3-sphinxcontrib-serializinghtml
- https://github.com/sphinx-doc/sphinxcontrib-serializinghtml
-
- Blue Devil
- bluedevil@sctzine.com
-
- BSD
- library
- programming.language.python3
- Sphinx extension which outputs "serialized" HTML files (json and pickle).
- python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişletmesi.
- sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle).
- python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişleme modülüdür.
- https://files.pythonhosted.org/packages/b5/72/835d6fadb9e5d02304cf39b18f93d227cd93abd3c41ebf58e6853eeb1455/sphinxcontrib-serializinghtml-1.1.5.tar.gz
-
- python3-setuptools
- python3-devel
-
- programming/language/python3/python3-sphinxcontrib-serializinghtml/pspec.xml
-
-
- python3-sphinxcontrib-serializinghtml
- sphinxcontrib-serializinghtml module for python
-
- python3
-
-
- /usr/share/doc/python3-sphinxcontrib-serializinghtml
- /usr/lib/python3*
-
-
-
-
- 2021-10-22
- 1.1.5
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-04
- 1.1.4
- Patch version bump.
- Blue Devil
- bluedevil@sctzine.com
-
-
- 2019-12-30
- 1.1.3
- First pisi release
- Blue Devil
- bluedevil@sctzine.com
-
-
-
python3-flask-gravatar
@@ -278382,6 +277838,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
@@ -278434,6 +278112,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
@@ -279006,6 +279134,64 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-hpack
+ https://github.com/python-hyper/hpack
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ MIT
+ library
+ programming.language.python3
+ HTTP/2 Header Encoding for Python.
+ Python için HTTP/2 başlık kodlaması.
+ This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2.
+ python3-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar.
+ https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz
+
+ python3-devel
+ python3-setuptools
+
+ programming/language/python3/python3-hpack/pspec.xml
+
+
+ python3-hpack
+ HTTP/2 Header Encoding for Python.
+
+ python3
+
+
+ /usr/lib
+ /usr/share/man
+ /usr/share/doc/python3-hpack
+
+
+
+
+ 2021-10-28
+ 4.0.0
+ Rebuild.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-09-23
+ 4.0.0
+ Major version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2020-01-15
+ 3.0.0
+ First pisi release.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
python3-hstspreload
@@ -279673,63 +279859,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
@@ -280209,6 +280338,56 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-itsdangerous
+ https://palletsprojects.com/p/itsdangerous/
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ BSDv3
+ library
+ programming.language.python3
+ Safely pass trusted data to untrusted environments and back.
+ Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir.
+ python3-itsdangerous provides safely pass trusted data to untrusted environments and back.
+ python3-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar.
+ https://github.com/pallets/itsdangerous/archive/2.0.1.tar.gz
+
+ python3-setuptools
+ python3-devel
+
+ programming/language/python3/python3-itsdangerous/pspec.xml
+
+
+ python3-itsdangerous
+ Safely pass trusted data to untrusted environments and back.
+
+ python3
+
+
+ /usr/lib/python3*
+ /usr/share/doc/python3-itsdangerous
+
+
+
+
+ 2021-10-25
+ 2.0.1
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-02-13
+ 1.1.0
+ First release.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
python3-jedi
@@ -280776,118 +280955,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
@@ -281384,6 +281451,82 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-mutagen
+ https://github.com/quodlibet/mutagen
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ GPLv2
+ library
+ programming.language.python3
+ An audio tag editing library
+ Müzik dosyalarının etiketlerini düzenlemek için bir python3 kitaplığı
+ Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level.
+ python3-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir.
+ https://github.com/quodlibet/mutagen/archive/release-1.45.1.tar.gz
+
+ python3-devel
+ python3-setuptools
+
+ programming/language/python3/python3-mutagen/pspec.xml
+
+
+ python3-mutagen
+ An audio tag editing library
+
+ python3
+
+
+ /usr/bin/mid3cp
+ /usr/bin/mid3v2
+ /usr/bin/moggsplit
+ /usr/bin/mid3iconv
+ /usr/bin/mutagen-pony
+ /usr/bin/mutagen-inspect
+ /usr/lib/python3*
+ /usr/share/man/man1/mid3cp.1
+ /usr/share/man/man1/mid3v2.1
+ /usr/share/man/man1/mid3iconv.1
+ /usr/share/man/man1/moggsplit.1
+ /usr/share/man/man1/mutagen-pony.1
+ /usr/share/man/man1/mutagen-inspect.1
+ /usr/share/doc/python3-mutagen
+
+
+
+
+ 2021-10-28
+ 1.45.1
+ Rebuild
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-08-30
+ 1.45.1
+ Minor version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2020-02-12
+ 1.44.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2019-12-24
+ 1.43.0
+ First release.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
python3-nose
@@ -281943,56 +282086,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
@@ -282525,6 +282618,104 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-psutil
+ https://github.com/giampaolo/psutil
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ BSD
+ library
+ programming.language.python3
+ A cross-platform process utilities module for Python
+ Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü
+ python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat.
+ python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır.
+ https://github.com/giampaolo/psutil/archive/release-5.8.0.tar.gz
+
+ python3-devel
+
+ programming/language/python3/python3-psutil/pspec.xml
+
+
+ python3-psutil
+ A cross-platform process utilities module for Python
+
+ python3
+
+
+ /usr/lib/python3*
+ /usr/share/doc/python3-psutil
+
+
+
+
+ 2021-10-22
+ 5.8.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-07-21
+ 5.7.2
+ Patch version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2020-02-21
+ 5.7.0
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2020-01-07
+ 5.6.7
+ Version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2018-08-19
+ 5.4.6
+ Version Bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-01-23
+ 5.4.3
+ Version Bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2017-02-01
+ 5.0.1
+ Version Bump
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
+
+
+ 2016-06-09
+ 4.0.0
+ Release Bump
+ Pisi Linux Community
+ admin@pisilinux.org
+
+
+ 2016-06-06
+ 4.0.0
+ First release
+ Ertuğrul Erata
+ ertugrulerata@gmail.com
+
+
+
python3-psycopg2
@@ -283213,64 +283404,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
@@ -283636,6 +283769,50 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-pyinotify
+ https://github.com/seb-m/pyinotify
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ library
+ programming.language.python3
+ Monitoring filesystems events with inotify on Linux.
+ Monitoring filesystems events with inotify on Linux.
+ Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities.
+ Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities.
+ https://github.com/seb-m/pyinotify/archive/refs/tags/0.9.6.tar.gz
+
+ python3-devel
+ python3-setuptools
+
+ programming/language/python3/python3-pyinotify/pspec.xml
+
+
+ python3-pyinotify
+ Monitoring filesystems events with inotify on Linux.
+
+ python3
+
+
+ /usr/bin*
+ /usr/lib/python3*
+ /usr/share/doc*
+
+
+
+
+ 2022-01-23
+ 0.9.6
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
python3-pylibacl
@@ -284524,71 +284701,6 @@ complete albums that you have purchased from Amazon.
-
-
- 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-pyudev
@@ -284753,6 +284865,73 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-pyzmq
+ https://github.com/zeromq/pyzmq/
+
+ Blue DeviL
+ bluedevil@sctzine.com
+
+ BSD
+ library
+ programming.language.python3
+ PyZMQ: Python3 bindings for zeromq
+ PyZMQ: ZeroMQ için Python3 bağlayıcıları
+ This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation.
+ python3-pyzmq, ZeroMQ için Python3 bağlayıcıları içerir.
+ https://github.com/zeromq/pyzmq/archive/v22.3.0.tar.gz
+
+ python3-setuptools
+ python3-devel
+ zeromq-devel
+ cython3
+
+ programming/language/python3/python3-pyzmq/pspec.xml
+
+
+ python3-pyzmq
+ PyZMQ: Python3 bindings for zeromq
+
+ python3
+ zeromq
+
+
+ /usr/share/doc/python3-pyzmq
+ /usr/lib/python3*
+
+
+
+
+ 2021-10-28
+ 22.3.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-05-18
+ 19.0.1
+ Patch version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2020-03-04
+ 19.0.0
+ Major version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2019-12-31
+ 18.1.1
+ First pisi release
+ Blue DeviL
+ bluedevil@sctzine.com
+
+
+
python3-qt5
@@ -285860,64 +286039,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
@@ -286228,6 +286349,56 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-smartypants
+ https://github.com/leohemsted/smartypants.py
+
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+ BSD
+ app
+ programming.language.python3
+ Python with the SmartyPants
+ Python with the SmartyPants
+ Python with the SmartyPants
+ Python with the SmartyPants
+ https://github.com/leohemsted/smartypants.py/archive/refs/tags/v2.0.1.tar.gz
+
+ python3-devel
+ python3-setuptools
+
+ programming/language/python3/python3-smartypants/pspec.xml
+
+
+ python3-smartypants
+
+ python3
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ 2021-10-22
+ 2.0.1
+ Rebuild.
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+
+ 2021-05-26
+ 2.0.1
+ First release
+ Pisi Linux Admins
+ admin@pisilinux.org
+
+
+
python3-sniffio
@@ -287012,56 +287183,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
@@ -287169,6 +287290,63 @@ complete albums that you have purchased from Amazon.
+
+
+ python3-sphinxcontrib-serializinghtml
+ https://github.com/sphinx-doc/sphinxcontrib-serializinghtml
+
+ Blue Devil
+ bluedevil@sctzine.com
+
+ BSD
+ library
+ programming.language.python3
+ Sphinx extension which outputs "serialized" HTML files (json and pickle).
+ python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişletmesi.
+ sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle).
+ python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişleme modülüdür.
+ https://files.pythonhosted.org/packages/b5/72/835d6fadb9e5d02304cf39b18f93d227cd93abd3c41ebf58e6853eeb1455/sphinxcontrib-serializinghtml-1.1.5.tar.gz
+
+ python3-setuptools
+ python3-devel
+
+ programming/language/python3/python3-sphinxcontrib-serializinghtml/pspec.xml
+
+
+ python3-sphinxcontrib-serializinghtml
+ sphinxcontrib-serializinghtml module for python
+
+ python3
+
+
+ /usr/share/doc/python3-sphinxcontrib-serializinghtml
+ /usr/lib/python3*
+
+
+
+
+ 2021-10-22
+ 1.1.5
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-04
+ 1.1.4
+ Patch version bump.
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+ 2019-12-30
+ 1.1.3
+ First pisi release
+ Blue Devil
+ bluedevil@sctzine.com
+
+
+
python3-sphinxcontrib-websupport
@@ -289585,20 +289763,24 @@ complete albums that you have purchased from Amazon.
app
programming.language
Systems programming language focused on safety, speed and concurrency
+ Güvenlik, hız ve eşzamanlılık odaklı sistem programlama dili
+ Język programowania systemów skoncentrowany na bezpieczeństwie, szybkości i współbieżności
Systems programming language focused on safety, speed and concurrency
- https://static.rust-lang.org/dist/rustc-1.58.1-src.tar.gz
- https://static.rust-lang.org/dist/rust-1.58.1-x86_64-unknown-linux-gnu.tar.gz
+ Rust inanılmaz hızlı ve bellek tasarrufludur. Çöp toplayıcısı veya çalışma zamanı olmadan performans açısından kritik öneme sahip servisleri çalıştırabilir, gömülü cihazlarda çalışabilir ve diğer dillerle kolayca entegre olabilir.
+ Rust jest niesamowicie szybki i wydajny w pamięci. Może uruchamiać usługi krytyczne pod względem wydajności bez modułu odśmiecania pamięci lub środowiska wykonawczego, działać na urządzeniach osadzonych i łatwo integrować się z innymi językami.
+ https://static.rust-lang.org/dist/rustc-1.60.0-src.tar.gz
+ https://static.rust-lang.org/dist/rust-1.60.0-x86_64-unknown-linux-gnu.tar.gz
bootstrap-config.toml
rust
perl
- llvm
+ llvm
cmake
ninja
ocaml
- valgrind
+ valgrind-devel
zlib-devel
glibc-devel
libxml2-devel
@@ -289619,7 +289801,7 @@ complete albums that you have purchased from Amazon.
libgcc
libssh2
openssl
- llvm-libs
+ llvm-libs
/usr/bin
@@ -289636,13 +289818,20 @@ complete albums that you have purchased from Amazon.
rust-docs
Development files for rust
- rust
+ rust
/usr/share/doc/rust/html
+
+ 2022-05-01
+ 1.60.0
+ Version bump
+ Kamil Atlı
+ suvari@pisilinux.org
+
2022-02-14
1.58.1
@@ -293041,6 +293230,78 @@ provide integrated access to the cloud providers services.
+
+
+ libdazzle
+ https://gitlab.gnome.org/GNOME/libdazzle
+
+ Berk Çakar
+ berk2238@hotmail.com
+
+ GPLv3
+ programming.misc
+ The libdazzle library is a companion library to GObject and Gtk+
+ The libdazzle library is a companion library to GObject and Gtk+
+ https://download.gnome.org/sources/libdazzle/3.42/libdazzle-3.42.0.tar.xz
+
+ gtk3-devel
+ gobject-introspection-devel
+ gtk-doc
+ meson
+ vala-devel
+ glib2-devel
+ cairo-devel
+
+ programming/library/libdazzle/pspec.xml
+
+
+ libdazzle
+ The libdazzle library is a companion library to GObject and Gtk+
+
+ glib2
+ gtk3
+ cairo
+ pango
+ gdk-pixbuf
+
+
+ /usr/bin
+ /usr/lib/girepository-1.0
+ /usr/lib/libdazzle*.so*
+ /usr/share/doc
+ /usr/share/vala
+ /usr/share/locale
+
+
+
+ libdazzle-devel
+
+ libdazzle
+ gtk3-devel
+
+
+ /usr/include/libdazzle-1.0
+ /usr/lib/pkgconfig
+ /usr/share/gir-1.0
+
+
+
+
+ 2021-09-22
+ 3.42.0
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2021-05-25
+ 3.40.0
+ First release for Pisi Linux
+ Berk Çakar
+ berk2238@hotmail.com
+
+
+
libdispatch
@@ -293110,80 +293371,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
@@ -294465,6 +294652,70 @@ provide integrated access to the cloud providers services.
+
+
+ libsass
+ https://github.com/sass/libsass
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ MIT
+ app
+ programming.library
+ LibSass is a C++ port of the original Ruby Sass CSS compiler with a C API.
+ Sass CSS ön işlemcisinin C uygulaması (kütüphane)
+ C implementation of Sass CSS preprocessor (library)
+ C implementation of Sass CSS preprocessor (library)
+ https://github.com/sass/libsass/archive/3.6.5.tar.gz
+ programming/library/libsass/pspec.xml
+
+
+ libsass
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share
+ /usr/share/doc
+
+
+
+ libsass-devel
+ Development files for libsass
+
+ libsass
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2021-08-02
+ 3.6.5
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-01
+ 3.6.3
+ Version bump
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+ 2019-01-17
+ 3.5.5
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
libsignon-glib
@@ -294565,54 +294816,6 @@ provide integrated access to the cloud providers services.
-
-
- 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
-
-
-
libthai
@@ -295540,6 +295743,128 @@ provide integrated access to the cloud providers services.
+
+
+ rapidjson
+ http://rapidjson.org/
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ MIT
+ app
+ programming.library
+ A fast JSON parser/generator for C++ with both SAX/DOM style API.
+ Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu
+ A fast JSON parser/generator for C++ with both SAX/DOM style API.
+ Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu
+ https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz
+
+ cmake
+
+ programming/library/rapidjson/pspec.xml
+
+
+ rapidjson
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ rapidjson-devel
+ Development files for rapidjson
+ rapidjson için geliştirme dosyaları
+
+ rapidjson
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-05-01
+ 1.1.0
+ First release.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
+
+
+ re2
+ https://github.com/google/re2
+
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+ BSD
+ library
+ programming.library
+ Fast, safe, thread-friendly regular expression engine
+ Fast, safe, thread-friendly regular expression engine
+ Fast, safe, thread-friendly regular expression engine
+ Fast, safe, thread-friendly regular expression engine
+ https://github.com/google/re2/archive/2020-11-01.tar.gz
+ programming/library/re2/pspec.xml
+
+
+ re2
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share
+ /usr/share/doc
+
+
+
+ re2-devel
+ Development files for re2
+
+ re2
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2020-12-18
+ 20201101
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2020-03-04
+ 20200303
+ version bump
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-09-19
+ 20180801
+ First release
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+ 2018-05-21
+ 20180401
+ First release
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
+
+
rinutils
@@ -295600,69 +295925,6 @@ provide integrated access to the cloud providers services.
-
-
- rpcsvc-proto
- https://github.com/thkukuk/rpcsvc-proto
-
- Kamil Atlı
- suvari@pisilinux.org
-
- BSD
- library
- app:console
- programming.library
- This package contains rpcsvc proto.x files from glibc, which are
-missing in libtirpc.
- Glibc'den gelen rpcsvc proto.x dosyalarını içerir.
- This package contains rpcsvc proto.x files from glibc, which are
-missing in libtirpc. Additional it contains rpcgen, which is needed
-to create header files and sources from protocol files.
- Bu paket, glibc'den gelen, libtirpc'de eksik olan rpcsvc proto.x dosyalarını içerir. Ek olarak protokol dosyalarından başlık dosyaları ve kaynaklar oluşturmak için gerekli olan rpcgen içerir.
-.
- https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4.tar.xz
-
- glibc-devel
-
- programming/library/rpcsvc-proto/pspec.xml
-
-
- rpcsvc-proto
-
- /usr/bin
- /usr/share/doc
- /usr/share/man/man1/rpcgen.1
-
-
-
- rpcsvc-proto-devel
- Development headers for rpcsvc-proto
- rpcsvc-proto kitaplığı için geliştirme başlıkları
-
- rpcsvc-proto
-
-
- /usr/include
- /usr/share/pkgconfig
-
-
-
-
- 2020-01-19
- 1.4
- Rebuild
- İdris Kalp
- idriskalp@gmail.com
-
-
- 2019-03-29
- 1.4
- First release
- Kamil Atlı
- suvari@pisilinux.org
-
-
-
sassc
@@ -297071,208 +297333,186 @@ to create header files and sources from protocol files.
- libdazzle
- https://gitlab.gnome.org/GNOME/libdazzle
+ libdmapsharing
+ http://www.flyn.org/projects/libdmapsharing/
- Berk Çakar
- berk2238@hotmail.com
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
- GPLv3
- programming.misc
- The libdazzle library is a companion library to GObject and Gtk+
- The libdazzle library is a companion library to GObject and Gtk+
- https://download.gnome.org/sources/libdazzle/3.42/libdazzle-3.42.0.tar.xz
+ 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
- gtk3-devel
- gobject-introspection-devel
- gtk-doc
- meson
- vala-devel
glib2-devel
- cairo-devel
+ libgee-devel
+ libsoup-devel
+ gdk-pixbuf-devel
+ gstreamer-devel
+ gst-plugins-base-devel
+ avahi-glib-devel
+ gtk-doc
+ vala-devel
- programming/library/libdazzle/pspec.xml
+ programming/library/libdmapsharing/pspec.xml
- libdazzle
- The libdazzle library is a companion library to GObject and Gtk+
+ libdmapsharing
+ zlib
glib2
- gtk3
- cairo
- pango
+ libsoup
+ avahi-glib
+ avahi-libs
gdk-pixbuf
+ gstreamer
+ gst-plugins-base
- /usr/bin
- /usr/lib/girepository-1.0
- /usr/lib/libdazzle*.so*
- /usr/share/doc
- /usr/share/vala
- /usr/share/locale
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/locale
- libdazzle-devel
+ libdmapsharing-devel
+ libdmapsharing için geliştirme dosyaları
- libdazzle
- gtk3-devel
+ libdmapsharing
+ glib2-devel
+ gstreamer-devel
+ libsoup-devel
- /usr/include/libdazzle-1.0
+ /usr/include
/usr/lib/pkgconfig
/usr/share/gir-1.0
-
- 2021-09-22
- 3.42.0
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
- 2021-05-25
- 3.40.0
- First release for Pisi Linux
- Berk Çakar
- berk2238@hotmail.com
-
-
-
-
-
- libsass
- https://github.com/sass/libsass
-
- PisiLinux Community
- admins@pisilinux.org
-
- MIT
- app
- programming.library
- LibSass is a C++ port of the original Ruby Sass CSS compiler with a C API.
- Sass CSS ön işlemcisinin C uygulaması (kütüphane)
- C implementation of Sass CSS preprocessor (library)
- C implementation of Sass CSS preprocessor (library)
- https://github.com/sass/libsass/archive/3.6.5.tar.gz
- programming/library/libsass/pspec.xml
-
-
- libsass
-
- libgcc
-
-
- /usr/lib
- /usr/share
- /usr/share/doc
-
-
-
- libsass-devel
- Development files for libsass
-
- libsass
-
-
- /usr/include
- /usr/lib/pkgconfig
-
-
-
-
- 2021-08-02
- 3.6.5
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-01
- 3.6.3
- Version bump
- Kamil Atlı
- suvari@pisilinux.org
-
-
- 2019-01-17
- 3.5.5
+ 2021-06-11
+ 3.9.9
First release
- PisiLinux Community
- admins@pisilinux.org
+ Ayhan Yalçınsoy
+ ayhanyalcinsoy@pisilinux.org
- re2
- https://github.com/google/re2
+ libsocket
+ https://github.com/dermesser/libsocket
- Mustafa Cinasal
- muscnsl@gmail.com
+ fury
+ uglyside@yandex.ru
BSD
library
programming.library
- Fast, safe, thread-friendly regular expression engine
- Fast, safe, thread-friendly regular expression engine
- Fast, safe, thread-friendly regular expression engine
- Fast, safe, thread-friendly regular expression engine
- https://github.com/google/re2/archive/2020-11-01.tar.gz
- programming/library/re2/pspec.xml
+ 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
- re2
+ libsocket
libgcc
/usr/lib
- /usr/share
/usr/share/doc
- re2-devel
- Development files for re2
+ libsocket-devel
- re2
+ libsocket
/usr/include
- /usr/lib/pkgconfig
-
- 2020-12-18
- 20201101
- Version bump.
- Mustafa Cinasal
- muscnsl@gmail.com
-
-
- 2020-03-04
- 20200303
- version bump
- Mustafa Cinasal
- muscnsl@gmail.com
+
+ 2020-12-22
+ 2.5.0
+ First build
+ fury
+ uglyside@yandex.ru
+
+
+
+
+ rpcsvc-proto
+ https://github.com/thkukuk/rpcsvc-proto
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ BSD
+ library
+ app:console
+ programming.library
+ This package contains rpcsvc proto.x files from glibc, which are
+missing in libtirpc.
+ Glibc'den gelen rpcsvc proto.x dosyalarını içerir.
+ This package contains rpcsvc proto.x files from glibc, which are
+missing in libtirpc. Additional it contains rpcgen, which is needed
+to create header files and sources from protocol files.
+ Bu paket, glibc'den gelen, libtirpc'de eksik olan rpcsvc proto.x dosyalarını içerir. Ek olarak protokol dosyalarından başlık dosyaları ve kaynaklar oluşturmak için gerekli olan rpcgen içerir.
+.
+ https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4.tar.xz
+
+ glibc-devel
+
+ programming/library/rpcsvc-proto/pspec.xml
+
+
+ rpcsvc-proto
+
+ /usr/bin
+ /usr/share/doc
+ /usr/share/man/man1/rpcgen.1
+
+
+
+ rpcsvc-proto-devel
+ Development headers for rpcsvc-proto
+ rpcsvc-proto kitaplığı için geliştirme başlıkları
+
+ rpcsvc-proto
+
+
+ /usr/include
+ /usr/share/pkgconfig
+
+
+
- 2018-09-19
- 20180801
- First release
- Mustafa Cinasal
- muscnsl@gmail.com
+ 2020-01-19
+ 1.4
+ Rebuild
+ İdris Kalp
+ idriskalp@gmail.com
- 2018-05-21
- 20180401
+ 2019-03-29
+ 1.4
First release
- Mustafa Cinasal
- muscnsl@gmail.com
+ Kamil Atlı
+ suvari@pisilinux.org
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index 310309969c..7e2401b114 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-45856d460d3bd83a2a8efd355cb030bdf31d3e3e
\ No newline at end of file
+5195384a94737e3c4a11f465c65c0b6c7be67b3f
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index f12769d9c0..1413715e2e 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 b16e886d9d..98aa1f2421 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-61e834e404c29999b2193475b1712311aadf0ddf
\ No newline at end of file
+92105c8127dbf45996e237ed1cb5838b1e0ec7db
\ No newline at end of file
diff --git a/programming/library/rapidjson/actions.py b/programming/library/rapidjson/actions.py
new file mode 100644
index 0000000000..3fc44535f8
--- /dev/null
+++ b/programming/library/rapidjson/actions.py
@@ -0,0 +1,24 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/copyleft/gpl.txt
+
+from pisi.actionsapi import cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import get
+
+def setup():
+ cmaketools.configure(" -DCMAKE_INSTALL_PREFIX=/usr \
+ -DRAPIDJSON_HAS_STDSTRING=ON \
+ -DCMAKE_VERBOSE_MAKEFILE=ON \
+ -DRAPIDJSON_BUILD_EXAMPLES=OFF \
+ -DRAPIDJSON_BUILD_TESTS=OFF \
+ -DRAPIDJSON_BUILD_THIRDPARTY_GTEST=OFF \
+ -DCMAKE_BUILD_TYPE=None ")
+
+def build():
+ cmaketools.make()
+
+def install():
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
diff --git a/programming/library/rapidjson/pspec.xml b/programming/library/rapidjson/pspec.xml
new file mode 100644
index 0000000000..ebcd7df6fd
--- /dev/null
+++ b/programming/library/rapidjson/pspec.xml
@@ -0,0 +1,52 @@
+
+
+
+
+ rapidjson
+ http://rapidjson.org/
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ MIT
+ app
+ A fast JSON parser/generator for C++ with both SAX/DOM style API.
+ A fast JSON parser/generator for C++ with both SAX/DOM style API.
+ https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz
+
+ cmake
+
+
+
+
+ rapidjson
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+
+ rapidjson-devel
+ Development files for rapidjson
+
+ rapidjson
+
+
+ /usr/include
+ /usr/lib/cmake
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-05-01
+ 1.1.0
+ First release.
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/programming/library/rapidjson/translations.xml b/programming/library/rapidjson/translations.xml
new file mode 100644
index 0000000000..f102c45901
--- /dev/null
+++ b/programming/library/rapidjson/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ rapidjson
+ Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu
+ Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu
+
+
+
+ rapidjson-devel
+ rapidjson için geliştirme dosyaları
+
+