cinnamon-desktop

This commit is contained in:
2022-07-25 11:51:13 +03:00
parent 3579d5aded
commit f84c1bb9e2
38 changed files with 3033 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/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 pisitools
def install():
pisitools.insinto("/usr/share/cinnamon/sounds/", "*.oga")
+34
View File
@@ -0,0 +1,34 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cinnamon-sounds</Name>
<Homepage>http://cinnamon.linuxmint.com/</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<Summary>Cinnamon desktop sounds</Summary>
<Description>Cinnamon desktop sounds</Description>
<Archive sha1sum="18394230770eb8d5fc324fa70e18fcc5bf04fe45" type="tarxz">https://sourceforge.net/projects/pisilinux/files/source/cinnamon-sounds.tar.xz</Archive>
</Source>
<Package>
<Name>cinnamon-sounds</Name>
<Files>
<Path fileType="data">/usr/share/cinnamon/sounds</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-16</Date>
<Version>1.0.0</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+8
View File
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>cinnamon-control-center-sounds</Name>
<Summary xml:lang="tr">Cinnamon için ses dosyaları</Summary>
<Description xml:lang="tr">Cinnamon masaüstü için açılış, kapanış vs. ses dosyaları.</Description>
</Source>
</PISI>
+31
View File
@@ -0,0 +1,31 @@
#!/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 mesontools, shelltools, pisitools
def setup():
pisitools.dosed("files/usr/share/cinnamon/cinnamon-settings/modules/cs_notifications.py", "0.7", "0.8")
#shelltools.system("sed -i 's/mintinstall.desktop/org.gnome.Software.desktop/' data/org.cinnamon.gschema.xml")
#shelltools.system("sed -i 's/'REQUIRED', '/&polkit-cinnamon-authentication-agent-1;/' meson.build || die")
#shelltools.system("sed -i 's/RequiredComponents=\(.*\)$/RequiredComponents=\1polkit-gnome-authentication-agent-1;/' \
#cinnamon*.session.in")
#pisitools.dosed("cinnamon*.session.in","=cinnamon","=polkit-gnome-authentication-agent-1;cinnamon")
mesontools.configure("--prefix=/usr \
--sysconfdir=/etc \
--libexecdir=/usr/lib/cinnamon \
--localstatedir=/var")
def build():
mesontools.build()
def check():
mesontools.build("test")
def install():
mesontools.install()
#pisitools.remove("/etc/xdg/menus/cinnamon-applications-merged")
pisitools.dodoc("AUTHORS", "COPYING", "README*")
@@ -0,0 +1,37 @@
From ac4d2fc9fafb38ebb02615a41b23cceca304e73a Mon Sep 17 00:00:00 2001
From: Eli Schwartz <eschwartz93@gmail.com>
Date: Tue, 20 Mar 2018 14:11:02 -0400
Subject: [PATCH] cinnamon-settings: don't rely on the presence of
cinnamon-control-center
The existence of the cinnamon-control-center binary does not even tell
us what control center libraries are available. So instead, do the same
thing we did for cinnamon-settings modules, and check if the library
exists.
---
files/usr/bin/cinnamon-settings | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/files/usr/bin/cinnamon-settings b/files/usr/bin/cinnamon-settings
index 9fbdbecd2..98ca454a5 100755
--- a/files/usr/bin/cinnamon-settings
+++ b/files/usr/bin/cinnamon-settings
@@ -58,6 +58,7 @@ Available types of sort, and corresponding numbers:
import getopt
import os
import sys
+import sysconfig
def usage():
print("""Usage:
@@ -119,7 +120,7 @@ if len(sys.argv) > 1:
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) + tuple(sys.argv[1:]))
elif os.path.exists("/usr/share/cinnamon/cinnamon-settings/modules/cs_%s.py" % module):
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) + tuple(sys.argv[1:]))
- elif os.path.exists("/usr/bin/cinnamon-control-center"):
+ elif os.path.exists(os.path.join(sysconfig.get_config_var("LIBDIR"), "cinnamon-control-center-1/panels/lib%s.so" % module)):
os.execvp("/usr/share/cinnamon/cinnamon-settings/cinnamon-settings.py", (" ",) + tuple(sys.argv[1:]))
elif os.path.exists("/usr/bin/gnome-control-center"):
print ("Unknown module %s, calling gnome-control-center" % module)
--
2.22.0
@@ -0,0 +1,20 @@
--- a/cinnamon.session.in
+++ b/cinnamon.session.in
@@ -1,5 +1,5 @@
[Cinnamon Session]
Name=Cinnamon
-RequiredComponents=cinnamon;org.cinnamon.ScreenSaver;nemo-autostart;@REQUIRED@cinnamon-killer-daemon;
+RequiredComponents=cinnamon;org.cinnamon.ScreenSaver;polkit-cinnamon-authentication-agent-1;nemo-autostart;@REQUIRED@cinnamon-killer-daemon;
DesktopName=X-Cinnamon
--- a/cinnamon2d.session.in
+++ b/cinnamon2d.session.in
@@ -1,5 +1,5 @@
[Cinnamon Session]
Name=Cinnamon (Software Rendering)
-RequiredComponents=cinnamon2d;org.cinnamon.ScreenSaver;nemo-autostart;@REQUIRED@cinnamon-killer-daemon;
+RequiredComponents=cinnamon2d;org.cinnamon.ScreenSaver;polkit-cinnamon-authentication-agent-1;nemo-autostart;@REQUIRED@cinnamon-killer-daemon;
DesktopName=X-Cinnamon
@@ -0,0 +1,24 @@
From 21710409c0ed8acfbad98131d1664006d32181bf Mon Sep 17 00:00:00 2001
From: Kristian Fiskerstrand <kf@sumptuouscapital.com>
Date: Sat, 30 Jun 2018 20:24:55 +0200
Subject: [PATCH] gnome-background-compatibility
---
files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py
index 6e279ed..ec47983 100755
--- a/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py
+++ b/files/usr/share/cinnamon/cinnamon-settings/modules/cs_backgrounds.py
@@ -268,7 +268,7 @@ class Module:
def get_system_backgrounds(self):
picture_list = []
folder_list = []
- properties_dir = "/usr/share/cinnamon-background-properties"
+ properties_dir = "/usr/share/gnome-background-properties"
backgrounds = []
if os.path.exists(properties_dir):
for i in os.listdir(properties_dir):
--
2.16.4
@@ -0,0 +1,103 @@
[org.cinnamon]
desktop-effects-minimize-effect='traditional'
startup-animation=true
workspace-expo-view-as-grid=true
enable-indicators=false
enabled-applets=['panel1:left:0:menu@cinnamon.org', 'panel1:left:1:panel-launchers@cinnamon.org', 'panel1:left:2:window-list@cinnamon.org', 'panel1:right:0:user@cinnamon.org', 'panel1:right:1:removable-drives@cinnamon.org', 'panel1:right:2:keyboard@cinnamon.org', 'panel1:right:3:xapp-status@cinnamon.org', 'panel1:right:4:network@cinnamon.org', 'panel1:right:5:sound@cinnamon.org', 'panel1:right:6:power@cinnamon.org', 'panel1:right:7:systray@cinnamon.org', 'panel1:right:8:calendar@cinnamon.org', 'panel1:right:9:show-desktop@cinnamon.org']
favorite-apps=['mozillafirefox.desktop', 'cinnamon-settings.desktop', 'libreoffice-startcenter.desktop', 'nemo.desktop', 'package-manager.desktop']
number-workspaces=1
panel-launchers=["nemo.desktop", "libreoffice-startcenter.desktop", "mozillafirefox.desktop"]
app-menu-label=""
app-menu-icon-name="pisi-logo"
panels-height=["1:26"]
[org.cinnamon.sounds]
login-enabled=true
login-file="/usr/share/cinnamon/sounds/login.oga"
logout-enabled=true
logout-file="/usr/share/cinnamon/sounds/logout.ogg"
switch-enabled=true
switch-file="/usr/share/cinnamon/sounds/switch.oga"
close-enabled=false
close-file="/usr/share/cinnamon/sounds/close.oga"
map-enabled=false
map-file="/usr/share/cinnamon/sounds/map.oga"
minimize-enabled=false
minimize-file="/usr/share/cinnamon/sounds/minimize.oga"
maximize-enabled=false
maximize-file="/usr/share/cinnamon/sounds/maximize.oga"
unmaximize-enabled=false
unmaximize-file="/usr/share/cinnamon/sounds/unmaximize.oga"
tile-enabled=true
tile-file="/usr/share/cinnamon/sounds/tile.oga"
plug-enabled=true
plug-file="/usr/share/cinnamon/sounds/plug.oga"
unplug-enabled=true
unplug-file="/usr/share/cinnamon/sounds/unplug.oga"
notification-enabled=false
notification-file="/usr/share/cinnamon/sounds/notification.oga"
[org.cinnamon.desktop.sound]
event-sounds=false
input-feedback-sounds=false
volume-sound-enabled=true
volume-sound-file="/usr/share/cinnamon/sounds/volume.oga"
[org.cinnamon.desktop.interface]
cursor-theme="DMZ-White"
gtk-key-theme="Default"
gtk-theme="Mint-Y-Aqua"
icon-theme="Mint-Y-Aqua"
menus-have-icons=true
toolkit-accessibility=false
font-name="Sans Regular 9"
[org.cinnamon.desktop.screensaver]
ask-for-away-message=false
font-date=" Sans 24"
font-message="Sans 14"
show-clock=true
font-time="Sans Regular 64"
[org.cinnamon.settings-daemon.peripherals.keyboard]
input-sources-switcher='alt-shift'
[org.cinnamon.desktop.background]
primary-color="#023c88"
secondary-color="#5789ca"
picture-uri="file:///usr/share/backgrounds/cinnamon/pisi-crocus-ancyrensis.png"
picture-options="stretched"
show-desktop-icons=true
[org.nemo.desktop]
computer-icon-visible=true
font='Sans Regular 9'
home-icon-visible=true
trash-icon-visible=true
[org.nemo.window-state]
start-with-status-bar=true
[org.nemo.preferences]
thumbnail-limit=10485760
context-menus-show-all-actions=true
show-location-entry=true
show-reload-icon-toolbar=true
[org.cinnamon.desktop.wm.preferences]
button-layout="menu:minimize,maximize,close"
titlebar-font="Sans Bold 10"
titlebar-uses-system-font=false
theme="Mint-Y-Aqua"
[org.cinnamon.settings-daemon.plugins.xsettings]
hinting="slight"
menus-have-icons=true
buttons-have-icons=true
[org.cinnamon.settings-daemon.plugins.power]
lock-on-suspend=true
[org.cinnamon.theme]
name="Mint-Y-Aqua"
@@ -0,0 +1,24 @@
From b1f277d53ccd79bba9ba4cd1c0c2683d4f41068c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Ball=C3=B3=20Gy=C3=B6rgy?= <ballogyor@gmail.com>
Date: Sat, 22 Nov 2014 22:39:39 +0100
Subject: [PATCH] Set default theme to 'cinnamon'
---
data/org.cinnamon.gschema.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/org.cinnamon.gschema.xml b/data/org.cinnamon.gschema.xml
index 86b14e26c..93c3e14c5 100644
--- a/data/org.cinnamon.gschema.xml
+++ b/data/org.cinnamon.gschema.xml
@@ -645,7 +645,7 @@
<schema id="org.cinnamon.theme" path="/org/cinnamon/theme/"
gettext-domain="@GETTEXT_PACKAGE@">
<key name="name" type="s">
- <default>""</default>
+ <default>"Mint-Y-Aqua"</default>
<summary>Theme name</summary>
<description>
The name of the theme
--
2.29.2
+209
View File
@@ -0,0 +1,209 @@
{
"layout" : {
"type" : "layout",
"pages" : ["panel", "menu"],
"panel" : {
"type" : "page",
"title" : "Panel",
"sections" : ["panel-appear", "panel-behave"]
},
"menu" : {
"type" : "page",
"title" : "Menu",
"sections" : ["menu-layout", "menu-behave"]
},
"panel-appear" : {
"type" : "section",
"title" : "Appearance",
"keys" : ["menu-custom", "menu-icon", "menu-icon-size", "menu-label"]
},
"panel-behave" : {
"type" : "section",
"title" : "Behavior",
"keys" : ["overlay-key", "activate-on-hover", "hover-delay", "force-show-panel", "enable-animation"]
},
"menu-layout" : {
"type" : "section",
"title" : "Layout and content",
"keys" : ["restrict-menu-height", "menu-height", "show-category-icons",
"category-icon-size", "show-application-icons", "application-icon-size",
"favbox-show", "fav-icon-size", "show-places", "show-recents", "menu-editor-button"]
},
"menu-behave" : {
"type" : "section",
"title" : "Behavior",
"keys" : ["category-hover", "enable-autoscroll", "search-filesystem"]
}
},
"overlay-key" : {
"type" : "keybinding",
"description" : "Keyboard shortcut to open and close the menu",
"default" : "Super_L::Super_R"
},
"menu-custom" : {
"type" : "switch",
"default" : false,
"description" : "Use a custom icon and label",
"tooltip" : "Check this to specify a custom icon and label"
},
"menu-icon" : {
"type" : "iconfilechooser",
"default" : "cinnamon-symbolic",
"description" : "Icon",
"tooltip" : "Select an icon to show in the panel.",
"default_icon" : "cinnamon-symbolic",
"dependency" : "menu-custom"
},
"menu-icon-size" : {
"type": "spinbutton",
"default" : 32,
"min" : 16,
"max" : 96,
"step" : 1,
"units" : "px",
"description" : "Icon size",
"dependency" : "menu-custom"
},
"menu-label" : {
"type" : "entry",
"default" : "Menu",
"description" : "Text",
"tooltip" : "Enter custom text to show in the panel.",
"dependency" : "menu-custom"
},
"restrict-menu-height" : {
"type": "switch",
"default" : false,
"description" : "Use a fixed menu height",
"tooltip" : "Keep the size of the menu the same now matter how many favorites or categories there are."
},
"menu-height" : {
"type": "spinbutton",
"default" : 550,
"min" : 300,
"max" : 2000,
"step" : 10,
"units" : "px",
"description" : "Menu height",
"dependency" : "restrict-menu-height"
},
"show-category-icons" : {
"type" : "switch",
"default" : true,
"description" : "Show category icons",
"tooltip" : "Choose whether or not to show icons on categories."
},
"category-icon-size" : {
"type": "spinbutton",
"default" : 22,
"min" : 16,
"max" : 48,
"step" : 1,
"units" : "px",
"description" : "Categories icon size",
"dependency" : "show-category-icons"
},
"show-application-icons" : {
"type" : "switch",
"default" : true,
"description" : "Show application icons",
"tooltip" : "Choose whether or not to show icons on applications."
},
"application-icon-size" : {
"type": "spinbutton",
"default" : 22,
"min" : 16,
"max" : 48,
"step" : 1,
"units" : "px",
"description" : "Applications icon size",
"dependency" : "show-application-icons"
},
"favbox-show" : {
"type" : "switch",
"default" : true,
"description" : "Show favorites and session buttons",
"tooltip" : "Choose whether or not to show the left pane of the menu."
},
"fav-icon-size" : {
"type": "spinbutton",
"default" : 22,
"min" : 16,
"max" : 64,
"step" : 1,
"units" : "px",
"description" : "Favorites icon size",
"dependency" : "favbox-show"
},
"show-favorites" : {
"type" : "switch",
"default" : true,
"description": "Show favorites",
"tooltip": "Choose whether or not to show favorite files in the menu."
},
"show-places" : {
"type" : "switch",
"default" : true,
"description": "Show bookmarks and places",
"tooltip": "Choose whether or not to show bookmarks and places in the menu."
},
"show-recents" : {
"type" : "switch",
"default" : true,
"description": "Show recents",
"tooltip": "Choose whether or not to show recents in the menu."
},
"category-hover" : {
"type" : "switch",
"default" : true,
"description": "Change categories on hover",
"tooltip": "Choose whether or not to change categories by hovering."
},
"enable-autoscroll" : {
"type" : "switch",
"default" : true,
"description": "Enable autoscrolling in application list",
"tooltip": "Choose whether or not to enable smooth autoscrolling in the application list."
},
"search-filesystem" : {
"type" : "switch",
"default" : false,
"description": "Enable filesystem path entry in search box",
"tooltip": "Allows path entry in the menu search box."
},
"force-show-panel" : {
"type" : "switch",
"default" : true,
"description": "Force the panel to be visible when opening the menu",
"tooltip": "Opening the menu will also show the main panel (which may be auto-hidden)."
},
"activate-on-hover" : {
"type" : "switch",
"default" : false,
"description": "Open the menu when I move my mouse over it",
"tooltip": "Enable opening the menu when the mouse enters the applet"
},
"hover-delay" : {
"type": "spinbutton",
"default" : 0,
"min" : 0,
"max" : 1000,
"step" : 50,
"units" : "milliseconds",
"dependency" : "activate-on-hover",
"description" : "Menu hover delay",
"tooltip" : "Delay before the menu opens when hovered"
},
"enable-animation" : {
"type": "switch",
"default": true,
"description": "Use menu animations",
"tooltip": "Allow the menu to animate on open and close"
},
"menu-editor-button" : {
"type" : "button",
"description" : "Open the menu editor",
"callback" : "_launch_editor",
"tooltip" : "Press this button to customize your menu entries."
}
}
@@ -0,0 +1,15 @@
{
"section1": {
"type": "section",
"description": "Behavior"
},
"launcherList": {
"type": "generic",
"default": ["mozillafirefox.desktop", "libreoffice-startcenter.desktop", "nemo.desktop"]
},
"allow-dragging": {
"type": "switch",
"default": true,
"description": "Allow dragging of launchers"
}
}
Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 MiB

@@ -0,0 +1,317 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="200"
height="200"
id="svg3236"
version="1.1"
inkscape:version="0.48.4 r9939"
sodipodi:docname="logotype-pisi-print.svg">
<defs
id="defs3238" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="2.455"
inkscape:cx="154.95549"
inkscape:cy="100"
inkscape:document-units="px"
inkscape:current-layer="layer1"
showgrid="false"
inkscape:window-width="1680"
inkscape:window-height="995"
inkscape:window-x="-2"
inkscape:window-y="-3"
inkscape:window-maximized="1" />
<metadata
id="metadata3241">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title />
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(0,-852.36218)">
<g
id="g3066"
transform="matrix(1.7625227,0,0,1.7859159,-20.192857,-694.21164)">
<path
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 21.182732,869.5355 c 0,0 -7.05045,27.48765 2.09375,42.90626 6.1413,-11.62158 14.63263,-23.25467 24.53125,-30.56251 -5.62608,-5.52273 -14.01934,-10.45986 -26.625,-12.34375 z"
id="path4329-5" />
<path
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
d="m 115.84142,869.70198 c -12.70982,1.89962 -21.155768,6.89014 -26.781248,12.46875 9.90157,7.36712 18.381128,19.0467 24.499998,30.6875 9.37846,-15.36773 2.28125,-43.15625 2.28125,-43.15625 z"
id="path4336-9" />
<path
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-opacity:1"
id="path4410-4"
d="m 51.942103,880.05007 c -1.612,0.896 -4.306,2.883 -4.306,2.883 l 14.352,22.803 -5.195,-28.079 c 0,0 -3.121,1.432 -4.851,2.393 z" />
<path
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
inkscape:connector-curvature="0"
style="fill:#000000;stroke:#000000"
id="path4417-0"
d="m 64.432733,875.59007 c -2.844,0.308 -5.42,1.153 -5.42,1.153 l 7.146,26.691 2.311,-27.884 c -0.001,10e-4 -1.193,-0.267 -4.037,0.04 z" />
<path
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
id="path4347-1"
d="m 68.144973,969.75025 c 24.683999,0 45.581997,-16.22705 52.706997,-38.62505 -7.125,-22.405 -28.022998,-56.53 -52.706997,-56.53 -24.677,0 -45.579,34.125 -52.7,56.53 7.121,22.399 28.023,38.62505 52.7,38.62505 z" />
<g
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
transform="translate(4.4166628,858.48748)"
id="g4437-9"
style="fill:#000000">
<path
style="fill:#000000"
inkscape:connector-curvature="0"
id="path4439-4"
d="m 61.447,97.878 c 1.404,1.677 3.7,1.677 5.101,0 L 72.9,90.282 c 0.246,-0.298 0.438,-0.579 0.568,-0.852 -2.842,-0.854 -6.055,-1.338 -9.464,-1.338 -3.409,0 -6.628,0.484 -9.466,1.338 0.133,0.272 0.315,0.558 0.565,0.852 l 6.344,7.596 z" />
</g>
<line
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
style="fill:#000000;stroke:#000000"
id="line4403-8"
y2="962.42114"
x2="68.419678"
y1="954.2561"
x1="68.419678" />
<g
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
transform="translate(3.8787028,858.0599)"
id="g4349-8"
style="fill:#000000">
<g
id="g4351-2"
style="fill:#000000">
<g
id="g4353-4"
style="fill:#000000">
<line
style="fill:#000000"
id="line4355-5"
y2="114.775"
x2="17.620001"
y1="92.757004"
x1="45.942001" />
<linearGradient
y2="103.7656"
x2="46.650902"
y1="103.7656"
x1="16.9111"
gradientUnits="userSpaceOnUse"
id="SVGID_4_-5">
<stop
id="stop4358-1"
style="stop-color:#EC008C"
offset="0" />
<stop
id="stop4360-7"
style="stop-color:#C4008C"
offset="1" />
</linearGradient>
<path
inkscape:connector-curvature="0"
style="fill:#000000"
id="path4362-1"
d="m 45.558,92.045 -28.323,22.019 c -0.328,0.258 -0.423,0.778 -0.208,1.176 0.213,0.392 0.65,0.502 0.978,0.246 L 46.327,93.47 c 0.329,-0.256 0.423,-0.783 0.209,-1.178 -0.212,-0.391 -0.651,-0.502 -0.978,-0.247 z" />
</g>
<g
id="g4364-1"
style="fill:#000000">
<line
style="fill:#000000"
id="line4366-5"
y2="115.626"
x2="23.992001"
y1="93.602997"
x1="52.318001" />
<linearGradient
y2="104.6143"
x2="53.023399"
y1="104.6143"
x1="23.283199"
gradientUnits="userSpaceOnUse"
id="SVGID_5_-2">
<stop
id="stop4369-7"
style="stop-color:#EC008C"
offset="0" />
<stop
id="stop4371-6"
style="stop-color:#C4008C"
offset="1" />
</linearGradient>
<path
inkscape:connector-curvature="0"
style="fill:#000000"
id="path4373-1"
d="m 51.93,92.896 -28.325,22.016 c -0.329,0.253 -0.42,0.779 -0.206,1.174 0.211,0.395 0.651,0.506 0.978,0.253 L 52.701,94.313 c 0.328,-0.255 0.422,-0.779 0.208,-1.176 -0.215,-0.39 -0.65,-0.501 -0.979,-0.241 z" />
</g>
</g>
<g
id="g4375-4"
style="fill:#000000">
<g
id="g4377-2"
style="fill:#000000">
<line
style="fill:#000000"
id="line4379-3"
y2="114.775"
x2="110.378"
y1="92.757004"
x1="82.056" />
<linearGradient
y2="103.7656"
x2="111.0859"
y1="103.7656"
x1="81.346703"
gradientUnits="userSpaceOnUse"
id="SVGID_6_-2">
<stop
id="stop4382-2"
style="stop-color:#EC008C"
offset="0" />
<stop
id="stop4384-1"
style="stop-color:#C4008C"
offset="1" />
</linearGradient>
<path
inkscape:connector-curvature="0"
style="fill:#000000"
id="path4386-6"
d="m 82.44,92.045 28.324,22.019 c 0.327,0.258 0.42,0.778 0.207,1.176 -0.211,0.392 -0.65,0.502 -0.979,0.246 L 81.671,93.47 c -0.328,-0.256 -0.424,-0.783 -0.209,-1.178 0.215,-0.391 0.654,-0.502 0.978,-0.247 z" />
</g>
<g
id="g4388-8"
style="fill:#000000">
<line
style="fill:#000000"
id="line4390-5"
y2="115.626"
x2="104.005"
y1="93.602997"
x1="75.682999" />
<linearGradient
y2="104.6133"
x2="104.7119"
y1="104.6133"
x1="74.973602"
gradientUnits="userSpaceOnUse"
id="SVGID_7_-7">
<stop
id="stop4393-6"
style="stop-color:#EC008C"
offset="0" />
<stop
id="stop4395-1"
style="stop-color:#C4008C"
offset="1" />
</linearGradient>
<path
inkscape:connector-curvature="0"
style="fill:#000000"
id="path4397-8"
d="m 76.067,92.896 28.323,22.016 c 0.325,0.253 0.42,0.779 0.208,1.174 -0.217,0.392 -0.652,0.506 -0.979,0.253 L 75.298,94.312 c -0.328,-0.255 -0.424,-0.779 -0.209,-1.176 0.215,-0.389 0.654,-0.5 0.978,-0.24 z" />
</g>
</g>
</g>
<g
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
inkscape:export-filename="D:\Dropbox\PiSiLinux\logo\g4295-7-3.png"
style="fill:#000000"
transform="translate(-30.549898,-35.03055)"
id="g4198">
<path
d="m 115.00735,959.89743 c -3.201,3.031 -4.098,8.048 -2.66399,14.915 l 0.186,0.902 0.90199,0.192 c 0.34801,0.075 8.6,1.777 13.646,-2.991 3.194,-3.016 4.303,-7.825 3.295,-14.293 l -0.142,-0.91 -0.894,-0.238 c -0.371,-0.099 -9.235,-2.392 -14.329,2.423 z m -0.49799,9.094 c 0,-3.131 0.816,-5.487 2.43899,-7.03 3.137,-2.977 8.566,-2.34 10.706,-1.948 0.123,1.021 0.245,2.044 0.245,2.945 0,3.504 -0.924,6.15 -2.758,7.888 -3.1,2.935 -8.115,2.689 -10.186,2.434 -0.272,-1.548 -0.446,-3.003 -0.446,-4.289 z"
id="path4435-9"
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
d="m 88.210003,71.771004 c 0,2.734362 -2.216638,4.951 -4.951,4.951 -2.734362,0 -4.951001,-2.216638 -4.951001,-4.951 0,-2.734362 2.216639,-4.951 4.951001,-4.951 2.734362,0 4.951,2.216638 4.951,4.951 z"
transform="translate(34.693615,893.42556)"
cx="83.259003"
cy="71.771004"
r="4.9510002"
id="circle4431-2"
style="fill:#000000"
sodipodi:cx="83.259003"
sodipodi:cy="71.771004"
sodipodi:rx="4.9510002"
sodipodi:ry="4.9510002" />
</g>
<g
inkscape:export-ydpi="598.79999"
inkscape:export-xdpi="598.79999"
style="fill:#000000"
id="g4295-7"
transform="matrix(-1,0,0,1,251.4705,872.94567)">
<path
d="m 198.54627,51.921212 c -3.201,3.031 -4.098,8.047999 -2.664,14.914999 l 0.186,0.902 0.902,0.192 c 0.348,0.075 8.6,1.777 13.646,-2.991 3.194,-3.016 4.303,-7.824999 3.295,-14.292999 l -0.142,-0.91 -0.894,-0.238 c -0.371,-0.099 -9.235,-2.392 -14.329,2.423 z m -0.498,9.093999 c 0,-3.130999 0.816,-5.486999 2.439,-7.029999 3.137,-2.977 8.566,-2.34 10.706,-1.948 0.123,1.021 0.245,2.044 0.245,2.945 0,3.503999 -0.924,6.149999 -2.758,7.887999 -3.1,2.935 -8.115,2.689 -10.186,2.434 -0.272,-1.548 -0.446,-3.003 -0.446,-4.289 z"
id="path4435-9-9"
inkscape:connector-curvature="0"
style="fill:#000000;stroke:#000000;stroke-width:0;stroke-miterlimit:4;stroke-dasharray:none" />
<circle
transform="translate(118.23253,-14.550665)"
cx="83.259003"
cy="71.771004"
r="4.9510002"
id="circle4431-2-5"
style="fill:#000000"
sodipodi:cx="83.259003"
sodipodi:cy="71.771004"
sodipodi:rx="4.9510002"
sodipodi:ry="4.9510002"
d="m 88.210003,71.771004 c 0,2.734362 -2.216638,4.951 -4.951,4.951 -2.734362,0 -4.951001,-2.216638 -4.951001,-4.951 0,-2.734362 2.216639,-4.951 4.951001,-4.951 2.734362,0 4.951,2.216638 4.951,4.951 z" />
</g>
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 13 KiB

@@ -0,0 +1,10 @@
[Desktop Entry]
Name=PolicyKit Authentication Agent
Comment=PolicyKit Authentication Agent
Exec=/usr/lib/polkit-gnome/polkit-gnome-authentication-agent-1
Terminal=false
Type=Application
Categories=
NoDisplay=true
OnlyShowIn=X-Cinnamon;
X-GNOME-AutoRestart=true
@@ -0,0 +1,59 @@
Index: Cinnamon-3.6.6/files/usr/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py
===================================================================
--- Cinnamon-3.6.6.orig/files/usr/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py
+++ Cinnamon-3.6.6/files/usr/share/cinnamon/cinnamon-settings-users/cinnamon-settings-users.py
@@ -153,12 +153,11 @@
class PasswordDialog(Gtk.Dialog):
- def __init__ (self, user, password_mask, group_mask, parent = None):
+ def __init__ (self, user, password_mask, parent = None):
super(PasswordDialog, self).__init__(None, parent)
self.user = user
self.password_mask = password_mask
- self.group_mask = group_mask
self.set_modal(True)
self.set_skip_taskbar_hint(True)
@@ -224,14 +223,7 @@
def change_password(self):
newpass = self.new_password.get_text()
self.user.set_password(newpass, "")
- mask = self.group_mask.get_text()
- if "nopasswdlogin" in mask:
- subprocess.call(["gpasswd", "-d", self.user.get_user_name(), "nopasswdlogin"])
- mask = mask.split(", ")
- mask.remove("nopasswdlogin")
- mask = ", ".join(mask)
- self.group_mask.set_text(mask)
- self.password_mask.set_text('\u2022\u2022\u2022\u2022\u2022\u2022')
+ self.password_mask.set_text(u'\u2022\u2022\u2022\u2022\u2022\u2022')
self.destroy()
def set_passwords_visibility(self):
@@ -570,7 +562,7 @@
model, treeiter = self.users_treeview.get_selection().get_selected()
if treeiter != None:
user = model[treeiter][INDEX_USER_OBJECT]
- dialog = PasswordDialog(user, self.password_mask, self.groups_label, self.window)
+ dialog = PasswordDialog(user, self.password_mask, self.window)
response = dialog.run()
def _on_groups_button_clicked(self, widget):
@@ -839,11 +831,11 @@
pixbuf = GdkPixbuf.Pixbuf.new_from_file_at_size("/usr/share/cinnamon/faces/user-generic.png", 48, 48)
description = "<b>%s</b>\n%s" % (fullname, username)
piter = self.users.append(None, [new_user, pixbuf, description])
- # Add the user to his/her own group and sudo if Administrator was selected
+ # Add the user to his/her own group and wheel if Administrator was selected
if dialog.account_type_combo.get_active() == 1:
- subprocess.call(["usermod", username, "-G", "%s,sudo,nopasswdlogin" % username])
+ subprocess.call(["usermod", username, "-G", "%s,wheel" % username])
else:
- subprocess.call(["usermod", username, "-G", "%s,nopasswdlogin" % username])
+ subprocess.call(["usermod", username, "-G", "%s" % username])
self.load_groups()
dialog.destroy()
@@ -0,0 +1,89 @@
{
"section1": {
"type": "section",
"description": "Behavior"
},
"show-all-workspaces" : {
"type" : "switch",
"default" : false,
"description": "Show windows from all workspaces"
},
"enable-alerts" : {
"type" : "switch",
"default" : true,
"description" : "Show an alert in the window list when a window from another workspace requires attention"
},
"enable-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Enable mouse-wheel scrolling in the window list"
},
"reverse-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Reverse the direction of mouse-wheel scrolling in the window list",
"dependency" : "enable-scrolling"
},
"left-click-minimize": {
"type": "switch",
"default": true,
"description": "Left click to minimize window"
},
"middle-click-close": {
"type": "switch",
"default": true,
"description": "Middle click to close window"
},
"section2": {
"type": "section",
"description": "Display"
},
"panel-show-label": {
"type": "switch",
"default": false,
"description": "Show window names in the panel"
},
"button-width": {
"type": "spinbutton",
"default" : 150,
"min" : 0,
"max" : 1000,
"step" : 5,
"units" : "pixels",
"description" : "Window button width in the panel",
"dependency": "panel-show-label"
},
"buttons-use-entire-space": {
"type": "switch",
"default": false,
"description": "Window buttons can have different sizes and use the entire space available",
"dependency": "panel-show-label"
},
"window-preview": {
"type": "switch",
"default": true,
"description": "Show window thumbnails on hover"
},
"window-preview-show-label": {
"type": "switch",
"default": true,
"description": "Show title above thumbnail",
"dependency": "window-preview"
},
"window-preview-scale": {
"type": "radiogroup",
"default": 1,
"description": "Thumbnail size",
"options": {
"Small": 0.75,
"Medium": 1,
"Large": 1.25,
"Largest": 1.5
},
"dependency": "window-preview"
},
"last-window-order": {
"type": "generic",
"default": ""
}
}
@@ -0,0 +1,89 @@
{
"section1": {
"type": "section",
"description": "Behavior"
},
"show-all-workspaces" : {
"type" : "switch",
"default" : false,
"description": "Show windows from all workspaces"
},
"enable-alerts" : {
"type" : "switch",
"default" : true,
"description" : "Show an alert in the window list when a window from another workspace requires attention"
},
"enable-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Enable mouse-wheel scrolling in the window list"
},
"reverse-scrolling" : {
"type" : "switch",
"default" : false,
"description" : "Reverse the direction of mouse-wheel scrolling in the window list",
"dependency" : "enable-scrolling"
},
"left-click-minimize": {
"type": "switch",
"default": true,
"description": "Left click to minimize window"
},
"middle-click-close": {
"type": "switch",
"default": true,
"description": "Middle click to close window"
},
"section2": {
"type": "section",
"description": "Display"
},
"panel-show-label": {
"type": "switch",
"default": false,
"description": "Show window names in the panel"
},
"button-width": {
"type": "spinbutton",
"default" : 150,
"min" : 0,
"max" : 1000,
"step" : 5,
"units" : "pixels",
"description" : "Window button width in the panel",
"dependency": "panel-show-label"
},
"buttons-use-entire-space": {
"type": "switch",
"default": false,
"description": "Window buttons can have different sizes and use the entire space available",
"dependency": "panel-show-label"
},
"window-preview": {
"type": "switch",
"default": true,
"description": "Show window thumbnails on hover"
},
"window-preview-show-label": {
"type": "switch",
"default": true,
"description": "Show title above thumbnail",
"dependency": "window-preview"
},
"window-preview-scale": {
"type": "radiogroup",
"default": 1,
"description": "Thumbnail size",
"options": {
"Small": 0.75,
"Medium": 1,
"Large": 1.25,
"Largest": 1.5
},
"dependency": "window-preview"
},
"last-window-order": {
"type": "generic",
"default": ""
}
}
+208
View File
@@ -0,0 +1,208 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>cinnamon</Name>
<Homepage>https://github.com/linuxmint/cinnamon</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<License>LGPLv2.1</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<Icon>cinnamon</Icon>
<Summary>Linux desktop which provides advanced innovative features and a traditional user experience</Summary>
<Description>Linux desktop which provides advanced innovative features and a traditional user experience</Description>
<Archive sha1sum="ca4b4165bb0f39f6b78b69eabc00de2d1c1ffafd" type="targz">https://github.com/linuxmint/cinnamon/archive/refs/tags/5.4.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cjs-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>intltool</Dependency>
<Dependency>cinnamon-menus-devel</Dependency>
<Dependency>muffin-devel</Dependency>
<Dependency>clutter-devel</Dependency>
<Dependency>cogl-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>at-spi2-atk-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>xapp-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libnma-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>cinnamon-session</Dependency>
<Dependency>cinnamon-settings-daemon-devel</Dependency>
<Dependency>cinnamon-screensaver-devel</Dependency>
<Dependency>cinnamon-control-center-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>spidermonkey-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>NetworkManager-devel</Dependency>
<Dependency>network-manager-applet</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>gnome-bluetooth-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>json-glib-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>mozjs-78-devel</Dependency>
<Dependency>system-config-printer</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>libcroco-devel</Dependency>
<Dependency>libcanberra-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>gnome-panel-devel</Dependency>
<Dependency>gsettings-desktop-schemas-devel</Dependency>
<Dependency>libgnome-keyring</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>librsvg-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>autostart.patch</Patch>
<Patch>default-theme.patch</Patch>
<Patch>set_wheel.patch</Patch>
<Patch>0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch</Patch>
<!--Patch>cinnamon-3.8.0-gnome-background-compatibility.patch</Patch-->
<!--Patch>cinnamon-5.2.7-eds-detection.patch</Patch-->
<!--Patch>cinnamon-3.6.6-wheel-sudo.patch</Patch-->
<!--Patch>cinnamon-5.2.7-revert-meson-0.61-fix.patch</Patch-->
</Patches>
</Source>
<Package>
<Name>cinnamon</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>cogl</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>xapp</Dependency>
<Dependency>mesa</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>libXext</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>json-glib</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>muffin</Dependency>
<Dependency>clutter</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>blueberry</Dependency>
<Dependency>mintlocale</Dependency>
<Dependency>cjs</Dependency>
<Dependency>system-config-printer</Dependency>
<Dependency>system-config-printer-gtk</Dependency>
<Dependency>spidermonkey</Dependency>
<Dependency>icon-theme-adwaita</Dependency>
<Dependency>libcroco</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>at-spi2-atk</Dependency>
<Dependency>cinnamon-menus</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>startup-notification</Dependency>
<Dependency>gobject-introspection</Dependency>
<Dependency>cinnamon-desktop</Dependency>
<Dependency>cinnamon-control-center</Dependency>
<Dependency>cinnamon-screensaver</Dependency>
<Dependency>cinnamon-session</Dependency>
<Dependency>cinnamon-settings-daemon</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>gnome-panel</Dependency>
<Dependency>nemo</Dependency>
<Dependency>NetworkManager</Dependency>
<Dependency>network-manager-applet</Dependency>
<Dependency>libgnome-keyring</Dependency>
<Dependency>accountsservice</Dependency>
<Dependency>polkit</Dependency>
<Dependency>polkit-gnome</Dependency>
<Dependency>upower</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>dbus-python</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gconf</Dependency>
<Dependency>python3-cairo</Dependency>
<Dependency>python3-pygobject3</Dependency>
<Dependency>python3-pam</Dependency>
<Dependency>python3-xapp</Dependency>
<Dependency>python3-pillow</Dependency>
<Dependency>python3-pexpect</Dependency>
<Dependency>python3-pyinotify</Dependency>
<Dependency>python3-pytz</Dependency>
<Dependency>python3-requests</Dependency>
<Dependency>python3-cairo</Dependency>
<Dependency>timezonemap</Dependency>
<Dependency>python-gtk</Dependency>
<Dependency>notify-python</Dependency>
<Dependency>gnome-terminal</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="library">/usr/lib/cinnamon</Path>
<Path fileType="library">/usr/lib/python3.9</Path>
<Path fileType="library">/usr/lib/cinnamon-*</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/cinnamon</Path>
<Path fileType="data">/usr/share/cinnamon-session</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/desktop-directories</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/usr/share/xsessions</Path>
<Path fileType="data">/usr/share/themes</Path>
<Path fileType="data">/usr/share</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/etc/xdg/autostart/polkit-cinnamon-authentication-agent-1.desktop">polkit-cinnamon-authentication-agent-1.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/cinnamon/applets/window-list@cinnamon.org/settings-schema.json">window-list.json</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/cinnamon/applets/panel-launchers@cinnamon.org/settings-schema.json">panel-launchers.json</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json">menu.json</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/icons/hicolor/scalable/apps/pisi-logo.svg">pisi-logo.svg</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/backgrounds/cinnamon/pisi-crocus-ancyrensis.png">pisi-crocus-ancyrensis.png</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/glib-2.0/schemas/cinnamon-pisilinux.gschema.override">cinnamon-pisilinux.gschema.override</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2022-06-30</Date>
<Version>5.4.2</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools, get, pisitools, shelltools
def setup():
#shelltools.system("NOCONFIGURE=1 ./autogen.sh")
autotools.autoreconf("-fi")
autotools.configure("--prefix=/usr \
--sysconfdir=/etc \
--localstatedir=/var \
--disable-static \
--disable-schemas-compile \
--enable-gtk-doc")
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
@@ -0,0 +1,33 @@
From a576e407d913b35804f838d615da52899681d61d Mon Sep 17 00:00:00 2001
From: Andreas Henriksson <andreas@fatal.se>
Date: Mon, 15 Aug 2016 18:12:06 +0200
Subject: [PATCH 2/3] daemon: fix conflicting return types
... in functions seahorse_dbus_server_{init,cleanup}
Reported-by: Michael Tautschnig <mt@debian.org>
Bug-Debian: https://bugs.debian.org/749001
https://bugzilla.gnome.org/show_bug.cgi?id=769943
---
daemon/seahorse-daemon.h | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/daemon/seahorse-daemon.h b/daemon/seahorse-daemon.h
index 93c0c452..09716bb5 100644
--- a/daemon/seahorse-daemon.h
+++ b/daemon/seahorse-daemon.h
@@ -24,9 +24,9 @@
/* seahorse-dbus-server.c --------------------------------------------------- */
-gboolean seahorse_dbus_server_init ();
+void seahorse_dbus_server_init ();
-gboolean seahorse_dbus_server_cleanup ();
+void seahorse_dbus_server_cleanup ();
DBusGConnection* seahorse_dbus_server_get_connection ();
--
2.14.1
@@ -0,0 +1,15 @@
commit 183d7619c29482a5d4ae8019692899f87f198171
commit b05e301d1b264a5d8f07cb96e5edc243d99bff79
diff -up libcryptui-3.12.2/configure.ac.gpg2 libcryptui-3.12.2/configure.ac
--- libcryptui-3.12.2/configure.ac.gpg2 2018-01-29 13:04:53.324022912 -0600
+++ configure.ac 2018-01-29 13:05:14.293824226 -0600
@@ -95,7 +95,7 @@ AC_ARG_ENABLE(gpg-check,
DO_CHECK=$enableval, DO_CHECK=yes)
if test "$DO_CHECK" = "yes"; then
- accepted_versions="1.2 1.4 2.0"
+ accepted_versions="1.2 1.4 2.0 2.1 2.2"
AC_PATH_PROGS(GNUPG, [gpg gpg2], no)
AC_DEFINE_UNQUOTED(GNUPG, "$GNUPG", [Path to gpg executable.])
ok="no"
@@ -0,0 +1,153 @@
From 728aceb6defd4e6e4f07fa49ca76f5e745230fee Mon Sep 17 00:00:00 2001
From: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Date: Fri, 16 Sep 2016 11:46:55 +0200
Subject: [PATCH] daemon: port to gcr-3
This removes the dependency on libgnome-keyring and adds a dependency
on libgcr instead.
Signed-off-by: Marc-Antoine Perennou <Marc-Antoine@Perennou.com>
Signed-off-by: Stef Walter <stefw@redhat.com>
* Updated commit message
https://bugzilla.gnome.org/show_bug.cgi?id=771522
---
configure.ac | 14 +++++++-------
daemon/seahorse-secure-buffer.c | 7 ++++---
daemon/seahorse-secure-memory.c | 21 +++++++++++----------
3 files changed, 22 insertions(+), 20 deletions(-)
diff --git a/configure.ac b/configure.ac
index b621b236..4486e7b2 100644
--- a/configure.ac
+++ b/configure.ac
@@ -252,18 +252,18 @@ if test "$enable_fatal_messages" = "yes" && test "$enable_debug" = "yes"; then
fi
dnl ****************************************************************************
-dnl GNOME-KEYRING
+dnl GCR
dnl ****************************************************************************
-PKG_CHECK_MODULES([GNOME_KEYRING], gnome-keyring-1 >= 2.25.5,
- [enable_gnome_keyring=yes],[enable_gnome_keyring=no])
+PKG_CHECK_MODULES([GCR], gcr-3,
+ [enable_gcr=yes],[enable_gcr=no])
-if test "$enable_gnome_keyring" = "no"; then
- AC_MSG_ERROR([gnome-keyring library or headers not found.])
+if test "$enable_gcr" = "no"; then
+ AC_MSG_ERROR([gcr library or headers not found.])
fi
-SEAHORSE_CFLAGS="$SEAHORSE_CFLAGS $GNOME_KEYRING_CFLAGS"
-SEAHORSE_LIBS="$SEAHORSE_LIBS $GNOME_KEYRING_LIBS"
+SEAHORSE_CFLAGS="$SEAHORSE_CFLAGS $GCR_CFLAGS"
+SEAHORSE_LIBS="$SEAHORSE_LIBS $GCR_LIBS"
dnl ****************************************************************************
dnl LIBCRYPTUI
diff --git a/daemon/seahorse-secure-buffer.c b/daemon/seahorse-secure-buffer.c
index 0db87961..63f87cd3 100644
--- a/daemon/seahorse-secure-buffer.c
+++ b/daemon/seahorse-secure-buffer.c
@@ -20,7 +20,8 @@
#include "config.h"
#include "seahorse-secure-buffer.h"
-#include <gnome-keyring-memory.h>
+#define GCR_API_SUBJECT_TO_CHANGE 1
+#include <gcr/gcr.h>
#include <string.h>
@@ -92,7 +93,7 @@ seahorse_secure_buffer_real_insert_text (GtkEntryBuffer *buffer, guint position,
}
}
- pv->text = gnome_keyring_memory_realloc (pv->text, pv->text_size);
+ pv->text = gcr_secure_memory_realloc (pv->text, pv->text_size);
}
/* Actual text insertion */
@@ -158,7 +159,7 @@ seahorse_secure_buffer_finalize (GObject *obj)
SeahorseSecureBufferPrivate *pv = self->priv;
if (pv->text) {
- gnome_keyring_memory_free (pv->text);
+ gcr_secure_memory_free (pv->text);
pv->text = NULL;
pv->text_bytes = pv->text_size = 0;
pv->text_chars = 0;
diff --git a/daemon/seahorse-secure-memory.c b/daemon/seahorse-secure-memory.c
index 3d94a674..f201d1df 100644
--- a/daemon/seahorse-secure-memory.c
+++ b/daemon/seahorse-secure-memory.c
@@ -23,7 +23,8 @@
#include <glib.h>
-#include <gnome-keyring-memory.h>
+#define GCR_API_SUBJECT_TO_CHANGE 1
+#include <gcr/gcr.h>
#include "seahorse-secure-memory.h"
@@ -47,7 +48,7 @@ switch_malloc (gsize size)
if (size == 0)
return NULL;
if (seahorse_use_secure_mem)
- p = gnome_keyring_memory_try_alloc (size);
+ p = gcr_secure_memory_try_alloc (size);
else
p = malloc (size);
return p;
@@ -71,7 +72,7 @@ switch_calloc (gsize num, gsize size)
if (size == 0 || num == 0)
return NULL;
if (seahorse_use_secure_mem)
- p = gnome_keyring_memory_try_alloc (size * num);
+ p = gcr_secure_memory_try_alloc (size * num);
else
p = calloc (num, size);
return p;
@@ -99,11 +100,11 @@ switch_realloc (gpointer mem, gsize size)
if (!mem) {
if (seahorse_use_secure_mem)
- p = gnome_keyring_memory_alloc (size);
+ p = gcr_secure_memory_alloc (size);
else
p = malloc (size);
- } else if (gnome_keyring_memory_is_secure (mem))
- p = gnome_keyring_memory_try_realloc (mem, size);
+ } else if (gcr_secure_memory_is_secure (mem))
+ p = gcr_secure_memory_try_realloc (mem, size);
else
p = realloc (mem, size);
return p;
@@ -120,8 +121,8 @@ static void
switch_free (gpointer mem)
{
if (mem) {
- if (gnome_keyring_memory_is_secure (mem))
- gnome_keyring_memory_free (mem);
+ if (gcr_secure_memory_is_secure (mem))
+ gcr_secure_memory_free (mem);
else
free (mem);
}
@@ -138,9 +139,9 @@ seahorse_try_gk_secure_memory ()
{
gpointer p;
- p = gnome_keyring_memory_try_alloc (10);
+ p = gcr_secure_memory_try_alloc (10);
if (p != NULL) {
- gnome_keyring_memory_free (p);
+ gcr_secure_memory_free (p);
return TRUE;
}
--
2.21.0
@@ -0,0 +1,12 @@
diff -uprN libcryptui-3.12.2.orig/configure.ac libcryptui-3.12.2/configure.ac
--- libcryptui-3.12.2.orig/configure.ac 2021-07-27 19:35:29.668962000 +0200
+++ configure.ac 2021-07-27 19:36:21.194924363 +0200
@@ -96,7 +96,7 @@ AC_ARG_ENABLE(gpg-check,
if test "$DO_CHECK" = "yes"; then
accepted_versions="1.2 1.4 2.0 2.1 2.2"
- AC_PATH_PROGS(GNUPG, [gpg gpg2], no)
+ AC_PATH_PROGS(GNUPG, [gpg1 gpg2], no)
AC_DEFINE_UNQUOTED(GNUPG, "$GNUPG", [Path to gpg executable.])
ok="no"
if test "$GNUPG" != "no"; then
+88
View File
@@ -0,0 +1,88 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libcryptui</Name>
<Homepage>https://gitlab.gnome.org/GNOME/libcryptui</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<Icon>library</Icon>
<IsA>app:gui</IsA>
<Summary>Library for OpenPGP prompts</Summary>
<Description>Library for OpenPGP prompts</Description>
<Archive sha1sum="0fa21934d52bfe958aeecf563b7be9b68bbe1b7b" type="targz">https://gitlab.gnome.org/GNOME/libcryptui/-/archive/3.12.2/libcryptui-3.12.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gnome-common</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gpgme-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>gnupg</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gcr-devel</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gettext-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>libcryptui-3.12.2-gpg22.patch</Patch>
<Patch>libcryptui-3.12.2-use-gcr.patch</Patch>
<Patch>libcryptui-gpg_version_fix.patch</Patch>
<Patch>libcryptui-3.12.2-fix-return-types.patch</Patch>
</Patches>
</Source>
<Package>
<Name>libcryptui</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gcr</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libSM</Dependency>
<Dependency>gpgme</Dependency>
<Dependency>pango</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>libnotify</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localdata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>libcryptui-devel</Name>
<RuntimeDependencies>
<Dependency release="current">libcryptui</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>3.12.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libcryptui</Name>
<Summary xml:lang="tr">OpenPGP istemleri için kitaplık</Summary>
<Description xml:lang="tr">OpenPGP istemleri için kitaplık</Description>
</Source>
</PISI>
@@ -0,0 +1,40 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import get, mesontools, pisitools, pythonmodules, shelltools
#nemo-seahorse
pkgs_meson = "nemo-python nemo-dropbox nemo-fileroller nemo-image-converter nemo-preview nemo-repairer nemo-share nemo-seahorse".split()
pkgs_python = "nemo-audio-tab nemo-compare nemo-emblems nemo-media-columns nemo-pastebin nemo-terminal".split()
def setup():
for i in pkgs_meson:
shelltools.cd(i)
mesontools.configure("--libexecdir=/usr/share/%s" % i)
shelltools.cd("..")
def build():
for i in pkgs_meson:
shelltools.cd(i)
mesontools.build()
shelltools.cd("..")
for i in pkgs_python:
shelltools.cd(i)
pythonmodules.compile(pyVer = '3')
shelltools.cd("..")
def install():
for i in pkgs_meson:
shelltools.cd(i)
mesontools.install()
shelltools.cd("..")
for i in pkgs_python:
shelltools.cd(i)
pythonmodules.install(pyVer = '3')
shelltools.cd("..")
pisitools.removeDir("/usr/share/doc")
pisitools.removeDir("/usr/lib/pkgconfig")
+242
View File
@@ -0,0 +1,242 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>nemo-extensions</Name>
<Homepage>https://github.com/linuxmint/nemo-extensions</Homepage>
<Packager>
<Name>PisiLinux Developers</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<Icon>nemo</Icon>
<Summary>Various extensions for Nemo</Summary>
<Description>Various extensions for Nemo</Description>
<Archive sha1sum="b74d607413883baa91b0bc08cc6ba30448bf597d" type="targz">https://github.com/linuxmint/nemo-extensions/archive/refs/tags/5.4.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>clutter-devel</Dependency>
<Dependency>clutter-gst-devel</Dependency>
<Dependency>clutter-gtk-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>nemo-devel</Dependency>
<Dependency>xreader-devel</Dependency>
<Dependency>cjs-devel</Dependency>
<Dependency>gtksourceview4-devel</Dependency>
<Dependency>musicbrainz5-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>libcryptui-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>nemo-audio-tab</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_audio_tab-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-audio-tab</Path>
</Files>
</Package>
<Package>
<Name>nemo-compare</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-compare-preferences</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_compare-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-compare</Path>
</Files>
</Package>
<Package>
<Name>nemo-dropbox</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>nemo</Dependency>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-dropbox.*</Path>
<Path fileType="data">/usr/share/nemo-dropbox</Path>
<Path fileType="data">/usr/share/icons/hicolor/symbolic/apps</Path>
<Path fileType="doc">/usr/share/licenses/nemo-dropbox</Path>
</Files>
</Package>
<Package>
<Name>nemo-emblems</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_emblems-5.4.1-py3.9.egg-info</Path>
</Files>
</Package>
<Package>
<Name>nemo-fileroller</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-fileroller.*</Path>
</Files>
</Package>
<Package>
<Name>nemo-image-converter</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-image-converter.*</Path>
<Path fileType="data">/usr/share/nemo-image-converter</Path>
</Files>
</Package>
<Package>
<Name>nemo-media-columns</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-media-columns-prefs</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_media_columns-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.extensions.nemo-media-columns.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>nemo-pastebin</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-pastebin-configurator</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_pastebin-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-pastebin</Path>
<Path fileType="data">/usr/share/icons/hicolor/scalable</Path>
<Path fileType="data">/usr/share/icons/hicolor/48x48</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/nemo-pastebin.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>nemo-preview</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>cjs</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>clutter</Dependency>
<Dependency>xreader</Dependency>
<Dependency>freetype</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>clutter-gst</Dependency>
<Dependency>clutter-gtk</Dependency>
<Dependency>musicbrainz5</Dependency>
<Dependency>gtksourceview4</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gobject-introspection</Dependency>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-preview</Path>
<Path fileType="library">/usr/lib/nemo-preview</Path>
<Path fileType="data">/usr/share/nemo-preview</Path>
<Path fileType="localdata">/usr/share/locale/*/LC_MESSAGES/nemo-preview.mo</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.nemo.Preview.service</Path>
</Files>
</Package>
<Package>
<Name>nemo-python</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>python3</Dependency>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-python.*</Path>
<Path fileType="data">/usr/share/nemo-python</Path>
</Files>
</Package>
<Package>
<Name>nemo-repairer</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-filename-repairer</Path>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-filename-repairer.*</Path>
<Path fileType="data">/usr/share/nemo-filename-repairer</Path>
</Files>
</Package>
<Package>
<Name>nemo-seahorse</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>gcr</Dependency>
<Dependency>nemo</Dependency>
<Dependency>gpgme</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libcryptui</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-seahorse-tool</Path>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-seahorse.*</Path>
<Path fileType="data">/usr/share/nemo-seahorse</Path>
<Path fileType="data">/usr/share/applications/nemo-seahorse*</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.plugins.seahorse*</Path>
<Path fileType="data">/usr/share/man/man1/nemo-seahorse*</Path>
</Files>
</Package>
<Package>
<Name>nemo-share</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-share.*</Path>
<Path fileType="data">/usr/share/nemo-share</Path>
<Path fileType="data">/usr/share/polkit-1/actions</Path>
<Path fileType="localdata">/usr/share/locale/*/LC_MESSAGES/nemo-share.mo</Path>
</Files>
</Package>
<Package>
<Name>nemo-terminal</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-terminal-prefs</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_terminal-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-terminal</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.extensions.nemo-terminal.gschema.xml</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>5.4.1</Version>
<Comment>First Release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
+21
View File
@@ -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():
pisitools.dosed("data/nemo.desktop.in", "Name=Files", "Name=Nemo")
mesontools.configure("--prefix=/usr \
--libexecdir=/usr/lib/nemo \
--buildtype=plain")
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
@@ -0,0 +1,25 @@
[desktop-monitor-0]
nemo-icon-view-keep-aligned=true
nemo-icon-view-auto-layout=false
nemo-icon-view-layout-timestamp=1658505851
desktop-grid-adjust=55;89;
nemo-icon-view-zoom-level=3
nemo-icon-view-sort-reversed=false
[home]
nemo-icon-position-timestamp=1658505851
nemo-icon-position=26,105
monitor=0
icon-scale=1
[trash]
nemo-icon-position-timestamp=1658505851
nemo-icon-position=26,194
monitor=0
icon-scale=1
[computer]
nemo-icon-position-timestamp=1658505851
nemo-icon-position=26,16
monitor=0
icon-scale=1
+134
View File
@@ -0,0 +1,134 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>nemo</Name>
<Homepage>https://github.com/linuxmint/nemo</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>nemo</Icon>
<IsA>app:gui</IsA>
<Summary>File manager for Cinnamon</Summary>
<Description>File manager for Cinnamon</Description>
<Archive sha1sum="0af002d1417ed3f9a01fa34ebcd93fed4d441a1b" type="targz">https://github.com/linuxmint/nemo/archive/refs/tags/5.4.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>intltool</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>librsvg-devel</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>gsettings-desktop-schemas-devel</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>gvfs-goa</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libexif-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libgsf-devel</Dependency>
<Dependency>exempi-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>ffmpegthumbnailer-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>xapp-devel</Dependency>
<Dependency>dconf-devel</Dependency>
<Dependency>poppler-devel</Dependency>
<Dependency>ghostscript-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
</BuildDependencies>
<Patches>
<!--
<Patch></Patch>
-->
</Patches>
</Source>
<Package>
<Name>nemo</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>xapp</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>exempi</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgsf</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>libexif</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>gvfs-goa</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>shared-mime-info</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
<Dependency>cinnamon-desktop</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>icon-theme-adwaita</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/nemo</Path>
<Path fileType="library">/usr/lib/girepository-1.0</Path>
<Path fileType="library">/usr/lib/libnemo*</Path>
<Path fileType="library">/usr/lib/nemo-*</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/gtksourceview*</Path>
<Path fileType="icon">/usr/share/icons</Path>
<Path fileType="data">/usr/share/man</Path>
<Path fileType="data">/usr/share/mime</Path>
<Path fileType="data">/usr/share/nemo</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/home/alihan/.config/nemo</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/home/alihan/.config/nemo/desktop-metadata">desktop-metadata</AdditionalFile>
</AdditionalFiles>
</Package>
<Package>
<Name>nemo-devel</Name>
<Icon>development</Icon>
<RuntimeDependencies>
<Dependency release="current">nemo</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-06-30</Date>
<Version>5.4.0</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>nemo</Name>
<Summary xml:lang="tr">Cinnamon için Dosya Yöneticisi</Summary>
<Description xml:lang="tr">Cinnamon için Dosya Yöneticisi</Description>
</Source>
<Package>
<Name>nemo-devel</Name>
<Summary xml:lang="tr">nemo için geliştirme dosyaları</Summary>
</Package>
</PISI>
+27
View File
@@ -0,0 +1,27 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 2.
# See the file https://www.gnu.org/copyleft/gpl.txt.
from pisi.actionsapi import get, mesontools, pisitools
def setup():
mesontools.configure("--libexecdir=/usr/lib/%s \
-Dmathjax-directory=/usr/share/mathjax2 \
-Depub=true \
-Dcomics=true \
-Ddjvu=false \
-Ddvi=false \
-Dt1lib=true \
-Dpixbuf=true \
-Dhelp_files=true \
-Dintrospection=true" % get.srcNAME())
def build():
mesontools.build()
def install():
mesontools.install()
pisitools.dodoc("AUTHORS", "ChangeLog", "README*", "NEWS")
+103
View File
@@ -0,0 +1,103 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org.tr/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>xreader</Name>
<Homepage>https://github.com/linuxmint/xreader</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<Icon>xreader</Icon>
<IsA>app:gui</IsA>
<Summary>Document viewer for files like PDF and Postscript.</Summary>
<Description>Document viewer for files like PDF and Postscript.</Description>
<Archive sha1sum="72285cb86c3565cae07a8f6705a0c9c5c1e7bdb4" type="targz">https://github.com/linuxmint/xreader/archive/refs/tags/3.4.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>xapp-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>itstool</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libsecret-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libspectre-devel</Dependency>
<Dependency>libgxps-devel</Dependency>
<Dependency>poppler-glib-devel</Dependency>
<Dependency>texlive-bin-devel</Dependency>
<Dependency>t1lib-devel</Dependency>
<Dependency>webkit2gtk-devel</Dependency>
</BuildDependencies>
<Patches>
<!--
<Patch></Patch>
-->
</Patches>
</Source>
<Package>
<Name>xreader</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>tiff</Dependency>
<Dependency>xapp</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libSM</Dependency>
<Dependency>pango</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgxps</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libsecret</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libspectre</Dependency>
<Dependency>webkit2gtk</Dependency>
<Dependency>poppler-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/libxreader*</Path>
<Path fileType="library">/usr/lib/girepository-1.0</Path>
<Path fileType="library">/usr/lib/xreader</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/help</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localdata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/man</Path>
<Path fileType="data">/usr/share/metainfo</Path>
<Path fileType="data">/usr/share/thumbnailers</Path>
<Path fileType="data">/usr/share/xreader</Path>
</Files>
</Package>
<Package>
<Name>xreader-devel</Name>
<RuntimeDependencies>
<Dependency release="current">xreader</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>3.4.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
+13
View File
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>xreader</Name>
<Summary xml:lang="tr">PDF ve Postscript benzeri dosyalar için Belge görüntüleyici.</Summary>
<Description xml:lang="tr">PDF ve Postscript benzeri dosyalar için Belge görüntüleyici.</Description>
</Source>
<Package>
<Name>xreader-devel</Name>
<Summary xml:lang="tr">xreader için geliştirme dosyaları</Summary>
</Package>
</PISI>
+791 -1
View File
@@ -628,6 +628,246 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>nemo-extensions</Name>
<Homepage>https://github.com/linuxmint/nemo-extensions</Homepage>
<Packager>
<Name>PisiLinux Developers</Name>
<Email>admin@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>library</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">Various extensions for Nemo</Summary>
<Description xml:lang="en">Various extensions for Nemo</Description>
<Icon>nemo</Icon>
<Archive type="targz" sha1sum="b74d607413883baa91b0bc08cc6ba30448bf597d" name="5.4.1.tar.gz">https://github.com/linuxmint/nemo-extensions/archive/refs/tags/5.4.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>clutter-devel</Dependency>
<Dependency>clutter-gst-devel</Dependency>
<Dependency>clutter-gtk-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>nemo-devel</Dependency>
<Dependency>xreader-devel</Dependency>
<Dependency>cjs-devel</Dependency>
<Dependency>gtksourceview4-devel</Dependency>
<Dependency>musicbrainz5-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>libcryptui-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/cinnamon/nemo-extensions/pspec.xml</SourceURI>
</Source>
<Package>
<Name>nemo-audio-tab</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_audio_tab-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-audio-tab</Path>
</Files>
</Package>
<Package>
<Name>nemo-compare</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-compare-preferences</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_compare-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-compare</Path>
</Files>
</Package>
<Package>
<Name>nemo-dropbox</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>gtk3</Dependency>
<Dependency>nemo</Dependency>
<Dependency>glib2</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-dropbox.*</Path>
<Path fileType="data">/usr/share/nemo-dropbox</Path>
<Path fileType="data">/usr/share/icons/hicolor/symbolic/apps</Path>
<Path fileType="doc">/usr/share/licenses/nemo-dropbox</Path>
</Files>
</Package>
<Package>
<Name>nemo-emblems</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_emblems-5.4.1-py3.9.egg-info</Path>
</Files>
</Package>
<Package>
<Name>nemo-fileroller</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-fileroller.*</Path>
</Files>
</Package>
<Package>
<Name>nemo-image-converter</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-image-converter.*</Path>
<Path fileType="data">/usr/share/nemo-image-converter</Path>
</Files>
</Package>
<Package>
<Name>nemo-media-columns</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-media-columns-prefs</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_media_columns-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.extensions.nemo-media-columns.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>nemo-pastebin</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-pastebin-configurator</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_pastebin-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-pastebin</Path>
<Path fileType="data">/usr/share/icons/hicolor/scalable</Path>
<Path fileType="data">/usr/share/icons/hicolor/48x48</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/nemo-pastebin.gschema.xml</Path>
</Files>
</Package>
<Package>
<Name>nemo-preview</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>cjs</Dependency>
<Dependency>cairo</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>clutter</Dependency>
<Dependency>xreader</Dependency>
<Dependency>freetype</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>clutter-gst</Dependency>
<Dependency>clutter-gtk</Dependency>
<Dependency>musicbrainz5</Dependency>
<Dependency>gtksourceview4</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gobject-introspection</Dependency>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-preview</Path>
<Path fileType="library">/usr/lib/nemo-preview</Path>
<Path fileType="data">/usr/share/nemo-preview</Path>
<Path fileType="localdata">/usr/share/locale/*/LC_MESSAGES/nemo-preview.mo</Path>
<Path fileType="data">/usr/share/dbus-1/services/org.nemo.Preview.service</Path>
</Files>
</Package>
<Package>
<Name>nemo-python</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>python3</Dependency>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-python.*</Path>
<Path fileType="data">/usr/share/nemo-python</Path>
</Files>
</Package>
<Package>
<Name>nemo-repairer</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-filename-repairer</Path>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-filename-repairer.*</Path>
<Path fileType="data">/usr/share/nemo-filename-repairer</Path>
</Files>
</Package>
<Package>
<Name>nemo-seahorse</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>gcr</Dependency>
<Dependency>nemo</Dependency>
<Dependency>gpgme</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>libcryptui</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-seahorse-tool</Path>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-seahorse.*</Path>
<Path fileType="data">/usr/share/nemo-seahorse</Path>
<Path fileType="data">/usr/share/applications/nemo-seahorse*</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.plugins.seahorse*</Path>
<Path fileType="data">/usr/share/man/man1/nemo-seahorse*</Path>
</Files>
</Package>
<Package>
<Name>nemo-share</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/nemo/extensions-3.0/libnemo-share.*</Path>
<Path fileType="data">/usr/share/nemo-share</Path>
<Path fileType="data">/usr/share/polkit-1/actions</Path>
<Path fileType="localdata">/usr/share/locale/*/LC_MESSAGES/nemo-share.mo</Path>
</Files>
</Package>
<Package>
<Name>nemo-terminal</Name>
<Icon>nemo</Icon>
<RuntimeDependencies>
<Dependency>nemo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin/nemo-terminal-prefs</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/nemo_terminal-5.4.1-py3.9.egg-info</Path>
<Path fileType="data">/usr/share/nemo-terminal</Path>
<Path fileType="data">/usr/share/glib-2.0/schemas/org.nemo.extensions.nemo-terminal.gschema.xml</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>5.4.1</Version>
<Comment>First Release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>cinnamon-menus</Name>
@@ -689,6 +929,426 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>cinnamon</Name>
<Homepage>https://github.com/linuxmint/cinnamon</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2+</License>
<License>LGPLv2.1</License>
<IsA>app:console</IsA>
<IsA>library</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">Linux desktop which provides advanced innovative features and a traditional user experience</Summary>
<Description xml:lang="en">Linux desktop which provides advanced innovative features and a traditional user experience</Description>
<Icon>cinnamon</Icon>
<Archive type="targz" sha1sum="ca4b4165bb0f39f6b78b69eabc00de2d1c1ffafd" name="5.4.2.tar.gz">https://github.com/linuxmint/cinnamon/archive/refs/tags/5.4.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>cjs-devel</Dependency>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>intltool</Dependency>
<Dependency>cinnamon-menus-devel</Dependency>
<Dependency>muffin-devel</Dependency>
<Dependency>clutter-devel</Dependency>
<Dependency>cogl-devel</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>polkit-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>at-spi2-atk-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>libsoup-devel</Dependency>
<Dependency>xapp-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libnma-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>cinnamon-session</Dependency>
<Dependency>cinnamon-settings-daemon-devel</Dependency>
<Dependency>cinnamon-screensaver-devel</Dependency>
<Dependency>cinnamon-control-center-devel</Dependency>
<Dependency>libXfixes-devel</Dependency>
<Dependency>gettext-devel</Dependency>
<Dependency>spidermonkey-devel</Dependency>
<Dependency>libgudev-devel</Dependency>
<Dependency>NetworkManager-devel</Dependency>
<Dependency>network-manager-applet</Dependency>
<Dependency>startup-notification-devel</Dependency>
<Dependency>gnome-bluetooth-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>json-glib-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>mozjs-78-devel</Dependency>
<Dependency>system-config-printer</Dependency>
<Dependency>upower-devel</Dependency>
<Dependency>libcroco-devel</Dependency>
<Dependency>libcanberra-devel</Dependency>
<Dependency>gconf-devel</Dependency>
<Dependency>gnome-panel-devel</Dependency>
<Dependency>gsettings-desktop-schemas-devel</Dependency>
<Dependency>libgnome-keyring</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>librsvg-devel</Dependency>
<Dependency>libXScrnSaver-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>autostart.patch</Patch>
<Patch>default-theme.patch</Patch>
<Patch>set_wheel.patch</Patch>
<Patch>0001-cinnamon-settings-don-t-rely-on-the-presence-of-cinn.patch</Patch>
</Patches>
<SourceURI>desktop/cinnamon/cinnamon/pspec.xml</SourceURI>
</Source>
<Package>
<Name>cinnamon</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>cogl</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>dbus</Dependency>
<Dependency>xapp</Dependency>
<Dependency>mesa</Dependency>
<Dependency>cairo</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>libXext</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>json-glib</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-server</Dependency>
<Dependency>pango</Dependency>
<Dependency>libX11</Dependency>
<Dependency>muffin</Dependency>
<Dependency>clutter</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>blueberry</Dependency>
<Dependency>mintlocale</Dependency>
<Dependency>cjs</Dependency>
<Dependency>system-config-printer</Dependency>
<Dependency>system-config-printer-gtk</Dependency>
<Dependency>spidermonkey</Dependency>
<Dependency>icon-theme-adwaita</Dependency>
<Dependency>libcroco</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>at-spi2-atk</Dependency>
<Dependency>cinnamon-menus</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>startup-notification</Dependency>
<Dependency>gobject-introspection</Dependency>
<Dependency>cinnamon-desktop</Dependency>
<Dependency>cinnamon-control-center</Dependency>
<Dependency>cinnamon-screensaver</Dependency>
<Dependency>cinnamon-session</Dependency>
<Dependency>cinnamon-settings-daemon</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>gnome-panel</Dependency>
<Dependency>nemo</Dependency>
<Dependency>NetworkManager</Dependency>
<Dependency>network-manager-applet</Dependency>
<Dependency>libgnome-keyring</Dependency>
<Dependency>accountsservice</Dependency>
<Dependency>polkit</Dependency>
<Dependency>polkit-gnome</Dependency>
<Dependency>upower</Dependency>
<Dependency>libsoup</Dependency>
<Dependency>dbus-python</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gconf</Dependency>
<Dependency>python3-cairo</Dependency>
<Dependency>python3-pygobject3</Dependency>
<Dependency>python3-pam</Dependency>
<Dependency>python3-xapp</Dependency>
<Dependency>python3-pillow</Dependency>
<Dependency>python3-pexpect</Dependency>
<Dependency>python3-pyinotify</Dependency>
<Dependency>python3-pytz</Dependency>
<Dependency>python3-requests</Dependency>
<Dependency>python3-cairo</Dependency>
<Dependency>timezonemap</Dependency>
<Dependency>python-gtk</Dependency>
<Dependency>notify-python</Dependency>
<Dependency>gnome-terminal</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="config">/etc/xdg</Path>
<Path fileType="library">/usr/lib/cinnamon</Path>
<Path fileType="library">/usr/lib/python3.9</Path>
<Path fileType="library">/usr/lib/cinnamon-*</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/cinnamon</Path>
<Path fileType="data">/usr/share/cinnamon-session</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/desktop-directories</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="doc">/usr/share/gtk-doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/usr/share/xsessions</Path>
<Path fileType="data">/usr/share/themes</Path>
<Path fileType="data">/usr/share</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/etc/xdg/autostart/polkit-cinnamon-authentication-agent-1.desktop" permission="0644" owner="root">polkit-cinnamon-authentication-agent-1.desktop</AdditionalFile>
<AdditionalFile target="/usr/share/cinnamon/applets/window-list@cinnamon.org/settings-schema.json" permission="0644" owner="root">window-list.json</AdditionalFile>
<AdditionalFile target="/usr/share/cinnamon/applets/panel-launchers@cinnamon.org/settings-schema.json" permission="0644" owner="root">panel-launchers.json</AdditionalFile>
<AdditionalFile target="/usr/share/cinnamon/applets/menu@cinnamon.org/settings-schema.json" permission="0644" owner="root">menu.json</AdditionalFile>
<AdditionalFile target="/usr/share/icons/hicolor/scalable/apps/pisi-logo.svg" permission="0644" owner="root">pisi-logo.svg</AdditionalFile>
<AdditionalFile target="/usr/share/backgrounds/cinnamon/pisi-crocus-ancyrensis.png" permission="0644" owner="root">pisi-crocus-ancyrensis.png</AdditionalFile>
<AdditionalFile target="/usr/share/glib-2.0/schemas/cinnamon-pisilinux.gschema.override" permission="0644" owner="root">cinnamon-pisilinux.gschema.override</AdditionalFile>
</AdditionalFiles>
</Package>
<History>
<Update release="1">
<Date>2022-06-30</Date>
<Version>5.4.2</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>nemo</Name>
<Homepage>https://github.com/linuxmint/nemo</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">File manager for Cinnamon</Summary>
<Summary xml:lang="tr">Cinnamon için Dosya Yöneticisi</Summary>
<Description xml:lang="en">File manager for Cinnamon</Description>
<Description xml:lang="tr">Cinnamon için Dosya Yöneticisi</Description>
<Icon>nemo</Icon>
<Archive type="targz" sha1sum="0af002d1417ed3f9a01fa34ebcd93fed4d441a1b" name="5.4.0.tar.gz">https://github.com/linuxmint/nemo/archive/refs/tags/5.4.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>samurai</Dependency>
<Dependency>intltool</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>xorg-proto</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>libxml2-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>librsvg-devel</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>cinnamon-desktop-devel</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>gsettings-desktop-schemas-devel</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>gvfs-goa</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libexif-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>libgsf-devel</Dependency>
<Dependency>exempi-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>ffmpegthumbnailer-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>xapp-devel</Dependency>
<Dependency>dconf-devel</Dependency>
<Dependency>poppler-devel</Dependency>
<Dependency>ghostscript-devel</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/cinnamon/nemo/pspec.xml</SourceURI>
</Source>
<Package>
<Name>nemo</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>gvfs</Dependency>
<Dependency>xapp</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>pango</Dependency>
<Dependency>exempi</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgsf</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>libexif</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>gvfs-goa</Dependency>
<Dependency>libnotify</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>shared-mime-info</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>gsettings-desktop-schemas</Dependency>
<Dependency>cinnamon-desktop</Dependency>
<Dependency>cinnamon-translations</Dependency>
<Dependency>icon-theme-adwaita</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/nemo</Path>
<Path fileType="library">/usr/lib/girepository-1.0</Path>
<Path fileType="library">/usr/lib/libnemo*</Path>
<Path fileType="library">/usr/lib/nemo-*</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/gtksourceview*</Path>
<Path fileType="icon">/usr/share/icons</Path>
<Path fileType="data">/usr/share/man</Path>
<Path fileType="data">/usr/share/mime</Path>
<Path fileType="data">/usr/share/nemo</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/home/alihan/.config/nemo</Path>
</Files>
<AdditionalFiles>
<AdditionalFile target="/home/alihan/.config/nemo/desktop-metadata" permission="0644" owner="root">desktop-metadata</AdditionalFile>
</AdditionalFiles>
</Package>
<Package>
<Name>nemo-devel</Name>
<Summary xml:lang="tr">nemo için geliştirme dosyaları</Summary>
<Icon>development</Icon>
<RuntimeDependencies>
<Dependency release="1">nemo</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-06-30</Date>
<Version>5.4.0</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libcryptui</Name>
<Homepage>https://gitlab.gnome.org/GNOME/libcryptui</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPL</License>
<IsA>app:gui</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">Library for OpenPGP prompts</Summary>
<Summary xml:lang="tr">OpenPGP istemleri için kitaplık</Summary>
<Description xml:lang="en">Library for OpenPGP prompts</Description>
<Description xml:lang="tr">OpenPGP istemleri için kitaplık</Description>
<Icon>library</Icon>
<Archive type="targz" sha1sum="0fa21934d52bfe958aeecf563b7be9b68bbe1b7b" name="libcryptui-3.12.2.tar.gz">https://gitlab.gnome.org/GNOME/libcryptui/-/archive/3.12.2/libcryptui-3.12.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>gnome-common</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gpgme-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency>gnupg</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>libnotify-devel</Dependency>
<Dependency>gcr-devel</Dependency>
<Dependency>atk-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gettext-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>libcryptui-3.12.2-gpg22.patch</Patch>
<Patch>libcryptui-3.12.2-use-gcr.patch</Patch>
<Patch>libcryptui-gpg_version_fix.patch</Patch>
<Patch>libcryptui-3.12.2-fix-return-types.patch</Patch>
</Patches>
<SourceURI>desktop/cinnamon/libcryptui/pspec.xml</SourceURI>
</Source>
<Package>
<Name>libcryptui</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gcr</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libSM</Dependency>
<Dependency>gpgme</Dependency>
<Dependency>pango</Dependency>
<Dependency>dbus-glib</Dependency>
<Dependency>libnotify</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localdata">/usr/share/locale</Path>
</Files>
</Package>
<Package>
<Name>libcryptui-devel</Name>
<RuntimeDependencies>
<Dependency release="1">libcryptui</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>3.12.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>mint-themes</Name>
@@ -902,6 +1562,104 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xreader</Name>
<Homepage>https://github.com/linuxmint/xreader</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">Document viewer for files like PDF and Postscript.</Summary>
<Summary xml:lang="tr">PDF ve Postscript benzeri dosyalar için Belge görüntüleyici.</Summary>
<Description xml:lang="en">Document viewer for files like PDF and Postscript.</Description>
<Description xml:lang="tr">PDF ve Postscript benzeri dosyalar için Belge görüntüleyici.</Description>
<Icon>xreader</Icon>
<Archive type="targz" sha1sum="72285cb86c3565cae07a8f6705a0c9c5c1e7bdb4" name="3.4.2.tar.gz">https://github.com/linuxmint/xreader/archive/refs/tags/3.4.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>xapp-devel</Dependency>
<Dependency>intltool</Dependency>
<Dependency>itstool</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libsecret-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libspectre-devel</Dependency>
<Dependency>libgxps-devel</Dependency>
<Dependency>poppler-glib-devel</Dependency>
<Dependency>texlive-bin-devel</Dependency>
<Dependency>t1lib-devel</Dependency>
<Dependency>webkit2gtk-devel</Dependency>
</BuildDependencies>
<SourceURI>desktop/cinnamon/xreader/pspec.xml</SourceURI>
</Source>
<Package>
<Name>xreader</Name>
<RuntimeDependencies>
<Dependency>atk</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>tiff</Dependency>
<Dependency>xapp</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libSM</Dependency>
<Dependency>pango</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgxps</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libsecret</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libspectre</Dependency>
<Dependency>webkit2gtk</Dependency>
<Dependency>poppler-glib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/libxreader*</Path>
<Path fileType="library">/usr/lib/girepository-1.0</Path>
<Path fileType="library">/usr/lib/xreader</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
<Path fileType="data">/usr/share/doc</Path>
<Path fileType="data">/usr/share/glib-2.0</Path>
<Path fileType="data">/usr/share/help</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="localdata">/usr/share/locale</Path>
<Path fileType="data">/usr/share/man</Path>
<Path fileType="data">/usr/share/metainfo</Path>
<Path fileType="data">/usr/share/thumbnailers</Path>
<Path fileType="data">/usr/share/xreader</Path>
</Files>
</Package>
<Package>
<Name>xreader-devel</Name>
<Summary xml:lang="tr">xreader için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="1">xreader</Dependency>
<Dependency>gtk3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/share/gir-1.0</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-23</Date>
<Version>3.4.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>cinnamon-control-center</Name>
@@ -1327,7 +2085,7 @@
<Dependency>libxklavier-devel</Dependency>
<Dependency>at-spi2-core-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>python-pygobject3-devel</Dependency>
<Dependency>python3-pygobject3-devel</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
<Dependency>gsettings-desktop-schemas-devel</Dependency>
</BuildDependencies>
@@ -1837,6 +2595,38 @@
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>cinnamon-sounds</Name>
<Homepage>http://cinnamon.linuxmint.com/</Homepage>
<Packager>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<IsA>app:gui</IsA>
<PartOf>desktop.cinnamon</PartOf>
<Summary xml:lang="en">Cinnamon desktop sounds</Summary>
<Description xml:lang="en">Cinnamon desktop sounds</Description>
<Archive type="tarxz" sha1sum="18394230770eb8d5fc324fa70e18fcc5bf04fe45" name="cinnamon-sounds.tar.xz">https://sourceforge.net/projects/pisilinux/files/source/cinnamon-sounds.tar.xz</Archive>
<SourceURI>desktop/cinnamon/cinnamon-sounds/pspec.xml</SourceURI>
</Source>
<Package>
<Name>cinnamon-sounds</Name>
<Files>
<Path fileType="data">/usr/share/cinnamon/sounds</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2022-07-16</Date>
<Version>1.0.0</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>xfce4-screensaver</Name>
+1 -1
View File
@@ -1 +1 @@
ae6201f4b80ec2da97d6962dd0fb7e0db3ca31b2
e68bc1cad066a9a86da54ca7e2a011508bad3648
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
d1e8edf0884bc3aacb19ce2c0273c273dad0e620
860d1c4e0005cfd570e831cfa5cef13cd96b754a