kde5-framework
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md", "AUTHORS", "ChangeLog")
|
||||||
@@ -0,0 +1,61 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>attica5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Open Collaboration Service client library, based on Qt 5</Summary>
|
||||||
|
<Description>attica5 is a library to access Open Collaboration Service servers, based on Qt 5.</Description>
|
||||||
|
<Archive sha1sum="f62585ee87b33a644a0df8ab903e1503ed12e374" type="tarxz">mirrors://kde/stable/frameworks/5.116/attica-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>attica5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>attica5-devel</Name>
|
||||||
|
<Summary>Development files for attica55</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">attica5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>attica55</Name>
|
||||||
|
<Summary xml:lang="tr">Açık İşbirliği Hizmetleri (Open Collaboration Services) programlama arayüzü gerçeklemesi</Summary>
|
||||||
|
<Description xml:lang="tr">ttica, freedesktop.org'daki Açık İşbirliği Hizmetleri programlama arayüzünün 1.4 sürümünü gerçekleyen bir Qt 5 kitaplığıdır.</Description>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>attica55-devel</Name>
|
||||||
|
<Summary xml:lang="tr">attica55 için geliştirme dosyaları</Summary>
|
||||||
|
</Package>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,17 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure("-DUDEV_RULES_INSTALL_DIR=/lib/udev/rules.d")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>bluez-qt5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Qt wrapper for KDE 5 Bluez DBus API</Summary>
|
||||||
|
<Description>Qt wrapper for KDE 5 DBus API.</Description>
|
||||||
|
<Archive sha1sum="b3922f0efc281f47d524eb32eaa2c6878863c9c1" type="tarxz">mirrors://kde/stable/frameworks/5.116/bluez-qt-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>bluez</Dependency>
|
||||||
|
<Dependency>bluez-libs-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>bluez-qt5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>bluez</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/lib/udev</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/bluez.categories</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>bluez-qt5-devel</Name>
|
||||||
|
<Summary>Development files for bluez-qt5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency versionFrom="5.15.1">qt5-base-devel</Dependency> -->
|
||||||
|
<!-- <Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency> -->
|
||||||
|
<Dependency release="current">bluez-qt5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure("-DBINARY_ICONS_RESOURCE=ON")
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README*", "COPYING*")
|
||||||
@@ -0,0 +1,62 @@
|
|||||||
|
From 250a7d0bbe6dd8e7d2e7cba4cc82a2d8cce37cf1 Mon Sep 17 00:00:00 2001
|
||||||
|
From: Rodney Dawes <dobey.pwns@gmail.com>
|
||||||
|
Date: Mon, 15 Nov 2021 10:47:54 -0500
|
||||||
|
Subject: [PATCH] Install dark icons via execute_process to use copy command
|
||||||
|
|
||||||
|
In order to ensure the dark icons are copied over the light icons which
|
||||||
|
are installed into the dark theme for BUG:444095, we need to execute the
|
||||||
|
copy command ourselves rather than using CMake's internal copy mechanism
|
||||||
|
used by the normal install command, so we use CODE mode of install to
|
||||||
|
execute_process and print an appropriate status message.
|
||||||
|
|
||||||
|
BUG: 445489
|
||||||
|
---
|
||||||
|
icons-dark/CMakeLists.txt | 30 ++++++++++++++++++++++++++++--
|
||||||
|
1 file changed, 28 insertions(+), 2 deletions(-)
|
||||||
|
|
||||||
|
diff --git a/icons-dark/CMakeLists.txt b/icons-dark/CMakeLists.txt
|
||||||
|
index d14bdba5..40590a8b 100644
|
||||||
|
--- a/icons-dark/CMakeLists.txt
|
||||||
|
+++ b/icons-dark/CMakeLists.txt
|
||||||
|
@@ -26,10 +26,36 @@ if(NOT WIN32)
|
||||||
|
endif()
|
||||||
|
|
||||||
|
if(NOT SKIP_INSTALL_ICONS)
|
||||||
|
- install(DIRECTORY ${breeze_icon_dark_dirs} DESTINATION ${BREEZE_INSTALL_DIR})
|
||||||
|
+ # In order to ensure the dark icons are copied over the light icons which
|
||||||
|
+ # are installed into the dark theme for BUG:444095, we need to execute the
|
||||||
|
+ # copy command ourselves rather than using CMake's internal copy mechanism
|
||||||
|
+ # used by the normal install command, so we use CODE mode of install to
|
||||||
|
+ # execute_process and print an appropriate status message.
|
||||||
|
+ # See https://bugs.kde.org/show_bug.cgi?id=445489
|
||||||
|
+ set(COPY_CMD "cp -a")
|
||||||
|
+ set(XCOPY_ARGS "")
|
||||||
|
+ if(WIN32)
|
||||||
|
+ set(COPY_CMD "xcopy")
|
||||||
|
+ set(XCOPY_ARGS "/q /e /y")
|
||||||
|
+ endif(WIN32)
|
||||||
|
+ install(CODE "cmake_policy(VERSION 3.6)
|
||||||
|
+ foreach(CAT_DIR ${breeze_icon_dark_dirs})
|
||||||
|
+ execute_process(COMMAND ${COPY_CMD} \${CAT_DIR} \$ENV{DESTDIR}${BREEZE_INSTALL_DIR} ${XCOPY_ARGS} ERROR_QUIET WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
|
||||||
|
+ endforeach()
|
||||||
|
+ file(GLOB_RECURSE ICON_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} LIST_DIRECTORIES false ${CMAKE_CURRENT_SOURCE_DIR}/*.svg)
|
||||||
|
+ foreach(ICON_FILE IN LISTS ICON_FILES)
|
||||||
|
+ message(STATUS \"Installing: \$ENV{DESTDIR}${BREEZE_INSTALL_DIR}/\${ICON_FILE}\")
|
||||||
|
+ endforeach()")
|
||||||
|
install(FILES index.theme DESTINATION ${BREEZE_INSTALL_DIR})
|
||||||
|
if(WITH_ICON_GENERATION)
|
||||||
|
- install(DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/generated/ DESTINATION ${BREEZE_INSTALL_DIR})
|
||||||
|
+ install(CODE "cmake_policy(VERSION 3.6)
|
||||||
|
+ foreach(GEN_DIR ${breeze_icon_dark_dirs})
|
||||||
|
+ execute_process(COMMAND ${COPY_CMD} \${GEN_DIR} \$ENV{DESTDIR}${BREEZE_INSTALL_DIR} ${XCOPY_ARGS} ERROR_QUIET WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/generated)
|
||||||
|
+ endforeach()
|
||||||
|
+ file(GLOB_RECURSE ICON_FILES RELATIVE ${CMAKE_CURRENT_BINARY_DIR}/generated LIST_DIRECTORIES false ${CMAKE_CURRENT_BINARY_DIR}/generated/*.svg)
|
||||||
|
+ foreach(ICON_FILE IN LISTS ICON_FILES)
|
||||||
|
+ message(STATUS \"Installing: \$ENV{DESTDIR}${BREEZE_INSTALL_DIR}/\${ICON_FILE}\")
|
||||||
|
+ endforeach()")
|
||||||
|
endif()
|
||||||
|
endif()
|
||||||
|
|
||||||
|
--
|
||||||
|
GitLab
|
||||||
|
|
||||||
@@ -0,0 +1,308 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="16"
|
||||||
|
height="16"
|
||||||
|
id="svg3236"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
sodipodi:docname="breeze-16.svg"
|
||||||
|
viewBox="-2.7755576e-17 0 201.6 201.6">
|
||||||
|
<defs
|
||||||
|
id="defs3238" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="19.64"
|
||||||
|
inkscape:cx="26.805972"
|
||||||
|
inkscape:cy="11.248165"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="694"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
viewbox-x="0"
|
||||||
|
scale-x="12.6" />
|
||||||
|
<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></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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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 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
|
||||||
|
transform="translate(34.693615,893.42556)"
|
||||||
|
cx="83.259003"
|
||||||
|
cy="71.771004"
|
||||||
|
r="4.9510002"
|
||||||
|
id="circle4431-2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</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" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,308 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="22"
|
||||||
|
height="22"
|
||||||
|
id="svg3236"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
sodipodi:docname="breeze-22.svg"
|
||||||
|
viewBox="-2.7755576e-17 0 198 198">
|
||||||
|
<defs
|
||||||
|
id="defs3238" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="19.64"
|
||||||
|
inkscape:cx="26.805972"
|
||||||
|
inkscape:cy="11.248165"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="694"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
viewbox-x="0"
|
||||||
|
scale-x="9" />
|
||||||
|
<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></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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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 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
|
||||||
|
transform="translate(34.693615,893.42556)"
|
||||||
|
cx="83.259003"
|
||||||
|
cy="71.771004"
|
||||||
|
r="4.9510002"
|
||||||
|
id="circle4431-2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</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" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,308 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="64"
|
||||||
|
height="64"
|
||||||
|
id="svg3236"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
sodipodi:docname="breeze-22.svg"
|
||||||
|
viewBox="-2.7755576e-17 0 198.4 198.4">
|
||||||
|
<defs
|
||||||
|
id="defs3238" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="6.9437886"
|
||||||
|
inkscape:cx="85.131727"
|
||||||
|
inkscape:cy="35.073109"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="694"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
viewbox-x="0"
|
||||||
|
scale-x="3.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></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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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 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
|
||||||
|
transform="translate(34.693615,893.42556)"
|
||||||
|
cx="83.259003"
|
||||||
|
cy="71.771004"
|
||||||
|
r="4.9510002"
|
||||||
|
id="circle4431-2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</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" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,308 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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="96"
|
||||||
|
height="96"
|
||||||
|
id="svg3236"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
sodipodi:docname="breeze-22.svg"
|
||||||
|
viewBox="-2.7755576e-17 0 201.6 201.6">
|
||||||
|
<defs
|
||||||
|
id="defs3238" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="3.4718943"
|
||||||
|
inkscape:cx="123.01589"
|
||||||
|
inkscape:cy="58.120095"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="694"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="25"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
viewbox-x="0"
|
||||||
|
scale-x="2.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></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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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-dasharray:none;stroke-opacity:1"
|
||||||
|
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 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
|
||||||
|
transform="translate(34.693615,893.42556)"
|
||||||
|
cx="83.259003"
|
||||||
|
cy="71.771004"
|
||||||
|
r="4.9510002"
|
||||||
|
id="circle4431-2"
|
||||||
|
style="fill:#000000" />
|
||||||
|
</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" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 12 KiB |
@@ -0,0 +1,358 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
width="16"
|
||||||
|
height="16"
|
||||||
|
sodipodi:docname="breeze-dark.svg"
|
||||||
|
viewBox="0 0 64 64">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3764"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3764"
|
||||||
|
id="linearGradient3820"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="11.994687"
|
||||||
|
y1="24.005501"
|
||||||
|
x2="36"
|
||||||
|
y2="24.005501" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3012"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3014" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3016" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath
|
||||||
|
id="clipPath-121880098">
|
||||||
|
<g
|
||||||
|
transform="translate(0,-1004.3622)"
|
||||||
|
id="g17">
|
||||||
|
<path
|
||||||
|
style="fill:#1890d0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
|
||||||
|
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
|
||||||
|
id="path19" />
|
||||||
|
</g>
|
||||||
|
</clipPath>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3022"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3024" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3026" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3029"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3031" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3033" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="640"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="9.4140624"
|
||||||
|
inkscape:cx="40.900067"
|
||||||
|
inkscape:cy="15.533942"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="75"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
scale-x="4" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0223"
|
||||||
|
d=""
|
||||||
|
id="path3783"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 42.933042,9.2149217 c 0,0 3.91748,-5.8539691 15.439699,-6.745284 0,0 6.10501,15.7907383 -1.95126,23.3537253 C 52.368759,19.072736 49.49852,14.295651 42.933042,9.2149217 Z"
|
||||||
|
id="path19-7"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 31.651695,60.501243 c 13.95321,0 25.766298,-9.420824 29.793871,-22.424348 C 57.417993,25.069346 45.604905,5.2575113 31.651695,5.2575113 17.702437,5.2575113 5.8870924,25.069346 1.8617797,38.076895 5.8870924,51.080998 17.702437,60.501243 31.651695,60.501243 Z"
|
||||||
|
id="path30"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g32"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g34"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="45.942001"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="17.620001"
|
||||||
|
y2="114.775"
|
||||||
|
id="line38" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_4_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="16.9111"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="46.650902"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop41" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop43" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path45"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="52.318001"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="23.992001"
|
||||||
|
y2="115.626"
|
||||||
|
id="line49" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_5_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="23.283199"
|
||||||
|
y1="104.6143"
|
||||||
|
x2="53.023399"
|
||||||
|
y2="104.6143">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop52" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop54" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path56"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g60"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="82.056"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="110.378"
|
||||||
|
y2="114.775"
|
||||||
|
id="line62" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_6_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="81.346703"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="111.0859"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop65" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop67" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path69"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g71"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="75.682999"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="104.005"
|
||||||
|
y2="115.626"
|
||||||
|
id="line73" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_7_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="74.973602"
|
||||||
|
y1="104.6133"
|
||||||
|
x2="104.7119"
|
||||||
|
y2="104.6133">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop76" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop78" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path80"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<line
|
||||||
|
x1="31.653383"
|
||||||
|
y1="50.968903"
|
||||||
|
x2="31.653383"
|
||||||
|
y2="55.709202"
|
||||||
|
id="line86"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 22.798944,8.1644157 C 21.887726,8.6846154 20.364877,9.8381879 20.364877,9.8381879 L 28.477684,23.076847 25.541088,6.7751031 c 0,0 -1.76422,0.8313946 -2.742144,1.3893126 z"
|
||||||
|
id="path93"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 30.166157,5.9010454 C 28.558518,6.0797848 27.102374,6.5704202 27.102374,6.5704202 L 31.141818,22.066301 32.448164,5.8777918 c -4.92e-4,6.226e-4 -0.674371,-0.1551048 -2.282007,0.02297 z"
|
||||||
|
id="path100"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
cx="20.728338"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle107"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<ellipse
|
||||||
|
cx="42.539989"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle114"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<path
|
||||||
|
d="m 15.161861,33.290719 -0.504786,0.136971 -0.08026,0.527152 c -0.569234,3.757448 0.05881,6.547642 1.862576,8.299789 2.852937,2.766985 7.517009,1.77942 7.713725,1.73706 l 0.512135,-0.111402 0.103448,-0.525398 c 0.81003,-3.983886 0.301857,-6.89776 -1.505897,-8.65745 -2.880068,-2.795418 -7.887825,-1.464212 -8.100933,-1.406722 z m 7.003744,2.606166 c 0.917438,0.895801 1.379263,2.260705 1.379263,4.082523 0,0.74547 -0.09667,1.589008 -0.253814,2.488296 -1.168423,0.148577 -4.005528,0.293225 -5.756181,-1.413068 -1.037844,-1.009614 -1.560721,-2.545201 -1.560721,-4.579516 0,-0.52425 0.06953,-1.115848 0.140755,-1.70975 1.209685,-0.227097 4.277425,-0.595698 6.050689,1.131515 z"
|
||||||
|
id="path116"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 40.251886,34.482735 c -1.809444,1.759692 -2.316491,4.672405 -1.505894,8.659143 l 0.105146,0.523706 0.509876,0.111403 c 0.196716,0.04352 4.861354,1.03167 7.713724,-1.736474 1.805486,-1.750986 2.432373,-4.542922 1.862582,-8.298013 l -0.08027,-0.5283 -0.505355,-0.138119 c -0.209712,-0.05742 -5.220298,-1.388696 -8.099802,1.406721 z m -0.281516,5.279647 c 0,-1.817713 0.461259,-3.185562 1.378699,-4.081362 1.77326,-1.728355 4.84213,-1.35852 6.051819,-1.130935 0.06952,0.592735 0.138495,1.186679 0.138495,1.709749 0,2.034317 -0.522316,3.570483 -1.559024,4.579517 -1.752347,1.703941 -4.587193,1.561156 -5.757879,1.413105 -0.153738,-0.898745 -0.252116,-1.743443 -0.252116,-2.490074 z"
|
||||||
|
id="path118"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g120"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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 z"
|
||||||
|
id="path122"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 20.414959,9.2934956 c 0,0 -3.917481,-5.8539752 -15.4396982,-6.7452537 0,0 -6.1050107,15.7907081 1.9512617,23.3537321 C 10.979238,19.151346 13.849484,14.37422 20.414959,9.2934956 Z"
|
||||||
|
id="path19-8"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,358 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
width="22"
|
||||||
|
height="22"
|
||||||
|
sodipodi:docname="breeze-dark.svg"
|
||||||
|
viewBox="0 0 63.8 63.8">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3764"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3764"
|
||||||
|
id="linearGradient3820"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="11.994687"
|
||||||
|
y1="24.005501"
|
||||||
|
x2="36"
|
||||||
|
y2="24.005501" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3012"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3014" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3016" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath
|
||||||
|
id="clipPath-121880098">
|
||||||
|
<g
|
||||||
|
transform="translate(0,-1004.3622)"
|
||||||
|
id="g17">
|
||||||
|
<path
|
||||||
|
style="fill:#1890d0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
|
||||||
|
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
|
||||||
|
id="path19" />
|
||||||
|
</g>
|
||||||
|
</clipPath>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3022"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3024" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3026" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3029"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3031" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3033" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="640"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="9.4140624"
|
||||||
|
inkscape:cx="40.900067"
|
||||||
|
inkscape:cy="15.533942"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="75"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
scale-x="2.9" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0223"
|
||||||
|
d=""
|
||||||
|
id="path3783"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 42.933042,9.2149217 c 0,0 3.91748,-5.8539691 15.439699,-6.745284 0,0 6.10501,15.7907383 -1.95126,23.3537253 C 52.368759,19.072736 49.49852,14.295651 42.933042,9.2149217 Z"
|
||||||
|
id="path19-7"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 31.651695,60.501243 c 13.95321,0 25.766298,-9.420824 29.793871,-22.424348 C 57.417993,25.069346 45.604905,5.2575113 31.651695,5.2575113 17.702437,5.2575113 5.8870924,25.069346 1.8617797,38.076895 5.8870924,51.080998 17.702437,60.501243 31.651695,60.501243 Z"
|
||||||
|
id="path30"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g32"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g34"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="45.942001"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="17.620001"
|
||||||
|
y2="114.775"
|
||||||
|
id="line38" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_4_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="16.9111"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="46.650902"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop41" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop43" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path45"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="52.318001"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="23.992001"
|
||||||
|
y2="115.626"
|
||||||
|
id="line49" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_5_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="23.283199"
|
||||||
|
y1="104.6143"
|
||||||
|
x2="53.023399"
|
||||||
|
y2="104.6143">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop52" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop54" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path56"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g60"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="82.056"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="110.378"
|
||||||
|
y2="114.775"
|
||||||
|
id="line62" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_6_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="81.346703"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="111.0859"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop65" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop67" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path69"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g71"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="75.682999"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="104.005"
|
||||||
|
y2="115.626"
|
||||||
|
id="line73" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_7_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="74.973602"
|
||||||
|
y1="104.6133"
|
||||||
|
x2="104.7119"
|
||||||
|
y2="104.6133">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop76" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop78" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path80"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<line
|
||||||
|
x1="31.653383"
|
||||||
|
y1="50.968903"
|
||||||
|
x2="31.653383"
|
||||||
|
y2="55.709202"
|
||||||
|
id="line86"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 22.798944,8.1644157 C 21.887726,8.6846154 20.364877,9.8381879 20.364877,9.8381879 L 28.477684,23.076847 25.541088,6.7751031 c 0,0 -1.76422,0.8313946 -2.742144,1.3893126 z"
|
||||||
|
id="path93"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 30.166157,5.9010454 C 28.558518,6.0797848 27.102374,6.5704202 27.102374,6.5704202 L 31.141818,22.066301 32.448164,5.8777918 c -4.92e-4,6.226e-4 -0.674371,-0.1551048 -2.282007,0.02297 z"
|
||||||
|
id="path100"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
cx="20.728338"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle107"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<ellipse
|
||||||
|
cx="42.539989"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle114"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<path
|
||||||
|
d="m 15.161861,33.290719 -0.504786,0.136971 -0.08026,0.527152 c -0.569234,3.757448 0.05881,6.547642 1.862576,8.299789 2.852937,2.766985 7.517009,1.77942 7.713725,1.73706 l 0.512135,-0.111402 0.103448,-0.525398 c 0.81003,-3.983886 0.301857,-6.89776 -1.505897,-8.65745 -2.880068,-2.795418 -7.887825,-1.464212 -8.100933,-1.406722 z m 7.003744,2.606166 c 0.917438,0.895801 1.379263,2.260705 1.379263,4.082523 0,0.74547 -0.09667,1.589008 -0.253814,2.488296 -1.168423,0.148577 -4.005528,0.293225 -5.756181,-1.413068 -1.037844,-1.009614 -1.560721,-2.545201 -1.560721,-4.579516 0,-0.52425 0.06953,-1.115848 0.140755,-1.70975 1.209685,-0.227097 4.277425,-0.595698 6.050689,1.131515 z"
|
||||||
|
id="path116"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 40.251886,34.482735 c -1.809444,1.759692 -2.316491,4.672405 -1.505894,8.659143 l 0.105146,0.523706 0.509876,0.111403 c 0.196716,0.04352 4.861354,1.03167 7.713724,-1.736474 1.805486,-1.750986 2.432373,-4.542922 1.862582,-8.298013 l -0.08027,-0.5283 -0.505355,-0.138119 c -0.209712,-0.05742 -5.220298,-1.388696 -8.099802,1.406721 z m -0.281516,5.279647 c 0,-1.817713 0.461259,-3.185562 1.378699,-4.081362 1.77326,-1.728355 4.84213,-1.35852 6.051819,-1.130935 0.06952,0.592735 0.138495,1.186679 0.138495,1.709749 0,2.034317 -0.522316,3.570483 -1.559024,4.579517 -1.752347,1.703941 -4.587193,1.561156 -5.757879,1.413105 -0.153738,-0.898745 -0.252116,-1.743443 -0.252116,-2.490074 z"
|
||||||
|
id="path118"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g120"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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 z"
|
||||||
|
id="path122"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 20.414959,9.2934956 c 0,0 -3.917481,-5.8539752 -15.4396982,-6.7452537 0,0 -6.1050107,15.7907081 1.9512617,23.3537321 C 10.979238,19.151346 13.849484,14.37422 20.414959,9.2934956 Z"
|
||||||
|
id="path19-8"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,358 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
width="48"
|
||||||
|
height="48"
|
||||||
|
sodipodi:docname="breeze-dark.svg"
|
||||||
|
viewBox="0 0 62.4 62.4">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3764"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3764"
|
||||||
|
id="linearGradient3820"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="11.994687"
|
||||||
|
y1="24.005501"
|
||||||
|
x2="36"
|
||||||
|
y2="24.005501" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3012"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3014" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3016" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath
|
||||||
|
id="clipPath-121880098">
|
||||||
|
<g
|
||||||
|
transform="translate(0,-1004.3622)"
|
||||||
|
id="g17">
|
||||||
|
<path
|
||||||
|
style="fill:#1890d0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
|
||||||
|
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
|
||||||
|
id="path19" />
|
||||||
|
</g>
|
||||||
|
</clipPath>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3022"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3024" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3026" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3029"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3031" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3033" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="640"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="4.7070312"
|
||||||
|
inkscape:cx="78.064826"
|
||||||
|
inkscape:cy="11.23927"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="75"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
scale-x="1.3" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0223"
|
||||||
|
d=""
|
||||||
|
id="path3783"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 42.933042,9.2149217 c 0,0 3.91748,-5.8539691 15.439699,-6.745284 0,0 6.10501,15.7907383 -1.95126,23.3537253 C 52.368759,19.072736 49.49852,14.295651 42.933042,9.2149217 Z"
|
||||||
|
id="path19-7"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 31.651695,60.501243 c 13.95321,0 25.766298,-9.420824 29.793871,-22.424348 C 57.417993,25.069346 45.604905,5.2575113 31.651695,5.2575113 17.702437,5.2575113 5.8870924,25.069346 1.8617797,38.076895 5.8870924,51.080998 17.702437,60.501243 31.651695,60.501243 Z"
|
||||||
|
id="path30"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g32"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g34"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="45.942001"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="17.620001"
|
||||||
|
y2="114.775"
|
||||||
|
id="line38" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_4_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="16.9111"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="46.650902"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop41" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop43" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path45"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="52.318001"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="23.992001"
|
||||||
|
y2="115.626"
|
||||||
|
id="line49" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_5_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="23.283199"
|
||||||
|
y1="104.6143"
|
||||||
|
x2="53.023399"
|
||||||
|
y2="104.6143">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop52" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop54" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path56"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g60"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="82.056"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="110.378"
|
||||||
|
y2="114.775"
|
||||||
|
id="line62" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_6_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="81.346703"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="111.0859"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop65" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop67" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path69"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g71"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="75.682999"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="104.005"
|
||||||
|
y2="115.626"
|
||||||
|
id="line73" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_7_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="74.973602"
|
||||||
|
y1="104.6133"
|
||||||
|
x2="104.7119"
|
||||||
|
y2="104.6133">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop76" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop78" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path80"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<line
|
||||||
|
x1="31.653383"
|
||||||
|
y1="50.968903"
|
||||||
|
x2="31.653383"
|
||||||
|
y2="55.709202"
|
||||||
|
id="line86"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 22.798944,8.1644157 C 21.887726,8.6846154 20.364877,9.8381879 20.364877,9.8381879 L 28.477684,23.076847 25.541088,6.7751031 c 0,0 -1.76422,0.8313946 -2.742144,1.3893126 z"
|
||||||
|
id="path93"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 30.166157,5.9010454 C 28.558518,6.0797848 27.102374,6.5704202 27.102374,6.5704202 L 31.141818,22.066301 32.448164,5.8777918 c -4.92e-4,6.226e-4 -0.674371,-0.1551048 -2.282007,0.02297 z"
|
||||||
|
id="path100"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
cx="20.728338"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle107"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<ellipse
|
||||||
|
cx="42.539989"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle114"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<path
|
||||||
|
d="m 15.161861,33.290719 -0.504786,0.136971 -0.08026,0.527152 c -0.569234,3.757448 0.05881,6.547642 1.862576,8.299789 2.852937,2.766985 7.517009,1.77942 7.713725,1.73706 l 0.512135,-0.111402 0.103448,-0.525398 c 0.81003,-3.983886 0.301857,-6.89776 -1.505897,-8.65745 -2.880068,-2.795418 -7.887825,-1.464212 -8.100933,-1.406722 z m 7.003744,2.606166 c 0.917438,0.895801 1.379263,2.260705 1.379263,4.082523 0,0.74547 -0.09667,1.589008 -0.253814,2.488296 -1.168423,0.148577 -4.005528,0.293225 -5.756181,-1.413068 -1.037844,-1.009614 -1.560721,-2.545201 -1.560721,-4.579516 0,-0.52425 0.06953,-1.115848 0.140755,-1.70975 1.209685,-0.227097 4.277425,-0.595698 6.050689,1.131515 z"
|
||||||
|
id="path116"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 40.251886,34.482735 c -1.809444,1.759692 -2.316491,4.672405 -1.505894,8.659143 l 0.105146,0.523706 0.509876,0.111403 c 0.196716,0.04352 4.861354,1.03167 7.713724,-1.736474 1.805486,-1.750986 2.432373,-4.542922 1.862582,-8.298013 l -0.08027,-0.5283 -0.505355,-0.138119 c -0.209712,-0.05742 -5.220298,-1.388696 -8.099802,1.406721 z m -0.281516,5.279647 c 0,-1.817713 0.461259,-3.185562 1.378699,-4.081362 1.77326,-1.728355 4.84213,-1.35852 6.051819,-1.130935 0.06952,0.592735 0.138495,1.186679 0.138495,1.709749 0,2.034317 -0.522316,3.570483 -1.559024,4.579517 -1.752347,1.703941 -4.587193,1.561156 -5.757879,1.413105 -0.153738,-0.898745 -0.252116,-1.743443 -0.252116,-2.490074 z"
|
||||||
|
id="path118"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g120"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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 z"
|
||||||
|
id="path122"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 20.414959,9.2934956 c 0,0 -3.917481,-5.8539752 -15.4396982,-6.7452537 0,0 -6.1050107,15.7907081 1.9512617,23.3537321 C 10.979238,19.151346 13.849484,14.37422 20.414959,9.2934956 Z"
|
||||||
|
id="path19-8"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,358 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="1.0.2 (unknown)"
|
||||||
|
width="96"
|
||||||
|
height="96"
|
||||||
|
sodipodi:docname="breeze-dark.svg"
|
||||||
|
viewBox="0 0 64.2144 64.2144">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3764"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3764"
|
||||||
|
id="linearGradient3820"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="11.994687"
|
||||||
|
y1="24.005501"
|
||||||
|
x2="36"
|
||||||
|
y2="24.005501" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3012"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3014" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3016" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath
|
||||||
|
id="clipPath-121880098">
|
||||||
|
<g
|
||||||
|
transform="translate(0,-1004.3622)"
|
||||||
|
id="g17">
|
||||||
|
<path
|
||||||
|
style="fill:#1890d0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
|
||||||
|
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
|
||||||
|
id="path19" />
|
||||||
|
</g>
|
||||||
|
</clipPath>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3022"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3024" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3026" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3029"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="rotate(-90,23.999998,24)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3031" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3033" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="640"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="2.3535156"
|
||||||
|
inkscape:cx="164.17097"
|
||||||
|
inkscape:cy="19.500602"
|
||||||
|
inkscape:window-x="0"
|
||||||
|
inkscape:window-y="75"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:document-units="px"
|
||||||
|
inkscape:document-rotation="0"
|
||||||
|
scale-x="0.6689" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0223"
|
||||||
|
d=""
|
||||||
|
id="path3783"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 42.933042,9.2149217 c 0,0 3.91748,-5.8539691 15.439699,-6.745284 0,0 6.10501,15.7907383 -1.95126,23.3537253 C 52.368759,19.072736 49.49852,14.295651 42.933042,9.2149217 Z"
|
||||||
|
id="path19-7"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 31.651695,60.501243 c 13.95321,0 25.766298,-9.420824 29.793871,-22.424348 C 57.417993,25.069346 45.604905,5.2575113 31.651695,5.2575113 17.702437,5.2575113 5.8870924,25.069346 1.8617797,38.076895 5.8870924,51.080998 17.702437,60.501243 31.651695,60.501243 Z"
|
||||||
|
id="path30"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g32"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g34"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="45.942001"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="17.620001"
|
||||||
|
y2="114.775"
|
||||||
|
id="line38" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_4_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="16.9111"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="46.650902"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop41" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop43" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path45"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="52.318001"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="23.992001"
|
||||||
|
y2="115.626"
|
||||||
|
id="line49" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_5_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="23.283199"
|
||||||
|
y1="104.6143"
|
||||||
|
x2="53.023399"
|
||||||
|
y2="104.6143">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop52" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop54" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path56"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g60"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="82.056"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="110.378"
|
||||||
|
y2="114.775"
|
||||||
|
id="line62" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_6_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="81.346703"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="111.0859"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop65" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop67" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path69"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g71"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="75.682999"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="104.005"
|
||||||
|
y2="115.626"
|
||||||
|
id="line73" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_7_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="74.973602"
|
||||||
|
y1="104.6133"
|
||||||
|
x2="104.7119"
|
||||||
|
y2="104.6133">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop76" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop78" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path80"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<line
|
||||||
|
x1="31.653383"
|
||||||
|
y1="50.968903"
|
||||||
|
x2="31.653383"
|
||||||
|
y2="55.709202"
|
||||||
|
id="line86"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 22.798944,8.1644157 C 21.887726,8.6846154 20.364877,9.8381879 20.364877,9.8381879 L 28.477684,23.076847 25.541088,6.7751031 c 0,0 -1.76422,0.8313946 -2.742144,1.3893126 z"
|
||||||
|
id="path93"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 30.166157,5.9010454 C 28.558518,6.0797848 27.102374,6.5704202 27.102374,6.5704202 L 31.141818,22.066301 32.448164,5.8777918 c -4.92e-4,6.226e-4 -0.674371,-0.1551048 -2.282007,0.02297 z"
|
||||||
|
id="path100"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.22333;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
cx="20.728338"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle107"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<ellipse
|
||||||
|
cx="42.539989"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle114"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<path
|
||||||
|
d="m 15.161861,33.290719 -0.504786,0.136971 -0.08026,0.527152 c -0.569234,3.757448 0.05881,6.547642 1.862576,8.299789 2.852937,2.766985 7.517009,1.77942 7.713725,1.73706 l 0.512135,-0.111402 0.103448,-0.525398 c 0.81003,-3.983886 0.301857,-6.89776 -1.505897,-8.65745 -2.880068,-2.795418 -7.887825,-1.464212 -8.100933,-1.406722 z m 7.003744,2.606166 c 0.917438,0.895801 1.379263,2.260705 1.379263,4.082523 0,0.74547 -0.09667,1.589008 -0.253814,2.488296 -1.168423,0.148577 -4.005528,0.293225 -5.756181,-1.413068 -1.037844,-1.009614 -1.560721,-2.545201 -1.560721,-4.579516 0,-0.52425 0.06953,-1.115848 0.140755,-1.70975 1.209685,-0.227097 4.277425,-0.595698 6.050689,1.131515 z"
|
||||||
|
id="path116"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 40.251886,34.482735 c -1.809444,1.759692 -2.316491,4.672405 -1.505894,8.659143 l 0.105146,0.523706 0.509876,0.111403 c 0.196716,0.04352 4.861354,1.03167 7.713724,-1.736474 1.805486,-1.750986 2.432373,-4.542922 1.862582,-8.298013 l -0.08027,-0.5283 -0.505355,-0.138119 c -0.209712,-0.05742 -5.220298,-1.388696 -8.099802,1.406721 z m -0.281516,5.279647 c 0,-1.817713 0.461259,-3.185562 1.378699,-4.081362 1.77326,-1.728355 4.84213,-1.35852 6.051819,-1.130935 0.06952,0.592735 0.138495,1.186679 0.138495,1.709749 0,2.034317 -0.522316,3.570483 -1.559024,4.579517 -1.752347,1.703941 -4.587193,1.561156 -5.757879,1.413105 -0.153738,-0.898745 -0.252116,-1.743443 -0.252116,-2.490074 z"
|
||||||
|
id="path118"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.001;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g120"
|
||||||
|
style="fill:#ffffff;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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 z"
|
||||||
|
id="path122"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.0713236;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 20.414959,9.2934956 c 0,0 -3.917481,-5.8539752 -15.4396982,-6.7452537 0,0 -6.1050107,15.7907081 1.9512617,23.3537321 C 10.979238,19.151346 13.849484,14.37422 20.414959,9.2934956 Z"
|
||||||
|
id="path19-8"
|
||||||
|
style="fill:#ffffff;stroke:#ffffff;stroke-width:1.835;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
@@ -0,0 +1,358 @@
|
|||||||
|
<?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:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
id="svg2"
|
||||||
|
version="1.1"
|
||||||
|
inkscape:version="0.91 r13725"
|
||||||
|
width="64"
|
||||||
|
height="64"
|
||||||
|
sodipodi:docname="start-here-kde.svg"
|
||||||
|
viewBox="0 0 64 64">
|
||||||
|
<metadata
|
||||||
|
id="metadata8">
|
||||||
|
<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></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs6">
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3764"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0,-1,1,0,-1.5e-6,47.999998)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop7" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop9" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
inkscape:collect="always"
|
||||||
|
xlink:href="#linearGradient3764"
|
||||||
|
id="linearGradient3820"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="11.994687"
|
||||||
|
y1="24.005501"
|
||||||
|
x2="36"
|
||||||
|
y2="24.005501" />
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3012"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0,-1,1,0,-1.5e-6,47.999998)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3014" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3016" />
|
||||||
|
</linearGradient>
|
||||||
|
<clipPath
|
||||||
|
id="clipPath-121880098">
|
||||||
|
<g
|
||||||
|
transform="translate(0,-1004.3622)"
|
||||||
|
id="g17">
|
||||||
|
<path
|
||||||
|
style="fill:#1890d0"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m -24,13 c 0,1.105 -0.672,2 -1.5,2 -0.828,0 -1.5,-0.895 -1.5,-2 0,-1.105 0.672,-2 1.5,-2 0.828,0 1.5,0.895 1.5,2 z"
|
||||||
|
transform="matrix(15.333333,0,0,11.5,414.99999,878.8622)"
|
||||||
|
id="path19" />
|
||||||
|
</g>
|
||||||
|
</clipPath>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3022"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0,-1,1,0,-1.5e-6,47.999998)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3024" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3026" />
|
||||||
|
</linearGradient>
|
||||||
|
<linearGradient
|
||||||
|
id="linearGradient3029"
|
||||||
|
x1="1"
|
||||||
|
x2="47"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
gradientTransform="matrix(0,-1,1,0,-1.5e-6,47.999998)">
|
||||||
|
<stop
|
||||||
|
stop-color="#32a2f8"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3031" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
stop-color="#45a9f9"
|
||||||
|
stop-opacity="1"
|
||||||
|
id="stop3033" />
|
||||||
|
</linearGradient>
|
||||||
|
</defs>
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1366"
|
||||||
|
inkscape:window-height="725"
|
||||||
|
id="namedview4"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="3.3283737"
|
||||||
|
inkscape:cx="113.16607"
|
||||||
|
inkscape:cy="-5.6308058"
|
||||||
|
inkscape:window-x="-5"
|
||||||
|
inkscape:window-y="-10"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="svg2"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:guide-bbox="true"
|
||||||
|
inkscape:document-units="px" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02230215"
|
||||||
|
d=""
|
||||||
|
id="path3783"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 42.933042,9.2149217 c 0,0 3.91748,-5.8539691 15.439699,-6.745284 0,0 6.10501,15.7907383 -1.95126,23.3537253 C 52.368759,19.072736 49.49852,14.295651 42.933042,9.2149217 Z"
|
||||||
|
id="path19-7"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.83499873;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="m 31.651695,60.501243 c 13.95321,0 25.766298,-9.420824 29.793871,-22.424348 C 57.417993,25.069346 45.604905,5.2575113 31.651695,5.2575113 17.702437,5.2575113 5.8870924,25.069346 1.8617797,38.076895 5.8870924,51.080998 17.702437,60.501243 31.651695,60.501243 Z"
|
||||||
|
id="path30"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.83499873;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g32"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g34"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g36"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:none;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="45.942001"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="17.620001"
|
||||||
|
y2="114.775"
|
||||||
|
id="line38" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_4_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="16.9111"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="46.650902"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop41" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop43" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path45"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g47"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:none;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="52.318001"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="23.992001"
|
||||||
|
y2="115.626"
|
||||||
|
id="line49" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_5_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="23.283199"
|
||||||
|
y1="104.6143"
|
||||||
|
x2="53.023399"
|
||||||
|
y2="104.6143">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop52" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop54" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path56"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g58"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<g
|
||||||
|
id="g60"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:none;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="82.056"
|
||||||
|
y1="92.757004"
|
||||||
|
x2="110.378"
|
||||||
|
y2="114.775"
|
||||||
|
id="line62" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_6_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="81.346703"
|
||||||
|
y1="103.7656"
|
||||||
|
x2="111.0859"
|
||||||
|
y2="103.7656">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop65" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop67" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path69"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g71"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<line
|
||||||
|
style="fill:none;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
x1="75.682999"
|
||||||
|
y1="93.602997"
|
||||||
|
x2="104.005"
|
||||||
|
y2="115.626"
|
||||||
|
id="line73" />
|
||||||
|
<linearGradient
|
||||||
|
id="SVGID_7_"
|
||||||
|
gradientUnits="userSpaceOnUse"
|
||||||
|
x1="74.973602"
|
||||||
|
y1="104.6133"
|
||||||
|
x2="104.7119"
|
||||||
|
y2="104.6133">
|
||||||
|
<stop
|
||||||
|
offset="0"
|
||||||
|
style="stop-color:#EC008C"
|
||||||
|
id="stop76" />
|
||||||
|
<stop
|
||||||
|
offset="1"
|
||||||
|
style="stop-color:#C4008C"
|
||||||
|
id="stop78" />
|
||||||
|
</linearGradient>
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path80"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
<line
|
||||||
|
x1="31.653383"
|
||||||
|
y1="50.968903"
|
||||||
|
x2="31.653383"
|
||||||
|
y2="55.709202"
|
||||||
|
id="line86"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.22333241;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 22.798944,8.1644157 C 21.887726,8.6846154 20.364877,9.8381879 20.364877,9.8381879 L 28.477684,23.076847 25.541088,6.7751031 c 0,0 -1.76422,0.8313946 -2.742144,1.3893126 z"
|
||||||
|
id="path93"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.22333241;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
d="M 30.166157,5.9010454 C 28.558518,6.0797848 27.102374,6.5704202 27.102374,6.5704202 L 31.141818,22.066301 32.448164,5.8777918 c -4.92e-4,6.226e-4 -0.674371,-0.1551048 -2.282007,0.02297 z"
|
||||||
|
id="path100"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.22333241;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
cx="20.728338"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle107"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.00100005;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<ellipse
|
||||||
|
cx="42.539989"
|
||||||
|
cy="37.445744"
|
||||||
|
id="circle114"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.00100005;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
rx="2.7986693"
|
||||||
|
ry="2.8743806" />
|
||||||
|
<path
|
||||||
|
d="m 15.161861,33.290719 -0.504786,0.136971 -0.08026,0.527152 c -0.569234,3.757448 0.05881,6.547642 1.862576,8.299789 2.852937,2.766985 7.517009,1.77942 7.713725,1.73706 l 0.512135,-0.111402 0.103448,-0.525398 c 0.81003,-3.983886 0.301857,-6.89776 -1.505897,-8.65745 -2.880068,-2.795418 -7.887825,-1.464212 -8.100933,-1.406722 z m 7.003744,2.606166 c 0.917438,0.895801 1.379263,2.260705 1.379263,4.082523 0,0.74547 -0.09667,1.589008 -0.253814,2.488296 -1.168423,0.148577 -4.005528,0.293225 -5.756181,-1.413068 -1.037844,-1.009614 -1.560721,-2.545201 -1.560721,-4.579516 0,-0.52425 0.06953,-1.115848 0.140755,-1.70975 1.209685,-0.227097 4.277425,-0.595698 6.050689,1.131515 z"
|
||||||
|
id="path116"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.00100005;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
d="m 40.251886,34.482735 c -1.809444,1.759692 -2.316491,4.672405 -1.505894,8.659143 l 0.105146,0.523706 0.509876,0.111403 c 0.196716,0.04352 4.861354,1.03167 7.713724,-1.736474 1.805486,-1.750986 2.432373,-4.542922 1.862582,-8.298013 l -0.08027,-0.5283 -0.505355,-0.138119 c -0.209712,-0.05742 -5.220298,-1.388696 -8.099802,1.406721 z m -0.281516,5.279647 c 0,-1.817713 0.461259,-3.185562 1.378699,-4.081362 1.77326,-1.728355 4.84213,-1.35852 6.051819,-1.130935 0.06952,0.592735 0.138495,1.186679 0.138495,1.709749 0,2.034317 -0.522316,3.570483 -1.559024,4.579517 -1.752347,1.703941 -4.587193,1.561156 -5.757879,1.413105 -0.153738,-0.898745 -0.252116,-1.743443 -0.252116,-2.490074 z"
|
||||||
|
id="path118"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:1.00100005;stroke-miterlimit:4;stroke-dasharray:none"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
transform="matrix(0.56527353,0,0,0.58056564,-4.5241158,-4.2219582)"
|
||||||
|
id="g120"
|
||||||
|
style="stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
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"
|
||||||
|
id="path122"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke-width:0.07132358;stroke-miterlimit:4;stroke-dasharray:none" />
|
||||||
|
</g>
|
||||||
|
<path
|
||||||
|
d="m 20.414959,9.2934956 c 0,0 -3.917481,-5.8539752 -15.4396982,-6.7452537 0,0 -6.1050107,15.7907081 1.9512617,23.3537321 C 10.979238,19.151346 13.849484,14.37422 20.414959,9.2934956 Z"
|
||||||
|
id="path19-8"
|
||||||
|
style="fill:none;stroke:#ffffff;stroke-width:1.83499873;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 14 KiB |
@@ -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,54 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>breeze-icons5</Name>
|
||||||
|
<Homepage>https://projects.kde.org/projects/kde/workspace/breeze</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Alihan Öztürk</Name>
|
||||||
|
<Email>alihan@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPLv2+</License>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<Summary>Breeze icon themes</Summary>
|
||||||
|
<Description>İcon themes breeze</Description>
|
||||||
|
<Archive type="tarxz" sha1sum="b6968cf202123581bf8d2b5417bfda158940e6cd">mirrors://kde/stable/frameworks/5.116/breeze-icons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency>libxml2-devel</Dependency>
|
||||||
|
<Dependency>python3-devel</Dependency>
|
||||||
|
<Dependency>python3-lxml</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Patches>
|
||||||
|
<!--Patch level="1">250a7d0b.patch</Patch-->
|
||||||
|
</Patches>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>breeze-icons5</Name>
|
||||||
|
<Summary>Breeze icon themes</Summary>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/cmake/</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
<AdditionalFiles>
|
||||||
|
<AdditionalFile target="/usr/share/icons/breeze/places/16/folder-activities.svg">breeze-16.svg</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/breeze/places/22/folder-activities.svg">breeze-22.svg</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/breeze-dark/places/16/folder-activities.svg">breeze-dark-16.svg</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/breeze-dark/places/22/folder-activities.svg">breeze-dark-22.svg</AdditionalFile>
|
||||||
|
</AdditionalFiles>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
<PISI>
|
||||||
|
<Name>desktop.kde5.framework</Name>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
diff -Nur kapidox5-5.93.0/CMakeLists.txt kapidox5-5.91.0/CMakeLists.txt
|
||||||
|
--- kapidox5-5.93.0/CMakeLists.txt 2022-03-13 13:10:03.000000000 +0100
|
||||||
|
+++ kapidox5-5.91.0/CMakeLists.txt 2022-01-25 08:43:21.000000000 +0100
|
||||||
|
@@ -1,7 +1,7 @@
|
||||||
|
cmake_minimum_required(VERSION 3.16)
|
||||||
|
project(kapidox5 NONE)
|
||||||
|
|
||||||
|
-include(FindUnixCommands)
|
||||||
|
+find_package(Python3 COMPONENTS Interpreter)
|
||||||
|
|
||||||
|
if(WIN32)
|
||||||
|
# Needs native path and extra escaping of spaces
|
||||||
|
@@ -11,7 +11,26 @@
|
||||||
|
endif()
|
||||||
|
|
||||||
|
add_custom_target(build ALL
|
||||||
|
- COMMAND ${BASH} bootstrap-devenv.sh
|
||||||
|
+ COMMAND ${Python3_EXECUTABLE} setup.py build --build-base ${BINARY_DIR}
|
||||||
|
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
|
||||||
|
-)
|
||||||
|
+ )
|
||||||
|
|
||||||
|
+# DESTDIR may be set at install time (eg: `make DESTDIR=/tmp/package install`)
|
||||||
|
+# so we need to check for it when the install code is run and pass the appropriate
|
||||||
|
+# argument to distutils.
|
||||||
|
+#
|
||||||
|
+# Note that if(\$ENV{DESTDIR}) always fails, regardless of the value of the DESTDIR
|
||||||
|
+# environment variable, hence the STREQUAL test.
|
||||||
|
+# See https://public.kitware.com/Bug/view.php?id=14737
|
||||||
|
+install(CODE
|
||||||
|
+ "set(_root_arg)
|
||||||
|
+ if (NOT \$ENV{DESTDIR} STREQUAL \"\")
|
||||||
|
+ file(TO_NATIVE_PATH \$ENV{DESTDIR} DESTDIR)
|
||||||
|
+ set(_root_arg --root \"\${DESTDIR}\")
|
||||||
|
+ endif()
|
||||||
|
+ file(TO_NATIVE_PATH ${CMAKE_INSTALL_PREFIX} INSTALL_PREFIX)
|
||||||
|
+ execute_process(
|
||||||
|
+ COMMAND ${Python3_EXECUTABLE} setup.py install --prefix \"\${INSTALL_PREFIX}\" \${_root_arg}
|
||||||
|
+ WORKING_DIRECTORY \"${CMAKE_SOURCE_DIR}\"
|
||||||
|
+ )"
|
||||||
|
+ )
|
||||||
|
diff -up kapidox5-5.93.0/setup.py.me kapidox5-5.93.0/setup.py
|
||||||
|
--- kapidox5-5.93.0/setup.py.me 2022-04-28 14:13:13.168061970 +0200
|
||||||
|
+++ kapidox5-5.93.0/setup.py 2022-04-28 14:14:00.170175582 +0200
|
||||||
|
@@ -17,5 +17,5 @@ setup(
|
||||||
|
"kapidox5-depdiagram-generate = kapidox5.depdiagram_generate:main",
|
||||||
|
],
|
||||||
|
},
|
||||||
|
- install_requires=["doxypypy", "doxyqml", "requests", "jinja2", "pyyaml"]
|
||||||
|
+ install_requires=["requests", "jinja2", "pyyaml"]
|
||||||
|
)
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kapidox5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>KDE5 Frameworks API documentation tools.</Summary>
|
||||||
|
<Description>KDE5 Frameworks API documentation tools.</Description>
|
||||||
|
<Archive sha1sum="30a25991cb104170f0065a915454ceb85f0316bc" type="tarxz">mirrors://kde/stable/frameworks/5.116/kapidox-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>python3-Jinja2</Dependency>
|
||||||
|
<Dependency>python3-PyYAML</Dependency>
|
||||||
|
<!-- <Dependency versionFrom="5.15.1">qt5-base-devel</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency>python3-setuptools</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Patches>
|
||||||
|
<!--Patch level="1">fedora/kf5-kapidox5-install.patch</Patch-->
|
||||||
|
</Patches>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kapidox5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency versionFrom="5.15.1">qt5-base</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kapidox5</Name>
|
||||||
|
<Summary xml:lang="tr">KDE5 Frameworks API dokümantasyon araçları.</Summary>
|
||||||
|
<Description xml:lang="tr">KDE5 Frameworks API dokümantasyon araçları.</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,69 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>karchive5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Qt 5 addon providing access to numerous types of archives</Summary>
|
||||||
|
<Description>karchive5 provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR.</Description>
|
||||||
|
<Archive sha1sum="7733a73d8376d9e9b4be0afbe9c188aa4d87085b" type="tarxz">mirrors://kde/stable/frameworks/5.116/karchive-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>bzip2</Dependency>
|
||||||
|
<Dependency>xz-devel</Dependency>
|
||||||
|
<Dependency>zlib-devel</Dependency>
|
||||||
|
<Dependency>qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>karchive5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>xz</Dependency>
|
||||||
|
<Dependency>zlib</Dependency>
|
||||||
|
<Dependency>bzip2</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>karchive5-devel</Name>
|
||||||
|
<Summary>Development files for karchive5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">karchive5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README*")
|
||||||
@@ -0,0 +1,59 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kcalendarcore5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>The KDE calendar access library</Summary>
|
||||||
|
<Description>The KDE calendar access library</Description>
|
||||||
|
<Archive sha1sum="04ccac5117ba14c945356f3fa3b04909497d1370" type="tarxz">mirrors://kde/stable/frameworks/5.116/kcalendarcore-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="2.0">libical-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcalendarcore5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>libical</Dependency>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcalendarcore5-devel</Name>
|
||||||
|
<Summary>Development files for kcalendarcore5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">kcalendarcore5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kcalendarcore5</Name>
|
||||||
|
<Summary xml:lang="tr">The KDE calendar access library</Summary>
|
||||||
|
<Description xml:lang="tr">The KDE calendar access library</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kcodecs5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Plugins allowing Qt applications to access further types of images</Summary>
|
||||||
|
<Description>KDE5 kcodecs5 provide a collection of methods to manipulate strings using various encodings.</Description>
|
||||||
|
<Archive sha1sum="948165ec7e23dc7ecc046416e6777350bdc60cb3" type="tarxz">mirrors://kde/stable/frameworks/5.116/kcodecs-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency>gperf</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcodecs5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcodecs5-devel</Name>
|
||||||
|
<Summary>Development files for kcodecs5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kcodecs5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kconfig5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<Summary>Advanced configuration system for KDE Frameworks 5</Summary>
|
||||||
|
<Description>kconfig5 provides advanced libraries and tools for accessing configuration files.</Description>
|
||||||
|
<Archive sha1sum="2316ba6152f8fc3420a5b699a6c1e7054e7583f6" type="tarxz">mirrors://kde/stable/frameworks/5.116/kconfig-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kconfig5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kconfig5-devel</Name>
|
||||||
|
<Summary>Development files for kconfig5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kconfig5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
|
||||||
|
from pisi.version import Version
|
||||||
|
|
||||||
|
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||||
|
os.system("/usr/bin/update-mime-database /usr/share/mime > /dev/null")
|
||||||
|
|
||||||
|
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kcoreaddons5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Utilities for core application functionality and accessing the OS</Summary>
|
||||||
|
<Description>kcoreaddons5 provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more.</Description>
|
||||||
|
<Archive sha1sum="a3b23a8f6592239cbf16f75f887147ab29a6d6c3" type="tarxz">mirrors://kde/stable/frameworks/5.116/kcoreaddons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency>shared-mime-info</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<!-- <Dependency versionFrom="13.0.4">mesa-devel</Dependency> -->
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcoreaddons5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>shared-mime-info</Dependency>
|
||||||
|
<!-- <Dependency>docbook-xsl</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcoreaddons5-devel</Name>
|
||||||
|
<Summary>Development files for kcoreaddons5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kcoreaddons5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
<!-- <Provides>
|
||||||
|
<COMAR script="package.py">System.Package</COMAR>
|
||||||
|
</Provides> -->
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md", "MAINTAINER")
|
||||||
@@ -0,0 +1,67 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kdbusaddons5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Extra modules for Qt-DBus</Summary>
|
||||||
|
<Description>KDE5-kdbusaddons5 provides convenience classes on top of QtDBus, as well as an API to create kded5 modules.</Description>
|
||||||
|
<Archive sha1sum="4a9b0bbaf0a2c7b672787cf9a97cebbfc8f079cb" type="tarxz">mirrors://kde/stable/frameworks/5.116/kdbusaddons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kdbusaddons5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kdbusaddons5-devel</Name>
|
||||||
|
<Summary>Development files for kdbusaddons5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kdbusaddons5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kdnssd5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Network service discovery using Zeroconf</Summary>
|
||||||
|
<Description>kdnssd5 is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure.</Description>
|
||||||
|
<Archive sha1sum="7e5c0ed09ac2f66d7faee1f1624a610027801143" type="tarxz">mirrors://kde/stable/frameworks/5.116/kdnssd-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency>avahi-devel</Dependency>
|
||||||
|
<Dependency>avahi-compat-libdns_sd-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kdnssd5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kdnssd5-devel</Name>
|
||||||
|
<Summary>Development files for kdnssd5.</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kdnssd5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kguiaddons5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Utilities for graphical user interfaces</Summary>
|
||||||
|
<Description>The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files.</Description>
|
||||||
|
<Archive sha1sum="45352e453a82713117266b7d8bdbf52c4dddda40" type="tarxz">mirrors://kde/stable/frameworks/5.116/kguiaddons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>libX11-devel</Dependency>
|
||||||
|
<Dependency>libxcb-devel</Dependency>
|
||||||
|
<Dependency>wayland-devel</Dependency>
|
||||||
|
<Dependency>plasma-wayland-protocols</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-wayland-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kguiaddons5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>libX11</Dependency>
|
||||||
|
<Dependency>wayland-client</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-wayland</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="data">/usr/share/applications</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/kguiaddons5.categories</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kguiaddons5-devel</Name>
|
||||||
|
<Summary>Development files for kguiaddons5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">kguiaddons5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>ki18n5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>KDE Gettext-based UI text internationalization.</Summary>
|
||||||
|
<Description>ki18n5 provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system.</Description>
|
||||||
|
<Archive sha1sum="38190bdfe5f278899d32fc770f72b60d8824329a" type="tarxz">mirrors://kde/stable/frameworks/5.116/ki18n-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>iso-codes-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-script-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>ki18n5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency versionFrom="5.15.1">qt5-script</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="man">/usr/share/man</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>ki18n5-devel</Name>
|
||||||
|
<Summary>Development files for kde5-ki18n5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">ki18n5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>ki18n5</Name>
|
||||||
|
<Summary xml:lang="tr">KDE grafik arabirim yerelleştirme kitaplığı</Summary>
|
||||||
|
<Description xml:lang="tr">ki18n5, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır</Description>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>ki18n5-devel</Name>
|
||||||
|
<Summary xml:lang="tr">ki18n5 için geliştirme dosyaları</Summary>
|
||||||
|
</Package>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,71 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kidletime5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Idle time reporting utility</Summary>
|
||||||
|
<Description>kidletime5 is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity.</Description>
|
||||||
|
<Archive sha1sum="4448d559cce872563d0cc7e6f224bcb02746eb88" type="tarxz">mirrors://kde/stable/frameworks/5.116/kidletime-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras-devel</Dependency>
|
||||||
|
<Dependency>libX11-devel</Dependency>
|
||||||
|
<Dependency>libXext-devel</Dependency>
|
||||||
|
<Dependency>libXScrnSaver-devel</Dependency>
|
||||||
|
<Dependency>libxcb-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kidletime5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency>libX11</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>libxcb</Dependency>
|
||||||
|
<Dependency>libXScrnSaver</Dependency>
|
||||||
|
<Dependency>libXext</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg/kidletime5.categories</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kidletime5-devel</Name>
|
||||||
|
<Summary>Development files for kidletime5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">kidletime5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
#from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
# if pisi can't find source directory, see /var/pisi/kirigami5/work/ and:
|
||||||
|
# WorkDir="kirigami5-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
# Take a look at the source folder for these file as documentation.
|
||||||
|
# pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "COPYING", "README")
|
||||||
|
|
||||||
|
# If there is no install rule for a runnable binary, you can
|
||||||
|
# install it to binary directory.
|
||||||
|
# pisitools.dobin("kirigami5")
|
||||||
|
|
||||||
|
# You can use these as variables, they will replace GUI values before build.
|
||||||
|
# Package Name : kirigami5
|
||||||
|
# Version : 2.2.0
|
||||||
|
# Summary : A set of QML components for mobile/desktop convergent applications made by KDE
|
||||||
|
|
||||||
|
# For more information, you can look at the Actions API
|
||||||
|
# from the Help menu and toolbar.
|
||||||
@@ -0,0 +1,68 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kirigami5</Name>
|
||||||
|
<Homepage>https://quickgit.kde.org/?p=kirigami.git</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ali Algul</Name>
|
||||||
|
<Email>aligulle3801@gmail.com</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPL</License>
|
||||||
|
<Summary>A set of QML components for mobile/desktop convergent applications made by KDE</Summary>
|
||||||
|
<Description>A set of QML components for mobile/desktop convergent applications made by KDE</Description>
|
||||||
|
<Archive sha1sum="959b6c872fb732651c5d6c99e6eda19d091137ed" type="tarxz">https://download.kde.org/stable/frameworks/5.116/kirigami2-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-quickcontrols</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-quickcontrols2-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-graphicaleffects</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-svg-devel</Dependency>
|
||||||
|
<!--Dependency>plasma-framework5-devel</Dependency-->
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kirigami5</Name>
|
||||||
|
<Summary>A set of QML components for mobile/desktop convergent applications made by KDE</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>qt5-declarative</Dependency>
|
||||||
|
<Dependency>qt5-quickcontrols</Dependency>
|
||||||
|
<Dependency>qt5-quickcontrols2</Dependency>
|
||||||
|
<Dependency>qt5-graphicaleffects</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="local">/usr/share/locale/</Path>
|
||||||
|
<Path fileType="libary">/usr/lib/</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<Name>kirigami5-devel</Name>
|
||||||
|
<Summary>Development files for kirigami5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">kirigami5</Dependency>
|
||||||
|
<Dependency>qt5-quickcontrols2-devel</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||||
|
<Path fileType="data">/usr/share/kdevappwizard/templates/kirigami5.tar.bz2</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kitemmodels5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Set of item models extending the Qt model-view framework</Summary>
|
||||||
|
<Description>kitemmodels5 provides a set of item models extending the Qt model-view framework.</Description>
|
||||||
|
<Archive sha1sum="263635d82415477f5517a013cf6ab854dd013cfe" type="tarxz">mirrors://kde/stable/frameworks/5.116/kitemmodels-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kitemmodels5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kitemmodels5-devel</Name>
|
||||||
|
<Summary>Development files for kitemmodels5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kitemmodels5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kitemviews5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Set of item models extending the Qt model-view framework</Summary>
|
||||||
|
<Description>kitemviews5 includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists.</Description>
|
||||||
|
<Archive sha1sum="058c0d33c3664bf837402388f376e44b1d49bd04" type="tarxz">mirrors://kde/stable/frameworks/5.116/kitemviews-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-designer-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kitemviews5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kitemviews5-devel</Name>
|
||||||
|
<Summary>Development files for kitemviews5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kitemviews5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kplotting5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>KDE5 Data plotting</Summary>
|
||||||
|
<Description>kplotting5 contains data plotting classes for QT 5 and KDE</Description>
|
||||||
|
<Archive sha1sum="d7517a2dc74cc53c032c530592821948495a841a" type="tarxz">mirrors://kde/stable/frameworks/5.116/kplotting-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-designer-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kplotting5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency versionFrom="5.15.2">qt5-base</Dependency> -->
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kplotting5-devel</Name>
|
||||||
|
<Summary>Development files for kplotting5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency versionFrom="5.15.2">qt5-base-devel</Dependency> -->
|
||||||
|
<Dependency release="current">kplotting5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README*")
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kquickcharts5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>A QtQuick plugin providing high-performance charts</Summary>
|
||||||
|
<Description>Yüksek performanslı grafikler sunan bir QtQuick eklentisi</Description>
|
||||||
|
<Archive sha1sum="b60574e4b395c78da135bd877e92180d62d456f9" type="tarxz">mirrors://kde/stable/frameworks/5.116/kquickcharts-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-quickcontrols2-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-graphicaleffects</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kquickcharts5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-declarative</Dependency>
|
||||||
|
<Dependency versionFrom="5.11.0">qt5-quickcontrols2</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/kquickcharts5.categories</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kquickcharts5</Name>
|
||||||
|
<Summary xml:lang="tr">A QtQuick plugin providing high-performance charts</Summary>
|
||||||
|
<Description xml:lang="tr">Yüksek performanslı grafikler sunan bir QtQuick eklentisi</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/usr/bin/env python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING*", "README*")
|
||||||
@@ -0,0 +1,77 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kuserfeedback5</Name>
|
||||||
|
<Homepage>https://kde.org/</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>PisiLinux Community</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPLv3</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Framework for collecting user feedback for applications via telemetry and surveys</Summary>
|
||||||
|
<Description>Framework for collecting user feedback for applications via telemetry and surveys</Description>
|
||||||
|
<Archive sha1sum="ebfc874997c6c1dccfd2e4cb7f1cbea1dbf88f85" type="tarxz">mirrors://kde/stable/kuserfeedback5/kuserfeedback-1.3.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-svg-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-sql-odbc</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-sql-mysql</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-sql-sqlite</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-charts-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-assistant-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-sql-postgresql</Dependency>
|
||||||
|
<Dependency versionFrom="5.111.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<!--
|
||||||
|
<Patches>
|
||||||
|
<Patch>kuserfeedback5.patch</Patch>
|
||||||
|
<Patch level="1">kuserfeedback5.patch</Patch>
|
||||||
|
</Patches>
|
||||||
|
-->
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kuserfeedback5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-svg</Dependency>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>qt5-charts</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="config">/etc</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kuserfeedback5-devel</Name>
|
||||||
|
<Summary>Development files for kuserfeedback5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">kuserfeedback5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>1.3.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kuserfeedback5</Name>
|
||||||
|
<Summary xml:lang="tr">Framework for collecting user feedback for applications via telemetry and surveys</Summary>
|
||||||
|
<Description xml:lang="tr">Framework for collecting user feedback for applications via telemetry and surveys</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
#pisitools.dodoc("COPYING.LIB")
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kwayland5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Stefan Gronewold(groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv3</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>Qt-style Client and Server library wrapper for the Wayland libraries</Summary>
|
||||||
|
<Description>Qt-style Client and Server library wrapper for the Wayland libraries</Description>
|
||||||
|
<Archive sha1sum="c0a10ea444cae3ba74d1795682a6053e8149d3e6" type="tarxz">mirrors://kde/stable/frameworks/5.116/kwayland-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-wayland-devel</Dependency>
|
||||||
|
<Dependency>libglvnd-devel</Dependency>
|
||||||
|
<Dependency>wayland-devel</Dependency>
|
||||||
|
<Dependency>wayland-protocols-devel</Dependency>
|
||||||
|
<Dependency versionFrom="13.0.4">mesa-devel</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="1.0">plasma-wayland-protocols</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kwayland5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
|
||||||
|
<!-- <Dependency versionFrom="5.7.1">qt5-wayland</Dependency> -->
|
||||||
|
<!-- <Dependency versionFrom="13.0.4">mesa</Dependency> -->
|
||||||
|
<Dependency>libglvnd</Dependency>
|
||||||
|
<Dependency>wayland-client</Dependency>
|
||||||
|
<Dependency>wayland-server</Dependency>
|
||||||
|
<!-- <Dependency versionFrom="1.0">plasma-wayland-protocols</Dependency> -->
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/config</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/org_kde_kwayland5.categories</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<Package>
|
||||||
|
<Name>kwayland5-devel</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-wayland</Dependency>
|
||||||
|
<!-- <Dependency>wayland-devel</Dependency> -->
|
||||||
|
<!-- <Dependency>libglvnd-devel</Dependency> -->
|
||||||
|
<!-- <Dependency versionFrom="13.0.4">mesa-devel</Dependency> -->
|
||||||
|
<Dependency release="current">kwayland5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kde5-kwayland5</Name>
|
||||||
|
<Summary xml:lang="tr">Qt-style Client and Server library wrapper for the Wayland libraries</Summary>
|
||||||
|
<Description xml:lang="tr">Qt-style Client and Server library wrapper for the Wayland libraries</Description>
|
||||||
|
</Source>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,64 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kwidgetsaddons5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>KDE5 desktop widgets</Summary>
|
||||||
|
<Description>KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets.</Description>
|
||||||
|
<Archive sha1sum="d760ba61b6601aa3d44a07e28662bda16792d40e" type="tarxz">mirrors://kde/stable/frameworks/5.116/kwidgetsaddons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-designer-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kwidgetsaddons5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kwidgetsaddons5-devel</Name>
|
||||||
|
<Summary>Development files for kwidgetsaddons5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kwidgetsaddons5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,82 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kwindowsystem5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>KDE5 window manager access framework</Summary>
|
||||||
|
<Description>kwindowsystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes.</Description>
|
||||||
|
<Archive sha1sum="94cad4cf0ef8047a3f94f60392e18fc2f815b5bb" type="tarxz">mirrors://kde/stable/frameworks/5.116/kwindowsystem-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras-devel</Dependency>
|
||||||
|
<Dependency>libX11-devel</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>libxcb-devel</Dependency>
|
||||||
|
<Dependency>libXrender-devel</Dependency>
|
||||||
|
<Dependency>libXfixes-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kwindowsystem5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency>libX11</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>libxcb</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-x11extras</Dependency>
|
||||||
|
<Dependency>libXfixes</Dependency>
|
||||||
|
<Dependency>xcb-util-keysyms</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kwindowsystem5-devel</Name>
|
||||||
|
<Summary>Development files for kwindowsystem5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency>libXrender-devel</Dependency>
|
||||||
|
<Dependency>libXfixes-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-devel</Dependency>
|
||||||
|
<Dependency>xcb-util-keysyms-devel</Dependency>
|
||||||
|
<Dependency release="current">kwindowsystem5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README", "README.md")
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>modemmanager-qt5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Qt wrapper for ModemManager DBus API</Summary>
|
||||||
|
<Description>Qt wrapper for ModemManager DBus API</Description>
|
||||||
|
<Archive sha1sum="759f9325301b4825be389dd7b47a4f31944710ba" type="tarxz">mirrors://kde/stable/frameworks/5.116/modemmanager-qt-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>ModemManager-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>modemmanager-qt5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>modemmanager-qt5-devel</Name>
|
||||||
|
<Summary>Development files for modemmanger-qt</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">modemmanager-qt5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,65 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>networkmanager-qt5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>A QT wrapper around the NetworkManager libraries</Summary>
|
||||||
|
<Description>A QT wrapper around the NetworkManager libraries</Description>
|
||||||
|
<Archive sha1sum="89726a409e1c35f1960fb116bbc26d8634fd4008" type="tarxz">mirrors://kde/stable/frameworks/5.116/networkmanager-qt-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="1.20.4">NetworkManager-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>networkmanager-qt5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>NetworkManager</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>networkmanager-qt5-devel</Name>
|
||||||
|
<Summary>Development files for networkmanager-qt5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">networkmanager-qt5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING*", "README*")
|
||||||
|
After Width: | Height: | Size: 5.9 KiB |
|
After Width: | Height: | Size: 506 B |
|
After Width: | Height: | Size: 748 B |
|
After Width: | Height: | Size: 12 KiB |
|
After Width: | Height: | Size: 1.1 KiB |
|
After Width: | Height: | Size: 1.9 KiB |
|
After Width: | Height: | Size: 2.7 KiB |
@@ -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,53 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>oxygen-icons5</Name>
|
||||||
|
<Homepage>http://www.oxygen-icons5.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Ertuğrul Erata</Name>
|
||||||
|
<Email>ertugrulerata@gmail.com</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPL</License>
|
||||||
|
<Summary>KDE Oxygen icons</Summary>
|
||||||
|
<Description>"The Oxygen Icon Theme</Description>
|
||||||
|
<Archive sha1sum="a8fbc4dcd87d8d907e0238ebe4e884193a6de103" type="tarxz">mirrors://kde/stable/frameworks/5.116/oxygen-icons-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.7.1">qt5-base-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>oxygen-icons5</Name>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share/icons</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
<AdditionalFiles>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/16x16/places/start-here.png">16x16.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/16x16/places/start-here-kde.png">16x16.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/22x22/places/start-here.png">22x22.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/22x22/places/start-here-kde.png">22x22.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/32x32/places/start-here.png">32x32.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/32x32/places/start-here-kde.png">32x32.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/48x48/places/start-here.png">48x48.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/48x48/places/start-here-kde.png">48x48.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/64x64/places/start-here.png">64x64.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/64x64/places/start-here-kde.png">64x64.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/128x128/places/start-here.png">128x128.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/128x128/places/start-here-kde.png">128x128.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/256x256/places/start-here.png">256x256.png</AdditionalFile>
|
||||||
|
<AdditionalFile target="/usr/share/icons/oxygen/base/256x256/places/start-here-kde.png">256x256.png</AdditionalFile>
|
||||||
|
</AdditionalFiles>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
#pisitools.dodoc("LICENSE")
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>prison5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>MIT</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<Summary>A barcode API to produce QRCode barcodes and DataMatrix barcode</Summary>
|
||||||
|
<Description>A barcode API to produce QRCode barcodes and DataMatrix barcode.</Description>
|
||||||
|
<Archive sha1sum="b0ce4ea54d6a2b43e1dc8949de8fbde72061b310" type="tarxz">mirrors://kde/stable/frameworks/5.116/prison-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>libdmtx-devel</Dependency>
|
||||||
|
<Dependency>qrencode-devel</Dependency>
|
||||||
|
<Dependency>zxing-cpp-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-multimedia-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-declarative-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>prison5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>libdmtx</Dependency>
|
||||||
|
<Dependency>qrencode</Dependency>
|
||||||
|
<Dependency>zxing-cpp</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-multimedia</Dependency>
|
||||||
|
<Dependency versionFrom="5.10.1">qt5-declarative</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/prison5.categories</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5/prison5.renamecategories</Path>
|
||||||
|
</Files>
|
||||||
|
<Replaces>
|
||||||
|
<Package>prison-qt5</Package>
|
||||||
|
</Replaces>
|
||||||
|
<Conflicts>
|
||||||
|
<Package>prison-qt5</Package>
|
||||||
|
</Conflicts>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>prison5-devel</Name>
|
||||||
|
<Summary>Development files for libepoxy</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">prison5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
<Replaces>
|
||||||
|
<Package>prison-qt5-devel</Package>
|
||||||
|
</Replaces>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,76 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>solid5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>KDE5 hardware integration framework</Summary>
|
||||||
|
<Description>solid5 is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system.</Description>
|
||||||
|
<Archive sha1sum="03a0ba215ef6c31501b74fd7f67062db698d62aa" type="tarxz">mirrors://kde/stable/frameworks/5.116/solid-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>eudev-devel</Dependency>
|
||||||
|
<Dependency>upower-devel</Dependency>
|
||||||
|
<Dependency>udisks2-devel</Dependency>
|
||||||
|
<Dependency>media-player-info</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>solid5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>eudev</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>libplist</Dependency>
|
||||||
|
<Dependency>libutil-linux</Dependency>
|
||||||
|
<Dependency>libimobiledevice</Dependency>
|
||||||
|
<Dependency>media-player-info</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-declarative</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>solid5-devel</Name>
|
||||||
|
<Summary>Development files for solid5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">solid5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,18 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
@@ -0,0 +1,72 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>sonnet5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>KDE spell schecking library</Summary>
|
||||||
|
<Description>This framework contains two main components: Interface to kwallet5, the safe desktop-wide storage for passwords on KDE workspaces. The kwallet5d used to safely store the passwords on KDE work spaces.</Description>
|
||||||
|
<Archive sha1sum="261ee7fab67b88240e7ef83bbbda5901c0a697fc" type="tarxz">mirrors://kde/stable/frameworks/5.116/sonnet-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-linguist</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-designer-devel</Dependency>
|
||||||
|
<Dependency>hunspell-devel</Dependency>
|
||||||
|
<Dependency>aspell-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>sonnet5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-declarative</Dependency>
|
||||||
|
<!-- <Dependency>libgcc</Dependency> -->
|
||||||
|
<Dependency>aspell</Dependency>
|
||||||
|
<Dependency>hunspell</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="localedata">/usr/share/locale</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>sonnet5-devel</Name>
|
||||||
|
<Summary>Development files for sonnet5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">sonnet5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,22 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
# if pisi can't find source directory, see /var/pisi/syntax-highlighting5/work/ and:
|
||||||
|
# WorkDir="syntax-highlighting5-"+ get.srcVERSION() +"/sub_project_dir/"
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md")
|
||||||
|
|
||||||
@@ -0,0 +1,63 @@
|
|||||||
|
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>syntax-highlighting5</Name>
|
||||||
|
<Homepage>https://community.kde.org/Frameworks</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Stefan Gronewold</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>GPL2</License>
|
||||||
|
<Summary>Syntax highlighting engine for structured text and code</Summary>
|
||||||
|
<Description>Syntax highlighting engine for structured text and code</Description>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-declarative-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-xmlpatterns-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-linguist</Dependency>
|
||||||
|
<Dependency>perl</Dependency>
|
||||||
|
<Dependency>glibc-devel</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
<Archive type="tarxz" sha1sum="e88256ac1bf2eef6829cfe79aff646cfcee00bb5">mirrors://kde/stable/frameworks/5.116/syntax-highlighting-5.116.0.tar.xz</Archive>
|
||||||
|
</Source>
|
||||||
|
<Package>
|
||||||
|
<Name>syntax-highlighting5</Name>
|
||||||
|
<Summary>Syntax highlighting engine for structured text and code</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-declarative</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc/xdg</Path>
|
||||||
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/share/qlogging-categories5</Path>
|
||||||
|
<Path fileType="local">/usr/share/locale/</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>syntax-highlighting5-devel</Name>
|
||||||
|
<Summary>Development files for syntax-highlighting5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency release="current">syntax-highlighting5</Dependency>
|
||||||
|
<Dependency versionFrom="5.15.1">qt5-base-devel</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 kde5
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("README.md","COPYING.LIB")
|
||||||
@@ -0,0 +1,60 @@
|
|||||||
|
|
||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>threadweaver5</Name>
|
||||||
|
<Homepage>https://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admins@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Multi-threaded programming framework for KDE</Summary>
|
||||||
|
<Description>threadweaver5 is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way.</Description>
|
||||||
|
<Archive sha1sum="ccfb81a415af024ab2a0932c5b66fbf04d821f9c" type="tarxz">mirrors://kde/stable/frameworks/5.116/threadweaver-5.116.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency versionFrom="5.116.0">extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>threadweaver5</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>threadweaver5-devel</Name>
|
||||||
|
<Summary>Development files for threadweaver5</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency versionFrom="5.15.2">qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">threadweaver5</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2024-05-19</Date>
|
||||||
|
<Version>5.116.0</Version>
|
||||||
|
<Comment>First release</Comment>
|
||||||
|
<Name>Mustafa Cinasal</Name>
|
||||||
|
<Email>muscnsl@gmail.com</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -1 +1 @@
|
|||||||
371c6a63f3b7d7bea46a8d120afbd989eff1f00f
|
bdf0bb48cc6103085ddc4fc3a48f6dc0e70fa165
|
||||||
@@ -1 +1 @@
|
|||||||
b2de4ca0656907a1ef0a4c8b802af36ef8e2e02a
|
799aa11181533cdecd589d6e0d5ac57caa4bfc81
|
||||||