kde-applications

This commit is contained in:
Rmys
2025-01-22 23:12:25 +03:00
parent f1191ad5e5
commit 3503c99a37
31 changed files with 685 additions and 4027 deletions
+6 -4
View File
@@ -4,16 +4,18 @@
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
from pisi.actionsapi import pisitools
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.removeDir("/usr/lib/systemd")
pisitools.dodoc("LICENSES/*")
@@ -0,0 +1,310 @@
From 2cd3d58eec5695899c26ca66a631fb79867b6584 Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fella@gmx.de>
Date: Tue, 7 Nov 2023 15:45:01 +0100
Subject: [PATCH] Port away from KMoreTools
The idea behind KMoreTools was to point the user at external tools for a given job.
It provides a rather complex framework for that, including suggesting not-yet-installed tools.
The UX behind that isn't great though, which somewhat deep menu hierarchies and a somewhat arbitrary list of tools.
Most KDE apps have moved away from it, with only Dolphin remaining.
Instead provide direct integration with relevant KDE tools (Filelight, KDiskFree, KFind)
---
.kde-ci.yml | 1 -
CMakeLists.txt | 1 -
src/CMakeLists.txt | 2 -
src/dolphinmainwindow.cpp | 20 +++++----
src/dolphinpart.cpp | 16 ++-----
src/search/dolphinsearchbox.cpp | 37 ++++++++++------
src/search/dolphinsearchbox.h | 2 -
src/statusbar/statusbarspaceinfo.cpp | 66 +++++++++++++++++++++++++---
8 files changed, 98 insertions(+), 47 deletions(-)
diff --git a/.kde-ci.yml b/.kde-ci.yml
index 28fcaac569..500b80c569 100644
--- a/.kde-ci.yml
+++ b/.kde-ci.yml
@@ -28,7 +28,6 @@ Dependencies:
'frameworks/kuserfeedback': '@latest'
'plasma/kactivities': '@latest'
'libraries/phonon': '@latest'
- 'libraries/kmoretools': '@latest'
- 'on': ['Linux/Qt6', 'FreeBSD/Qt6']
'require':
diff --git a/CMakeLists.txt b/CMakeLists.txt
index d9e574f2cb..a14d6895b7 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -75,7 +75,6 @@ find_package(KF6 ${KF6_MIN_VERSION} REQUIRED COMPONENTS
WindowSystem
WidgetsAddons
Codecs
- MoreTools
)
find_package(KUserFeedbackQt6 1.2.1)
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 0792af0c0b..8eb5a0e9f0 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -212,8 +212,6 @@ target_link_libraries(
KF6::Codecs
KF6::KCMUtils
- KF6::MoreTools
-
${FTS_LIB}
)
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 0d31df2da0..635121062a 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -48,7 +48,6 @@
#include <KJobWidgets>
#include <KLocalizedString>
#include <KMessageBox>
-#include <KMoreToolsMenuFactory>
#include <KProtocolInfo>
#include <KProtocolManager>
#include <KShell>
@@ -1127,15 +1126,20 @@ void DolphinMainWindow::toggleShowMenuBar()
QPointer<QAction> DolphinMainWindow::preferredSearchTool()
{
m_searchTools.clear();
- KMoreToolsMenuFactory("dolphin/search-tools").fillMenuFromGroupingNames(&m_searchTools, {"files-find"}, m_activeViewContainer->url());
- QList<QAction *> actions = m_searchTools.actions();
- if (actions.isEmpty()) {
- return nullptr;
- }
- QAction *action = actions.first();
- if (action->isSeparator()) {
+
+ KService::Ptr kfind = KService::serviceByDesktopName(QStringLiteral("org.kde.kfind"));
+
+ if (!kfind) {
return nullptr;
}
+
+ auto *action = new QAction(QIcon::fromTheme(kfind->icon()), kfind->name(), this);
+
+ connect(action, &QAction::triggered, this, [kfind] {
+ auto *job = new KIO::ApplicationLauncherJob(kfind);
+ job->start();
+ });
+
return action;
}
diff --git a/src/dolphinpart.cpp b/src/dolphinpart.cpp
index 4ba1f07420..bb27e0a5e4 100644
--- a/src/dolphinpart.cpp
+++ b/src/dolphinpart.cpp
@@ -28,7 +28,6 @@
#include <KLocalizedString>
#include <KMessageBox>
#include <KMimeTypeEditor>
-#include <KMoreToolsMenuFactory>
#include <KPluginFactory>
#include <KPluginMetaData>
#include <KSharedConfig>
@@ -527,17 +526,10 @@ void DolphinPart::slotOpenTerminal()
void DolphinPart::slotFindFile()
{
- QMenu searchTools;
- KMoreToolsMenuFactory("dolphin/search-tools").fillMenuFromGroupingNames(&searchTools, {"files-find"}, QUrl::fromLocalFile(localFilePathOrHome()));
- QList<QAction *> actions = searchTools.actions();
- if (!(actions.isEmpty())) {
- actions.first()->trigger();
- } else {
- KIO::CommandLauncherJob *job = new KIO::CommandLauncherJob(QStringLiteral("kfind"), {url().toString()}, this);
- job->setDesktopName(QStringLiteral("org.kde.kfind"));
- job->setUiDelegate(new KDialogJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, widget()));
- job->start();
- }
+ KIO::CommandLauncherJob *job = new KIO::CommandLauncherJob(QStringLiteral("kfind"), {url().toString()}, this);
+ job->setDesktopName(QStringLiteral("org.kde.kfind"));
+ job->setUiDelegate(new KDialogJobUiDelegate(KJobUiDelegate::AutoHandlingEnabled, widget()));
+ job->start();
}
void DolphinPart::updateNewMenu()
diff --git a/src/search/dolphinsearchbox.cpp b/src/search/dolphinsearchbox.cpp
index a3cec6fe7e..dfd733e5da 100644
--- a/src/search/dolphinsearchbox.cpp
+++ b/src/search/dolphinsearchbox.cpp
@@ -13,9 +13,10 @@
#include "dolphinquery.h"
#include "config-dolphin.h"
+#include <KIO/ApplicationLauncherJob>
#include <KLocalizedString>
-#include <KMoreToolsMenuFactory>
#include <KSeparator>
+#include <KService>
#if HAVE_BALOO
#include <Baloo/IndexerConfig>
#include <Baloo/Query>
@@ -395,18 +396,24 @@ void DolphinSearchBox::init()
searchLocationGroup->addButton(m_fromHereButton);
searchLocationGroup->addButton(m_everywhereButton);
- auto moreSearchToolsButton = new QToolButton(this);
- moreSearchToolsButton->setAutoRaise(true);
- moreSearchToolsButton->setPopupMode(QToolButton::InstantPopup);
- moreSearchToolsButton->setIcon(QIcon::fromTheme("arrow-down-double"));
- moreSearchToolsButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
- moreSearchToolsButton->setText(i18n("More Search Tools"));
- moreSearchToolsButton->setMenu(new QMenu(this));
- connect(moreSearchToolsButton->menu(), &QMenu::aboutToShow, moreSearchToolsButton->menu(), [this, moreSearchToolsButton]() {
- m_menuFactory.reset(new KMoreToolsMenuFactory("dolphin/search-tools"));
- moreSearchToolsButton->menu()->clear();
- m_menuFactory->fillMenuFromGroupingNames(moreSearchToolsButton->menu(), {"files-find"}, this->m_searchPath);
- });
+ KService::Ptr kfind = KService::serviceByDesktopName(QStringLiteral("org.kde.kfind"));
+
+ QToolButton *kfindToolsButton = nullptr;
+ if (kfind) {
+ kfindToolsButton = new QToolButton(this);
+ kfindToolsButton->setAutoRaise(true);
+ kfindToolsButton->setPopupMode(QToolButton::InstantPopup);
+ kfindToolsButton->setIcon(QIcon::fromTheme("arrow-down-double"));
+ kfindToolsButton->setToolButtonStyle(Qt::ToolButtonTextBesideIcon);
+ kfindToolsButton->setText(i18n("Open %1", kfind->name()));
+ kfindToolsButton->setIcon(QIcon::fromTheme(kfind->icon()));
+
+ connect(kfindToolsButton, &QToolButton::clicked, this, [this, kfind] {
+ auto *job = new KIO::ApplicationLauncherJob(kfind);
+ job->setUrls({m_searchPath});
+ job->start();
+ });
+ }
// Create "Facets" widget
m_facetsWidget = new DolphinFacetsWidget(this);
@@ -429,7 +436,9 @@ void DolphinSearchBox::init()
optionsLayout->addWidget(m_fromHereButton);
optionsLayout->addWidget(m_everywhereButton);
optionsLayout->addWidget(new KSeparator(Qt::Vertical, this));
- optionsLayout->addWidget(moreSearchToolsButton);
+ if (kfindToolsButton) {
+ optionsLayout->addWidget(kfindToolsButton);
+ }
optionsLayout->addStretch(1);
m_optionsScrollArea = new QScrollArea(this);
diff --git a/src/search/dolphinsearchbox.h b/src/search/dolphinsearchbox.h
index b73c2899ff..9f1ad29525 100644
--- a/src/search/dolphinsearchbox.h
+++ b/src/search/dolphinsearchbox.h
@@ -18,7 +18,6 @@ class QToolButton;
class QScrollArea;
class QLabel;
class QVBoxLayout;
-class KMoreToolsMenuFactory;
/**
* @brief Input box for searching files with or without Baloo.
@@ -172,7 +171,6 @@ private:
DolphinFacetsWidget *m_facetsWidget;
QUrl m_searchPath;
- QScopedPointer<KMoreToolsMenuFactory> m_menuFactory;
QTimer *m_startSearchTimer;
};
diff --git a/src/statusbar/statusbarspaceinfo.cpp b/src/statusbar/statusbarspaceinfo.cpp
index 4eef8497df..546c217a7a 100644
--- a/src/statusbar/statusbarspaceinfo.cpp
+++ b/src/statusbar/statusbarspaceinfo.cpp
@@ -8,11 +8,14 @@
#include "spaceinfoobserver.h"
+#include <KIO/ApplicationLauncherJob>
+#include <KIO/Global>
#include <KLocalizedString>
-#include <KMoreToolsMenuFactory>
+#include <KService>
-#include <KIO/Global>
+#include <QMenu>
#include <QMouseEvent>
+#include <QStorageInfo>
StatusBarSpaceInfo::StatusBarSpaceInfo(QWidget *parent)
: KCapacityBar(KCapacityBar::DrawTextInline, parent)
@@ -87,11 +90,60 @@ void StatusBarSpaceInfo::mousePressEvent(QMouseEvent *event)
// Creates a menu with tools that help to find out more about free
// disk space for the given url.
- // Note that this object must live long enough in case the user opens
- // the "Configure..." dialog
- KMoreToolsMenuFactory menuFactory(QStringLiteral("dolphin/statusbar-diskspace-menu"));
- menuFactory.setParentWidget(this);
- auto menu = menuFactory.createMenuFromGroupingNames({"disk-usage", "more:", "disk-partitions"}, m_url);
+ const KService::Ptr filelight = KService::serviceByDesktopName(QStringLiteral("org.kde.filelight"));
+ const KService::Ptr kdiskfree = KService::serviceByDesktopName(QStringLiteral("org.kde.kdf"));
+
+ if (!filelight && !kdiskfree) {
+ // nothing to show
+ return;
+ }
+
+ QMenu *menu = new QMenu(this);
+
+ if (filelight) {
+ QAction *filelightFolderAction = menu->addAction(QIcon::fromTheme(QStringLiteral("filelight")), i18n("Disk Usage Statistics - current folder"));
+
+ menu->connect(filelightFolderAction, &QAction::triggered, menu, [this, filelight](bool) {
+ auto *job = new KIO::ApplicationLauncherJob(filelight);
+ job->setUrls({m_url});
+ job->start();
+ });
+
+ // For remote URLs like FTP analyzing the device makes no sense
+ if (m_url.isLocalFile()) {
+ QAction *filelightDiskAction = menu->addAction(QIcon::fromTheme(QStringLiteral("filelight")), i18n("Disk Usage Statistics - current device"));
+
+ menu->connect(filelightDiskAction, &QAction::triggered, menu, [this, filelight](bool) {
+ const QStorageInfo info(m_url.toLocalFile());
+
+ if (info.isValid() && info.isReady()) {
+ auto *job = new KIO::ApplicationLauncherJob(filelight);
+ job->setUrls({QUrl::fromLocalFile(info.rootPath())});
+ job->start();
+ }
+ });
+ }
+
+ QAction *filelightAllAction = menu->addAction(QIcon::fromTheme(QStringLiteral("filelight")), i18n("Disk Usage Statistics - all devices"));
+
+ menu->connect(filelightAllAction, &QAction::triggered, menu, [this, filelight](bool) {
+ const QStorageInfo info(m_url.toLocalFile());
+
+ if (info.isValid() && info.isReady()) {
+ auto *job = new KIO::ApplicationLauncherJob(filelight);
+ job->start();
+ }
+ });
+ }
+
+ if (kdiskfree) {
+ QAction *kdiskfreeAction = menu->addAction(QIcon::fromTheme(QStringLiteral("kdf")), i18n("KDiskFree"));
+
+ connect(kdiskfreeAction, &QAction::triggered, this, [kdiskfree] {
+ auto *job = new KIO::ApplicationLauncherJob(kdiskfree);
+ job->start();
+ });
+ }
menu->exec(QCursor::pos());
}
--
GitLab
@@ -0,0 +1,35 @@
From 95551f44922670be5c4d670833c2d4e398657495 Mon Sep 17 00:00:00 2001
From: Nicolas Fella <nicolas.fella@gmx.de>
Date: Fri, 8 Mar 2024 18:46:32 +0100
Subject: [PATCH] Remove unneeded code for toggeling dockwidget visibility
QDockWidget::toggleViewAction::toggled is emitted when minimizing
the application window on X11 (https://bugreports.qt.io/browse/QTBUG-48161
potentially related). This will cause the dockwidget to be hidden when
minimizing the window.
We don't actually seem to need that connection, triggering the action
(via shortcut or menu) seems to correctly show/hide the dockwidget
without it
BUG: 481952
---
src/dolphinmainwindow.cpp | 2 --
1 file changed, 2 deletions(-)
diff --git a/src/dolphinmainwindow.cpp b/src/dolphinmainwindow.cpp
index 03486a9cf6..1f4de8869c 100644
--- a/src/dolphinmainwindow.cpp
+++ b/src/dolphinmainwindow.cpp
@@ -2619,8 +2619,6 @@ void DolphinMainWindow::createPanelAction(const QIcon &icon, const QKeySequence
QAction *panelAction = actionCollection()->addAction(actionName, dockAction);
actionCollection()->setDefaultShortcut(panelAction, shortcut);
-
- connect(panelAction, &QAction::toggled, dockWidget, &QWidget::setVisible);
}
// clang-format off
void DolphinMainWindow::setupWhatsThis()
--
GitLab
@@ -0,0 +1,37 @@
From a07f24228a94aab2bdeb3caaf7a4d694c0180ed7 Mon Sep 17 00:00:00 2001
From: Felix Ernst <felixernst@kde.org>
Date: Wed, 17 Apr 2024 07:32:27 +0000
Subject: [PATCH] Fix crash while entering selection mode with Qt6.7
`deleteLater()` on a non-existing object seems to cause a crash with
Qt6.7. This makes some sense but wasn't the case previously.
I didn't test this yet but it is a harmless change so if anyone can confirm we can IMO merge directly.
This was brought up in https://invent.kde.org/system/dolphin/-/merge_requests/764#note_920935, reported in the bug linked below, and the sentry crash reporting page also has a few dozen reports (https://crash-reports.kde.org/organizations/kde/issues/13589/?project=4&query=is%3Aunresolved&referrer=issue-stream&stream_index=1).
Dolphin 24.02 is also affected but we are already past the last bug fix release for it.
BUG: 485599
---
src/selectionmode/bottombarcontentscontainer.cpp | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/src/selectionmode/bottombarcontentscontainer.cpp b/src/selectionmode/bottombarcontentscontainer.cpp
index d571b0302a..0e3087a9c5 100644
--- a/src/selectionmode/bottombarcontentscontainer.cpp
+++ b/src/selectionmode/bottombarcontentscontainer.cpp
@@ -483,7 +483,9 @@ std::vector<QAction *> BottomBarContentsContainer::contextActionsFor(const KFile
if (selectedItems.isEmpty()) {
// There are no contextual actions to show for these items.
// We might even want to hide this bar in this case. To make this clear, we reset m_internalContextMenu.
- m_internalContextMenu.release()->deleteLater();
+ if (m_internalContextMenu) {
+ m_internalContextMenu.release()->deleteLater();
+ }
return std::vector<QAction *>{};
}
--
GitLab
@@ -7,19 +7,19 @@ diff -Nuar a/src/main.cpp b/src/main.cpp
// Prohibit using sudo or kdesu (but allow using the root user directly)
- if (getuid() == 0) {
- if (!qEnvironmentVariableIsEmpty("SUDO_USER")) {
- std::cout << "Running Dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl;
- std::cout << "Running dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl;
- return EXIT_FAILURE;
- } else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) {
- std::cout << "Running Dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl;
- } else if (!qEnvironmentVariableIsEmpty("kdesu_USER")) {
- std::cout << "Running dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl;
- return EXIT_FAILURE;
- }
- }
+ //if (getuid() == 0) {
+ // if (!qEnvironmentVariableIsEmpty("SUDO_USER")) {
+ // std::cout << "Running Dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl;
+ // std::cout << "Running dolphin with sudo can cause bugs and expose you to security vulnerabilities." << std::endl;
+ // return EXIT_FAILURE;
+ //} else if (!qEnvironmentVariableIsEmpty("KDESU_USER")) {
+ // std::cout << "Running Dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl;
+ //} else if (!qEnvironmentVariableIsEmpty("kdesu_USER")) {
+ // std::cout << "Running dolphin with kdesu can cause bugs and expose you to security vulnerabilities." << std::endl;
+ //return EXIT_FAILURE;
+ //}
+ //}
@@ -0,0 +1,15 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index a14d6895b..fb7be4db2 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -88,9 +88,9 @@ if(KUserFeedbackQt6_FOUND)
endif()
find_package(KF6 ${KF6_MIN_VERSION} OPTIONAL_COMPONENTS
- Activities
DocTools
)
+find_package(KF6Activities)
set_package_properties(KF6Activities PROPERTIES DESCRIPTION "KActivities libraries"
URL "https://www.kde.org"
TYPE OPTIONAL
+52 -439
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -10,51 +11,49 @@
</Packager>
<License>GPLv2</License>
<Summary>KDE File Manager</Summary>
<Description>Dolphin is the File Manager for KDE.</Description>
<Archive sha1sum="56aea0789e5d8d1c3d4357e771ab1a9d1e2435dd" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/dolphin-23.08.5.tar.xz</Archive>
<Description>dolphin is the File Manager for KDE.</Description>
<Archive sha1sum="1cf88c783374b606d75bc87a383e1b5b5febc6b6" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/dolphin-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="4.97">baloo-devel</Dependency>
<Dependency versionFrom="23.08.5">baloo-widgets-devel</Dependency>
<Dependency versionFrom="6.1.0">baloo-devel</Dependency>
<Dependency versionFrom="24.12.1">baloo-widgets-devel</Dependency>
<Dependency versionFrom="5.19.0">kfilemetadata-devel</Dependency>
<Dependency versionFrom="5.43.0">extra-cmake-modules</Dependency>
<Dependency versionFrom="5.43.0">kactivities-devel</Dependency>
<Dependency versionFrom="5.43.0">kbookmarks-devel</Dependency>
<Dependency versionFrom="5.43.0">kcmutils-devel</Dependency>
<Dependency versionFrom="5.43.0">kcompletion-devel</Dependency>
<Dependency versionFrom="5.43.0">kconfig-devel</Dependency>
<Dependency versionFrom="5.43.0">kcoreaddons-devel</Dependency>
<Dependency versionFrom="5.43.0">kcrash-devel</Dependency>
<Dependency versionFrom="5.43.0">kdbusaddons-devel</Dependency>
<Dependency versionFrom="5.43.0">kdoctools-devel</Dependency>
<Dependency versionFrom="5.43.0">ki18n-devel</Dependency>
<Dependency versionFrom="5.43.0">kiconthemes-devel</Dependency>
<Dependency versionFrom="5.43.0">kinit-devel</Dependency>
<Dependency versionFrom="5.43.0">kio-devel</Dependency>
<Dependency versionFrom="5.43.0">knewstuff-devel</Dependency>
<Dependency versionFrom="5.43.0">knotifications-devel</Dependency>
<Dependency versionFrom="5.43.0">kparts-devel</Dependency>
<Dependency versionFrom="5.43.0">ktextwidgets-devel</Dependency>
<Dependency versionFrom="5.43.0">solid-devel</Dependency>
<Dependency versionFrom="5.8.0">qt5-base-devel</Dependency>
<Dependency>qt5-phonon-devel</Dependency>
<Dependency>qt5-x11extras-devel</Dependency>
<Dependency versionFrom="23.08.5">kio-extras-devel</Dependency>
<Dependency>extra-cmake-modules</Dependency>
<Dependency>plasma-activities-devel</Dependency>
<Dependency>kbookmarks-devel</Dependency>
<Dependency>kcmutils-devel</Dependency>
<Dependency>kcompletion-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kcrash-devel</Dependency>
<Dependency>kdbusaddons-devel</Dependency>
<Dependency>kguiaddons-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>ki18n-devel</Dependency>
<Dependency>kiconthemes-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency>knewstuff-devel</Dependency>
<Dependency>knotifications-devel</Dependency>
<Dependency>kparts-devel</Dependency>
<Dependency>ktextwidgets-devel</Dependency>
<Dependency>solid-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>qt6-phonon-devel</Dependency>
<Dependency versionFrom="24.12.1">kio-extras-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>docbook-xsl</Dependency>
<Dependency>kuserfeedback-devel</Dependency>
<Dependency>packagekit-qt5-devel</Dependency>
<Dependency>packagekit-qt6-devel</Dependency>
</BuildDependencies>
<Patches>
<!--Patch level="1">dolphin-17.04.0-allow-root.patch</Patch-->
<!--Patch level="1">kdebug-419585.patch</Patch-->
<!--Patch level="1">a07f2422.patch</Patch-->
</Patches>
</Source>
<Package>
<Name>dolphin</Name>
<RuntimeDependencies>
<Dependency>qt5-x11extras</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kfilemetadata</Dependency>
<Dependency>baloo</Dependency>
<Dependency>baloo-widgets</Dependency>
@@ -72,8 +71,9 @@
<Dependency>kservice</Dependency>
<Dependency>kbookmarks</Dependency>
<Dependency>kitemviews</Dependency>
<Dependency>qt5-phonon</Dependency>
<Dependency>kactivities</Dependency>
<Dependency>qt6-phonon</Dependency>
<Dependency>kguiaddons</Dependency>
<Dependency>plasma-activities</Dependency>
<Dependency>kcompletion</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kdbusaddons</Dependency>
@@ -85,7 +85,8 @@
<Dependency>knotifications</Dependency>
<Dependency>kwidgetsaddons</Dependency>
<Dependency>kuserfeedback</Dependency>
<Dependency>packagekit-qt5</Dependency>
<Dependency>packagekit-qt6</Dependency>
<Dependency>kcolorscheme</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
@@ -94,432 +95,44 @@
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Replaces>
<Package>dolphin-kf6</Package>
</Replaces>
</Package>
<Package>
<Name>dolphin-devel</Name>
<RuntimeDependencies>
<Dependency release="current">dolphin</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency>qt5-phonon-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>qt6-phonon-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency>kcmutils-devel</Dependency>
<Dependency>knewstuff-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kactivities-devel</Dependency>
<Dependency>plasma-activities-devel</Dependency>
<Dependency>baloo-devel</Dependency>
<Dependency versionFrom="23.08.5">baloo-widgets-devel</Dependency>
<Dependency versionFrom="24.12.1">baloo-widgets-devel</Dependency>
<Dependency>kfilemetadata-devel</Dependency>
<Dependency>kparts-devel</Dependency>
<Dependency>ktexteditor-devel</Dependency>
<Dependency>kdesignerplugin</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
</Files>
<Replaces>
<Package>dolphin-kf6-devel</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-11</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-03</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-22</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-07</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-04-13</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+4 -4
View File
@@ -5,17 +5,17 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
NoStrip=["/usr/share/icons"]
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("LICENSES/*")
+19 -407
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,11 +14,11 @@
<IsA>app:gui</IsA>
<PartOf>desktop.kde.games</PartOf>
<Summary>Three in a row game</Summary>
<Description>KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds.</Description>
<Archive sha1sum="5583304bf96ae6d85d95a228eef0316deebc650b" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kdiamond-23.08.5.tar.xz</Archive>
<Description>kdiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds.</Description>
<Archive sha1sum="0533124f35cc788bac709cab9ffc60aeb6e9aa8b" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kdiamond-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kdbusaddons-devel</Dependency>
@@ -30,13 +31,11 @@
<Dependency>kxmlgui-devel</Dependency>
<Dependency>knotifications-devel</Dependency>
<Dependency>knotifyconfig-devel</Dependency>
<Dependency versionFrom="23.08.5">libkdegames-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency versionFrom="24.12.1">libkdegames-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency>kcrash-devel</Dependency>
<Dependency>kcompletion-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
<Dependency>docbook-xsl</Dependency>
</BuildDependencies>
@@ -47,9 +46,11 @@
<RuntimeDependencies>
<Dependency>ki18n</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>kcrash</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kcompletion</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kdbusaddons</Dependency>
<Dependency>libkdegames</Dependency>
@@ -65,407 +66,18 @@
<Path fileType="data">/usr/share</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Replaces>
<Package>kdiamond-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-09</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>kdiamond</Name>
<Summary xml:lang="tr">Bir satırda üç oyunu</Summary>
<Description xml:lang="tr">KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur.</Description>
<Description xml:lang="tr">kdiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur.</Description>
</Source>
</PISI>
</PISI>
@@ -5,17 +5,17 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
NoStrip=["/usr/share/icons"]
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("LICENSES/*")
+17 -410
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,13 +14,13 @@
<IsA>app:gui</IsA>
<PartOf>desktop.kde.games</PartOf>
<Summary>Four in a row board game</Summary>
<Description>KFourInLine is a board game for two players based on the Connect-Four game.</Description>
<Archive sha1sum="afe5493e60567b6859a2831ed656fb40334be240" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kfourinline-23.08.5.tar.xz</Archive>
<Description>kfourinline is a board game for two players based on the Connect-Four game.</Description>
<Archive sha1sum="0b0aae8f9fce9c767e782a6ba219e4c2b8c6864f" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kfourinline-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
@@ -34,13 +35,9 @@
<Dependency>kdnssd-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency>knotifyconfig-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
<Dependency versionFrom="23.08.5">libkdegames-devel</Dependency>
<Dependency versionFrom="24.12.1">libkdegames-devel</Dependency>
</BuildDependencies>
</Source>
@@ -52,14 +49,13 @@
<Dependency>libgcc</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kcompletion</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>libkdegames</Dependency>
<Dependency>kconfigwidgets</Dependency>
<Dependency>kwidgetsaddons</Dependency>
<!-- <Dependency>kdelibs4-support</Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
@@ -68,407 +64,18 @@
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<Replaces>
<Package>kfourinline-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-09</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>kfourinline</Name>
<Summary xml:lang="tr">Bir satırda dört tahta oyunu</Summary>
<Description xml:lang="tr">KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur.</Description>
<Description xml:lang="tr">kfourinline iki kişiyle oynanan Hedef 4 türevi bir oyundur.</Description>
</Source>
</PISI>
</PISI>
+5 -5
View File
@@ -6,15 +6,15 @@
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "README*", "TODO")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING*", "README*", "TODO")
+19 -400
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -12,11 +13,11 @@
<Icon>khangman</Icon>
<IsA>app:gui</IsA>
<PartOf>desktop.kde.edu</PartOf>
<Summary>KHangMan is a game for kids based on the well-known hangman game</Summary>
<Description>KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. </Description>
<Archive sha1sum="47339fcbf7b0919f96d03e6bbd56481c10521474" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/khangman-23.08.5.tar.xz</Archive>
<Summary>khangman is a game for kids based on the well-known hangman game</Summary>
<Description>khangman is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. </Description>
<Archive sha1sum="0aa9ee9aa75d2c597e824f1ed11f388ebbf3b718" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/khangman-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>kdeclarative-devel</Dependency>
<Dependency>knewstuff-devel</Dependency>
@@ -30,10 +31,10 @@
<Dependency>kxmlgui-devel</Dependency>
<Dependency>kwidgetsaddons-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-linguist</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<Dependency versionFrom="23.08.5">libkeduvocdocument-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-linguist</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency versionFrom="24.12.1">libkeduvocdocument-devel</Dependency>
<Dependency>extra-cmake-modules</Dependency>
</BuildDependencies>
</Source>
@@ -41,7 +42,7 @@
<Package>
<Name>khangman</Name>
<RuntimeDependencies>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kdeclarative</Dependency>
<Dependency>knewstuff</Dependency>
<Dependency>ki18n</Dependency>
@@ -49,7 +50,7 @@
<Dependency>kconfig</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative</Dependency>
<Dependency>libkeduvocdocument</Dependency>
<Dependency>libgcc</Dependency>
</RuntimeDependencies>
@@ -60,400 +61,18 @@
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Replaces>
<Package>khangman-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="56">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="44">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="43">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="40">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="39">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-10</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-24</Date>
<Version>15.12.3</Version>
<Update release="57">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>khangman</Name>
<Summary xml:lang="tr">Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu</Summary>
<Description xml:lang="tr">KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor.</Description>
<Description xml:lang="tr">khangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor.</Description>
</Source>
</PISI>
</PISI>
@@ -5,15 +5,15 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("LICENSES/*")
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,11 +14,11 @@
<IsA>app:library</IsA>
<Summary>KDE PIM libraries</Summary>
<Description>Library for the KDE-PIM(Personal-Infomation-Management</Description>
<Archive sha1sum="8e9e1c0504fe4f79e27f9de7bb04b75e2e15c750" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kidentitymanagement-23.08.5.tar.xz</Archive>
<Archive sha1sum="9f112c60b4872101c0de6ece410b5039c4a28885" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kidentitymanagement-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency versionFrom="23.08.5">kpimtextedit-devel</Dependency>
<Dependency versionFrom="24.12.1">kpimtextedit-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency>kcodecs-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
@@ -26,25 +27,23 @@
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>ktextwidgets-devel</Dependency>
<Dependency>kwidgetsaddons-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency versionFrom="23.08.5">kpimtextedit-devel</Dependency>
<Dependency>ktextaddons-devel</Dependency>
<Dependency versionFrom="24.12.1">kpimtextedit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
<Dependency versionFrom="23.08.5">kpimtextedit-devel</Dependency>
<Dependency versionFrom="24.12.1">kpimtextedit-devel</Dependency>
<Dependency>extra-cmake-modules</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>kiconthemes-devel</Dependency>
<Dependency>grantlee-qt5-devel</Dependency>
<Dependency>kirigami-devel</Dependency>
<Dependency>kirigami-addons</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>kidentitymanagement</Name>
<RuntimeDependencies>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kpimtextedit</Dependency>
<Dependency>kio</Dependency>
<Dependency>ki18n</Dependency>
@@ -58,22 +57,28 @@
<Dependency>ktextwidgets</Dependency>
<Dependency>kwidgetsaddons</Dependency>
<Dependency>kpimtextedit</Dependency>
<Dependency>grantlee-qt5</Dependency>
<!-- <Dependency>grantlee-qt5</Dependency> -->
<Dependency>ktextaddons</Dependency>
<Dependency>kirigami</Dependency>
<Dependency>kirigami-addons</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/lib/qt6</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Replaces>
<Package>kidentitymanagement-kf6</Package>
</Replaces>
</Package>
<Package>
<Name>kidentitymanagement-devel</Name>
<Summary>Development files for kidentitymanagement</Summary>
<RuntimeDependencies>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="23.08.5">kpimtextedit-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency versionFrom="24.12.1">kpimtextedit-devel</Dependency>
<Dependency>ktextwidgets-devel</Dependency>
<Dependency release="current">kidentitymanagement</Dependency>
</RuntimeDependencies>
@@ -83,407 +88,18 @@
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
<Replaces>
<Package>kidentitymanagement-kf6-devel</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-23</Date>
<Version>17.04.2</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="8">
<Date>2017-03-03</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-22</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-10</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+4 -4
View File
@@ -5,17 +5,17 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
NoStrip=["/usr/share/icons"]
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("LICENSES/*")
+16 -408
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,11 +14,11 @@
<IsA>app:gui</IsA>
<PartOf>desktop.kde.games</PartOf>
<Summary>Run for your life</Summary>
<Description>Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you.</Description>
<Archive sha1sum="94c650d12349ecd6330b48d568168f02a702b5da" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/killbots-23.08.5.tar.xz</Archive>
<Description>killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you.</Description>
<Archive sha1sum="59a2f71d36bc99fc401c0841e5dd42a9d8cf8789" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/killbots-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kwidgetsaddons-devel</Dependency>
@@ -30,26 +31,22 @@
<Dependency>kio-devel</Dependency>
<Dependency>kcompletion-devel</Dependency>
<Dependency>knotifyconfig-devel</Dependency>
<Dependency versionFrom="23.08.5">libkdegames-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency versionFrom="24.12.1">libkdegames-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>killbots</Name>
<Name>killbots</Name>
<RuntimeDependencies>
<Dependency>ki18n</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kcompletion</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kdbusaddons</Dependency>
@@ -63,407 +60,18 @@
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<Replaces>
<Package>killbots-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-09</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>killbots</Name>
<Summary xml:lang="tr">Hayatta kalmak için kaçın</Summary>
<Description xml:lang="tr">Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek.</Description>
<Description xml:lang="tr">killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek.</Description>
</Source>
</PISI>
</PISI>
+4 -4
View File
@@ -5,15 +5,15 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("README.md")
+21 -407
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,17 +14,16 @@
<IsA>app:console</IsA>
<Summary>Job-based API for interacting with IMAP servers</Summary>
<Description>API for interacting with IMAP servers</Description>
<Archive sha1sum="e64da6ce7fa81de4875337122f86c33b0b6234e2" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kimap-23.08.5.tar.xz</Archive>
<Archive sha1sum="b7ca09191cc55da922c8be4853b6e7fb8d36d299" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kimap-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency versionFrom="23.08.5">kmime-devel</Dependency>
<Dependency versionFrom="24.12.1">kmime-devel</Dependency>
<Dependency>boost-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency>ki18n-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>cyrus-sasl-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
<Dependency>extra-cmake-modules</Dependency>
@@ -36,7 +36,7 @@
<Package>
<Name>kimap</Name>
<RuntimeDependencies>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kmime</Dependency>
<Dependency>kio</Dependency>
<Dependency>ki18n</Dependency>
@@ -47,19 +47,22 @@
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/lib/qt6</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share</Path>
</Files>
<Replaces>
<Package>kimap-kf6</Package>
</Replaces>
</Package>
<Package>
<Name>kimap-devel</Name>
<Summary>Development files for kimap</Summary>
<RuntimeDependencies>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency release="current">kimap</Dependency>
</RuntimeDependencies>
<Files>
@@ -67,407 +70,18 @@
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
<Replaces>
<Package>kimap-kf6-devel</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-12</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-23</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="8">
<Date>2017-03-03</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-21</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-27</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-19</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
+5 -5
View File
@@ -5,17 +5,17 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
NoStrip=["/usr/share/icons"]
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("COPYING*")
pisitools.dodoc("COPYING*")
+16 -408
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,12 +14,12 @@
<IsA>app:gui</IsA>
<PartOf>desktop.kde.games</PartOf>
<Summary>Yahtzee like dice game</Summary>
<Description>Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players.</Description>
<Archive sha1sum="860b9d32b7fb891578a17f782be0a9ab0f2aa89a" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kiriki-23.08.5.tar.xz</Archive>
<Description>kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players.</Description>
<Archive sha1sum="5a38161d3ac02b09966b6cb2737fce1c857838c5" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kiriki-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kdbusaddons-devel</Dependency>
@@ -29,13 +30,9 @@
<Dependency>kiconthemes-devel</Dependency>
<Dependency>kxmlgui-devel</Dependency>
<Dependency>kio-devel</Dependency>
<Dependency versionFrom="23.08.5">libkdegames-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency versionFrom="24.12.1">libkdegames-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
</BuildDependencies>
</Source>
@@ -47,7 +44,7 @@
<Dependency>libgcc</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>kdbusaddons</Dependency>
<Dependency>kiconthemes</Dependency>
@@ -61,407 +58,18 @@
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<Replaces>
<Package>kiriki-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-12</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-09</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>kiriki</Name>
<Summary xml:lang="tr">Yahtzee benzeri zar oyunu</Summary>
<Description xml:lang="tr">Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir.</Description>
<Description xml:lang="tr">kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir.</Description>
</Source>
</PISI>
</PISI>
@@ -5,15 +5,15 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("README*")
+21 -266
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -12,19 +13,19 @@
<IsA>library</IsA>
<Summary>Data model and extraction system for travel reservation information</Summary>
<Description>Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi</Description>
<Archive sha1sum="eafb891c7c11603cb342068eb762836da03b6890" type="tarxz">https://download.kde.org/stable/release-service/23.08.5/src/kitinerary-23.08.5.tar.xz</Archive>
<Archive sha1sum="8c3f6da316452d9dc2af143b288d32cd40d43964" type="tarxz">https://download.kde.org/stable/release-service/24.12.1/src/kitinerary-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency versionFrom="5.10.1">qt5-declarative-devel</Dependency>
<Dependency versionFrom="5.10.1">qt5-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>poppler-cpp-devel</Dependency>
<Dependency>kcontacts-devel</Dependency>
<Dependency>kcalendarcore-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency versionFrom="23.08.5">kpkpass-devel</Dependency>
<Dependency>poppler-devel</Dependency>
<Dependency versionFrom="24.12.1">kpkpass-devel</Dependency>
<Dependency>poppler-qt6-devel</Dependency>
<Dependency>ki18n-devel</Dependency>
<Dependency versionFrom="23.08.5">kmime-devel</Dependency>
<Dependency versionFrom="24.12.1">kmime-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kcodecs-devel</Dependency>
@@ -50,7 +51,7 @@
<Dependency>libgcc</Dependency>
<Dependency>kpkpass</Dependency>
<Dependency>kcodecs</Dependency>
<Dependency>poppler</Dependency>
<Dependency>poppler-qt6</Dependency>
<Dependency>kcalendarcore</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kcontacts</Dependency>
@@ -58,8 +59,8 @@
<Dependency>libxml2</Dependency>
<Dependency>openssl</Dependency>
<Dependency>zxing-cpp</Dependency>
<Dependency versionFrom="5.10.1">qt5-base</Dependency>
<Dependency versionFrom="5.10.1">qt5-declarative</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/xdg</Path>
@@ -68,6 +69,9 @@
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<Replaces>
<Package>kitinerary-kf6</Package>
</Replaces>
</Package>
<Package>
@@ -80,267 +84,18 @@
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
</Files>
<Replaces>
<Package>kitinerary-kf6-devel</Package>
</Replaces>
</Package>
<History>
<Update release="37">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="24">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="20">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="18">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="9">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="8">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="7">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="6">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="5">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="1">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Update release="38">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -5,17 +5,17 @@
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import pisitools
from pisi.actionsapi import kde5
from pisi.actionsapi import kde6
NoStrip=["/usr/share/icons"]
def setup():
kde5.configure()
kde6.configure()
def build():
kde5.make()
kde6.make()
def install():
kde5.install()
kde6.install()
pisitools.dodoc("LICENSES/*")
+17 -410
View File
@@ -1,3 +1,4 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
@@ -13,13 +14,13 @@
<IsA>app:gui</IsA>
<PartOf>desktop.kde.games</PartOf>
<Summary>Territory capture game</Summary>
<Description>KJumpingCube is a simple tactical game.</Description>
<Archive sha1sum="b2d8fa3f28ad185951fe58ac5107f2ac461babac" type="tarxz">mirrors://kde/stable/release-service/23.08.5/src/kjumpingcube-23.08.5.tar.xz</Archive>
<Description>kjumpingcube is a simple tactical game.</Description>
<Archive sha1sum="2d9d6f9057d5bfa62b7ad164398ed6cadaa4bae1" type="tarxz">mirrors://kde/stable/release-service/24.12.1/src/kjumpingcube-24.12.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>extra-cmake-modules</Dependency>
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-base-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-declarative-devel</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg-devel</Dependency>
<Dependency>kcoreaddons-devel</Dependency>
<Dependency>kconfig-devel</Dependency>
<Dependency>kitemmodels-devel</Dependency>
@@ -33,13 +34,9 @@
<Dependency>kio-devel</Dependency>
<Dependency>knotifyconfig-devel</Dependency>
<Dependency>knewstuff-devel</Dependency>
<!-- <Dependency>kdelibs4-support-devel</Dependency> -->
<Dependency>kdesignerplugin</Dependency>
<Dependency>kdoctools-devel</Dependency>
<Dependency>kemoticons-devel</Dependency>
<Dependency>kinit-devel</Dependency>
<Dependency>kunitconversion-devel</Dependency>
<Dependency versionFrom="23.08.5">libkdegames-devel</Dependency>
<Dependency versionFrom="24.12.1">libkdegames-devel</Dependency>
</BuildDependencies>
</Source>
@@ -50,13 +47,12 @@
<Dependency>libgcc</Dependency>
<Dependency>kconfig</Dependency>
<Dependency>kxmlgui</Dependency>
<Dependency versionFrom="5.15.2">qt5-svg</Dependency>
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
<Dependency versionFrom="6.6.3">qt6-svg</Dependency>
<Dependency versionFrom="6.6.3">qt6-base</Dependency>
<Dependency>kcoreaddons</Dependency>
<Dependency>libkdegames</Dependency>
<Dependency>kconfigwidgets</Dependency>
<Dependency>kwidgetsaddons</Dependency>
<!-- <Dependency>kdelibs4-support</Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share</Path>
@@ -65,407 +61,18 @@
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/etc/xdg/kjumpingcube.categories</Path>
</Files>
<Replaces>
<Package>kjumpingcube-kf6</Package>
</Replaces>
</Package>
<History>
<Update release="57">
<Date>2024-02-17</Date>
<Version>23.08.5</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="56">
<Date>2023-12-07</Date>
<Version>23.08.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="55">
<Date>2023-10-27</Date>
<Version>23.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="54">
<Date>2023-09-14</Date>
<Version>23.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="53">
<Date>2023-06-08</Date>
<Version>23.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="52">
<Date>2023-05-11</Date>
<Version>23.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="51">
<Date>2023-04-20</Date>
<Version>23.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="50">
<Date>2023-03-03</Date>
<Version>22.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="49">
<Date>2023-01-05</Date>
<Version>22.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="48">
<Date>2022-12-08</Date>
<Version>22.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="47">
<Date>2022-11-06</Date>
<Version>22.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="46">
<Date>2022-09-24</Date>
<Version>22.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="45">
<Date>2022-07-15</Date>
<Version>22.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="44">
<Date>2022-06-21</Date>
<Version>22.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="43">
<Date>2022-05-17</Date>
<Version>22.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="42">
<Date>2022-05-07</Date>
<Version>22.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="41">
<Date>2022-02-26</Date>
<Version>21.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="40">
<Date>2022-01-10</Date>
<Version>21.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="39">
<Date>2021-10-15</Date>
<Version>21.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="38">
<Date>2021-09-13</Date>
<Version>21.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="37">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="36">
<Date>2021-05-09</Date>
<Version>21.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="35">
<Date>2021-03-10</Date>
<Version>20.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="34">
<Date>2020-09-13</Date>
<Version>20.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="33">
<Date>2020-06-11</Date>
<Version>20.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="32">
<Date>2020-05-06</Date>
<Version>20.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="31">
<Date>2020-03-30</Date>
<Version>19.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="30">
<Date>2020-02-02</Date>
<Version>19.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="29">
<Date>2019-09-15</Date>
<Version>19.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="28">
<Date>2019-07-23</Date>
<Version>19.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="27">
<Date>2019-04-18</Date>
<Version>19.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2019-03-11</Date>
<Version>18.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="25">
<Date>2019-02-08</Date>
<Version>18.12.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="24">
<Date>2019-01-12</Date>
<Version>18.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="23">
<Date>2018-12-26</Date>
<Version>18.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="22">
<Date>2018-12-12</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="21">
<Date>2018-11-08</Date>
<Version>18.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="20">
<Date>2018-10-18</Date>
<Version>18.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="19">
<Date>2018-08-11</Date>
<Version>18.04.1</Version>
<Comment>Rebuild</Comment>
<Name>Ertuğrul Erata</Name>
<Email>ertugrulerata@gmail.com</Email>
</Update>
<Update release="18">
<Date>2018-05-15</Date>
<Version>18.04.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="17">
<Date>2018-04-25</Date>
<Version>18.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="16">
<Date>2018-03-22</Date>
<Version>17.12.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="15">
<Date>2018-02-03</Date>
<Version>17.12.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2017-12-15</Date>
<Version>17.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="13">
<Date>2017-11-11</Date>
<Version>17.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2017-10-15</Date>
<Version>17.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2017-09-14</Date>
<Version>17.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2017-07-17</Date>
<Version>17.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Ali Algul</Name>
<Email>aligulle3801@gmail.com</Email>
</Update>
<Update release="9">
<Date>2017-06-29</Date>
<Version>17.04.2</Version>
<Comment>Version bump.</Comment>
<Name>Kamil Atlı</Name>
<Email>suvari@pisilinux.org</Email>
</Update>
<Update release="8">
<Date>2017-03-09</Date>
<Version>16.12.0</Version>
<Comment>Rebuild for new Toolchain.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="7">
<Date>2016-12-23</Date>
<Version>16.12.0</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="6">
<Date>2016-11-27</Date>
<Version>16.08.3</Version>
<Comment>Version bump.</Comment>
<Name>Stefan Gronewold(groni)</Name>
<Email>groni@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2016-10-22</Date>
<Version>16.08.2</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="4">
<Date>2016-10-20</Date>
<Version>16.08.1</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilnux.org</Email>
</Update>
<Update release="3">
<Date>2016-07-31</Date>
<Version>16.04.3</Version>
<Comment>Version bump.</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-05-19</Date>
<Version>16.04.0</Version>
<Comment>Version bump.</Comment>
<Name>Burak Ertürk</Name>
<Email>burakerturk@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2016-03-20</Date>
<Version>15.12.3</Version>
<Update release="58">
<Date>2025-01-09</Date>
<Version>24.12.1</Version>
<Comment>First release</Comment>
<Name>Yusuf Aydemir</Name>
<Email>yusuf.aydemir@pisilinux.org</Email>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -3,6 +3,6 @@
<Source>
<Name>kjumpingcube</Name>
<Summary xml:lang="tr">Alan kapma oyunu</Summary>
<Description xml:lang="tr">KJumpingCube basit bir taktik oyunudur.</Description>
<Description xml:lang="tr">kjumpingcube basit bir taktik oyunudur.</Description>
</Source>
</PISI>
</PISI>