diff --git a/desktop/cinnamon/caribou/pspec.xml b/desktop/cinnamon/caribou/pspec.xml
index 618480d569..4b29d0b73b 100644
--- a/desktop/cinnamon/caribou/pspec.xml
+++ b/desktop/cinnamon/caribou/pspec.xml
@@ -31,7 +31,7 @@
libxklavier-devel
at-spi2-core-devel
desktop-file-utils
- python-pygobject3-devel
+ python3-pygobject3-devel
gobject-introspection-devel
gsettings-desktop-schemas-devel
diff --git a/desktop/cinnamon/cinnamon-control-center/actions.py b/desktop/cinnamon/cinnamon-control-center/actions.py
new file mode 100644
index 0000000000..947f324a2c
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-control-center/actions.py
@@ -0,0 +1,25 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2.
+# See the file http://www.gnu.org/copyleft/gpl.txt.
+
+from pisi.actionsapi import mesontools, pisitools
+
+def setup():
+ mesontools.configure("--prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/cinnamon-control-center \
+ --localstatedir=/var \
+ --buildtype=plain")
+
+ #pisitools.dosed("libtool", "( -shared )", " -Wl,-O1,--as-needed\\1")
+ #pisitools.dosed("libtool", '( if test "\$export_dynamic" = yes && test -n "\$export_dynamic_flag_spec"; then)', ' func_append compile_command " -Wl,-O1,--as-needed"\n func_append finalize_command " -Wl,-O1,--as-needed"\n\\1')
+
+def build():
+ mesontools.build()
+
+def install():
+ mesontools.install()
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
diff --git a/desktop/cinnamon/cinnamon-control-center/files/5d4eeb09309eb073235fec1418bc988306c99c98.patch b/desktop/cinnamon/cinnamon-control-center/files/5d4eeb09309eb073235fec1418bc988306c99c98.patch
new file mode 100644
index 0000000000..1448ba5f52
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-control-center/files/5d4eeb09309eb073235fec1418bc988306c99c98.patch
@@ -0,0 +1,56 @@
+From 5d4eeb09309eb073235fec1418bc988306c99c98 Mon Sep 17 00:00:00 2001
+From: Eli Schwartz
+Date: Tue, 21 Jun 2022 22:03:15 -0400
+Subject: [PATCH] meson: fix installation of symlinks
+
+Fixes regression in commit 5aa5fab4348de4496efe9ec0b5faa20be234d56e. The
+created symlinks always considered the directory to be installed to, and
+created absolute symlinks pointing from the source to the destination.
+This is wrong, because while the source needs to be installed *into* the
+directory to be installed to, the destination needs to not include the
+$DESTDIR.
+
+There are also some sub-optimal design points around scripting the
+install prefix. Particularly, Meson has a dedicated variable for the
+combination of DESTDIR + prefix, so use that instead of manually slicing
+up the prefix so that `os.path.join` won't drop the DESTDIR. The other
+solution would be to acknowledge that DESTDIR (at least on non-Windows
+systems) uses string concatenation, not path-joining semantics, but...
+Meson already supplies this pre-done, so why bother?
+
+Fixes #285
+---
+ install-scripts/desktop-file-links.py | 13 ++++---------
+ 1 file changed, 4 insertions(+), 9 deletions(-)
+
+diff --git a/install-scripts/desktop-file-links.py b/install-scripts/desktop-file-links.py
+index 6120b98..fdcd47c 100755
+--- a/install-scripts/desktop-file-links.py
++++ b/install-scripts/desktop-file-links.py
+@@ -4,16 +4,11 @@
+ import subprocess
+
+ # Symlinks desktop files to c-c-c's panel dir so the cinnamon-control-center binary can find the plugins.
+-dest = os.environ.get('DESTDIR')
++destdir_prefix = os.environ.get('MESON_INSTALL_DESTDIR_PREFIX')
+ prefix = os.environ.get('MESON_INSTALL_PREFIX')
+
+-if dest:
+- root = dest
+-else:
+- root = "/"
+-
+-source_location = os.path.join(root, prefix[1:], "share", "applications")
+-target_location = os.path.join(root, prefix[1:], "share", "cinnamon-control-center", "panels")
++source_location = os.path.join(prefix, "share", "applications")
++target_location = os.path.join(destdir_prefix, "share", "cinnamon-control-center", "panels")
+
+ links = [
+ "cinnamon-color-panel.desktop",
+@@ -32,4 +27,4 @@
+
+ subprocess.call(['ln', '-s', orig_path, link_path])
+
+-exit(0)
+\ No newline at end of file
++exit(0)
diff --git a/desktop/cinnamon/cinnamon-control-center/files/cinnamon-control-center-5.2.1-fix-libnma.patch b/desktop/cinnamon/cinnamon-control-center/files/cinnamon-control-center-5.2.1-fix-libnma.patch
new file mode 100644
index 0000000000..ae9caceed7
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-control-center/files/cinnamon-control-center-5.2.1-fix-libnma.patch
@@ -0,0 +1,61 @@
+https://bugs.gentoo.org/840317
+https://github.com/linuxmint/cinnamon/issues/10616
+
+From 0f4d212874c4fbee18b860963d0a5c7bd54dcfd1 Mon Sep 17 00:00:00 2001
+From: Michael Webster
+Date: Mon, 31 Jan 2022 08:56:28 -0500
+Subject: [PATCH] network: Remove old workaround for openvpn widgets.
+
+I can't reproduce the original issue anymore, and NMACertChooser
+is removed in network-manager-openvpn 1.8.34.
+
+Fixes #10616
+
+ref:
+6db4961fd3a002182984d0e71ec364c9befdd93b
+---
+ meson.build | 2 --
+ panels/network/cc-network-panel.c | 10 ----------
+ 2 files changed, 12 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index f1f213b..c4d7d86 100644
+--- a/meson.build
++++ b/meson.build
+@@ -56,8 +56,6 @@ else
+ libnma= dependency('', required: false)
+ endif
+
+-config.set('HAVE_NMA_18', libnm.version().version_compare('>=1.8.0'))
+-
+ if get_option('modemmanager')
+ if not get_option('networkmanager')
+ error('*** NetworkManager is required by ModemManager ***')
+diff --git a/panels/network/cc-network-panel.c b/panels/network/cc-network-panel.c
+index a4289de..d1925e4 100644
+--- a/panels/network/cc-network-panel.c
++++ b/panels/network/cc-network-panel.c
+@@ -47,10 +47,6 @@
+ #include
+ #endif
+
+-#ifdef HAVE_NMA_18
+-#include
+-#endif
+-
+ CC_PANEL_REGISTER (CcNetworkPanel, cc_network_panel)
+
+ #define NETWORK_PANEL_PRIVATE(o) \
+@@ -1244,12 +1240,6 @@ cc_network_panel_init (CcNetworkPanel *panel)
+ return;
+ }
+
+-#ifdef HAVE_NMA_18
+- /* some newer VPN plugins pre-require internal resources from libnma */
+- /* this solution is really ugly, but works clean */
+- gtk_widget_destroy (nma_cert_chooser_new ("dummy", NMA_CERT_CHOOSER_FLAG_NONE));
+-#endif
+-
+ panel->priv->cancellable = g_cancellable_new ();
+
+ panel->priv->treeview = GTK_WIDGET (gtk_builder_get_object (panel->priv->builder,
diff --git a/desktop/cinnamon/cinnamon-control-center/pspec.xml b/desktop/cinnamon/cinnamon-control-center/pspec.xml
new file mode 100644
index 0000000000..5a0a365e69
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-control-center/pspec.xml
@@ -0,0 +1,142 @@
+
+
+
+
+ cinnamon-control-center
+ https://github.com/linuxmint/cinnamon-control-center
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ cinnamon-control-center
+ app:gui
+ The Control Center for Cinnamon
+ The Control Center for Cinnamon
+ https://github.com/linuxmint/cinnamon-control-center/archive/refs/tags/5.4.3.tar.gz
+
+ meson
+ samurai
+ libnma-devel
+ regionset
+ intltool
+ gettext-devel
+ colord-devel
+ dbus-glib-devel
+ dbus-devel
+ glib2-devel
+ gdk-pixbuf-devel
+ gtk3-devel
+ upower-devel
+ libwacom-devel
+ libnotify-devel
+ libxml2-devel
+ libmm-glib-devel
+ libnma-devel
+ NetworkManager-devel
+ gnome-online-accounts-devel
+ ModemManager-devel
+ xorg-input-wacom-devel
+ libX11-devel
+ libxml2-devel
+ accountsservice-devel
+ libxkbfile-devel
+ polkit-devel
+ iso-codes-devel
+ mesa-devel
+ desktop-file-utils
+ cinnamon-settings-daemon-devel
+ cinnamon-desktop-devel
+ cinnamon-menus-devel
+ docbook-xsl
+ libgnomekbd-devel
+ libxklavier-devel
+ libXi-devel
+ pulseaudio-libs-devel
+ timezone
+ fontconfig-devel
+
+
+
+
+
+
+
+
+ cinnamon-control-center
+
+ atk
+ cups
+ mesa
+ gtk3
+ dbus
+ cairo
+ glib2
+ libXi
+ pango
+ upower
+ libnma
+ colord
+ libX11
+ polkit
+ libwacom
+ regionset
+ freetype
+ iso-codes
+ dbus-glib
+ libnotify
+ fontconfig
+ gdk-pixbuf
+ libmm-glib
+ libgnomekbd
+ libxklavier
+ ModemManager
+ polkit-gnome
+ NetworkManager
+ cinnamon-menus
+ accountsservice
+ pulseaudio-libs
+ cinnamon-desktop
+ gnome-color-manager
+ gnome-online-accounts
+ desktop-file-utils
+ cinnamon-translations
+ network-manager-applet
+ cinnamon-settings-daemon
+
+
+ /usr/bin
+ /usr/lib/cinnamon-control-center-1
+ /usr/lib/libcinnamon-control-center*
+ /usr/share/applications
+ /usr/share/cinnamon-control-center
+ /usr/share/doc
+ /usr/share/glib-2.0
+ /usr/share/icons
+
+
+
+
+ cinnamon-control-center-devel
+ development
+
+ cinnamon-control-center
+ gtk3-devel
+ glib2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-05-30
+ 5.4.3
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-control-center/translations.xml b/desktop/cinnamon/cinnamon-control-center/translations.xml
new file mode 100644
index 0000000000..aa8daacba2
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-control-center/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ cinnamon-control-center
+ Cinnamon için kontrol merkezi
+ Cinnamon için kontrol merkezi
+
+
+
+ cinnamon-control-center-devel
+ cinnamon-control-center için geliştirme dosyaları
+
+
diff --git a/desktop/cinnamon/cinnamon-menus/actions.py b/desktop/cinnamon/cinnamon-menus/actions.py
new file mode 100644
index 0000000000..e6648994b8
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-menus/actions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+
+from pisi.actionsapi import get
+from pisi.actionsapi import mesontools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+def setup():
+ mesontools.configure("--prefix=/usr \
+ --buildtype=plain \
+ -Ddeprecated_warnings=false \
+ -Denable_debug=false")
+
+def build():
+ mesontools.build()
+
+def install():
+ mesontools.install()
+ pisitools.dodoc("AUTHORS", "COPYING", "NEWS", "README*")
diff --git a/desktop/cinnamon/cinnamon-menus/pspec.xml b/desktop/cinnamon/cinnamon-menus/pspec.xml
new file mode 100644
index 0000000000..264291878d
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-menus/pspec.xml
@@ -0,0 +1,62 @@
+
+
+
+
+ cinnamon-menus
+ https://github.com/linuxmint/cinnamon-menus
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ LGPLv2.1
+ app:gui
+ cinnamon
+ A menu system for the Cinnamon project
+ A menu system for the Cinnamon project
+ https://github.com/linuxmint/cinnamon-menus/archive/refs/tags/5.4.0.tar.gz
+
+ meson
+ samurai
+ intltool
+ glib2-devel
+ python3-devel
+ gobject-introspection-devel
+
+
+
+ cinnamon-menus
+
+ glib2
+
+
+ /usr/bin
+ /usr/lib/libcinnamon*
+ /usr/lib/girepository-1.0
+ /usr/share/doc
+
+
+
+ cinnamon-menus-devel
+ Development files for cinnamon-menus
+ development
+
+ glib2-devel
+ cinnamon-menus
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/share/gir-1.0
+
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First Release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-screensaver/actions.py b/desktop/cinnamon/cinnamon-screensaver/actions.py
new file mode 100644
index 0000000000..78119a9413
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-screensaver/actions.py
@@ -0,0 +1,21 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2.
+# See the file http://www.gnu.org/copyleft/gpl.txt.
+
+from pisi.actionsapi import mesontools, pisitools
+
+def setup():
+ mesontools.configure("--prefix=/usr \
+ --sysconfdir=/etc \
+ --libexecdir=/usr/lib/cinnamon-screensaver \
+ --buildtype=plain")
+
+def build():
+ mesontools.build()
+
+def install():
+ mesontools.install()
+
+ pisitools.dodoc("AUTHORS", "COPYING*", "README*", "NEWS")
diff --git a/desktop/cinnamon/cinnamon-screensaver/pspec.xml b/desktop/cinnamon/cinnamon-screensaver/pspec.xml
new file mode 100644
index 0000000000..e5d083fe39
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-screensaver/pspec.xml
@@ -0,0 +1,123 @@
+
+
+
+
+ cinnamon-screensaver
+ https://github.com/linuxmint/cinnamon-screensaver
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ cinnamon-screensaver
+ app:gui
+ Screensaver designed to integrate well with the Cinnamon desktop
+ Screensaver designed to integrate well with the Cinnamon desktop
+ https://github.com/linuxmint/cinnamon-screensaver/archive/refs/tags/5.4.0.tar.gz
+
+ gnome-common
+ meson
+ samurai
+ intltool
+ glib2-devel
+ gtk3-devel
+ gobject-introspection-devel
+ libX11-devel
+ libXext-devel
+ libXrandr-devel
+ dbus-glib-devel
+ libXinerama-devel
+ libxklavier-devel
+ libXScrnSaver-devel
+ python3-devel
+ desktop-file-utils
+ pam-devel
+ librsvg-devel
+ pango-devel
+ libXrandr-devel
+ python3-pygobject3-devel
+ gettext-devel
+ libxkbfile-devel
+ gdk-pixbuf-devel
+ libgnomekbd-devel
+ cairo-devel
+ xorg-proto
+ libXxf86miscproto-devel
+ libXxf86misc-devel
+ libXxf86vm-devel
+ libgnome-keyring
+
+
+
+
+ cinnamon-screensaver
+
+ pam
+ xapp
+ pango
+ libXrandr
+ python3-cairo
+ python3-xapp
+ python3-setproctitle
+ python3-pygobject3
+ accountsservice
+ dbus
+ gtk3
+ cairo
+ glib2
+ libX11
+ libXext
+ dbus-glib
+ gdk-pixbuf
+ libXxf86vm
+ libgnomekbd
+ libxklavier
+ libXinerama
+ libXxf86misc
+ libgnome-keyring
+ cinnamon-desktop
+ cinnamon-translations
+
+
+ /usr/bin
+ /etc
+ /usr/lib/girepository-1.0
+ /usr/lib/cinnamon-screensaver
+ /usr/lib/cs-backup-locker
+ /usr/lib/libcscreensaver.*
+ /usr/share/applications
+ /usr/share/cinnamon-screensaver
+ /usr/share/dbus-1
+ /usr/share/doc
+ /usr/share/icons
+
+
+
+
+ cinnamon-screensaver-devel
+ development
+
+ cinnamon-screensaver
+ gtk3-devel
+ glib2-devel
+ libX11-devel
+ libXext-devel
+ libXinerama-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/share/gir-1.0
+
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-screensaver/translations.xml b/desktop/cinnamon/cinnamon-screensaver/translations.xml
new file mode 100644
index 0000000000..fda138d7d1
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-screensaver/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ cinnamon-screensaver
+ Cinnamon masaüstü ile iyi entegre edilmiş bir ekran koruyucu.
+ Cinnamon masaüstü ile iyi entegre edilmiş bir ekran koruyucu.
+
+
+
+ cinnamon-screensaver-devel
+ cinnamon-screensaver için geliştirme dosyaları
+
+
diff --git a/desktop/cinnamon/cinnamon-session/actions.py b/desktop/cinnamon/cinnamon-session/actions.py
new file mode 100644
index 0000000000..f9a5af0d1f
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-session/actions.py
@@ -0,0 +1,23 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import pisitools, mesontools
+
+
+def setup():
+ mesontools.configure("--prefix=/usr \
+ --libexecdir=/usr/lib/cinnamon-session \
+ --buildtype=plain")
+
+
+def build():
+ mesontools.build()
+
+
+def install():
+ mesontools.install()
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
diff --git a/desktop/cinnamon/cinnamon-session/pspec.xml b/desktop/cinnamon/cinnamon-session/pspec.xml
new file mode 100644
index 0000000000..0034262859
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-session/pspec.xml
@@ -0,0 +1,94 @@
+
+
+
+
+ cinnamon-session
+ https://github.com/linuxmint/cinnamon-session
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app
+ cinnamon
+ Cinnamon session manager
+ Cinnamon-session manages a Cinnamon desktop or GDM login session. It starts up the other core components and handles logout and saving the session.
+ https://github.com/linuxmint/cinnamon-session/archive/refs/tags/5.4.0.tar.gz
+
+ xmlto
+ meson
+ xtrans
+ samurai
+ intltool
+ xapp-devel
+ mesa-devel
+ gtk3-devel
+ cairo-devel
+ gconf-devel
+ glib2-devel
+ libSM-devel
+ libICE-devel
+ libX11-devel
+ libXau-devel
+ libXext-devel
+ dbus-glib-devel
+ gdk-pixbuf-devel
+ libXrender-devel
+ libcanberra-devel
+ libXcomposite-devel
+ gettext-devel
+ elogind-devel
+ polkit-devel
+ json-glib-devel
+ upower-devel
+ libxslt-devel
+ libxcb-devel
+ libXtst-devel
+ pangox-compat-devel
+ xkeyboard-config
+ util-linux
+
+
+
+
+ cinnamon-session
+
+ gtk3
+ xapp
+ cairo
+ glib2
+ libSM
+ libICE
+ libX11
+ libXau
+ elogind
+ libXext
+ libXtst
+ libglvnd
+ dbus-x11
+ gdk-pixbuf
+ libXrender
+ libcanberra
+ polkit-gnome
+ libXcomposite
+ cinnamon-desktop
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/man
+ /usr/share/doc
+
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-session/translations.xml b/desktop/cinnamon/cinnamon-session/translations.xml
new file mode 100644
index 0000000000..7c92767a61
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-session/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ cinnamon-session
+ Cinnamon oturum yönetisici
+ Cinnamon oturumu bir Cinnamon masaüstü veya GDM giriş oturumunu yönetir.
+
+
diff --git a/desktop/cinnamon/cinnamon-settings-daemon/actions.py b/desktop/cinnamon/cinnamon-settings-daemon/actions.py
new file mode 100644
index 0000000000..047d0ae2a5
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-settings-daemon/actions.py
@@ -0,0 +1,20 @@
+#!/usr/bin/python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 2.
+# See the file http://www.gnu.org/copyleft/gpl.txt.
+
+from pisi.actionsapi import mesontools, pisitools
+
+def setup():
+ mesontools.configure("--prefix=/usr \
+ --libexecdir=/usr/lib/cinnamon-settings-daemon \
+ --buildtype=plain")
+
+def build():
+ mesontools.build()
+
+def install():
+ mesontools.install()
+
+ pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
diff --git a/desktop/cinnamon/cinnamon-settings-daemon/pspec.xml b/desktop/cinnamon/cinnamon-settings-daemon/pspec.xml
new file mode 100644
index 0000000000..77c32c33d1
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-settings-daemon/pspec.xml
@@ -0,0 +1,132 @@
+
+
+
+
+ cinnamon-settings-daemon
+ https://github.com/linuxmint/cinnamon-settings-daemon
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app:gui
+ The Cinnamon Settings daemon
+ The Cinnamon Settings daemon
+ https://github.com/linuxmint/cinnamon-settings-daemon/archive/refs/tags/5.4.1.tar.gz
+
+ meson
+ samurai
+ gettext-devel
+ intltool
+ libcanberra-devel
+ dbus-glib-devel
+ cinnamon-desktop-devel
+ colord-devel
+ cups-devel
+ fontconfig-devel
+ glib2-devel
+ libgnomekbd-devel
+ gtk3-devel
+ libgudev-devel
+ libnotify-devel
+ xorg-proto
+ nss-devel
+ polkit-devel
+ pulseaudio-libs-devel
+ upower-devel
+ libwacom-devel
+ xorg-input-wacom-devel
+ libX11-devel
+ libXext-devel
+ libXfixes-devel
+ libXi-devel
+ libxklavier-devel
+ libXtst-devel
+ librsvg-devel
+ lcms2-devel
+ elogind-devel
+ libxkbfile-devel
+ docbook-xsl
+ libcanberra-gtk3-devel
+ libxslt-devel
+ libXrandr-devel
+ libXScrnSaver-devel
+ libxml2-devel
+ libXxf86misc-devel
+ gdk-pixbuf-devel
+
+
+
+
+ cinnamon-settings-daemon
+
+ nss
+ cups
+ gtk3
+ nspr
+ cairo
+ glib2
+ lcms2
+ libXi
+ colord
+ libX11
+ polkit
+ upower
+ libXext
+ libgudev
+ pango
+ elogind
+ libXtst
+ librsvg
+ libwacom
+ dbus-glib
+ libXfixes
+ libnotify
+ fontconfig
+ gdk-pixbuf
+ libcanberra
+ libgnomekbd
+ libxklavier
+ pulseaudio-libs
+ cinnamon-desktop
+ libcanberra-gtk3
+ cinnamon-translations
+
+
+ /usr/bin
+ /etc
+ /usr/lib/cinnamon-settings-daemon*
+ /usr/lib/csd*
+ /usr/share/applications
+ /usr/share/cinnamon-settings-daemon*
+ /usr/share/dbus-1
+ /usr/share/doc
+ /usr/share/glib-2.0
+ /usr/share/icons
+ /usr/share/polkit-1
+
+
+
+
+ cinnamon-settings-daemon-devel
+ development
+
+ cinnamon-settings-daemon
+ glib2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-06-30
+ 5.4.1
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-settings-daemon/translations.xml b/desktop/cinnamon/cinnamon-settings-daemon/translations.xml
new file mode 100644
index 0000000000..61a176b57a
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-settings-daemon/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ cinnamon-settings-daemon
+ Cinnamon ayarları servisi
+ Cinnamon ayarları servisi
+
+
+
+ cinnamon-settings-daemon-devel
+ cinnamon-settings-daemon için geliştirme dosyaları
+
+
diff --git a/desktop/cinnamon/cinnamon-translations/actions.py b/desktop/cinnamon/cinnamon-translations/actions.py
new file mode 100644
index 0000000000..c809768515
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-translations/actions.py
@@ -0,0 +1,19 @@
+#!/usr/bin/env python
+# -*- coding: utf-8 -*-
+#
+# Licensed under the GNU General Public License, version 3.
+# See the file http://www.gnu.org/licenses/gpl.txt
+
+from pisi.actionsapi import autotools
+from pisi.actionsapi import pisitools
+
+
+def build():
+ autotools.make()
+
+
+def install():
+ pisitools.insinto("/usr/share/locale", "po-export/*")
+ pisitools.insinto("/usr/share/locale", "usr/share/locale/*")
+
+ pisitools.dodoc("README*", "COPYING")
diff --git a/desktop/cinnamon/cinnamon-translations/pspec.xml b/desktop/cinnamon/cinnamon-translations/pspec.xml
new file mode 100644
index 0000000000..c020d3c365
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-translations/pspec.xml
@@ -0,0 +1,39 @@
+
+
+
+
+ cinnamon-translations
+ https://github.com/linuxmint/cinnamon-translations
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ locale
+ cinnamon-language
+ Translations for Cinnamon and Nemo
+ Translations for Cinnamon and Nemo
+ https://github.com/linuxmint/cinnamon-translations/archive/refs/tags/5.4.1.tar.gz
+
+ make
+
+
+
+
+ cinnamon-translations
+
+ /usr/share/locale
+ /usr/share/doc
+
+
+
+
+
+ 2022-06-30
+ 5.4.1
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
diff --git a/desktop/cinnamon/cinnamon-translations/translations.xml b/desktop/cinnamon/cinnamon-translations/translations.xml
new file mode 100644
index 0000000000..889c8c2d76
--- /dev/null
+++ b/desktop/cinnamon/cinnamon-translations/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ cinnamon-translations
+ Cinnamon ve Nemo için çeviriler
+ Cinnamon ve Nemo için çeviriler
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index a152ab7516..19eaa365c3 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -628,6 +628,67 @@
+
+
+ cinnamon-menus
+ https://github.com/linuxmint/cinnamon-menus
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ LGPLv2.1
+ app:gui
+ desktop.cinnamon
+ A menu system for the Cinnamon project
+ A menu system for the Cinnamon project
+ cinnamon
+ https://github.com/linuxmint/cinnamon-menus/archive/refs/tags/5.4.0.tar.gz
+
+ meson
+ samurai
+ intltool
+ glib2-devel
+ python3-devel
+ gobject-introspection-devel
+
+ desktop/cinnamon/cinnamon-menus/pspec.xml
+
+
+ cinnamon-menus
+
+ glib2
+
+
+ /usr/bin
+ /usr/lib/libcinnamon*
+ /usr/lib/girepository-1.0
+ /usr/share/doc
+
+
+
+ cinnamon-menus-devel
+ Development files for cinnamon-menus
+ development
+
+ glib2-devel
+ cinnamon-menus
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/share/gir-1.0
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First Release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
mint-themes
@@ -841,6 +902,399 @@
+
+
+ cinnamon-control-center
+ https://github.com/linuxmint/cinnamon-control-center
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.cinnamon
+ The Control Center for Cinnamon
+ Cinnamon için kontrol merkezi
+ The Control Center for Cinnamon
+ Cinnamon için kontrol merkezi
+ cinnamon-control-center
+ https://github.com/linuxmint/cinnamon-control-center/archive/refs/tags/5.4.3.tar.gz
+
+ meson
+ samurai
+ libnma-devel
+ regionset
+ intltool
+ gettext-devel
+ colord-devel
+ dbus-glib-devel
+ dbus-devel
+ glib2-devel
+ gdk-pixbuf-devel
+ gtk3-devel
+ upower-devel
+ libwacom-devel
+ libnotify-devel
+ libxml2-devel
+ libmm-glib-devel
+ libnma-devel
+ NetworkManager-devel
+ gnome-online-accounts-devel
+ ModemManager-devel
+ xorg-input-wacom-devel
+ libX11-devel
+ libxml2-devel
+ accountsservice-devel
+ libxkbfile-devel
+ polkit-devel
+ iso-codes-devel
+ mesa-devel
+ desktop-file-utils
+ cinnamon-settings-daemon-devel
+ cinnamon-desktop-devel
+ cinnamon-menus-devel
+ docbook-xsl
+ libgnomekbd-devel
+ libxklavier-devel
+ libXi-devel
+ pulseaudio-libs-devel
+ timezone
+ fontconfig-devel
+
+ desktop/cinnamon/cinnamon-control-center/pspec.xml
+
+
+ cinnamon-control-center
+
+ atk
+ cups
+ mesa
+ gtk3
+ dbus
+ cairo
+ glib2
+ libXi
+ pango
+ upower
+ libnma
+ colord
+ libX11
+ polkit
+ libwacom
+ regionset
+ freetype
+ iso-codes
+ dbus-glib
+ libnotify
+ fontconfig
+ gdk-pixbuf
+ libmm-glib
+ libgnomekbd
+ libxklavier
+ ModemManager
+ polkit-gnome
+ NetworkManager
+ cinnamon-menus
+ accountsservice
+ pulseaudio-libs
+ cinnamon-desktop
+ gnome-color-manager
+ gnome-online-accounts
+ desktop-file-utils
+ cinnamon-translations
+ network-manager-applet
+ cinnamon-settings-daemon
+
+
+ /usr/bin
+ /usr/lib/cinnamon-control-center-1
+ /usr/lib/libcinnamon-control-center*
+ /usr/share/applications
+ /usr/share/cinnamon-control-center
+ /usr/share/doc
+ /usr/share/glib-2.0
+ /usr/share/icons
+
+
+
+ cinnamon-control-center-devel
+ cinnamon-control-center için geliştirme dosyaları
+ development
+
+ cinnamon-control-center
+ gtk3-devel
+ glib2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-05-30
+ 5.4.3
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
+
+
+ cinnamon-screensaver
+ https://github.com/linuxmint/cinnamon-screensaver
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.cinnamon
+ Screensaver designed to integrate well with the Cinnamon desktop
+ Cinnamon masaüstü ile iyi entegre edilmiş bir ekran koruyucu.
+ Screensaver designed to integrate well with the Cinnamon desktop
+ Cinnamon masaüstü ile iyi entegre edilmiş bir ekran koruyucu.
+ cinnamon-screensaver
+ https://github.com/linuxmint/cinnamon-screensaver/archive/refs/tags/5.4.0.tar.gz
+
+ gnome-common
+ meson
+ samurai
+ intltool
+ glib2-devel
+ gtk3-devel
+ gobject-introspection-devel
+ libX11-devel
+ libXext-devel
+ libXrandr-devel
+ dbus-glib-devel
+ libXinerama-devel
+ libxklavier-devel
+ libXScrnSaver-devel
+ python3-devel
+ desktop-file-utils
+ pam-devel
+ librsvg-devel
+ pango-devel
+ libXrandr-devel
+ python3-pygobject3-devel
+ gettext-devel
+ libxkbfile-devel
+ gdk-pixbuf-devel
+ libgnomekbd-devel
+ cairo-devel
+ xorg-proto
+ libXxf86miscproto-devel
+ libXxf86misc-devel
+ libXxf86vm-devel
+ libgnome-keyring
+
+ desktop/cinnamon/cinnamon-screensaver/pspec.xml
+
+
+ cinnamon-screensaver
+
+ pam
+ xapp
+ pango
+ libXrandr
+ python3-cairo
+ python3-xapp
+ python3-setproctitle
+ python3-pygobject3
+ accountsservice
+ dbus
+ gtk3
+ cairo
+ glib2
+ libX11
+ libXext
+ dbus-glib
+ gdk-pixbuf
+ libXxf86vm
+ libgnomekbd
+ libxklavier
+ libXinerama
+ libXxf86misc
+ libgnome-keyring
+ cinnamon-desktop
+ cinnamon-translations
+
+
+ /usr/bin
+ /etc
+ /usr/lib/girepository-1.0
+ /usr/lib/cinnamon-screensaver
+ /usr/lib/cs-backup-locker
+ /usr/lib/libcscreensaver.*
+ /usr/share/applications
+ /usr/share/cinnamon-screensaver
+ /usr/share/dbus-1
+ /usr/share/doc
+ /usr/share/icons
+
+
+
+ cinnamon-screensaver-devel
+ cinnamon-screensaver için geliştirme dosyaları
+ development
+
+ cinnamon-screensaver
+ gtk3-devel
+ glib2-devel
+ libX11-devel
+ libXext-devel
+ libXinerama-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+ /usr/share/gir-1.0
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
+
+
+ cinnamon-settings-daemon
+ https://github.com/linuxmint/cinnamon-settings-daemon
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app:gui
+ desktop.cinnamon
+ The Cinnamon Settings daemon
+ Cinnamon ayarları servisi
+ The Cinnamon Settings daemon
+ Cinnamon ayarları servisi
+ https://github.com/linuxmint/cinnamon-settings-daemon/archive/refs/tags/5.4.1.tar.gz
+
+ meson
+ samurai
+ gettext-devel
+ intltool
+ libcanberra-devel
+ dbus-glib-devel
+ cinnamon-desktop-devel
+ colord-devel
+ cups-devel
+ fontconfig-devel
+ glib2-devel
+ libgnomekbd-devel
+ gtk3-devel
+ libgudev-devel
+ libnotify-devel
+ xorg-proto
+ nss-devel
+ polkit-devel
+ pulseaudio-libs-devel
+ upower-devel
+ libwacom-devel
+ xorg-input-wacom-devel
+ libX11-devel
+ libXext-devel
+ libXfixes-devel
+ libXi-devel
+ libxklavier-devel
+ libXtst-devel
+ librsvg-devel
+ lcms2-devel
+ elogind-devel
+ libxkbfile-devel
+ docbook-xsl
+ libcanberra-gtk3-devel
+ libxslt-devel
+ libXrandr-devel
+ libXScrnSaver-devel
+ libxml2-devel
+ libXxf86misc-devel
+ gdk-pixbuf-devel
+
+ desktop/cinnamon/cinnamon-settings-daemon/pspec.xml
+
+
+ cinnamon-settings-daemon
+
+ nss
+ cups
+ gtk3
+ nspr
+ cairo
+ glib2
+ lcms2
+ libXi
+ colord
+ libX11
+ polkit
+ upower
+ libXext
+ libgudev
+ pango
+ elogind
+ libXtst
+ librsvg
+ libwacom
+ dbus-glib
+ libXfixes
+ libnotify
+ fontconfig
+ gdk-pixbuf
+ libcanberra
+ libgnomekbd
+ libxklavier
+ pulseaudio-libs
+ cinnamon-desktop
+ libcanberra-gtk3
+ cinnamon-translations
+
+
+ /usr/bin
+ /etc
+ /usr/lib/cinnamon-settings-daemon*
+ /usr/lib/csd*
+ /usr/share/applications
+ /usr/share/cinnamon-settings-daemon*
+ /usr/share/dbus-1
+ /usr/share/doc
+ /usr/share/glib-2.0
+ /usr/share/icons
+ /usr/share/polkit-1
+
+
+
+ cinnamon-settings-daemon-devel
+ cinnamon-settings-daemon için geliştirme dosyaları
+ development
+
+ cinnamon-settings-daemon
+ glib2-devel
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-06-30
+ 5.4.1
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
caribou
@@ -1034,6 +1488,45 @@
+
+
+ cinnamon-translations
+ https://github.com/linuxmint/cinnamon-translations
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ locale
+ desktop.cinnamon
+ Translations for Cinnamon and Nemo
+ Cinnamon ve Nemo için çeviriler
+ Translations for Cinnamon and Nemo
+ Cinnamon ve Nemo için çeviriler
+ cinnamon-language
+ https://github.com/linuxmint/cinnamon-translations/archive/refs/tags/5.4.1.tar.gz
+
+ make
+
+ desktop/cinnamon/cinnamon-translations/pspec.xml
+
+
+ cinnamon-translations
+
+ /usr/share/locale
+ /usr/share/doc
+
+
+
+
+ 2022-06-30
+ 5.4.1
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
timezonemap
@@ -1152,6 +1645,100 @@
+
+
+ cinnamon-session
+ https://github.com/linuxmint/cinnamon-session
+
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+ GPLv2
+ app
+ desktop.cinnamon
+ Cinnamon session manager
+ Cinnamon oturum yönetisici
+ Cinnamon-session manages a Cinnamon desktop or GDM login session. It starts up the other core components and handles logout and saving the session.
+ Cinnamon oturumu bir Cinnamon masaüstü veya GDM giriş oturumunu yönetir.
+ cinnamon
+ https://github.com/linuxmint/cinnamon-session/archive/refs/tags/5.4.0.tar.gz
+
+ xmlto
+ meson
+ xtrans
+ samurai
+ intltool
+ xapp-devel
+ mesa-devel
+ gtk3-devel
+ cairo-devel
+ gconf-devel
+ glib2-devel
+ libSM-devel
+ libICE-devel
+ libX11-devel
+ libXau-devel
+ libXext-devel
+ dbus-glib-devel
+ gdk-pixbuf-devel
+ libXrender-devel
+ libcanberra-devel
+ libXcomposite-devel
+ gettext-devel
+ elogind-devel
+ polkit-devel
+ json-glib-devel
+ upower-devel
+ libxslt-devel
+ libxcb-devel
+ libXtst-devel
+ pangox-compat-devel
+ xkeyboard-config
+ util-linux
+
+ desktop/cinnamon/cinnamon-session/pspec.xml
+
+
+ cinnamon-session
+
+ gtk3
+ xapp
+ cairo
+ glib2
+ libSM
+ libICE
+ libX11
+ libXau
+ elogind
+ libXext
+ libXtst
+ libglvnd
+ dbus-x11
+ gdk-pixbuf
+ libXrender
+ libcanberra
+ polkit-gnome
+ libXcomposite
+ cinnamon-desktop
+
+
+ /usr/bin
+ /usr/lib
+ /usr/share
+ /usr/share/man
+ /usr/share/doc
+
+
+
+
+ 2022-06-30
+ 5.4.0
+ First release
+ Alihan Öztürk
+ alihan@pisilinux.org
+
+
+
cinnamon-desktop
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index 46ba27b50f..88d1983f39 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-cfce025bd598f9161f17ee226a703a96517a0b14
\ No newline at end of file
+ae6201f4b80ec2da97d6962dd0fb7e0db3ca31b2
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index eb6a10dc85..811352b9b5 100644
Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ
diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum
index d3a65fdab7..513e637964 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-a52199fd8ebadf6b2c2372be9165d6d43a3b639f
\ No newline at end of file
+d1e8edf0884bc3aacb19ce2c0273c273dad0e620
\ No newline at end of file