diff --git a/network/misc/libgssglue/actions.py b/network/misc/libgssglue/actions.py new file mode 100644 index 0000000000..abd322cdc7 --- /dev/null +++ b/network/misc/libgssglue/actions.py @@ -0,0 +1,24 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import get +from pisi.actionsapi import autotools +from pisi.actionsapi import pisitools + +def setup(): + autotools.configure("--disable-static \ + --with-pic") + +def build(): + autotools.make() + +def check(): + autotools.make("check") + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("ChangeLog", "AUTHORS", "README") diff --git a/network/misc/libgssglue/files/libgssglue-0.1-gssglue.patch b/network/misc/libgssglue/files/libgssglue-0.1-gssglue.patch new file mode 100644 index 0000000000..9bcb086559 --- /dev/null +++ b/network/misc/libgssglue/files/libgssglue-0.1-gssglue.patch @@ -0,0 +1,15 @@ +Index: libgssglue-0.1/doc/gssapi_mech.conf +=================================================================== +--- libgssglue-0.1.orig/doc/gssapi_mech.conf ++++ libgssglue-0.1/doc/gssapi_mech.conf +@@ -15,7 +15,8 @@ + # library initialization function + # ================================ ========================== + # The MIT K5 gssapi library, use special function for initialization. +-/usr/lib/libgssapi_krb5.so mechglue_internal_krb5_init ++libgssapi_krb5.so.2 mechglue_internal_krb5_init + # + # The SPKM3 gssapi library function. Use the function spkm3_gss_initialize. +-# /usr/local/gss_mechs/spkm/spkm3/libgssapi_spkm3.so spkm3_gss_initialize ++# libgssapi_spkm3.so spkm3_gss_initialize ++ diff --git a/network/misc/libgssglue/pspec.xml b/network/misc/libgssglue/pspec.xml new file mode 100644 index 0000000000..2a49b0d3dd --- /dev/null +++ b/network/misc/libgssglue/pspec.xml @@ -0,0 +1,50 @@ + + + + + libgssglue + http://www.citi.umich.edu/projects/nfsv4/linux/ + + Marcin Bojara + marcin@pisilinux.org + + BSD + library + exports a gssapi interface which calls other random gssapi libraries + libgssglue provides a gssapi interface, but does not implement any gssapi mechanisms itself; instead it calls other gssapi functions (e.g., those provided by MIT Kerberos), depending on the requested mechanism, to do the work. + http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.4.tar.gz + + libgssglue-0.1-gssglue.patch + + + + + libgssglue + + /usr/lib/libgssglue.so* + /usr/share/doc + + + + + libgssglue-devel + libgssglue development files + + libgssglue + + + /usr/include + /usr/lib/pkgconfig + + + + + + 2022-03-10 + 0.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/network/misc/libgssglue/translations.xml b/network/misc/libgssglue/translations.xml new file mode 100644 index 0000000000..02ebc43dc6 --- /dev/null +++ b/network/misc/libgssglue/translations.xml @@ -0,0 +1,13 @@ + + + + libgssglue + Diğer raslantısal gssapi kitaplıklarına çağrı yapan gssapi arayüzünü dışa aktaran kitaplık + libgssglue herhangi bir gssapi mekanizma gerçekleştirimi yapmadan istenilen mekanizmaya bakarak diğer gssapi fonsiyonlarına (örn:MIT Kerberos tarafından sağlanan) ulaşabilmek için bir arayüz (API) sunar. + + + + libgssglue-devel + libgssglue geliştirme dosyaları + + diff --git a/network/share/nfs-utils/actions.py b/network/share/nfs-utils/actions.py new file mode 100644 index 0000000000..b88382ccda --- /dev/null +++ b/network/share/nfs-utils/actions.py @@ -0,0 +1,48 @@ +#!/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 autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +shelltools.export("CFLAGS","%s -fpie -D_FILE_OFFSET_BITS=64" % get.CFLAGS()) +shelltools.export("LDFLAGS","%s -pie" % get.LDFLAGS()) + +def setup(): + autotools.autoreconf("-vfi") + autotools.configure("--enable-mountconfig \ + --enable-ipv6 \ + --enable-nfsv3 \ + --enable-nfsv4 \ + --enable-gss \ + --with-krb5=/usr \ + --with-statedir=/var/lib/nfs") + + pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodir("/var/lib/nfs/statd/sm") + pisitools.dodir("/var/lib/nfs/statd/sm.bak") + pisitools.dodir("/var/lib/nfs/v4recovery") + pisitools.dodir("/var/lib/nfs/rpc_pipefs") + # remove conflict man file with nfs-utils + pisitools.remove("/usr/lib/pkgconfig/libnfsidmap.pc") + pisitools.remove("/usr/include/nfsidmap_plugin.h") + pisitools.remove("/usr/include/nfsidmap.h") + pisitools.remove("/usr/share/man/man5/idmapd.conf.5") + pisitools.removeDir("/usr/lib/pkgconfig") + pisitools.removeDir("/usr/include") + + pisitools.insinto("/etc", "utils/mount/nfsmount.conf") + + pisitools.domove("/usr/sbin/rpc.statd", "/sbin/") + pisitools.dodoc("README", "COPYING") diff --git a/network/share/nfs-utils/comar/nfs-common.py b/network/share/nfs-utils/comar/nfs-common.py new file mode 100644 index 0000000000..df5b4a2279 --- /dev/null +++ b/network/share/nfs-utils/comar/nfs-common.py @@ -0,0 +1,118 @@ +# -*- coding: utf-8 -*- +from comar.service import * +from pardus import fstabutils +import os + +serviceType = "server" +serviceDesc = _({"en": "NFS Common Services", + "tr": "NFS Ortak Servisleri"}) + +serviceConf = "nfs" + +ERR_INSMOD = _({"en": "Failed probing module %s", + "tr": "%s modülü yüklenemedi", + }) + +ERR_RMMOD = _({"en": "Failed removing module %s", + "tr": "%s modülü çıkarılamadı", + }) + +PIPEFS_MOUNTPOINT = "/var/lib/nfs/rpc_pipefs" + +STATD_PIDFILE = "/run/rpc.statd.pid" +IDMAPD_PIDFILE = "/run/rpc.idmapd.pid" +GSSD_PIDFILE = "/run/rpc.gssd.pid" + +# Parse the fstab file and determine whether we need gssd or not, by searching +# mount option sec=krb* in nfs mount entries. +# If none, nfs conf.d file decides if it's needed. +def need_gssd(): + fstab = fstabutils.Fstab() + for entry in fstab.get_entries(): + if entry.is_nfs(): + if "sec=krb" in entry.get_fs_mntopts(): + return True + +@synchronized +def start(): + startDependencies("rpcbind") + + # Set the ports lockd should listen on + LOCKD_TCPPORT = config.get("LOCKD_TCPPORT") + if LOCKD_TCPPORT: + run("/sbin/sysctl -w fs.nfs.nlm_tcpport=%s" % LOCKD_TCPPORT) + + LOCKD_UDPPORT = config.get("LOCKD_UDPPORT") + if LOCKD_UDPPORT: + run("/sbin/sysctl -w fs.nfs.nlm_udpport=%s" % LOCKD_UDPPORT) + + # rpc.statd is first + RPCSTATD_OPTIONS = config.get("RPCSTATD_OPTIONS", "") + STATD_PORT = config.get("STATD_PORT") + if STATD_PORT: + RPCSTATD_OPTIONS += " -p %s" % STATD_PORT + + startService(command="/sbin/rpc.statd", + args="%s" % RPCSTATD_OPTIONS, + donotify=True, + pidfile=STATD_PIDFILE) + + if config.get("NEED_IDMAPD", "yes") == "yes" or (config.get("NEED_GSSD", "no") == "yes" or need_gssd()): + if run("/sbin/modprobe -q nfs"): + fail(ERR_INSMOD % "nfs") + + # Make sure the mointpoint exists + if not os.path.exists(PIPEFS_MOUNTPOINT): + os.makedirs(PIPEFS_MOUNTPOINT) + + # Check if PIPEFS_MOUNTPOINT is a real mounted fs + if run("/bin/mountpoint -q %s" % PIPEFS_MOUNTPOINT): + run("/bin/mount -t rpc_pipefs rpc_pipefs %s" % PIPEFS_MOUNTPOINT) + + startService(command="/usr/sbin/rpc.idmapd", + args="-f %s" % config.get("RPCIDMAPD_OPTIONS", ""), + donotify=True, + detach=True, + makepid=True, + pidfile=IDMAPD_PIDFILE) + + if config.get("NEED_GSSD", "no") == "yes" or need_gssd(): + if run("/sbin/modprobe -q rpcsec_gss_krb5"): + fail(ERR_INSMOD % "rpcsec_gss_krb5") + + startService(command="/usr/sbin/rpc.gssd", + args="-f %s" % config.get("RPCGSSD_OPTIONS", ""), + donotify=True, + detach=True, + makepid=True, + pidfile=GSSD_PIDFILE) + +@synchronized +def stop(): + LOCKD_TCPPORT = config.get("LOCKD_TCPPORT") + if LOCKD_TCPPORT: + run("/sbin/sysctl -w fs.nfs.nlm_tcpport=0") + + LOCKD_UDPPORT = config.get("LOCKD_UDPPORT") + if LOCKD_UDPPORT: + run("/sbin/sysctl -w fs.nfs.nlm_udpport=0") + + stopService(pidfile=GSSD_PIDFILE, + donotify=True) + + stopService(pidfile=IDMAPD_PIDFILE, + donotify=True) + + stopService(pidfile=STATD_PIDFILE, + donotify=True) + + if not run("/bin/mountpoint -q %s" % PIPEFS_MOUNTPOINT): + run("/bin/umount %s" % PIPEFS_MOUNTPOINT) + +def status(): + result = isServiceRunning(STATD_PIDFILE) + if config.get("NEED_IDMAPD", "yes") == "yes": + result = result and isServiceRunning(IDMAPD_PIDFILE) + if config.get("NEED_GSSD", "no") == "yes" or need_gssd(): + result = result and isServiceRunning(GSSD_PIDFILE) + return result diff --git a/network/share/nfs-utils/comar/nfs-server.py b/network/share/nfs-utils/comar/nfs-server.py new file mode 100644 index 0000000000..40fc36df97 --- /dev/null +++ b/network/share/nfs-utils/comar/nfs-server.py @@ -0,0 +1,130 @@ +# -*- coding: utf-8 -*- +from comar.service import * +from pardus import fstabutils +import signal +import os + +serviceType = "server" +serviceDesc = _({"en": "NFS Server", + "tr": "NFS Sunucusu"}) + +serviceConf = "nfs" + +ERR_INSMOD = _({"en": "Failed probing module %s", + "tr": "%s modülü yüklenemedi", + }) + +PROCNFSD_MOUNTPOINT = "/proc/fs/nfsd" +RQUOTAD_PATH = "/usr/sbin/rpc.rquotad" + +IDMAPD_PIDFILE = "/run/rpc.idmapd.pid" +SVCGSSD_PIDFILE = "/run/rpc.svcgssd.pid" +RQUOTAD_PIDFILE = "/run/rpc.rquotad.pid" +MOUNTD_PIDFILE = "/run/rpc.mountd.pid" + +# Parse the fstab file and determine whether we need quotad or not by searching +# mount option quota in any mount entry. +# If none, nfs conf.d file decides if it's needed. +def need_quotad(): + fstab = fstabutils.Fstab() + for entry in fstab.get_entries(): + if "quota" in entry.get_fs_mntopts(): + return True + +@synchronized +def start(): + startDependencies("nfs_common") + + if run("/sbin/modprobe -q nfsd"): + fail(ERR_INSMOD % "nfsd") + + # Check if PROCNFSD_MOUNTPOINT is mounted + if run("/bin/mountpoint -q %s" % PROCNFSD_MOUNTPOINT): + run("/bin/mount -t nfsd nfsd %s" % PROCNFSD_MOUNTPOINT) + + run("/usr/sbin/exportfs -r") + + # If RPCNFSDCOUNT is not explicitly defined in confd, use default one, 8 threads. + startService(command="/usr/sbin/rpc.nfsd", + args="%s %s" % (config.get("RPCNFSD_OPTIONS", ""), config.get("RPCNFSDCOUNT", "8")), + donotify=True) + + if config.get("NEED_SVCGSSD", "no") == "yes": + startService(command="/usr/sbin/rpc.svcgssd", + args="-f %s" % config.get("RPCSVCGSSD_OPTIONS", ""), + donotify=True, + detach=True, + makepid=True, + pidfile=SVCGSSD_PIDFILE) + + # Start rpc.rquotad daemon here if its available + if (config.get("NEED_QUOTAD", "no") == "yes" or need_quotad()) and os.path.exists(RQUOTAD_PATH): + RPCRQUOTAD_OPTIONS = config.get("RPCRQUOTAD_OPTIONS", "") + RQUOTAD_PORT = config.get("RQUOTAD_PORT") + if RQUOTAD_PORT: + RPCRQUOTAD_OPTIONS += " -p %s" % RQUOTAD_PORT + startService(command=RQUOTAD_PATH, + args="-F %s" % RPCRQUOTAD_OPTIONS, + donotify=True, + detach=True, + makepid=True, + pidfile=RQUOTAD_PIDFILE) + + # Reload rpc.idmapd + if os.path.exists(IDMAPD_PIDFILE): + os.kill(int(file(IDMAPD_PIDFILE).read().strip()), signal.SIGHUP) + + RPCMOUNTD_OPTIONS = config.get("RPCMOUNTD_OPTIONS", "") + MOUNTD_PORT = config.get("MOUNTD_PORT") + if MOUNTD_PORT: + RPCMOUNTD_OPTIONS += " -p %s" % MOUNTD_PORT + + startService(command="/usr/sbin/rpc.mountd", + args="-F %s" % RPCMOUNTD_OPTIONS, + donotify=True, + detach=True, + makepid=True, + pidfile=MOUNTD_PIDFILE) + +@synchronized +def stop(): + stopService(pidfile=MOUNTD_PIDFILE, + donotify=True) + + if os.path.exists(MOUNTD_PIDFILE): + os.unlink(MOUNTD_PIDFILE) + + stopService(pidfile=SVCGSSD_PIDFILE, + donotify=True) + + if os.path.exists(SVCGSSD_PIDFILE): + os.unlink(SVCGSSD_PIDFILE) + + stopService(pidfile=RQUOTAD_PIDFILE, + donotify=True) + + if os.path.exists(RQUOTAD_PIDFILE): + os.unlink(RQUOTAD_PIDFILE) + + stopService(command="/usr/sbin/rpc.nfsd", + args="0", + donotify=True) + + # Unexport all exported directories + run("/usr/sbin/exportfs -au") + + if not run("/bin/mountpoint -q %s" % PROCNFSD_MOUNTPOINT): + run("/usr/sbin/exportfs -f %s" % PROCNFSD_MOUNTPOINT) + +def reload(): + # Re-export all exported directories + run("/usr/sbin/exportfs -r") + +def status(): + # ugly way of learning if the daemon is up and running. + result = not run("/sbin/pidof nfsd") and isServiceRunning(MOUNTD_PIDFILE) + if config.get("NEED_SVCGSSD", "no") == "yes": + result = result and isServiceRunning(SVCGSSD_PIDFILE) + if (config.get("NEED_QUOTAD", "no") == "yes" or need_quotad()) and os.path.exists(RQUOTAD_PATH): + result = result and isServiceRunning(RQUOTAD_PIDFILE) + return result diff --git a/network/share/nfs-utils/files/exports b/network/share/nfs-utils/files/exports new file mode 100644 index 0000000000..5102ef27c1 --- /dev/null +++ b/network/share/nfs-utils/files/exports @@ -0,0 +1 @@ +# /etc/exports: NFS file systems being exported. See exports(5). diff --git a/network/share/nfs-utils/files/gssapi_mech.conf b/network/share/nfs-utils/files/gssapi_mech.conf new file mode 100644 index 0000000000..2ac94f6321 --- /dev/null +++ b/network/share/nfs-utils/files/gssapi_mech.conf @@ -0,0 +1,19 @@ +# GSSAPI Mechanism Definitions +# +# This configuration file determines which GSS-API mechanisms +# the gssd code should use +# +# NOTE: +# The initiaiization function "mechglue_internal_krb5_init" +# is used for the MIT krb5 gssapi mechanism. This special +# function name indicates that an internal function should +# be used to determine the entry points for the MIT gssapi +# mechanism funtions. +# +# library initialization function +# ================================ ========================== +# The MIT K5 gssapi library, use special function for initialization. +/usr/lib/libgssapi_krb5.so.2 mechglue_internal_krb5_init +# +# The SPKM3 gssapi library function. Use the function spkm3_gss_initialize. +#libgssapi_spkm3.so spkm3_gss_initialize diff --git a/network/share/nfs-utils/files/idmapd.conf b/network/share/nfs-utils/files/idmapd.conf new file mode 100644 index 0000000000..acafd4b1f7 --- /dev/null +++ b/network/share/nfs-utils/files/idmapd.conf @@ -0,0 +1,10 @@ +[General] + +Verbosity = 0 +Pipefs-Directory = /var/lib/nfs/rpc_pipefs +Domain = localdomain + +[Mapping] + +Nobody-User = nobody +Nobody-Group = nobody diff --git a/network/share/nfs-utils/files/nfs-utils-1.2.1-exp-subtree-warn-off.patch b/network/share/nfs-utils/files/nfs-utils-1.2.1-exp-subtree-warn-off.patch new file mode 100644 index 0000000000..14e376cbfd --- /dev/null +++ b/network/share/nfs-utils/files/nfs-utils-1.2.1-exp-subtree-warn-off.patch @@ -0,0 +1,12 @@ +diff -up nfs-utils-1.2.1/support/nfs/exports.c.orig nfs-utils-1.2.1/support/nfs/exports.c +--- nfs-utils-1.2.1/support/nfs/exports.c.orig 2010-01-15 10:48:49.631894982 -0500 ++++ nfs-utils-1.2.1/support/nfs/exports.c 2010-01-15 11:05:02.009874055 -0500 +@@ -483,7 +483,7 @@ static void fix_pseudoflavor_flags(struc + static int + parseopts(char *cp, struct exportent *ep, int warn, int *had_subtree_opt_ptr) + { +- int had_subtree_opt = 0; ++ int had_subtree_opt = 1; + char *flname = efname?efname:"command line"; + int flline = efp?efp->x_line:0; + unsigned int active = 0; diff --git a/network/share/nfs-utils/files/nfs-utils-1.2.1-statdpath-man.patch b/network/share/nfs-utils/files/nfs-utils-1.2.1-statdpath-man.patch new file mode 100644 index 0000000000..ee94718cb6 --- /dev/null +++ b/network/share/nfs-utils/files/nfs-utils-1.2.1-statdpath-man.patch @@ -0,0 +1,58 @@ +diff -up nfs-utils-1.2.1/utils/statd/sm-notify.man.save nfs-utils-1.2.1/utils/statd/sm-notify.man +--- nfs-utils-1.2.1/utils/statd/sm-notify.man.save 2010-01-15 11:10:25.096874609 -0500 ++++ nfs-utils-1.2.1/utils/statd/sm-notify.man 2010-01-15 11:14:12.636873981 -0500 +@@ -186,7 +186,7 @@ where NSM state information resides. + If this option is not specified, + .B sm-notify + uses +-.I /var/lib/nfs ++.I /var/lib/nfs/statd + by default. + .IP + After starting, +@@ -287,13 +287,13 @@ Currently, the + command supports sending notification only via datagram transport protocols. + .SH FILES + .TP 2.5i +-.I /var/lib/nfs/sm ++.I /var/lib/nfs/statd/sm + directory containing monitor list + .TP 2.5i +-.I /var/lib/nfs/sm.bak ++.I /var/lib/nfs/statd/sm.bak + directory containing notify list + .TP 2.5i +-.I /var/lib/nfs/state ++.I /var/lib/nfs/statd/state + NSM state number for this host + .TP 2.5i + .I /proc/sys/fs/nfs/nsm_local_state +diff -up nfs-utils-1.2.1/utils/statd/statd.man.save nfs-utils-1.2.1/utils/statd/statd.man +--- nfs-utils-1.2.1/utils/statd/statd.man.save 2010-01-15 11:10:25.098906325 -0500 ++++ nfs-utils-1.2.1/utils/statd/statd.man 2010-01-15 11:11:03.874769717 -0500 +@@ -232,7 +232,7 @@ where NSM state information resides. + If this option is not specified, + .B rpc.statd + uses +-.I /var/lib/nfs ++.I /var/lib/nfs/statd + by default. + .IP + After starting, +@@ -368,13 +368,13 @@ As long as at least one network transpor + will operate. + .SH FILES + .TP 2.5i +-.I /var/lib/nfs/sm ++.I /var/lib/nfs/statd/sm + directory containing monitor list + .TP 2.5i +-.I /var/lib/nfs/sm.bak ++.I /var/lib/nfs/statd/sm.bak + directory containing notify list + .TP 2.5i +-.I /var/lib/nfs/state ++.I /var/lib/nfs/statd/state + NSM state number for this host + .TP 2.5i + .I /run/run.statd.pid diff --git a/network/share/nfs-utils/files/nfs.confd b/network/share/nfs-utils/files/nfs.confd new file mode 100644 index 0000000000..1b3ffbbb0e --- /dev/null +++ b/network/share/nfs-utils/files/nfs.confd @@ -0,0 +1,76 @@ +# /etc/conf.d/nfs + +# If you do not set values for the NEED_ options, they will be attempted +# autodetected; this should be sufficient for most people. Valid alternatives +# for the NEED_ options are "yes" and "no". + +# nfs-common options +#################### + +# Port rpc.statd should listen on +# Should rpc.statd listen on a specific port? This is especially useful +# when you have a port-based firewall. To use a fixed port, set this +# this variable to a valid port like: "4000". +# For more information, see rpc.statd(8) +#STATD_PORT= + +# Options for rpc.statd. +#RPCSTATD_OPTIONS= + +# TCP port rpc.lockd should listen on. +#LOCKD_TCPPORT= +# +# UDP port rpc.lockd should listen on. +#LOCKD_UDPPORT= + +# Do you want to start the idmapd daemon? It is only needed for NFSv4. +#NEED_IDMAPD=yes + +# Options for rpc.idmapd +#RPCIDMAPD_OPTIONS= + +# Do you want to start the gssd daemon? It is required for Kerberos mounts. +# NFS service scripts detect NFS Kerberos mounts in /etc/fstab and starts gssd +# daemon even if this option is set to "no". This option force enables gssd +# daemon. +#NEED_GSSD= + +# Options for rpc.gssd +#RPCGSSD_OPTIONS= + +# nfs-server options +#################### + +# Options for rpc.nfsd. +#RPCNFSD_OPTIONS= + +# Number of servers to start up +#RPCNFSDCOUNT=8 + +#Port rpc.mountd should listen on +#MOUNTD_PORT= + +# Options for rpc.mountd. +# If you have a port-based firewall, you might want to set up +# a fixed port here using the --port option. For more information, +# see rpc.mountd(8) +#RPCMOUNTD_OPTIONS= + +# Do you want to start the svcgssd daemon? It is only required for Kerberos +# exports. Valid alternatives are "yes" and "no"; the default is "no". +#NEED_SVCGSSD= + +# Options for rpc.svcgssd. +#RPCSVCGSSD_OPTIONS= + +# Do you want to start the quotad daemon? It is required for remote quotas. +# NFS service scripts detect the mount option "quota" in any mount entry and +# starts quotad daemon even if this option is set to "no". This option force +# enables quotad daemon if the 'quota' package is installed. +#NEED_QUOTAD= + +#Port rpc.rquotad should listen on +#RQUOTAD_PORT= + +# Options for rpc.quotad +#RPCRQUOTAD_OPTIONS= diff --git a/network/share/nfs-utils/pspec.xml b/network/share/nfs-utils/pspec.xml new file mode 100644 index 0000000000..2cdedbd421 --- /dev/null +++ b/network/share/nfs-utils/pspec.xml @@ -0,0 +1,100 @@ + + + + + nfs-utils + http://nfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + NFS client and server + Contains NFS (Network File System) client and server. It is possible to mount a network resource as a file system using the NFS protocol. + mirrors://sourceforge/nfs/nfs-utils-2.6.1.tar.bz2 + + sqlite-devel + libcap-devel + libtirpc-devel + libevent-devel + e2fsprogs-devel + libgssglue-devel + mit-kerberos-devel + rpcsvc-proto-devel + tcp-wrappers-devel + device-mapper-devel + libutil-linux-devel + + + + + + + + + + nfs-utils + + libcap + sqlite + rpcbind + nfsidmap + keyutils + libevent + libtirpc + e2fsprogs + libgssglue + mit-kerberos + tcp-wrappers + device-mapper + libutil-linux + openldap-client + + + /etc/exports + /etc/gssapi_mech.conf + /etc/nfsmount.conf + /etc/conf.d/nfs + /usr/sbin + /sbin + /var/lib + /usr/share/man + /usr/share/doc + + + exports + nfs.confd + idmapd.conf + gssapi_mech.conf + + + System.Service + System.Service + + + + + nfsidmap + Library to help mapping IDs, mainly for NFSv4 + + openldap-client + + + /etc/idmapd.conf + /usr/lib/libnfsidmap* + /usr/share/doc/libnfsidmap + + + + + + 2022-03-11 + 2.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/network/share/nfs-utils/translations.xml b/network/share/nfs-utils/translations.xml new file mode 100644 index 0000000000..04634c6122 --- /dev/null +++ b/network/share/nfs-utils/translations.xml @@ -0,0 +1,13 @@ + + + + nfs-utils + NFS istemcisi ve sunucusu + nfs-utils, NFS (Ağ dosya sistemi) istemcisi ve sunucusunu içerir. + + + + nfsidmap + Kimliklerin eşlenmesine yardımcı olacak kitaplık, özellikle NFSv4 için. + + diff --git a/pisi-index.xml b/pisi-index.xml index 2dd2584fe1..8a6b03acec 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -14584,14 +14584,14 @@ services for numerous locations. akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access. Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir. akonadi - mirrors://kde/stable/release-service/21.12.1/src/akonadi-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-21.12.2.tar.xz - qt5-base-devel - qt5-designer-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql + qt5-base-devel + qt5-designer-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql kcompletion-devel kconfig-devel kconfigwidgets-devel @@ -14643,9 +14643,9 @@ services for numerous locations. postgresql-server libaccounts-qt5 kaccounts-integration - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-postgresql /etc @@ -14663,8 +14663,8 @@ services for numerous locations. Development files for akonadi akonadi için geliştirme dosyaları - akonadi - qt5-base-devel + akonadi + qt5-base-devel /usr/include @@ -14673,6 +14673,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -14969,7 +14976,7 @@ services for numerous locations. desktop.kde.applications Akonadi calendar integration Calendar integration for Akonadi. - mirrors://kde/stable/release-service/21.12.1/src/akonadi-calendar-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-calendar-21.12.2.tar.xz qt5-base-devel ki18n-devel @@ -15041,7 +15048,7 @@ services for numerous locations. Development files for akonadi-calendar qt5-base-devel - akonadi-calendar + akonadi-calendar /usr/include @@ -15050,6 +15057,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -15337,7 +15351,7 @@ services for numerous locations. desktop.kde.applications CLI tools to manage akonadi calendars CLI tools to manage akonadi calendars - http://download.kde.org/stable/release-service/21.12.1/src/akonadi-calendar-tools-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/akonadi-calendar-tools-21.12.2.tar.xz boost-devel akonadi-devel @@ -15390,6 +15404,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -15630,9 +15651,9 @@ services for numerous locations. desktop.kde.applications Libraries and daemons to implement Contact Management in Akonadi. Libraries and daemons to implement Contact Management in Akonadi. - mirrors://kde/stable/release-service/21.12.1/src/akonadi-contacts-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-contacts-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel qt5-webengine-devel libical-devel ki18n-devel @@ -15665,7 +15686,7 @@ services for numerous locations. akonadi-contacts - qt5-base + qt5-base ki18n kcodecs kmime @@ -15680,7 +15701,7 @@ services for numerous locations. kcmutils kcompletion kcontacts - qt5-webengine + qt5-webengine kcoreaddons kdbusaddons kiconthemes @@ -15702,8 +15723,8 @@ services for numerous locations. akonadi-contacts-devel Development files for akonadi-contacts - qt5-base-devel - akonadi-contacts + qt5-base-devel + akonadi-contacts grantleetheme-devel grantlee-qt5-devel @@ -15714,6 +15735,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -15987,7 +16015,7 @@ services for numerous locations. desktop.kde.applications CLI tools to manage akonadi calendars Import data from other mail clients to KMail - http://download.kde.org/stable/release-service/21.12.1/src/akonadi-import-wizard-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/akonadi-import-wizard-21.12.2.tar.xz boost-devel akonadi-devel @@ -16065,7 +16093,7 @@ services for numerous locations. akonadi-import-wizard-devel Development files for akonadi-import-wizard - akonadi-import-wizard + akonadi-import-wizard /usr/include @@ -16073,6 +16101,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -16306,9 +16341,9 @@ services for numerous locations. desktop.kde.applications Libraries and daemons to implement basic email handling Libraries and daemons to implement basic email handling - mirrors://kde/stable/release-service/21.12.1/src/akonadi-mime-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-mime-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel boost-devel ki18n-devel kdoctools-devel @@ -16328,7 +16363,7 @@ services for numerous locations. akonadi-mime - qt5-base + qt5-base ki18n akonadi libgcc @@ -16352,8 +16387,8 @@ services for numerous locations. akonadi-mime-devel Development files for akonadi-mime - qt5-base-devel - akonadi-mime + qt5-base-devel + akonadi-mime /usr/include @@ -16362,6 +16397,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -16630,9 +16672,9 @@ services for numerous locations. desktop.kde.applications Libraries and daemons to implement management of notes in Akonadi Libraries and daemons to implement management of notes in Akonadi - mirrors://kde/stable/release-service/21.12.1/src/akonadi-notes-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-notes-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel boost-devel ki18n-devel kdoctools-devel @@ -16651,7 +16693,7 @@ services for numerous locations. akonadi-notes - qt5-base + qt5-base ki18n akonadi libgcc @@ -16674,8 +16716,8 @@ services for numerous locations. akonadi-notes-devel Development files for akonadi-notes - qt5-base-devel - akonadi-notes + qt5-base-devel + akonadi-notes /usr/include @@ -16684,6 +16726,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -16952,9 +17001,9 @@ services for numerous locations. Libraries and daemons to implement searching in Akonadi Libraries and daemons to implement searching in Akonadi akonadi - mirrors://kde/stable/release-service/21.12.1/src/akonadi-search-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/akonadi-search-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kcrash-devel kconfig-devel ki18n-devel @@ -16987,7 +17036,7 @@ services for numerous locations. akonadi-search app:console - qt5-base + qt5-base ki18n kmime libgcc @@ -17024,8 +17073,8 @@ services for numerous locations. akonadi-search-devel Development files for akonadi - akonadi-search - qt5-base-devel + akonadi-search + qt5-base-devel ki18n-devel kmime-devel kcodecs-devel @@ -17044,6 +17093,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -17331,7 +17387,7 @@ services for numerous locations. desktop.kde.applications Akonadi management and debugging console Akonadi management and debugging console - http://download.kde.org/stable/release-service/21.12.1/src/akonadiconsole-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/akonadiconsole-21.12.2.tar.xz akonadi-contacts-devel akonadi-devel @@ -17358,7 +17414,7 @@ services for numerous locations. kxmlgui-devel kio-devel kitemviews-devel - akonadi-search-devel + akonadi-search-devel libkdepim-devel libkleo-devel messagelib-devel @@ -17417,6 +17473,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -17648,7 +17711,7 @@ services for numerous locations. desktop.kde.applications A KDE blogging client Akregator helps you to keep informed about new stories on websites like KDE Dot News and Planet KDE blogs. The technology used is RSS and many sites support it. - http://download.kde.org/stable/release-service/21.12.1/src/akregator-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/akregator-21.12.2.tar.xz boost-devel extra-cmake-modules @@ -17732,6 +17795,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -17974,15 +18044,15 @@ services for numerous locations. analitza is a library to add mathematical features to programs. analitza, programlara matematiksel özellikler eklemek için bir kitaplıktır. hi32-app-kalgebra - mirrors://kde/stable/release-service/21.12.1/src/analitza-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/analitza-21.12.2.tar.xz cmake eigen3 mesa-devel - qt5-svg-devel + qt5-svg-devel extra-cmake-modules - qt5-declarative-devel - qt5-linguist + qt5-declarative-devel + qt5-linguist desktop/kde/applications/analitza/pspec.xml @@ -17991,9 +18061,9 @@ services for numerous locations. mesa libgcc - qt5-svg - qt5-base - qt5-declarative + qt5-svg + qt5-base + qt5-declarative /usr/lib @@ -18007,7 +18077,7 @@ services for numerous locations. Development files for analitza analitza için geliştirme dosyaları - analitza + analitza /usr/include @@ -18015,6 +18085,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -18303,9 +18380,9 @@ services for numerous locations. desktop.kde.utils KDE Archiving Tool Ark is a program for managing various archive formats within the KDE environment. - mirrors://kde/stable/release-service/21.12.1/src/ark-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ark-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel rar lzop unrar @@ -18335,7 +18412,7 @@ services for numerous locations. ark - qt5-base + qt5-base zlib libzip libarchive @@ -18372,6 +18449,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -18663,7 +18747,7 @@ services for numerous locations. Improve your pronunciation by listening to native speakers Artikulate, Improve your pronunciation by listening to native speakers. artikulate - mirrors://kde/stable/release-service/21.12.1/src/artikulate-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/artikulate-21.12.2.tar.xz boost-devel cmake @@ -18675,20 +18759,20 @@ services for numerous locations. kconfig-devel kirigami-devel kxmlgui-devel - qt5-base-devel + qt5-base-devel knewstuff-devel kcoreaddons-devel kdeclarative-devel qt5-gstreamer-devel kconfigwidgets-devel kwidgetsaddons-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - qt5-multimedia-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + qt5-multimedia-devel desktop/kde/applications/artikulate/pspec.xml @@ -18702,16 +18786,16 @@ services for numerous locations. kconfig kxmlgui karchive - qt5-base + qt5-base knewstuff kcoreaddons kdeclarative qt5-gstreamer kconfigwidgets kwidgetsaddons - qt5-declarative - qt5-xmlpatterns - qt5-multimedia + qt5-declarative + qt5-xmlpatterns + qt5-multimedia /etc @@ -18722,6 +18806,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -19011,7 +19102,7 @@ services for numerous locations. desktop.kde.applications Kioslave for accessing audio CDs Kioslave for accessing audio CDs - https://download.kde.org/stable/release-service/21.12.1/src/audiocd-kio-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/audiocd-kio-21.12.2.tar.xz cdparanoia-devel flac-devel @@ -19023,7 +19114,7 @@ services for numerous locations. lame-devel libkcompactdisc-devel libvorbis-devel - qt5-base-devel + qt5-base-devel ki18n-devel qt5-phonon-devel extra-cmake-modules @@ -19050,7 +19141,7 @@ services for numerous locations. lame libkcompactdisc libvorbis - qt5-base + qt5-base qt5-phonon kio ki18n @@ -19076,14 +19167,21 @@ services for numerous locations. audiocd-kio-devel Development files for audiocd-kio - audiocd-kio - qt5-base-devel + audiocd-kio + qt5-base-devel /usr/include + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -19345,7 +19443,7 @@ services for numerous locations. desktop.kde.applications Framework for searching and managing metadata Baloo is a framework for searching and managing metada - mirrors://kde/stable/release-service/21.12.1/src/baloo-widgets-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/baloo-widgets-21.12.2.tar.xz baloo-devel extra-cmake-modules @@ -19359,7 +19457,7 @@ services for numerous locations. ki18n-devel kitemmodels-devel kunitconversion-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/baloo-widgets/pspec.xml @@ -19375,7 +19473,7 @@ services for numerous locations. kio kwidgetsaddons libgcc - qt5-base + qt5-base /etc @@ -19391,8 +19489,8 @@ services for numerous locations. baloo-widgets-devel Development files for baloo-widgets - baloo-widgets - qt5-base-devel + baloo-widgets + qt5-base-devel /usr/include @@ -19401,6 +19499,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -19693,7 +19798,7 @@ services for numerous locations. Hafıza geliştirme oyunu. Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound. Hafıza geliştirme oyunu. - mirrors://kde/stable/release-service/21.12.1/src/blinken-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/blinken-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -19703,8 +19808,8 @@ services for numerous locations. kguiaddons-devel ki18n-devel kxmlgui-devel - qt5-svg-devel - qt5-base-devel + qt5-svg-devel + qt5-base-devel qt5-phonon-devel desktop/kde/applications/blinken/pspec.xml @@ -19721,9 +19826,9 @@ services for numerous locations. ki18n kxmlgui libgcc - qt5-base + qt5-base qt5-phonon - qt5-svg + qt5-svg /usr/bin @@ -19732,6 +19837,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -20164,14 +20276,14 @@ services for numerous locations. desktop.kde.games A single player arcade game Bomber is a single player arcade game. The player is invading various cities in a plane that is decreasing in height. - mirrors://kde/stable/release-service/21.12.1/src/bomber-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/bomber-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel mesa-devel kxmlgui-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -20190,7 +20302,7 @@ services for numerous locations. kcrash kconfig kxmlgui - qt5-base + qt5-base qt5-phonon kcoreaddons kdbusaddons @@ -20211,6 +20323,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -20499,10 +20618,10 @@ services for numerous locations. desktop.kde.applications Calendar support library Calendar support library - mirrors://kde/stable/release-service/21.12.1/src/calendarsupport-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/calendarsupport-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel akonadi-devel kmime-devel ki18n-devel @@ -20547,7 +20666,7 @@ services for numerous locations. kcodecs kconfig kcalendarcore - qt5-base + qt5-base kcalutils kholidays pimcommon @@ -20573,7 +20692,7 @@ services for numerous locations. calendarsupport-devel Development files for calendarsupport - calendarsupport + calendarsupport /usr/include @@ -20581,6 +20700,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -20872,19 +20998,19 @@ services for numerous locations. Cantor is an application that lets you use your favorite mathematical applications from within a nice KDE-integrated Worksheet Interface. It offers assistant dialogs for common tasks and allows you to share your worksheets with others. Cantor; Sage, Maxima, R and KAlgebra gibi uygulamalara arayüz sağlayarak kullanımı kolaylaştırmayı amaçlar. Çok kullanılan işler için dialoglar sağlar ve çalışmalarınızı başkalarıyla paylaşabilmenize olanak tanır. cantor - mirrors://kde/stable/release-service/21.12.1/src/cantor-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/cantor-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-mysql - qt5-sql-postgresql - qt5-assistant-devel + qt5-base-devel + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-mysql + qt5-sql-postgresql + qt5-assistant-devel mesa-devel - qt5-svg-devel - qt5-xmlpatterns-devel - qt5-webengine-devel + qt5-svg-devel + qt5-xmlpatterns-devel + qt5-webengine-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -20937,8 +21063,8 @@ services for numerous locations. libqalculate kconfigwidgets kwidgetsaddons - qt5-base - qt5-xmlpatterns + qt5-base + qt5-xmlpatterns /etc @@ -20955,7 +21081,7 @@ services for numerous locations. Development files for cantor cantor için geliştirme dosyaları - cantor + cantor /usr/include @@ -20963,6 +21089,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -21257,10 +21390,10 @@ services for numerous locations. desktop.kde.applications KDE File Manager Dolphin is the File Manager for KDE. - mirrors://kde/stable/release-service/21.12.1/src/dolphin-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/dolphin-21.12.2.tar.xz baloo-devel - baloo-widgets-devel + baloo-widgets-devel kfilemetadata-devel extra-cmake-modules kactivities-devel @@ -21296,7 +21429,7 @@ services for numerous locations. dolphin - qt5-base + qt5-base kfilemetadata baloo baloo-widgets @@ -21338,8 +21471,8 @@ services for numerous locations. dolphin-devel - dolphin - qt5-base-devel + dolphin + qt5-base-devel qt5-phonon-devel kio-devel kcmutils-devel @@ -21361,6 +21494,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -21658,9 +21798,9 @@ services for numerous locations. Dolphin eklentileri. This package contains plugins that offer integration in Dolphin with the following version control systems: Dolphin için VCS (Version Control System) eklentileri. - mirrors://kde/stable/release-service/21.12.1/src/dolphin-plugins-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/dolphin-plugins-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel dolphin-devel kio-devel @@ -21672,7 +21812,7 @@ services for numerous locations. dolphin-plugins - qt5-base + qt5-base dolphin kio ki18n @@ -21694,6 +21834,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -21982,9 +22129,9 @@ services for numerous locations. desktop.kde.multimedia Multimedia player a multimedia player where the focus is on simplicity, instead of features. - mirrors://kde/stable/release-service/21.12.1/src/dragon-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/dragon-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel qt5-phonon-devel kdoctools-devel kio-devel @@ -22000,7 +22147,7 @@ services for numerous locations. dragonplayer - qt5-base + qt5-base qt5-phonon kio ki18n @@ -22030,6 +22177,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -22318,10 +22472,10 @@ services for numerous locations. desktop.kde.applications Library for creating events. Library for creating events. - mirrors://kde/stable/release-service/21.12.1/src/eventviews-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/eventviews-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel akonadi-devel kcompletion-devel kjobwidgets-devel @@ -22363,7 +22517,7 @@ services for numerous locations. kcalendarcore kdiagram kservice - qt5-base + qt5-base kcalutils kcontacts libkdepim @@ -22391,7 +22545,7 @@ services for numerous locations. eventviews-devel Development files for eventviews. - eventviews + eventviews /usr/include @@ -22399,6 +22553,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -22689,10 +22850,10 @@ services for numerous locations. KDE için ffmpeg tabanlı önizleme FFmpeg-based thumbnail creator for video files Video dosyaları için FFmpeg tabanlı önizleme oluşturur. - mirrors://kde/stable/release-service/21.12.1/src/ffmpegthumbs-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ffmpegthumbs-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kio-devel ki18n-devel kconfig-devel @@ -22710,7 +22871,7 @@ services for numerous locations. ffmpeg taglib libgcc - qt5-base + qt5-base /usr/share @@ -22719,6 +22880,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -23010,11 +23178,11 @@ services for numerous locations. Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. filelight - mirrors://kde/stable/release-service/21.12.1/src/filelight-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/filelight-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel - qt5-script-devel + qt5-base-devel + qt5-svg-devel + qt5-script-devel kdoctools-devel extra-cmake-modules kio-devel @@ -23031,8 +23199,8 @@ services for numerous locations. filelight - qt5-svg - qt5-base + qt5-svg + qt5-base kparts kio ki18n @@ -23056,6 +23224,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -23591,12 +23766,12 @@ services for numerous locations. Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. granatier, oyuncunun yüksekliği her turda azalan bir uçak içinde şehirlere hücum ettiği tek kişilik bir macera oyunudur. granatier - mirrors://kde/stable/release-service/21.12.1/src/granatier-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/granatier-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel mesa-devel - qt5-svg-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kdbusaddons-devel @@ -23605,7 +23780,7 @@ services for numerous locations. kxmlgui-devel knewstuff-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -23622,8 +23797,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base knewstuff kcoreaddons kdbusaddons @@ -23640,6 +23815,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -23934,7 +24116,7 @@ services for numerous locations. desktop.kde.applications Editor for Grantlee themes Editor for Grantlee themes - mirrors://kde/stable/release-service/21.12.1/src/grantlee-editor-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/grantlee-editor-21.12.2.tar.xz qt5-webengine-devel kcrash-devel @@ -24007,6 +24189,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -24239,9 +24428,9 @@ services for numerous locations. desktop.kde.applications Library for Grantlee theming support Library for Grantlee theming support - mirrors://kde/stable/release-service/21.12.1/src/grantleetheme-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/grantleetheme-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel boost-devel ki18n-devel kiconthemes-devel @@ -24256,7 +24445,7 @@ services for numerous locations. grantleetheme - qt5-base + qt5-base ki18n libgcc kconfig @@ -24293,10 +24482,10 @@ services for numerous locations. Development package for grantleetheme libraries Contains development tools and header files for grantleetheme - qt5-base-devel + qt5-base-devel boost-devel ki18n-devel - grantleetheme + grantleetheme /usr/lib/cmake @@ -24304,6 +24493,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -24596,10 +24792,10 @@ services for numerous locations. Gwenview is an easy to use image viewer Gwenview, kullanımı kolay bir resim görüntüleyicisidir. gwenview - mirrors://kde/stable/release-service/21.12.1/src/gwenview-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/gwenview-21.12.2.tar.xz exiv2-devel - qt5-base-devel + qt5-base-devel qt5-svg-devel qt5-x11extras-devel qt5-phonon-devel @@ -24641,7 +24837,7 @@ services for numerous locations. gwenview - qt5-base + qt5-base exiv2-libs solid kactivities @@ -24672,7 +24868,7 @@ services for numerous locations. kjobwidgets ktextwidgets libjpeg-turbo - qt5-x11extras + qt5-x11extras kconfigwidgets knotifications kwidgetsaddons @@ -24690,6 +24886,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-31 21.12.1 @@ -24992,10 +25195,10 @@ services for numerous locations. desktop.kde.applications KDE PIM incidence editor. KDE PIM incidence editor. - http://download.kde.org/stable/release-service/21.12.1/src/incidenceeditor-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/incidenceeditor-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel akonadi-devel kcompletion-devel kjobwidgets-devel @@ -25067,7 +25270,7 @@ services for numerous locations. akonadi-contacts akonadi-calendar kidentitymanagement - qt5-base + qt5-base /etc/xdg @@ -25082,7 +25285,7 @@ services for numerous locations. incidenceeditor-devel Development files for incidenceeditor. - incidenceeditor + incidenceeditor /usr/include @@ -25091,6 +25294,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -25379,11 +25589,11 @@ services for numerous locations. desktop.kde.network Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - mirrors://kde/stable/release-service/21.12.1/src/kaccounts-integration-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kaccounts-integration-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kcmutils-devel ki18n-devel kcoreaddons-devel @@ -25407,13 +25617,13 @@ services for numerous locations. ki18n libgcc signon - qt5-base + qt5-base kcoreaddons kdbusaddons kdeclarative kconfigwidgets libaccounts-qt5 - qt5-declarative + qt5-declarative kio kconfig kwallet @@ -25430,7 +25640,7 @@ services for numerous locations. kaccounts-integration-devel Development files for kaccounts-integration - kaccounts-integration + kaccounts-integration libaccounts-qt5-devel @@ -25439,6 +25649,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -25727,14 +25944,14 @@ services for numerous locations. desktop.kde.network Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - mirrors://kde/stable/release-service/21.12.1/src/kaccounts-providers-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kaccounts-providers-21.12.2.tar.xz extra-cmake-modules intltool kaccounts-integration-devel - qt5-declarative-devel - qt5-webengine-devel - qt5-base-devel + qt5-declarative-devel + qt5-webengine-devel + qt5-base-devel kcoreaddons-devel libaccounts-qt5-devel libaccounts-glib-devel @@ -25758,9 +25975,9 @@ services for numerous locations. kpackage kcoreaddons kdeclarative - qt5-declarative - qt5-webengine - qt5-base + qt5-declarative + qt5-webengine + qt5-base /etc @@ -25770,6 +25987,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -26059,7 +26283,7 @@ services for numerous locations. Kişilerinizi kolayca yönetin KAddressBook reborn to make your data available to all your applications KAddressBook, kişilerinizi kolayca yönetmenizi sağlar. Bir e-posta gönderirken veya bir toplantı daveti oluştururken kolayca kişileri seçmenize olanak tanıyan Kontact'ın geri kalanıyla derinlemesine entegre edilmiştir. - mirrors://kde/stable/release-service/21.12.1/src/kaddressbook-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kaddressbook-21.12.2.tar.xz kinit-devel kimap-devel @@ -26134,7 +26358,7 @@ services for numerous locations. kaddressbook-devel Development files for kaddressbook - kaddressbook + kaddressbook /usr/include @@ -26143,6 +26367,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -26388,7 +26619,7 @@ services for numerous locations. desktop.kde.applications Personal alarm scheduler KAlarm is a personal alarm message, audio, command and email scheduler - http://download.kde.org/stable/release-service/21.12.1/src/kalarm-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kalarm-21.12.2.tar.xz akonadi-contacts-devel akonadi-devel @@ -26498,6 +26729,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -26740,15 +26978,15 @@ services for numerous locations. KAlgebra is a fully featured calculator that lets you plot different types of 2D and 3D functions and to calculate easy and not so easy calculations, such as addition, trigonometric functions or derivatives. KAlgebra, farklı farklı 2B ve 3B fonksiyonları çizmek, kolay ve o kadar da kolay olmayan trigonometrik veya türev gibi hesaplamaları yapmak için bir uygulamadır. kalgebra - mirrors://kde/stable/release-service/21.12.1/src/kalgebra-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kalgebra-21.12.2.tar.xz mesa-devel mesa-glu-devel - qt5-base-devel + qt5-base-devel qt5-declarative - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel analitza-devel kdoctools-devel ncurses-devel @@ -26768,10 +27006,10 @@ services for numerous locations. kalgebra - qt5-base - qt5-declarative - qt5-webkit - qt5-location + qt5-base + qt5-declarative + qt5-webkit + qt5-location analitza libgcc kconfig @@ -26791,6 +27029,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -27081,7 +27326,7 @@ services for numerous locations. Periodic Table of Elements Elementlerin periyodik tablosu Elementlerin periyodik tablosu - https://download.kde.org/stable/release-service/21.12.1/src/kalzium-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kalzium-21.12.2.tar.xz cmake eigen3 @@ -27147,7 +27392,7 @@ services for numerous locations. kalzium-devel Development files for kalzium - kalzium + kalzium /usr/include @@ -27155,6 +27400,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -27291,10 +27543,10 @@ services for numerous locations. KDE için web kamera desteği Kamera is a plugin for KDE to use webcam. Kamera, KDE için bir web kamera eklentisidir. - mirrors://kde/stable/release-service/21.12.1/src/kamera-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kamera-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kconfigwidgets-devel kxmlgui-devel kio-devel @@ -27313,7 +27565,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base libgphoto2 kcoreaddons kconfigwidgets @@ -27326,6 +27578,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -27617,10 +27876,10 @@ services for numerous locations. Kanagram is a game based on anagrams of words: the puzzle is solved when the letters of the scrambled word are put back in the correct order. There is no limit on either time taken, or the amount of attempts to solve the word. Kanagram, anagramlar üzerine bir oyundur. Dağınık yerleştirilmiş harfleri birleştirerek kelimeyi bulun. Zaman veya deneme sınırı yoktur. kanagram - mirrors://kde/stable/release-service/21.12.1/src/kanagram-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kanagram-21.12.2.tar.xz - qt5-base-devel - qt5-declarative + qt5-base-devel + qt5-declarative kdoctools-devel knewstuff-devel kdeclarative-devel @@ -27635,7 +27894,7 @@ services for numerous locations. kwidgetsaddons-devel extra-cmake-modules libkeduvocdocument-devel - qt5-multimedia-devel + qt5-multimedia-devel desktop/kde/applications/kanagram/pspec.xml @@ -27647,13 +27906,13 @@ services for numerous locations. sonnet kconfig kxmlgui - qt5-base + qt5-base knewstuff kcoreaddons kdeclarative - qt5-multimedia + qt5-multimedia kconfigwidgets - qt5-declarative + qt5-declarative libkeduvocdocument @@ -27664,6 +27923,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -27955,11 +28221,11 @@ services for numerous locations. Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. Kapman dünyaca ünlü Pac-Man'in bir türevidir. Labirent içinde hayaletlerle köşe kapmaca oynayarak bölümleri geçmeye çalıştığınız oyunda eğer hayaletlere yakalanırsanız bir hakkınızı kaybediyorsunuz. Eğer bir enerji nesnesi alırsanız bu kez siz bir kaç saniyeliğine hayaletleri yiyebiliyorsunuz. kapman - mirrors://kde/stable/release-service/21.12.1/src/kapman-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kapman-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kdbusaddons-devel @@ -27976,7 +28242,7 @@ services for numerous locations. knotifyconfig-devel kdesignerplugin libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel desktop/kde/applications/kapman/pspec.xml @@ -27987,8 +28253,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcoreaddons kdbusaddons libkdegames @@ -28003,6 +28269,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -28300,9 +28573,9 @@ services for numerous locations. Uygulama şablon oluşturucu. KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. - mirrors://kde/stable/release-service/21.12.1/src/kapptemplate-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kapptemplate-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules gettext kcoreaddons-devel @@ -28318,7 +28591,7 @@ services for numerous locations. kapptemplate - qt5-base + qt5-base kio ki18n libgcc @@ -28336,6 +28609,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -28624,14 +28904,14 @@ services for numerous locations. desktop.kde.applications Advanced Text Editor Plasma library and runtime components based upon KF5 and Qt5 - https://download.kde.org/stable/release-service/21.12.1/src/kate-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kate-21.12.2.tar.xz extra-cmake-modules qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc kactivities-devel kconfig-devel kcrash-devel @@ -28663,7 +28943,7 @@ services for numerous locations. kate - qt5-base + qt5-base libgcc libgit2 knewstuff @@ -28710,6 +28990,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -29008,10 +29295,10 @@ services for numerous locations. KAtomic is both fun and educational game built around molecular geometry. KAtomic moleküler geometri hakkında hem eğlenceli hem de eğitici bir oyundur. katomic - mirrors://kde/stable/release-service/21.12.1/src/katomic-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/katomic-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -29025,7 +29312,7 @@ services for numerous locations. knotifyconfig-devel knewstuff-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -29042,7 +29329,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base knewstuff kcoreaddons kdbusaddons @@ -29058,6 +29345,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -29356,11 +29650,11 @@ services for numerous locations. KBlackBox is a game of hide and seek played on a grid of boxes. The computer has hidden several balls within this box. By shooting beams into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. KBlackBox yan yana dizilmiş kutularla oynanan bir saklambaç oyunudur. Bilgisayarın sakladığı topları kutuları lazerle kontrol ederek bulabilirsiniz. kblackbox - mirrors://kde/stable/release-service/21.12.1/src/kblackbox-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kblackbox-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel karchive-devel kcoreaddons-devel kconfig-devel @@ -29369,7 +29663,7 @@ services for numerous locations. kiconthemes-devel kxmlgui-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -29387,9 +29681,9 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg + qt5-svg karchive - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -29404,6 +29698,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -29702,16 +30003,16 @@ services for numerous locations. KBlocks is the classic falling blocks game. The idea is stack the falling blocks in a way that lines are completely filled. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. KBlocks klasikleşmiş tetrisin bir yeniden yapımıdır. Oyunun amacı düşen parçaları en uygun şekilde dizmektir. Bir satır tamamen dolduktan sonra silinmektedir ve daha fazla oyun alanı açılmaktadır. Yeni parçaları koyacak yeriniz kalmadığında oyun bitmektedir. kblocks - mirrors://kde/stable/release-service/21.12.1/src/kblocks-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kblocks-21.12.2.tar.xz extra-cmake-modules - qt5-svg-devel - qt5-base-devel + qt5-svg-devel + qt5-base-devel kdoctools-devel ki18n-devel kxmlgui-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -29728,8 +30029,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base qt5-phonon kcoreaddons libkdegames @@ -29745,6 +30046,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -30043,7 +30351,7 @@ services for numerous locations. KBlog is a library for calling functions on Blogger 1.0, MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using KXmlRpcClient and Syndication. mirrors://kde/stable/release-service/20.04.3/src/kblog-20.04.3.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kdoctools-devel kcoreaddons-devel @@ -30052,7 +30360,7 @@ services for numerous locations. kitemmodels-devel kinit-devel kunitconversion-devel - qt5-webkit-devel + qt5-webkit-devel kcalutils-devel ksyndication-devel kxmlrpcclient-devel @@ -30064,7 +30372,7 @@ services for numerous locations. kblog - qt5-base + qt5-base kcalendarcore kxmlrpcclient kio @@ -30086,7 +30394,7 @@ services for numerous locations. kblog-devel Development files for kblog - qt5-base-devel + qt5-base-devel kblog @@ -30387,11 +30695,11 @@ services for numerous locations. KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by walls, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of the active field. The goal of the game is to fill at least 75% of the field and advance to the next level. KBounce, Volfied'in oynaniş tarzına benzeyen tek kişilik bir bulmaca - macera oyunudur. Oyuncu iki veya daha fazla topun oradan oraya zıpladığı duvarlarla kaplı bir alanda yeni duvarlar inşa ederek ve toplara yakalanmamaya çalışarak aktif alanın en azından %75'ini kapatmaya çalışmaktadır. kbounce - mirrors://kde/stable/release-service/21.12.1/src/kbounce-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kbounce-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -30406,7 +30714,7 @@ services for numerous locations. kio-devel knotifyconfig-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -30424,8 +30732,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcompletion kcoreaddons kdbusaddons @@ -30440,6 +30748,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -30738,12 +31053,12 @@ services for numerous locations. KBreakout is a Breakout like game. The object of the game is to destroy as many bricks as possible without losing the ball. KBreakout bir Breakout türevidir. Oyunun amacı topları yere düşürmeden olabildiğince çok tuğlayı yok etmektir. kbreakout - mirrors://kde/stable/release-service/21.12.1/src/kbreakout-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kbreakout-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -30774,13 +31089,13 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames kconfigwidgets kwidgetsaddons - qt5-declarative + qt5-declarative /usr/share @@ -30790,6 +31105,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -31088,9 +31410,9 @@ services for numerous locations. KBruch is a small program to practice calculating with fractions and percentages. Different exercises are provided for this purpose and you can use the learning mode to practice with fractions. The program checks the user's input and gives feedback. KBruch, ondalık ve kesirli sayılar üzerine işlemleri öğrenmeye ve egzersiz yapmaya yarayan bir uygulamadır. kbruch - mirrors://kde/stable/release-service/21.12.1/src/kbruch-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kbruch-21.12.2.tar.xz - qt5-base + qt5-base kdoctools-devel kconfig-devel kcrash-devel @@ -31106,7 +31428,7 @@ services for numerous locations. kbruch - qt5-base + qt5-base kxmlgui kconfig kcrash @@ -31124,6 +31446,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -31415,9 +31744,9 @@ services for numerous locations. KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. kcalc - mirrors://kde/stable/release-service/21.12.1/src/kcalc-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kcalc-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel extra-cmake-modules gmp-devel @@ -31437,7 +31766,7 @@ services for numerous locations. kcalc - qt5-base + qt5-base gmp ki18n kcrash @@ -31457,6 +31786,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -31753,7 +32089,7 @@ services for numerous locations. desktop.kde.applications The KDE calendar utility library Calendar utility library for KDE - mirrors://kde/stable/release-service/21.12.1/src/kcalutils-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kcalutils-21.12.2.tar.xz qt5-base-devel kcalendarcore-devel @@ -31761,6 +32097,7 @@ services for numerous locations. kcoreaddons-devel kconfig-devel ki18n-devel + kidentitymanagement-devel kemoticons-devel kitemmodels-devel kinit-devel @@ -31776,7 +32113,7 @@ services for numerous locations. kcalutils - qt5-base + qt5-base kcalendarcore kidentitymanagement ki18n @@ -31803,8 +32140,8 @@ services for numerous locations. kcalutils-devel Development files for kcalutils - qt5-base-devel - kcalutils + qt5-base-devel + kcalutils /usr/include @@ -31813,6 +32150,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -32118,9 +32462,9 @@ services for numerous locations. KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. kcharselect - mirrors://kde/stable/release-service/21.12.1/src/kcharselect-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kcharselect-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel kbookmarks-devel cmake @@ -32136,7 +32480,7 @@ services for numerous locations. kcharselect - qt5-base + qt5-base kxmlgui ki18n libgcc @@ -32153,6 +32497,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -32444,10 +32795,10 @@ services for numerous locations. KColorChooser is a simple color chooser application. KColorChooser, basit bir renk seçme uygulamasıdır. kcolorchooser - mirrors://kde/stable/release-service/21.12.1/src/kcolorchooser-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kcolorchooser-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel ki18n-devel kwidgetsaddons-devel kxmlgui-devel @@ -32461,7 +32812,7 @@ services for numerous locations. ki18n libgcc kxmlgui - qt5-base + qt5-base kcoreaddons @@ -32474,6 +32825,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -33000,9 +33358,9 @@ services for numerous locations. desktop.kde.sdk Scripts and setting files useful during development of KDE software Scripts and setting files useful during development of KDE software - mirrors://kde/stable/release-service/21.12.1/src/kde-dev-scripts-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kde-dev-scripts-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kdoctools-devel docbook-xml @@ -33013,7 +33371,7 @@ services for numerous locations. kde-dev-scripts Scripts and setting files useful during development of KDE software - qt5-base + qt5-base kdoctools @@ -33024,6 +33382,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -33520,10 +33885,10 @@ services for numerous locations. desktop.kde.applications An application to enable/disable qCDebug KDebug control module for KDE. It provides a graphical frontend for the kdebug daemon, which allow enabling or disabling particular debug areas/messages. - mirrors://kde/stable/release-service/21.12.1/src/kdebugsettings-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdebugsettings-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kconfigwidgets-devel @@ -33545,7 +33910,7 @@ services for numerous locations. ki18n libgcc kconfig - qt5-base + qt5-base kitemviews kcompletion kcoreaddons @@ -33563,6 +33928,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -33855,7 +34227,7 @@ services for numerous locations. Connect KDE with your smartphone Cihazlarınızı KDE ile birleştirin kdeconnect - https://download.kde.org/stable/release-service/21.12.1/src/kdeconnect-kde-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kdeconnect-kde-21.12.2.tar.xz sshfs kio-devel @@ -33939,6 +34311,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -34108,9 +34487,9 @@ services for numerous locations. desktop.kde.applications Common data for KDE Edu applications Common data for KDE Edu applications. - mirrors://kde/stable/release-service/21.12.1/src/kdeedu-data-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdeedu-data-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules desktop/kde/applications/kdeedu-data/pspec.xml @@ -34123,6 +34502,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -34412,7 +34798,7 @@ services for numerous locations. desktop.kde.applications A collection of plugins to handle mobipocket files A collection of plugins to handle mobipocket files - http://download.kde.org/stable/release-service/21.12.1/src/kdegraphics-mobipocket-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kdegraphics-mobipocket-21.12.2.tar.xz extra-cmake-modules kio-devel @@ -34438,7 +34824,7 @@ services for numerous locations. kdegraphics-mobipocket-devel Development headers for kdegraphics-mobipocket - kdegraphics-mobipocket + kdegraphics-mobipocket /usr/include @@ -34446,6 +34832,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -34693,7 +35086,7 @@ services for numerous locations. desktop.kde.applications A KPart for viewing SVGs A KPart for viewing SVGs - mirrors://kde/stable/release-service/21.12.1/src/svgpart-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/svgpart-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -34701,8 +35094,8 @@ services for numerous locations. kcoreaddons-devel kparts-devel python-devel - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel desktop/kde/applications/kdegraphics-svgpart/pspec.xml @@ -34712,8 +35105,8 @@ services for numerous locations. kcoreaddons kparts - qt5-base - qt5-svg + qt5-base + qt5-svg ki18n libgcc kxmlgui @@ -34726,6 +35119,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -34981,10 +35381,10 @@ services for numerous locations. KDE4 önizleme kitaplıkları kdegraphics-thumbnailers contains thumbnail-related libraries. kdegraphics-thumbnailers, önizleme kitaplıklarını içerir. - mirrors://kde/stable/release-service/21.12.1/src/kdegraphics-thumbnailers-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdegraphics-thumbnailers-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kio-devel libkdcraw-devel libkexiv2-devel @@ -34997,7 +35397,7 @@ services for numerous locations. kio libgcc - qt5-base + qt5-base libkdcraw libkexiv2 karchive @@ -35009,6 +35409,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -35299,11 +35706,11 @@ services for numerous locations. Dosya paylaşım konfigürasyon modülü. Filesharing configuration modlue. Dosya paylaşım konfigürasyon modülü. - mirrors://kde/stable/release-service/21.12.1/src/kdenetwork-filesharing-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdenetwork-filesharing-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kdoctools-devel kcoreaddons-devel ki18n-devel @@ -35321,8 +35728,8 @@ services for numerous locations. kio ki18n libgcc - qt5-base - qt5-declarative + qt5-base + qt5-declarative kservice kcompletion kcoreaddons @@ -35342,6 +35749,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -35635,7 +36049,7 @@ services for numerous locations. kdenlive provides dual video monitors, a multi-track timeline and clip list. Other features include customizable layout support, basic effects and transitions. kdenlive, ikili video izleyicileri, çoklu parça zaman çizelgesi ve klip listesi sunmaktadır. Diğer özellikler arasında özelleştirilebilir düzenleme desteği, temel efektler ve geçişler sayılabilir. Kdenlive jest nieliniowym pakietem do edycji wideo obsługującym DV, HDC i wiele innych formatów. - mirrors://kde/stable/release-service/21.12.1/src/kdenlive-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdenlive-21.12.2.tar.xz extra-cmake-modules qt5-base-devel @@ -35737,6 +36151,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -36026,7 +36447,7 @@ services for numerous locations. desktop.kde.applications Addons for the KDE PIM apllications Addons for the KDE PIM apllications - mirrors://kde/stable/release-service/21.12.1/src/kdepim-addons-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdepim-addons-21.12.2.tar.xz akonadi-calendar-devel akonadi-devel @@ -36061,9 +36482,9 @@ services for numerous locations. messagelib-devel pimcommon-devel python-devel - qt5-base-devel - qt5-declarative-devel - qt5-webengine-devel + qt5-base-devel + qt5-declarative-devel + qt5-webengine-devel kio-devel kmime-devel kcodecs-devel @@ -36130,9 +36551,9 @@ services for numerous locations. mailcommon messagelib pimcommon - qt5-base - qt5-declarative - qt5-webengine + qt5-base + qt5-declarative + qt5-webengine kio kmime kcodecs @@ -36180,6 +36601,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -36437,7 +36865,7 @@ services for numerous locations. kdepim-runtime contains KDE5 PIM (Personal Information Management) runtime environment like akonadi agents. kdepim-runtime, kdelibs kullanarak yazılmış olan Akonadi ajanları da dahil olmak üzere KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) çalışma zamanı ortamını içerir. kontact - mirrors://kde/stable/release-service/21.12.1/src/kdepim-runtime-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdepim-runtime-21.12.2.tar.xz kdoctools-devel boost-devel @@ -36465,13 +36893,13 @@ services for numerous locations. ksyndication-devel pimcommon-devel cyrus-sasl-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-webkit-devel - qt5-webengine-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-webkit-devel + qt5-webengine-devel extra-cmake-modules - qt5-location-devel - qt5-networkauth-devel + qt5-location-devel + qt5-networkauth-devel akonadi-mime-devel akonadi-notes-devel akonadi-contacts-devel @@ -36504,7 +36932,7 @@ services for numerous locations. kcalendarcore kcmutils kservice - qt5-base + qt5-base kalarmcal kcalutils kitemviews @@ -36523,14 +36951,14 @@ services for numerous locations. knotifications kwidgetsaddons qt5-speech - qt5-xmlpatterns + qt5-xmlpatterns akonadi-calendar kdelibs4-support cyrus-sasl akonadi-mime akonadi-notes - qt5-webengine - qt5-networkauth + qt5-webengine + qt5-networkauth akonadi-contacts kidentitymanagement kdav @@ -36558,6 +36986,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -36846,10 +37281,10 @@ services for numerous locations. desktop.kde.sdk Translation file thumbnail generators Translation file thumbnail generators - mirrors://kde/stable/release-service/21.12.1/src/kdesdk-thumbnailers-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdesdk-thumbnailers-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kconfig-devel ki18n-devel kio-devel @@ -36865,7 +37300,7 @@ services for numerous locations. libgcc gettext kconfig - qt5-base + qt5-base kwidgetsaddons @@ -36883,6 +37318,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -37172,7 +37614,7 @@ services for numerous locations. desktop.kde.applications View Disk Usage KDiskFree displays the available file devices (hard drive partitions, floppy and CD drives, etc.) along with information on their capacity, free space, type and mount point. It also allows you to mount and unmount drives and view them in a file manager. - http://download.kde.org/stable/release-service/21.12.1/src/kdf-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kdf-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -37215,6 +37657,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -37692,7 +38141,7 @@ services for numerous locations. kdialog allows you to display dialog boxes from shell scripts The syntax is very much inspired from the "dialog" command (which shows text mode dialogs). - mirrors://kde/stable/release-service/21.12.1/src/kdialog-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdialog-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -37713,7 +38162,7 @@ services for numerous locations. kiconthemes-devel knotifications-devel ktextwidgets-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/kdialog/pspec.xml @@ -37722,7 +38171,7 @@ services for numerous locations. kdialog allows you to display dialog boxes from shell scripts kio - qt5-base + qt5-base ki18n libX11 libgcc @@ -37750,6 +38199,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -38016,7 +38472,7 @@ services for numerous locations. desktop.kde.applications Bookmark Organizer and Editor Bookmark Organizer and Editor - mirrors://kde/stable/release-service/21.12.1/src/keditbookmarks-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/keditbookmarks-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -38030,7 +38486,7 @@ services for numerous locations. kparts-devel kwindowsystem-devel python-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/keditbookmarks/pspec.xml @@ -38042,7 +38498,7 @@ services for numerous locations. ki18n kio kparts - qt5-base + qt5-base libgcc kconfig kxmlgui @@ -38068,6 +38524,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -38320,7 +38783,7 @@ services for numerous locations. desktop.kde.utils Find Files/Folders Find Files/Folders - mirrors://kde/stable/release-service/21.12.1/src/kfind-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kfind-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -38335,7 +38798,7 @@ services for numerous locations. kdoctools-devel python-devel kfilemetadata-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/kfind/pspec.xml @@ -38346,7 +38809,7 @@ services for numerous locations. karchive kdelibs4-support libgcc - qt5-base + qt5-base kio ki18n kconfig @@ -38374,6 +38837,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -38630,10 +39100,10 @@ services for numerous locations. KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. kfloppy - http://download.kde.org/stable/release-service/21.12.1/src/kfloppy-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kfloppy-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel ki18n-devel kcoreaddons-devel kio-devel @@ -38654,7 +39124,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base kcompletion kcoreaddons kconfigwidgets @@ -38672,6 +39142,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -38949,12 +39426,12 @@ services for numerous locations. KFourInLine is a board game for two players based on the Connect-Four game. KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur. kfourinline - mirrors://kde/stable/release-service/21.12.1/src/kfourinline-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kfourinline-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kitemmodels-devel @@ -38986,8 +39463,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcompletion kcoreaddons libkdegames @@ -39003,6 +39480,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -39301,9 +39785,9 @@ services for numerous locations. KGeography is a geography learning tool, which allows you to learn about the political divisions of some countries (divisions, capitals of those divisions and their associated flags if there are some). KGeography, ülkeler hakkında çeşitli bilgiler sunan bir coğrafya uygulamasıdır. kgeography - https://download.kde.org/stable/release-service/21.12.1/src/kgeography-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kgeography-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kconfig-devel kcrash-devel kdoctools-devel @@ -39322,7 +39806,7 @@ services for numerous locations. kgeography - qt5-base + qt5-base libgcc kcrash kconfig @@ -39341,6 +39825,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -39623,7 +40114,7 @@ services for numerous locations. desktop.kde.applications A QtQuick plugin to render beautiful and interactive charts KGpg is a simple interface for GnuPG, a powerful encryption utility. - mirrors://kde/stable/release-service/21.12.1/src/kgpg-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kgpg-21.12.2.tar.xz akonadi-devel boost-devel @@ -39655,8 +40146,8 @@ services for numerous locations. libical-devel python-devel libevent-devel - qt5-webengine-devel - qt5-base-devel + qt5-webengine-devel + qt5-base-devel extra-cmake-modules desktop/kde/applications/kgpg/pspec.xml @@ -39667,7 +40158,7 @@ services for numerous locations. gpgme boost - qt5-base + qt5-base kio ki18n kcrash @@ -39698,6 +40189,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -39968,9 +40466,9 @@ services for numerous locations. KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. khangman - mirrors://kde/stable/release-service/21.12.1/src/khangman-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/khangman-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel kdeclarative-devel knewstuff-devel @@ -39984,9 +40482,9 @@ services for numerous locations. kxmlgui-devel kwidgetsaddons-devel kio-devel - qt5-svg-devel - qt5-linguist - qt5-declarative-devel + qt5-svg-devel + qt5-linguist + qt5-declarative-devel libkeduvocdocument-devel extra-cmake-modules @@ -39995,7 +40493,7 @@ services for numerous locations. khangman - qt5-base + qt5-base kdeclarative knewstuff ki18n @@ -40003,7 +40501,7 @@ services for numerous locations. kconfig kcoreaddons kxmlgui - qt5-declarative + qt5-declarative libkeduvocdocument libgcc @@ -40016,6 +40514,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -40305,9 +40810,9 @@ services for numerous locations. desktop.kde.applications KDE Help Center KDE help center utility to read help documentation about various KDE applications. - mirrors://kde/stable/release-service/21.12.1/src/khelpcenter-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/khelpcenter-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel libxml2-devel libdbusmenu-qt-devel kinit-devel @@ -40329,7 +40834,7 @@ services for numerous locations. khelpcenter - qt5-base + qt5-base kio libgcc libxml2 @@ -40362,6 +40867,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -40658,9 +41170,9 @@ services for numerous locations. desktop.kde.applications KDE PIM libraries Library for the KDE-PIM(Personal-Infomation-Management - mirrors://kde/stable/release-service/21.12.1/src/kidentitymanagement-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kidentitymanagement-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel kpimtextedit-devel kio-devel @@ -40688,7 +41200,7 @@ services for numerous locations. kidentitymanagement - qt5-base + qt5-base kpimtextedit kio ki18n @@ -40715,10 +41227,10 @@ services for numerous locations. kidentitymanagement-devel Development files for kidentitymanagement - qt5-base-devel + qt5-base-devel kpimtextedit-devel ktextwidgets-devel - kidentitymanagement + kidentitymanagement /etc/xdg @@ -40728,6 +41240,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -41026,16 +41545,16 @@ services for numerous locations. Kig is an application for interactive geometry. Kig, bir etkileşimli geometri uygulamasıdır. kig - mirrors://kde/stable/release-service/21.12.1/src/kig-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kig-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel boost-devel ktexteditor-devel kdoctools-devel kemoticons-devel kitemmodels-devel - qt5-xmlpatterns-devel + qt5-xmlpatterns-devel gettext-devel pkgconfig kcrash-devel @@ -41047,12 +41566,12 @@ services for numerous locations. kig - qt5-base + qt5-base boost kcrash ktexteditor - qt5-xmlpatterns - qt5-svg + qt5-xmlpatterns + qt5-svg ki18n kparts ktexteditor @@ -41078,6 +41597,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -41369,10 +41895,10 @@ services for numerous locations. Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you. Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek. killbots - mirrors://kde/stable/release-service/21.12.1/src/killbots-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/killbots-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -41386,7 +41912,7 @@ services for numerous locations. kcompletion-devel knotifyconfig-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -41403,7 +41929,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base kcompletion kcoreaddons kdbusaddons @@ -41419,6 +41945,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -41715,9 +42248,9 @@ services for numerous locations. desktop.kde.applications Job-based API for interacting with IMAP servers API for interacting with IMAP servers - mirrors://kde/stable/release-service/21.12.1/src/kimap-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kimap-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel kmime-devel boost-devel @@ -41734,7 +42267,7 @@ services for numerous locations. kimap - qt5-base + qt5-base kmime kio ki18n @@ -41756,8 +42289,8 @@ services for numerous locations. kimap-devel Development files for kimap - qt5-base-devel - kimap + qt5-base-devel + kimap /usr/include @@ -41766,6 +42299,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -42062,7 +42602,7 @@ services for numerous locations. desktop.kde.network Additional KIO-slaves for KDE5 applications Additional KIO-slaves for KDE5 applications - mirrors://kde/stable/release-service/21.12.1/src/kio-extras-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kio-extras-21.12.2.tar.xz qt5-phonon-devel extra-cmake-modules @@ -42081,11 +42621,11 @@ services for numerous locations. kpty-devel solid-devel syntax-highlighting-devel - qt5-sql-postgresql + qt5-sql-postgresql qt5-base-devel qt5-sql-sqlite qt5-sql-mysql - qt5-sql-odbc + qt5-sql-odbc qt5-svg-devel libssh kded-devel @@ -42161,7 +42701,7 @@ services for numerous locations. kio-extras-devel Development files for kio-extras - kio-extras + kio-extras /usr/include @@ -42169,6 +42709,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -42466,7 +43013,7 @@ services for numerous locations. A collection of plugins extending the KDE graphics and image applications A collection of plugins extending the KDE graphics and image applications A collection of plugins extending the KDE graphics and image applications - https://download.kde.org/stable/release-service/21.12.1/src/kipi-plugins-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kipi-plugins-21.12.2.tar.xz libkipi-devel kcompletion-devel @@ -42512,6 +43059,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -42698,11 +43252,11 @@ services for numerous locations. Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players. Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir. kiriki - mirrors://kde/stable/release-service/21.12.1/src/kiriki-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kiriki-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kdbusaddons-devel @@ -42714,7 +43268,7 @@ services for numerous locations. kxmlgui-devel kio-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -42730,7 +43284,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons kiconthemes @@ -42746,6 +43300,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -43044,9 +43605,9 @@ services for numerous locations. Kiten is a Japanese reference/study tool. Kiten, Japonca referans ve alıştırma uygulamasıdır. kiten>kiten - mirrors://kde/stable/release-service/21.12.1/src/kiten-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kiten-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel extra-cmake-modules karchive-devel @@ -43070,7 +43631,7 @@ services for numerous locations. kiten - qt5-base + qt5-base karchive kcompletion kconfig @@ -43100,7 +43661,7 @@ services for numerous locations. Development files for kiten kiten için geliştirme dosyaları - kiten + kiten /usr/include @@ -43108,6 +43669,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -43398,7 +43966,7 @@ services for numerous locations. Data model and extraction system for travel reservation information Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi - https://download.kde.org/stable/release-service/21.12.1/src/kitinerary-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kitinerary-21.12.2.tar.xz qt5-declarative-devel qt5-base-devel @@ -43451,7 +44019,7 @@ services for numerous locations. kitinerary-devel Development files for kitinerary - kitinerary + kitinerary /usr/include @@ -43459,6 +44027,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -43617,12 +44192,12 @@ services for numerous locations. KJumpingCube is a simple tactical game. KJumpingCube basit bir taktik oyunudur. kjumpingcube - mirrors://kde/stable/release-service/21.12.1/src/kjumpingcube-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kjumpingcube-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kitemmodels-devel @@ -43652,8 +44227,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcoreaddons libkdegames kconfigwidgets @@ -43668,6 +44243,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -43964,9 +44546,9 @@ services for numerous locations. desktop.kde.applications LDAP access API for KDE Allows LDAP accessing with a convenient Qt style C++ API. - mirrors://kde/stable/release-service/21.12.1/src/kldap-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kldap-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kcompletion-devel kdoctools-devel ki18n-devel @@ -43986,7 +44568,7 @@ services for numerous locations. kldap - qt5-base + qt5-base kcompletion kwallet ki18n @@ -44011,8 +44593,8 @@ services for numerous locations. kldap-devel Development files for kdelibs4-support - qt5-base-devel - kldap + qt5-base-devel + kldap /usr/include @@ -44021,6 +44603,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -44310,12 +44899,12 @@ services for numerous locations. A Gomoku like game for two players. Bovo is a Gomoku like game for two players, where the opponents alternate in placing their respective pictogram on the game board. bovo - mirrors://kde/stable/release-service/21.12.1/src/bovo-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/bovo-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel mesa-devel - qt5-svg-devel + qt5-svg-devel kxmlgui-devel kdoctools-devel libkdegames-devel @@ -44335,8 +44924,8 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcoreaddons kdbusaddons libkdegames @@ -44357,6 +44946,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -44646,9 +45242,9 @@ services for numerous locations. desktop.kde.applications Library to provides access and handling of KAlarm calendar data Library to provides access and handling of KAlarm calendar data - mirrors://kde/stable/release-service/21.12.1/src/kalarmcal-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kalarmcal-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel akonadi-devel kcalendarcore-devel kholidays-devel @@ -44672,7 +45268,7 @@ services for numerous locations. kalarmcal - qt5-base + qt5-base kcalendarcore kcalutils kholidays @@ -44695,8 +45291,8 @@ services for numerous locations. kalarmcal-devel Development files for kalarmcal - qt5-base-devel - kalarmcal + qt5-base-devel + kalarmcal /usr/include @@ -44705,6 +45301,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -45010,10 +45613,10 @@ services for numerous locations. Kcron is a graphical frontend to the cron system, used to schedule regular tasks on a Unix system. Kcron, cron görev zamanlayıcı altyapısının bir arayüzüdür. kcron - mirrors://kde/stable/release-service/21.12.1/src/kcron-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kcron-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel ki18n-devel kdoctools-devel kiconthemes-devel @@ -45029,7 +45632,7 @@ services for numerous locations. kio ki18n libgcc - qt5-base + qt5-base kcoreaddons kiconthemes kconfigwidgets @@ -45049,6 +45652,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -45333,10 +45943,10 @@ services for numerous locations. KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds. KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur. kdiamond - mirrors://kde/stable/release-service/21.12.1/src/kdiamond-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kdiamond-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kdbusaddons-devel @@ -45350,7 +45960,7 @@ services for numerous locations. knotifications-devel knotifyconfig-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -45367,7 +45977,7 @@ services for numerous locations. libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -45385,6 +45995,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -45682,10 +46299,10 @@ services for numerous locations. desktop.kde.applications Certificate Manager and Unified Crypto GUI Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers. - mirrors://kde/stable/release-service/21.12.1/src/kleopatra-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kleopatra-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcodecs-devel kconfig-devel kconfigwidgets-devel @@ -45721,7 +46338,7 @@ services for numerous locations. kxmlgui libkleo kcmutils - qt5-base + qt5-base libassuan kcoreaddons kdbusaddons @@ -45742,6 +46359,13 @@ services for numerous locations. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -46023,7 +46647,7 @@ services for numerous locations. KDE Personal Information Manager Kontact is the integrated Personal Information Manager of KDE, but can be used with other systems as well. It supports email, address books, calendars, tasks, news feeds and much more. - http://download.kde.org/stable/release-service/21.12.1/src/kontact-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kontact-21.12.2.tar.xz boost-devel extra-cmake-modules @@ -46094,6 +46718,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -46336,10 +46967,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KSystemLog show all logs of your system, grouped by General (Default system log, Authentication, Kernel, X.org...), and optional Services (Apache, Cups, etc, ...). Ksystemlog, sistemin bütün hata kayıtlarını (genel ve opsiyonel) görüntülemmeye yarayan bir uygulamadır. ksystemlog - mirrors://kde/stable/release-service/21.12.1/src/ksystemlog-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ksystemlog-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kxmlgui-devel kcoreaddons-devel kwidgetsaddons-devel @@ -46365,7 +46996,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui karchive kservice - qt5-base + qt5-base kitemviews kcompletion kcoreaddons @@ -46390,6 +47021,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -46678,9 +47316,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.edu Kwordquiz is a Flash Card Trainer KWordQuiz is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.. - mirrors://kde/stable/release-service/21.12.1/src/kwordquiz-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kwordquiz-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel gettext-devel ki18n-devel kcrash-devel @@ -46717,7 +47355,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kwordquiz - qt5-base + qt5-base qt5-phonon ki18n kconfig @@ -46746,6 +47384,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -47036,9 +47681,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.Uygulama yerelleştirme yardımcısı. Lokalize is also a general computer-aided translation system (CAT) with which you can translate OpenDocument files (*.odt). Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. - mirrors://kde/stable/release-service/21.12.1/src/lokalize-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/lokalize-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel hunspell-devel extra-cmake-modules kdoctools-devel @@ -47059,17 +47704,17 @@ It supports email, address books, calendars, tasks, news feeds and much more.knotifications-devel kwidgetsaddons-devel pkgconfig - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc desktop/kde/applications/lokalize/pspec.xml lokalize - qt5-base + qt5-base kio kitemviews ki18n @@ -47096,6 +47741,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -47387,10 +48039,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language. KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir. klettres - mirrors://kde/stable/release-service/21.12.1/src/klettres-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/klettres-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel kdoctools-devel extra-cmake-modules kcompletion-devel @@ -47412,8 +48064,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. klettres - qt5-base - qt5-svg + qt5-base + qt5-svg qt5-phonon knewstuff ki18n @@ -47434,6 +48086,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -47725,10 +48384,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.Klickety is a kind of solitary game that takes place on a Tetris-like board. Klickety Tetris gibi tahta üzerinde yer alan bir tür soliter oyunu klickety - mirrors://kde/stable/release-service/21.12.1/src/klickety-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/klickety-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -47741,7 +48400,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kdbusaddons-devel knotifications-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -47758,7 +48417,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -47782,6 +48441,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -48080,12 +48746,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.Kolor Lines is a simple but highly addictive, one player game for KDE. Kolor Lines has been inspired by well known game of Color Lines. The goal of Kolor Lines is quite plain. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five. Kolor Lines basit ama bağımlılık yapıcı bir oyundur. Dünyaca ünlü Color Lines'tan esinlenilen oyunda amacınız aynı renkli toplardan beş tanesini yan yana getirmektir. klines - mirrors://kde/stable/release-service/21.12.1/src/klines-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/klines-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -48116,7 +48782,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -48131,6 +48797,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -48429,7 +49102,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.KMahjongg is a fun board game created after the famous oriental game of Mahjong. Unlike the original however, KMahjongg is a tile matching game for one or two players, a variation usually known as Mahjong Solitaire. Mahjong Solitaire oyununa benzer KMahjongg bir veya iki oyuncunun birlekte oynayabileceği bir parça eşleştirme oyunudur. kmahjongg - mirrors://kde/stable/release-service/21.12.1/src/kmahjongg-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmahjongg-21.12.2.tar.xz extra-cmake-modules qt5-base-devel @@ -48477,6 +49150,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -48743,7 +49423,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE mail client KMail is the email component of Kontact, the integrated personal information manager from KDE. - mirrors://kde/stable/release-service/21.12.1/src/kmail-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmail-21.12.2.tar.xz gpgme-devel extra-cmake-modules @@ -48877,6 +49557,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -49115,7 +49802,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Kmail Account Wizard Kmail Account Wizard - mirrors://kde/stable/release-service/21.12.1/src/kmail-account-wizard-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmail-account-wizard-21.12.2.tar.xz gpgme-devel gpgme-qt5-devel @@ -49191,6 +49878,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -49424,9 +50118,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.Mail Transport Service Mail Transport Service akonadi - mirrors://kde/stable/release-service/21.12.1/src/kmailtransport-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmailtransport-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdesignerplugin kdoctools-devel kemoticons-devel @@ -49451,7 +50145,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kmailtransport app:console - qt5-base + qt5-base ki18n ksmtp kio @@ -49484,9 +50178,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.kmailtransport-devel Development files for akonadi - kmailtransport + kmailtransport kwallet-devel - qt5-base-devel + qt5-base-devel /usr/include @@ -49495,6 +50189,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -49791,7 +50492,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications MBox library support. MBox library support. - mirrors://kde/stable/release-service/21.12.1/src/kmbox-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmbox-21.12.2.tar.xz qt5-base-devel extra-cmake-modules @@ -49821,7 +50522,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for kmbox qt5-base-devel - kmbox + kmbox /etc/xdg @@ -49831,6 +50532,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -50120,9 +50828,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE library for handling mail messages and newsgroup articles. Kmime library for handling mail messages and newsgroup articles. - mirrors://kde/stable/release-service/21.12.1/src/kmime-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmime-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules boost-devel ki18n-devel @@ -50134,7 +50842,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kmime - qt5-base + qt5-base ki18n kcodecs libgcc @@ -50151,8 +50859,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kmime-devel Development files for kmime - qt5-base-devel - kmime + qt5-base-devel + kmime /usr/include @@ -50161,6 +50869,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -50459,11 +51174,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.KMines is the classic Minesweeper game. The idea is to uncover all the squares without blowing up any mines. When a mine is blown up, the game is over. KMines klasik mayın tarlası oyununun bir türevidir. Oyunun amacı hiç bir mayına denk gelmemeye çalışarak kutuları açmaktır. Eğer bir mayın patlarsa oyun biter. kmines - mirrors://kde/stable/release-service/21.12.1/src/kmines-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmines-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -50491,7 +51206,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -50507,6 +51222,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -50805,9 +51527,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.KMix: KDE Digital Mixer KMix: KDE için Dijital Mixer. kmix - mirrors://kde/stable/release-service/21.12.1/src/kmix-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmix-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kdoctools-devel ki18n-devel @@ -50830,7 +51552,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kmix - qt5-base + qt5-base alsa-lib libcanberra pulseaudio-libs @@ -50860,6 +51582,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -51156,7 +51885,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.edu Mathematical Function Plotter KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need. - mirrors://kde/stable/release-service/21.12.1/src/kmplot-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kmplot-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -51171,7 +51900,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kdesignerplugin kemoticons-devel kitemmodels-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/kmplot/pspec.xml @@ -51183,8 +51912,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n kparts kwidgetsaddons - qt5-base - qt5-svg + qt5-base + qt5-svg libgcc kconfig kxmlgui @@ -51204,6 +51933,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -51495,10 +52231,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.knavalbattle is a Battle Ship game for KDE. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. KBattleship KDE için bir Amiral Battı oyunudur. Gemiler denizi temsil eden oyun tahtasına yerleştirilir ve oyuncular rakiplerinin gemilerinin yerleşimini tahmin ederek gemileri vurmaya çalışır. Rakibinin tüm gemilerini daha önce batıran oyuncu kazanır. knavalbattle - mirrors://kde/stable/release-service/21.12.1/src/knavalbattle-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/knavalbattle-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kconfig-devel kdbusaddons-devel kdnssd-devel @@ -51507,7 +52243,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kdoctools-devel ktextwidgets-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -51524,7 +52260,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcompletion kcoreaddons kdbusaddons @@ -51547,6 +52283,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -51845,12 +52588,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.KNetWalk is a single player logic game. The object of the game is to start the LAN, connecting all the terminals to the server, in as few turns as possible. KNetWalk bir ağ kurma oyunudur. Dunucularla istemcileri mümkün olan en az kaynakla birleştirmeye çalışmak oyunun amacıdır. Bağımlılık yapması olasıdır. knetwalk - mirrors://kde/stable/release-service/21.12.1/src/knetwalk-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/knetwalk-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -51880,14 +52623,14 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames ktextwidgets kconfigwidgets kwidgetsaddons - qt5-declarative + qt5-declarative ktextwidgets @@ -51897,6 +52640,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -52195,12 +52945,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.Kollision is ball dodging game. Click on the empty field to start a game: a blue ball immediately replaces your mouse cursor, and a number of red balls start to fade into the field. Kollision basit bir top sıçratma oyunudur. Boş bir alana fareyle tıkladığınızda oyun başlar ve fare imlecinizin yerini mavi bir top alır, ayrıca olayların gelişmesine vesile olacak kırmızı toplar da alandaki yerlerini alırlar. kollision - mirrors://kde/stable/release-service/21.12.1/src/kollision-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kollision-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel kcoreaddons-devel kconfig-devel kwidgetsaddons-devel @@ -52229,7 +52979,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kdbusaddons libkdegames @@ -52242,6 +52992,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -52540,10 +53297,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KolourPaint is a simple painting program to quickly create raster images. It is useful as a touch-up tool and simple image editing tasks. KolourPaint, kullanımı kolay bir çizim programıdır. kolourpaint - mirrors://kde/stable/release-service/21.12.1/src/kolourpaint-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kolourpaint-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel libkexiv2-devel kdelibs4-support-devel kdesignerplugin @@ -52564,7 +53321,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig kxmlgui kservice - qt5-base + qt5-base kguiaddons libksane kcoreaddons @@ -52587,6 +53344,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -52856,11 +53620,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.Dosya karşılaştırma göstericisi. Diff/Patch Frontend. Dosya karşılaştırma göstericisi. - mirrors://kde/stable/release-service/21.12.1/src/kompare-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kompare-21.12.2.tar.xz extra-cmake-modules kdoctools-devel - qt5-base-devel + qt5-base-devel gettext-devel libkomparediff2-devel kcoreaddons-devel @@ -52877,7 +53641,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kompare - qt5-base + qt5-base libkomparediff2 kio ki18n @@ -52911,6 +53675,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -53200,7 +53971,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Konqueror - KDE File Manager and Web Browser Konqueror is KDE's Webbrowser and swiss-army-knife for any kind of file-management and file previewing. - mirrors://kde/stable/release-service/21.12.1/src/konqueror-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/konqueror-21.12.2.tar.xz extra-cmake-modules gettext-devel @@ -53308,7 +54079,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for konqueror qt5-base-devel - konqueror + konqueror /usr/include @@ -53316,6 +54087,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -53568,10 +54346,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE Konsole Konsole for KDE5 - mirrors://kde/stable/release-service/21.12.1/src/konsole-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/konsole-21.12.2.tar.xz - qt5-base-devel - qt5-script-devel + qt5-base-devel + qt5-script-devel kpty-devel kio-devel kinit-devel @@ -53598,7 +54376,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.konsole libgcc - qt5-base + qt5-base kiconthemes knotifyconfig knotifications @@ -53631,6 +54409,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -53927,9 +54712,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Kontact Plugin Interface Library This library provides the glue necessary for application "Parts" to be embedded as a Kontact component (or plugin). - mirrors://kde/stable/release-service/21.12.1/src/kontactinterface-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kontactinterface-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel extra-cmake-modules kcoreaddons-devel @@ -53944,7 +54729,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kontactinterface - qt5-base + qt5-base kio kparts libgcc @@ -53965,8 +54750,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kontactinterface-devel Development files for kontactinterface - qt5-base-devel - kontactinterface + qt5-base-devel + kontactinterface /usr/include @@ -53975,6 +54760,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -54265,7 +55057,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. mirrors://kde/stable/konversation/1.7.7/src/konversation-1.7.7.tar.xz - qt5-base-devel + qt5-base-devel qt5-phonon-devel extra-cmake-modules kdoctools-devel @@ -54301,7 +55093,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. konversation - qt5-base + qt5-base qca2-qt5 kemoticons kidletime @@ -54592,7 +55384,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Calendar and scheduling Program KOrganizer is the calendar and scheduling component of Kontact, the integrated personal information manager from KDE. - https://download.kde.org/stable/release-service/21.12.1/src/korganizer-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/korganizer-21.12.2.tar.xz gpgme-devel extra-cmake-modules @@ -54698,6 +55490,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -54902,10 +55701,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.games Patience card game To play KPatience you need, as the name suggests, patience. For simple games, where the way the game goes depends only upon how the cards fall, your patience might be the only thing you need. - mirrors://kde/stable/release-service/21.12.1/src/kpat-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kpat-21.12.2.tar.xz - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel qt5-phonon-devel kdoctools-devel cmake @@ -54926,7 +55725,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n-devel kconfig-devel kxmlgui-devel - qt5-svg-devel + qt5-svg-devel kguiaddons-devel kcompletion-devel kcoreaddons-devel @@ -54946,7 +55745,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kpat - qt5-base + qt5-base libkdegames knewstuff ki18n @@ -54955,7 +55754,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-svg + qt5-svg kguiaddons kcompletion kcoreaddons @@ -54975,6 +55774,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -55271,11 +56077,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A textedit with PIM-specific features. Text Edit with KDE-PIM specific features. - mirrors://kde/stable/release-service/21.12.1/src/kpimtextedit-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kpimtextedit-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel qt5-speech-devel - qt5-designer-devel + qt5-designer-devel ki18n-devel sonnet-devel kcodecs-devel @@ -55298,9 +56104,9 @@ It supports email, address books, calendars, tasks, news feeds and much more. kpimtextedit - qt5-base + qt5-base qt5-speech - qt5-designer + qt5-designer ki18n kcodecs kio @@ -55331,8 +56137,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kpimtextedit-devel Development files for kpimtextedit - qt5-base-devel - kpimtextedit + qt5-base-devel + kpimtextedit ktextwidgets-devel @@ -55342,6 +56148,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -55639,7 +56452,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Apple Wallet Pass reader Apple Cüzdan Geçiş okuyucusu Apple Cüzdan Geçiş okuyucusu - https://download.kde.org/stable/release-service/21.12.1/src/kpkpass-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/kpkpass-21.12.2.tar.xz qt5-base-devel extra-cmake-modules @@ -55666,7 +56479,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kpkpass-devel Development files for kpkpass - kpkpass + kpkpass /usr/include @@ -55674,6 +56487,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -55829,7 +56649,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Library for managing partitions. Library for managing partitions. - mirrors://kde/stable/release-service/21.12.1/src/kpmcore-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kpmcore-21.12.2.tar.xz ntfs-3g udftools @@ -55912,7 +56732,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kpmcore-devel Development files for kpmcore - kpmcore + kpmcore /usr/include @@ -55921,6 +56741,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -56179,7 +57006,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Developments files for kproperty. qt5-base-devel - kproperty + kproperty /usr/lib/cmake @@ -56188,6 +57015,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2022-01-10 3.2.0 @@ -56372,12 +57206,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A QtQuick plugin to render beautiful and interactive charts A QtQuick plugin to render beautiful and interactive charts - mirrors://kde/stable/release-service/21.12.1/src/kqtquickcharts-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kqtquickcharts-21.12.2.tar.xz extra-cmake-modules glibc-devel - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel desktop/kde/applications/kqtquickcharts/pspec.xml @@ -56385,8 +57219,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kqtquickcharts A QtQuick plugin to render beautiful and interactive charts - qt5-base - qt5-declarative + qt5-base + qt5-declarative libgcc @@ -56398,8 +57232,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kqtquickcharts-devel Development files for kqtquickcharts - kqtquickcharts - qt5-base-devel + kqtquickcharts + qt5-base-devel /usr/include @@ -56407,6 +57241,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -56662,9 +57503,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.Uzak masaüstü bağlantı istemcisi. KRDC is a client application that allows you to view or even control the desktop session on another machine that is running a compatible server. VNC and RDP is supported. krdc, uzaktaki bir masaüstü oturumunu görüntülemenizi ve kontrol etmenizi sağlar. RDP kullanan Windows Terminal Sunucuları'na ve VNC/RFB kullanan diğer pek çok platforma bağlanabilirç - mirrors://kde/stable/release-service/21.12.1/src/krdc-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/krdc-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kconfig-devel kcmutils-devel @@ -56699,7 +57540,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui kcmutils kservice - qt5-base + qt5-base kbookmarks kcompletion kcoreaddons @@ -56729,13 +57570,20 @@ It supports email, address books, calendars, tasks, news feeds and much more. krdc-devel - krdc + krdc /usr/include + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -57272,11 +58120,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.Masaüstü paylaşım araçları. KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed or controlled remotely by any VNC or RFB client krfb, masaüstünü uzaktaki bilgisayarlarla kolaylıkla paylaşmaya olanak sağlar. - mirrors://kde/stable/release-service/21.12.1/src/krfb-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/krfb-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-x11extras-devel + qt5-base-devel + qt5-x11extras-devel ki18n-devel kcompletion-devel kconfig-devel @@ -57314,12 +58162,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui libXtst kwayland - qt5-base + qt5-base kcompletion kcoreaddons kdbusaddons libvncserver - qt5-x11extras + qt5-x11extras kconfigwidgets knotifications kwindowsystem @@ -57346,6 +58194,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -57634,9 +58489,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.bindings Kross interpreter plugins for programming languages Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/release-service/21.12.1/src/kross-interpreters-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kross-interpreters-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kdoctools-devel kross-devel @@ -57652,7 +58507,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kross-interpreters - qt5-base + qt5-base libgcc python kross @@ -57664,6 +58519,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -57962,10 +58824,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KRuler is a screen ruler and color measurement tool. KRuler, bir ekran cetveli ve renk ölçüm aracıdır. kruler - mirrors://kde/stable/release-service/21.12.1/src/kruler-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kruler-21.12.2.tar.xz - qt5-base-devel - qt5-x11extras-devel + qt5-base-devel + qt5-x11extras-devel kdoctools-devel cmake extra-cmake-modules @@ -57981,7 +58843,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kruler - qt5-base + qt5-base kxmlgui knotifications ki18n @@ -58001,6 +58863,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -58289,10 +59158,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.games Shisen-Sho Mahjongg like tile game Shisen-Sho is a solitaire-like game played using the standard set of Mahjong tiles. Unlike Mahjong however, Shisen-Sho has only one layer of scrambled tiles. - mirrors://kde/stable/release-service/21.12.1/src/kshisen-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kshisen-21.12.2.tar.xz - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel extra-cmake-modules kdoctools-devel ki18n-devel @@ -58320,8 +59189,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. kshisen - qt5-base - qt5-declarative + qt5-base + qt5-declarative libgcc ki18n kconfig @@ -58341,6 +59210,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -58638,13 +59514,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.Bir SMTP sunucusu yoluyla e-posta göndermek için işe dayalı kütüphane Job-based library to send email through an SMTP server Job-based library to send email through an SMTP server - https://download.kde.org/stable/release-service/21.12.1/src/ksmtp-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/ksmtp-21.12.2.tar.xz qt5-base-devel - extra-cmake-modules - kcoreaddons-devel - ki18n-devel - kio-devel + extra-cmake-modules + kcoreaddons-devel + ki18n-devel + kio-devel kmime-devel cyrus-sasl-devel @@ -58659,7 +59535,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kcoreaddons cyrus-sasl - qt5-base + qt5-base /etc/xdg @@ -58673,7 +59549,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ksmtp-devel Development files for ksmtp - ksmtp + ksmtp /usr/include @@ -58682,6 +59558,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -58882,10 +59765,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KSquares is a fun and exciting game that modeled after the well known pen and paper based game of Dots and Boxes. KSquares sıkıcı derslerin kurtarıcısı, eğlenceli ve heyecanlı kare yapma oyununun KDE sürümüdür. ksquares - mirrors://kde/stable/release-service/21.12.1/src/ksquares-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ksquares-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcoreaddons-devel kconfig-devel kdbusaddons-devel @@ -58900,7 +59783,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kio-devel knotifyconfig-devel libkdegames-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -58916,7 +59799,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcompletion kcoreaddons kdbusaddons @@ -58931,6 +59814,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -59229,21 +60119,21 @@ It supports email, address books, calendars, tasks, news feeds and much more.KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes up to 100 million stars, 13,000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets and asteroids. KStars, dünyanın herhangi bir yerinin herhangi bir anındaki gökyüzü yıldız haritasını gösterebilen bir uygulamadır. 100 milyon kadar yıldız, 13000 derin gök cismi, 8 gezegenin tümü, Güneş, Ay ile birçok kuyruklu yıldız ve astreoidi içeren bir veritabanı vardır. kstars - https://download.kde.org/stable/kstars/kstars-3.5.6.tar.xz + https://download.kde.org/stable/kstars/kstars-3.5.7.tar.xz - qt5-base-devel - qt5-datavis3d-devel - qt5-multimedia-devel + qt5-base-devel + qt5-datavis3d-devel + qt5-multimedia-devel qt5-keychain-devel - qt5-svg-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - qt5-declarative-devel - qt5-location-devel - qt5-quickcontrols2-devel - qt5-websockets-devel + qt5-svg-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + qt5-declarative-devel + qt5-location-devel + qt5-quickcontrols2-devel + qt5-websockets-devel eigen3 xplanet kcrash-devel @@ -59283,10 +60173,10 @@ It supports email, address books, calendars, tasks, news feeds and much more. kstars - qt5-base - qt5-svg - qt5-declarative - qt5-websockets + qt5-base + qt5-svg + qt5-declarative + qt5-websockets qt5-keychain qt5-datavis3d libindi @@ -59327,6 +60217,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-01-10 + 3.5.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-01-10 3.5.6 @@ -59603,10 +60500,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.Çay yapma zamanlayıcısı. KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. Kteatime çay yapmak için kullanışlı bir uygulamadır. Kteatime ile çay demlemek için ne kadar beklemek gerektiğini düşünmenize gerek kalmaz. - mirrors://kde/stable/release-service/21.12.1/src/kteatime-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kteatime-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kconfig-devel kcrash-devel kdoctools-devel @@ -59627,7 +60524,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-base + qt5-base kcoreaddons kiconthemes ktextwidgets @@ -59648,6 +60545,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -59939,9 +60843,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. ktimer - mirrors://kde/stable/release-service/21.12.1/src/ktimer-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktimer-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel cmake extra-cmake-modules @@ -59958,7 +60862,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. ktimer - qt5-base + qt5-base kio ki18n libgcc @@ -59976,6 +60880,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -60265,9 +61176,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications API for handling TNEF data The API permits access to the actual attachments, the message properties (TNEF/MAPI), and allows one to view/extract message formatted text in Rich Text Format format. - mirrors://kde/stable/release-service/21.12.1/src/ktnef-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktnef-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel extra-cmake-modules kdesignerplugin @@ -60284,7 +61195,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. ktnef - qt5-base + qt5-base kcalutils ki18n libgcc @@ -60303,8 +61214,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.ktnef-devel Development files for ktnef - qt5-base-devel - ktnef + qt5-base-devel + ktnef /etc/xdg @@ -60314,6 +61225,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -60609,11 +61527,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KCM Module for configuring Telepathy Instant Messaging Accounts KCM Module for configuring Telepathy Instant Messaging Accounts - mirrors://kde/stable/release-service/21.12.1/src/ktp-accounts-kcm-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-accounts-kcm-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-imageformats + qt5-base-devel + qt5-imageformats kcmutils-devel kio-devel ki18n-devel @@ -60646,7 +61564,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc signon kcodecs - qt5-base + qt5-base kcoreaddons telepathy-qt5 libaccounts-qt5 @@ -60665,6 +61583,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -60939,10 +61864,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network KDE Channel Approver for Telepathy KDE Channel Approver for Telepathy - mirrors://kde/stable/release-service/21.12.1/src/ktp-approver-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-approver-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kdbusaddons-devel kconfig-devel ki18n-devel @@ -60959,7 +61884,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kservice - qt5-base + qt5-base kcoreaddons kdbusaddons telepathy-qt5 @@ -60976,6 +61901,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -61264,10 +62196,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - mirrors://kde/stable/release-service/21.12.1/src/ktp-auth-handler-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-auth-handler-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kwallet-devel kwidgetsaddons-devel ki18n-devel @@ -61294,7 +62226,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.signon kconfig qca2-qt5 - qt5-base + qt5-base kcoreaddons telepathy-qt5 kwidgetsaddons @@ -61311,6 +62243,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -61599,11 +62538,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network Common components for KDE-Telepathy Common components for KDE-Telepathy - mirrors://kde/stable/release-service/21.12.1/src/ktp-common-internals-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-common-internals-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kcoreaddons-devel knotifications-devel kio-devel @@ -61624,10 +62563,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.libaccounts-glib-devel libgcrypt-devel sqlite-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite telepathy-mission-control-devel libotr-devel @@ -61648,7 +62587,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui kcmutils kservice - qt5-base + qt5-base libgcrypt kcoreaddons kiconthemes @@ -61659,7 +62598,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.knotifications kwidgetsaddons libaccounts-qt5 - qt5-declarative + qt5-declarative telepathy-logger-qt kaccounts-integration @@ -61688,7 +62627,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ktp-common-internals-devel Development files for ktp-common-internals - ktp-common-internals + ktp-common-internals libotr-devel @@ -61702,6 +62641,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -61990,10 +62936,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network KDE Telepathy contact list application KDE Telepathy contact list application - mirrors://kde/stable/release-service/21.12.1/src/ktp-contact-list-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-contact-list-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kdbusaddons-devel kio-devel kwallet-devel @@ -62022,7 +62968,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kpeople kxmlgui kservice - qt5-base + qt5-base kcompletion kcoreaddons kdbusaddons @@ -62043,6 +62989,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -62268,10 +63221,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network KRunner plugin for KDE Telepathy KRunner plugin for KDE Telepathy - mirrors://kde/stable/release-service/21.12.1/src/ktp-contact-runner-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-contact-runner-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel ki18n-devel kwallet-devel kservice-devel @@ -62290,7 +63243,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwallet libgcc krunner - qt5-base + qt5-base kcoreaddons telepathy-qt5 ktp-common-internals @@ -62303,6 +63256,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -62591,11 +63551,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network The KDE-Telepathy Plasma desktop applets The KDE-Telepathy Plasma desktop applets - mirrors://kde/stable/release-service/21.12.1/src/ktp-desktop-applets-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-desktop-applets-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kwindowsystem-devel plasma-framework-devel @@ -62606,9 +63566,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.The KDE-Telepathy Plasma desktop applets libgcc - qt5-base + qt5-base kwindowsystem - qt5-declarative + qt5-declarative /usr/lib @@ -62619,6 +63579,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -62907,7 +63874,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network KDE Telepathy file transfer handler KDE Telepathy file transfer handler - mirrors://kde/stable/release-service/21.12.1/src/ktp-filetransfer-handler-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-filetransfer-handler-21.12.2.tar.xz extra-cmake-modules kcoreaddons-devel @@ -62930,7 +63897,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwallet libgcc kconfig - qt5-base + qt5-base kcoreaddons telepathy-qt5 ktp-common-internals @@ -62944,6 +63911,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -63232,14 +64206,14 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - mirrors://kde/stable/release-service/21.12.1/src/ktp-kded-module-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-kded-module-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite kdbusaddons-devel kwidgetsaddons-devel kwallet-devel @@ -63265,7 +64239,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n libgcc kconfig - qt5-base + qt5-base kidletime kcoreaddons kdbusaddons @@ -63285,6 +64259,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -63573,10 +64554,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network A File manager plugin to launch a file transfer job with a specified contact A File manager plugin to launch a file transfer job with a specified contact - mirrors://kde/stable/release-service/21.12.1/src/ktp-send-file-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-send-file-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kcmutils-devel kio-devel kwallet-devel @@ -63596,7 +64577,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n kwallet libgcc - qt5-base + qt5-base kcoreaddons kiconthemes telepathy-qt5 @@ -63611,6 +64592,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -63899,7 +64887,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network Telepathy handler for Text Chats Telepathy handler for Text Chats - mirrors://kde/stable/release-service/21.12.1/src/ktp-text-ui-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktp-text-ui-21.12.2.tar.xz extra-cmake-modules karchive-devel @@ -63981,6 +64969,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -64269,13 +65264,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.games A simple constructor game suitable for children and adults alike KTuberling a simple constructor game suitable for children and adults alike. The idea of the game is based around a once popular doll making concept. - mirrors://kde/stable/release-service/21.12.1/src/ktuberling-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/ktuberling-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - qt5-multimedia-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + qt5-multimedia-devel kcoreaddons-devel kconfig-devel kitemmodels-devel @@ -64309,9 +65304,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kxmlgui - qt5-svg - qt5-base - qt5-multimedia + qt5-svg + qt5-base + qt5-multimedia qt5-phonon kcompletion kcoreaddons @@ -64334,6 +65329,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -64625,10 +65627,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.KTurtle is an educational programming environment that aims to make learning how to program as easily as possible. To achieve this KTurtle makes all programming tools available from the user interface. The programming language used is TurtleScript which allows its commands to be translated. KTurtle, programlama öğrenmeyi olabildiğince kolaylaştırmak için tasarlanmış bir programlama uygulamasıdır. Bu amaçla tasarlanan arayüz tüm gerekli araçları kullanıcıya sunar. Ayrıca kullanılan programlama dili olan TurtleScript başka dillere çevrilebilen bir yapıya sahiptir. kturtle - mirrors://kde/stable/release-service/21.12.1/src/kturtle-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kturtle-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel kdoctools-devel knewstuff-devel extra-cmake-modules @@ -64651,8 +65653,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. kturtle - qt5-base - qt5-svg + qt5-base + qt5-svg ki18n knewstuff libgcc @@ -64671,6 +65673,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -64967,9 +65976,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.A wallet management tool KWalletManager is a tool to manage the passwords on your system. By using the KDE wallet subsystem it not only allows you to keep your own secrets but also to access and manage the passwords of every application that integrates with the wallet. kwallet - mirrors://kde/stable/release-service/21.12.1/src/kwalletmanager-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/kwalletmanager-21.12.2.tar.xz - qt5-base + qt5-base kdoctools-devel cmake extra-cmake-modules @@ -64999,7 +66008,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. kwalletmanager - qt5-base + qt5-base kcmutils kauth ki18n @@ -65036,6 +66045,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -65330,7 +66346,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A sound editor for KDE With Kwave you can record, play back, import and edit many sorts of audio files including multi channel files.Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability. - http://download.kde.org/stable/release-service/21.12.1/src/kwave-21.12.1.tar.xz + http://download.kde.org/stable/release-service/21.12.2/src/kwave-21.12.2.tar.xz doxygen extra-cmake-modules @@ -65400,6 +66416,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -65639,9 +66662,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE PIM library providing Gravatar support KDE PIM library providing Gravatar support - mirrors://kde/stable/release-service/21.12.1/src/libgravatar-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libgravatar-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel ki18n-devel kconfig-devel @@ -65668,7 +66691,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.extra-cmake-modules akonadi-calendar-devel akonadi-search-devel - qt5-webkit-devel + qt5-webkit-devel grantlee-qt5-devel kdoctools-devel knewstuff-devel @@ -65683,7 +66706,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libgravatar - qt5-base + qt5-base kxmlgui ki18n libgcc @@ -65707,8 +66730,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgravatar-devel Development files for libgravatar - libgravatar - qt5-base-devel + libgravatar + qt5-base-devel kxmlgui-devel ki18n-devel kconfig-devel @@ -65721,6 +66744,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -66011,7 +67041,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.CDDB için KDE kitaplığı (Compact Disc Database) KDE library for CDDB (Compact Disc Database). CDDB için KDE kitaplığı (Compact Disc Database). - mirrors://kde/stable/release-service/21.12.1/src/libkcddb-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkcddb-21.12.2.tar.xz extra-cmake-modules musicbrainz5-devel @@ -66020,7 +67050,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kcodecs-devel ki18n-devel kio-devel - qt5-base-devel + qt5-base-devel kwidgetsaddons-devel desktop/kde/applications/libkcddb/pspec.xml @@ -66033,7 +67063,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kcodecs kconfig - qt5-base + qt5-base kcoreaddons musicbrainz5 kconfigwidgets @@ -66049,6 +67079,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -66318,7 +67355,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A library for interfacing with CDs A library for interfacing with CDs - mirrors://kde/stable/release-service/21.12.1/src/libkcompactdisc-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkcompactdisc-21.12.2.tar.xz alsa-lib-devel extra-cmake-modules @@ -66326,7 +67363,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.glibc-devel kcoreaddons-devel ki18n-devel - qt5-base-devel + qt5-base-devel solid-devel kdesignerplugin kdoctools-devel @@ -66345,7 +67382,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.alsa-lib kcoreaddons ki18n - qt5-base + qt5-base libgcc qt5-phonon solid @@ -66361,8 +67398,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkcompactdisc-devel Development files for libkcompactdisc - libkcompactdisc - qt5-base-devel + libkcompactdisc + qt5-base-devel /usr/include @@ -66370,6 +67407,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -66639,9 +67683,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.LibRaw kitaplığı için C++ arayüzü libkdcraw is a C++ interface around LibRaw library used to decode RAW picture files. libkdcraw, RAW resim dosyalarını çözmek için kullanılan LibRaW kitaplığının C++ arayüzüdür. - mirrors://kde/stable/release-service/21.12.1/src/libkdcraw-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkdcraw-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel libraw-devel kconfig-devel @@ -66655,7 +67699,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkdcraw - qt5-base + qt5-base libraw kconfig ki18n @@ -66673,8 +67717,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for libkdcraw libkdcraw için geliştirme dosyaları - libkdcraw - qt5-base-devel + libkdcraw + qt5-base-devel libraw-devel kconfig-devel ki18n-devel @@ -66686,6 +67730,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-02-05 21.12.1 @@ -66981,9 +68032,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.games Common code and data for many KDE games Common code and data for many KDE games - mirrors://kde/stable/release-service/21.12.1/src/libkdegames-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkdegames-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel kdnssd-devel openal-devel @@ -66997,7 +68048,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig-devel kxmlgui-devel - qt5-svg-devel + qt5-svg-devel karchive-devel kguiaddons-devel libsndfile-devel @@ -67006,7 +68057,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kiconthemes-devel kconfigwidgets-devel kwidgetsaddons-devel - qt5-declarative-devel + qt5-declarative-devel kdesignerplugin mesa-devel kemoticons-devel @@ -67021,7 +68072,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkdegames - qt5-base + qt5-base kdnssd kdeclarative knewstuff @@ -67031,7 +68082,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.openal kconfig kxmlgui - qt5-svg + qt5-svg karchive kguiaddons libsndfile @@ -67042,7 +68093,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ktextwidgets kconfigwidgets kwidgetsaddons - qt5-declarative + qt5-declarative /etc/xdg @@ -67057,7 +68108,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkdegames-devel Shared libraries for KDE games. - libkdegames + libkdegames /usr/include @@ -67066,6 +68117,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -67361,10 +68419,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Libraries for KDE PIM applications Libraries for KDE PIM applications - mirrors://kde/stable/release-service/21.12.1/src/libkdepim-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkdepim-21.12.2.tar.xz - qt5-base-devel - qt5-designer-devel + qt5-base-devel + qt5-designer-devel kdoctools-devel ki18n-devel kconfig-devel @@ -67408,8 +68466,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig kwallet kcmutils - qt5-base - qt5-designer + qt5-base + qt5-designer kcontacts kitemviews kcompletion @@ -67434,9 +68492,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkdepim-devel Development files for libkdepim - libkdepim - qt5-base-devel - qt5-designer-devel + libkdepim + qt5-base-devel + qt5-designer-devel kxmlgui-devel ki18n-devel kconfig-devel @@ -67449,6 +68507,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -67744,9 +68809,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Common libraries for KDE Edu applications Libraries for KDE EDU applications. - mirrors://kde/stable/release-service/21.12.1/src/libkeduvocdocument-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkeduvocdocument-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules ki18n-devel kio-devel @@ -67758,7 +68823,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkeduvocdocument - qt5-base + qt5-base karchive libgcc ki18n @@ -67775,7 +68840,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkeduvocdocument-devel Development files for libkeduvocdocument - libkeduvocdocument + libkeduvocdocument /usr/include @@ -67784,6 +68849,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -68074,19 +69146,19 @@ It supports email, address books, calendars, tasks, news feeds and much more.Exiv2 sarmalayıcı kitaplığı libkexiv2 is a wrapper around Exiv2 library to manipulate pictures metadata as EXIF/IPTC and XMP. libkexiv2, EXIF/IPTC ve XMP gibi resim meta bilgilerini düzenlemek için kullanılan Exiv2 kitaplığını sarmalayan bir kitaplıktır. - mirrors://kde/stable/release-service/21.12.1/src/libkexiv2-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkexiv2-21.12.2.tar.xz extra-cmake-modules cmake exiv2-devel - qt5-base-devel + qt5-base-devel desktop/kde/applications/libkexiv2/pspec.xml libkexiv2 - qt5-base + qt5-base exiv2-libs libgcc @@ -68101,7 +69173,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for libkexiv2 libkexiv2 için geliştirme dosyaları - libkexiv2 + libkexiv2 /usr/include @@ -68109,6 +69181,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -68398,7 +69477,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Google API library for KDE A KDE-based library for accessing various Google services via their public API - https://download.kde.org/stable/release-service/21.12.1/src/libkgapi-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/libkgapi-21.12.2.tar.xz qt5-base-devel kcoreaddons-devel @@ -68455,7 +69534,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kcontacts-devel kio-devel kwindowsystem-devel - libkgapi + libkgapi /usr/include @@ -68464,6 +69543,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -68736,9 +69822,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.mirrors://kde/stable/release-service/20.08.3/src/libkgeomap-20.08.3.tar.xz extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - qt5-webengine-devel + qt5-base-devel + qt5-webkit-devel + qt5-webengine-devel ki18n-devel kconfig-devel kio-devel @@ -68756,8 +69842,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc marble kconfig - qt5-base - qt5-webkit + qt5-base + qt5-webkit kcoreaddons @@ -69055,9 +70141,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.KDE resim uygulamaları için ortak eklenti yapısı Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure (for Digikam, Gwenview, etc.). Its aim is to share image plugins among graphic applications. Kipi, ortak bir eklenti yapısı ortaya koymak için gerekli bir kitaplıktır. - mirrors://kde/stable/release-service/21.12.1/src/libkipi-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkipi-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel kdoctools-devel ki18n-devel kconfig-devel @@ -69071,7 +70157,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkipi - qt5-base + qt5-base kxmlgui ki18n libgcc @@ -69091,8 +70177,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for libkipi libkipi için geliştirme dosyaları - libkipi - qt5-base-devel + libkipi + qt5-base-devel kxmlgui-devel ki18n-devel kconfig-devel @@ -69105,6 +70191,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -69393,15 +70486,15 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE PIM cryptographic library KDE PIM cryptographic library - mirrors://kde/stable/release-service/21.12.1/src/libkleo-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkleo-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel boost-devel gpgme-qt5-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql prison-devel kmbox-devel qt5-phonon-devel @@ -69433,7 +70526,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkleo - qt5-base + qt5-base kio ki18n libgcc @@ -69493,11 +70586,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development package for libkleo libraries Contains development tools and header files for libkleo - qt5-base-devel + qt5-base-devel boost-devel gpgme-devel gpgme-qt5-devel - libkleo + libkleo /usr/lib/cmake @@ -69507,6 +70600,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -69802,10 +70902,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.games Common code, backgrounds and tile sets for games using Mahjongg tiles Common code, backgrounds and tile sets for games using Mahjongg tiles. - mirrors://kde/stable/release-service/21.12.1/src/libkmahjongg-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkmahjongg-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel + qt5-base-devel + qt5-svg-devel extra-cmake-modules gettext-devel kdoctools-devel @@ -69822,8 +70922,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkmahjongg - qt5-base - qt5-svg + qt5-base + qt5-svg libgcc ki18n kconfig @@ -69843,7 +70943,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkmahjongg-devel Development files for libkmahjongg - libkmahjongg + libkmahjongg /usr/include @@ -69852,6 +70952,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -70140,9 +71247,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.sdk Library to compare files and strings Library to compare files and strings - mirrors://kde/stable/release-service/21.12.1/src/libkomparediff2-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libkomparediff2-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules python3-devel gettext-devel @@ -70159,7 +71266,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libkomparediff2 - qt5-base + qt5-base kio ki18n libgcc @@ -70180,7 +71287,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libkomparediff2-devel Shared libraries for libkomparediff2. - libkomparediff2 + libkomparediff2 /usr/include @@ -70189,6 +71296,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -70479,11 +71593,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.KDE için SANE kitaplık arayüzü libksane is a SANE library interface for KDE. libksane, KDE için bir SANE kitaplık arayüzüdür. - mirrors://kde/stable/release-service/21.12.1/src/libksane-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libksane-21.12.2.tar.xz ki18n-devel kwallet-devel - qt5-base-devel + qt5-base-devel ktextwidgets-devel sane-backends-devel kwidgetsaddons-devel @@ -70497,7 +71611,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n kwallet libgcc - qt5-base + qt5-base ktextwidgets sane-backends kwidgetsaddons @@ -70513,7 +71627,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for libksane libksane için geliştirme dosyaları - libksane + libksane /usr/lib/cmake @@ -70522,6 +71636,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -70810,10 +71931,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE PIM library for managing sieves. KDE PIM library for managing sieves. - mirrors://kde/stable/release-service/21.12.1/src/libksieve-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/libksieve-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel akonadi-devel kcompletion-devel kjobwidgets-devel @@ -70838,7 +71959,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kidentitymanagement-devel kmailtransport-devel libkdepim-devel - qt5-webengine-devel + qt5-webengine-devel akonadi-contacts-devel akonadi-mime-devel kiconthemes-devel @@ -70859,7 +71980,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.akonadi kconfig karchive - qt5-base + qt5-base knewstuff libkdepim pimcommon @@ -70874,7 +71995,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwidgetsaddons kidentitymanagement syntax-highlighting - qt5-webengine + qt5-webengine /etc @@ -70891,7 +72012,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libksieve-devel Development files for libksieve. - libksieve + libksieve /usr/include @@ -70899,6 +72020,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -71586,7 +72714,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE PIM library providing support for mail applications KDE PIM library providing support for mail applications - mirrors://kde/stable/release-service/21.12.1/src/mailcommon-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/mailcommon-21.12.2.tar.xz qt5-base-devel qt5-phonon-devel @@ -71682,7 +72810,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.mailcommon-devel Development files for mailcommon - mailcommon + mailcommon /usr/include @@ -71691,6 +72819,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -71966,7 +73101,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Mail importer library Mail importer library - mirrors://kde/stable/release-service/21.12.1/src/mailimporter-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/mailimporter-21.12.2.tar.xz qt5-base-devel kdoctools-devel @@ -72032,7 +73167,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.mailimporter-devel Development files for mailimporter - mailimporter + mailimporter karchive-devel @@ -72042,6 +73177,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -72326,22 +73468,22 @@ It supports email, address books, calendars, tasks, news feeds and much more.Marble is a virtual globe and world atlas that you can use to learn more about the Earth. Marble, sanal küre ve Dünya atlası uygulamasıdır. marble - mirrors://kde/stable/release-service/21.12.1/src/marble-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/marble-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - qt5-designer-devel - qt5-script-devel - qt5-svg-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - qt5-location-devel - qt5-linguist - qt5-webengine-devel + qt5-base-devel + qt5-webkit-devel + qt5-designer-devel + qt5-script-devel + qt5-svg-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + qt5-location-devel + qt5-linguist + qt5-webengine-devel kdoctools-devel qt5-phonon-devel kio-devel @@ -72373,19 +73515,19 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig krunner kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base knewstuff libwlocate qt5-phonon - qt5-script - qt5-webkit + qt5-script + qt5-webkit kcoreaddons - qt5-location + qt5-location kconfigwidgets kwidgetsaddons - qt5-declarative - qt5-serialport + qt5-declarative + qt5-serialport /usr/lib @@ -72407,13 +73549,20 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for marble marble için geliştirme dosyaları - marble + marble /usr/include + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -72696,18 +73845,18 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications KDE PIM library providing support for mail applications KDE PIM library providing support for mail applications - mirrors://kde/stable/release-service/21.12.1/src/messagelib-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/messagelib-21.12.2.tar.xz qt5-base-devel extra-cmake-modules boost-devel kdoctools-devel - mailimporter-devel - libgravatar-devel - kidentitymanagement-devel - kmailtransport-devel - kmbox-devel - akonadi-devel + mailimporter-devel + libgravatar-devel + kidentitymanagement-devel + kmailtransport-devel + kmbox-devel + akonadi-devel solid-devel kguiaddons-devel kitemmodels-devel @@ -72715,29 +73864,29 @@ It supports email, address books, calendars, tasks, news feeds and much more.kemoticons-devel kinit-devel kunitconversion-devel - kmime-devel + kmime-devel kcontacts-devel kcalendarcore-devel kdewebkit-devel - akonadi-calendar-devel - akonadi-search-devel + akonadi-calendar-devel + akonadi-search-devel syntax-highlighting-devel - kpimtextedit-devel - kimap-devel - kldap-devel - grantleetheme-devel - pimcommon-devel - libkleo-devel - libkdepim-devel + kpimtextedit-devel + kimap-devel + kldap-devel + grantleetheme-devel + pimcommon-devel + libkleo-devel + libkdepim-devel gpgme-devel gpgme-qt5-devel grantlee-qt5-devel qt5-declarative-devel qt5-webengine-devel qca2-qt5-devel - akonadi-notes-devel - akonadi-mime-devel - akonadi-contacts-devel + akonadi-notes-devel + akonadi-mime-devel + akonadi-contacts-devel openldap-client cyrus-sasl-devel karchive-devel @@ -72826,7 +73975,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.messagelib-devel Development files for messagelib - messagelib + messagelib /usr/include @@ -72835,6 +73984,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -73109,13 +74265,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A KDE Software for Music Education Music education Free Software, thoughtfully designed to push your musical skills to the next level. Enhance your ability to recognize intervals, chords, rhythm, and scales while enjoying all the power of Free Software. - https://download.kde.org/stable/release-service/21.12.1/src/minuet-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/minuet-21.12.2.tar.xz extra-cmake-modules qt5-svg-devel - qt5-base-devel - qt5-quickcontrols2-devel - qt5-declarative-devel + qt5-base-devel + qt5-quickcontrols2-devel + qt5-declarative-devel ki18n-devel kxmlgui-devel kio-devel @@ -73138,7 +74294,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig kxmlgui alsa-lib - qt5-base + qt5-base kcompletion kcoreaddons drumstick-libs @@ -73146,7 +74302,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwidgetsaddons fluidsynth qt5-svg - qt5-declarative + qt5-declarative /usr/bin @@ -73164,8 +74320,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.minuet-devel Development files for minuet - qt5-base-devel - minuet + qt5-base-devel + minuet /usr/include @@ -73174,6 +74330,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -73436,13 +74599,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.Onaltılık dosya editörü. Okteta is a simple editor for the raw data of files. This type of program is also called hexadecimal editor or binary editor. Çalıştırılabilir dosyaları düzenlemeye yarayan editör. - https://download.kde.org/stable/okteta/0.26.6/src/okteta-0.26.6.tar.xz + https://download.kde.org/stable/okteta/0.26.7/src/okteta-0.26.7.tar.xz extra-cmake-modules - qt5-base-devel - qt5-designer-devel - qt5-script-devel - qt5-declarative-devel + qt5-base-devel + qt5-designer-devel + qt5-script-devel + qt5-declarative-devel kbookmarks-devel kcodecs-devel kcompletion-devel @@ -73461,7 +74624,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui-devel qca2-qt5-devel attica-devel - qt5-xmlpatterns-devel + qt5-xmlpatterns-devel desktop/kde/applications/okteta/pspec.xml @@ -73478,10 +74641,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.kcmutils kservice qca2-qt5 - qt5-base + qt5-base knewstuff - qt5-script - qt5-declarative + qt5-script + qt5-declarative kcompletion kcoreaddons kdbusaddons @@ -73514,7 +74677,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.okteta-devel Development files for okteta - okteta + okteta /usr/include @@ -73523,6 +74686,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-01-10 + 0.26.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-01-10 0.26.6 @@ -73807,10 +74977,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.Okular is a document viewer. Okular bir belge göstericidir. okular - mirrors://kde/stable/release-service/21.12.1/src/okular-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/okular-21.12.2.tar.xz - qt5-base-devel - qt5-declarative-devel + qt5-base-devel + qt5-declarative-devel kjs-devel qca2-qt5-devel tiff-devel @@ -73851,7 +75021,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.okular app:gui - qt5-base + qt5-base qca2-qt5 tiff kcrash @@ -73875,7 +75045,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig kwallet kxmlgui - qt5-svg + qt5-svg freetype karchive kservice @@ -73889,7 +75059,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwindowsystem kconfigwidgets kwidgetsaddons - qt5-declarative + qt5-declarative djvu libspectre qt5-phonon @@ -73913,7 +75083,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development files for okular Okular için geliştirme dosyaları - okular + okular /usr/include @@ -73921,6 +75091,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -74198,12 +75375,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.Parley is a program to help you memorize things. Parley supports many language specific features but can be used for other learning tasks just as well. It uses the spaced repetition learning method, also known as flash cards. Creating new vocabulary collections with Parley is easy, but of course it is even better if you can use some of our premade files. Have a look at the KDE-Files.org page or use the "Download New Collections" feature directly in Parley. Parley ile yeni öğrendiğiniz şeyleri belli zaman aralıklarıyla tekrar ederek uzun zamanlı hafızanızda yer etmelerini sağlayabilirsiniz. Parley, flaş kart denilen tekniği kullanır. Dil öğrenimi için özelleşmiş yetenekleri olmasına karşın diğer konularda da kullanıma uygundur. Kartları hazırlamak epey kolay olmakla beraber kde-files.org adresinden ulaşabileceğiniz hazır kart setlerini de kullanabilirsiniz. parley - mirrors://kde/stable/release-service/21.12.1/src/parley-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/parley-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel - qt5-multimedia-devel - qt5-webengine-devel + qt5-base-devel + qt5-svg-devel + qt5-multimedia-devel + qt5-webengine-devel libxslt-devel libXrender-devel libxml2-devel @@ -74236,10 +75413,10 @@ It supports email, address books, calendars, tasks, news feeds and much more. parley - qt5-base - qt5-svg - qt5-multimedia - qt5-webengine + qt5-base + qt5-svg + qt5-multimedia + qt5-webengine libxslt libXrender libxml2 @@ -74273,6 +75450,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -74563,9 +75747,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.KDE Disk Bölümü Yöneticisi It allows you to easily create, copy, move, delete, resize without losing data, backup and restore partitions.. KDE Disk Bölümü Yöneticisi, disklerinizi, bölümlerinizi ve dosya sistemlerinizi yönetmenize izin verir. Birçok dosya sistemini (ext2/3/4, reiserfs, NTFS, FAT32 ve daha fazlası) desteklemenin yanı sıra, yeni bölüm oluşturabilir ya da var olan bir bölüm üzerinde boyutlandırma, kopyalama, taşıma, yedekleme ve geri yükleme işlemlerini yapabilir. - mirrors://kde/stable/release-service/21.12.1/src/partitionmanager-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/partitionmanager-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel libatasmart-devel extra-cmake-modules parted-devel @@ -74581,7 +75765,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfigwidgets-devel kwidgetsaddons-devel kdoctools-devel - kpmcore-devel + kpmcore-devel e2fsprogs-devel kdbusaddons-devel @@ -74590,7 +75774,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. partitionmanager - qt5-base + qt5-base libgcc libutil-linux kio @@ -74617,6 +75801,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -74858,12 +76049,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.Resim çizme bulmacası Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. Picmi, tablonun kenarında verilen sayılar kadar tabla üzerinde nokta koyarak bir resim tamamlama bulmacasıdır. - https://download.kde.org/stable/release-service/21.12.1/src/picmi-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/picmi-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel kdoctools-devel kcoreaddons-devel kdbusaddons-devel @@ -74888,8 +76079,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.ki18n libgcc kxmlgui - qt5-svg - qt5-base + qt5-svg + qt5-base kcoreaddons kdbusaddons libkdegames @@ -74903,6 +76094,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -75190,7 +76388,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Import and export KDE PIM settings Import and export KDE PIM settings - https://download.kde.org/stable/release-service/21.12.1/src/pim-data-exporter-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/pim-data-exporter-21.12.2.tar.xz extra-cmake-modules kcrash-devel @@ -75274,6 +76472,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -75512,7 +76717,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Mail sieve editor Mail sieve editor - https://download.kde.org/stable/release-service/21.12.1/src/pim-sieve-editor-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/pim-sieve-editor-21.12.2.tar.xz extra-cmake-modules kbookmarks-devel @@ -75572,6 +76777,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -75949,15 +77161,15 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications Common libraries for KDE PIM Common libraries for KDE PIM - mirrors://kde/stable/release-service/21.12.1/src/pimcommon-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/pimcommon-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel boost-devel gpgme-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql prison-devel kmbox-devel qt5-phonon-devel @@ -75986,8 +77198,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.akonadi-contacts-devel akonadi-search-devel akonadi-mime-devel - qt5-webkit-devel - qt5-webengine-devel + qt5-webkit-devel + qt5-webengine-devel grantlee-qt5-devel kdoctools-devel knewstuff-devel @@ -76000,7 +77212,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. pimcommon - qt5-base + qt5-base kio ki18n libgcc @@ -76011,7 +77223,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwallet karchive kjobwidgets - qt5-webengine + qt5-webengine kcalendarcore kcontacts kconfig @@ -76063,9 +77275,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.Development package for pimcommon libraries Contains development tools and header files for kdepim-common - qt5-base-devel + qt5-base-devel boost-devel - pimcommon + pimcommon /usr/lib/cmake @@ -76075,6 +77287,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -76372,10 +77591,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.DocBook XML dosyalarını çevirme araçları. This is a collection of tools that facilitate translating DocBook XML files using Gettext message files (PO files). poxml, DocBook XML dosyalarını (.po) Gettext yarımıyla çevirmeyi sağlayan bir programdır. - https://download.kde.org/stable/release-service/21.12.1/src/poxml-21.12.1.tar.xz + https://download.kde.org/stable/release-service/21.12.2/src/poxml-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel gettext-devel kdoctools-devel docbook-xsl @@ -76387,7 +77606,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. libgcc gettext - qt5-base + qt5-base /usr/bin @@ -76402,6 +77621,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -76684,7 +77910,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.KDE print manager KDE print tool. print-manager - mirrors://kde/stable/release-service/21.12.1/src/print-manager-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/print-manager-21.12.2.tar.xz kdoctools-devel extra-cmake-modules @@ -76694,7 +77920,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig-devel kservice-devel - qt5-base-devel + qt5-base-devel kdbusaddons-devel kiconthemes-devel kcoreaddons-devel @@ -76702,7 +77928,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.knotifications-devel kconfigwidgets-devel kwidgetsaddons-devel - qt5-declarative-devel + qt5-declarative-devel kcmutils-devel plasma-framework-devel @@ -76717,7 +77943,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc kconfig kservice - qt5-base + qt5-base kdbusaddons kiconthemes kcoreaddons @@ -76725,7 +77951,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.knotifications kconfigwidgets kwidgetsaddons - qt5-declarative + qt5-declarative system-config-printer @@ -76736,6 +77962,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -77024,14 +78257,14 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.edu Rocs Graph Theory Rocs aims to be a Graph Theory IDE for helping professors to show the results of a graph algorithm and also helping students to do the algorithms. Rocs has a scripting module, done in Qt Script, that interacts with the drawn graph and every change in the graph with the script is reflected on the drawn one.. - mirrors://kde/stable/release-service/21.12.1/src/rocs-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/rocs-21.12.2.tar.xz - qt5-base-devel - qt5-declarative-devel - qt5-webkit-devel - qt5-base-devel - qt5-xmlpatterns-devel - qt5-script-devel + qt5-base-devel + qt5-declarative-devel + qt5-webkit-devel + qt5-base-devel + qt5-xmlpatterns-devel + qt5-script-devel extra-cmake-modules kdoctools-devel kdeclarative-devel @@ -77047,7 +78280,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfigwidgets-devel kwidgetsaddons-devel cmake - qt5-location-devel + qt5-location-devel grantlee-qt5-devel boost-devel qt5-svg-devel @@ -77057,11 +78290,11 @@ It supports email, address books, calendars, tasks, news feeds and much more. rocs - qt5-base - qt5-script - qt5-declarative - qt5-xmlpatterns - qt5-webkit + qt5-base + qt5-script + qt5-declarative + qt5-xmlpatterns + qt5-webkit qt5-svg grantlee-qt5 kdeclarative @@ -77091,7 +78324,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.rocs-devel Development files for rocs - rocs + rocs /usr/include @@ -77099,6 +78332,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -77380,10 +78620,10 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.network KWallet signon extension KWallet signon extension - mirrors://kde/stable/release-service/21.12.1/src/signon-kwallet-extension-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/signon-kwallet-extension-21.12.2.tar.xz extra-cmake-modules - qt5-base-devel + qt5-base-devel kwallet-devel signon-devel @@ -77396,7 +78636,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libgcc signon kwallet - qt5-base + qt5-base /usr/lib/signon @@ -77404,6 +78644,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -77694,17 +78941,17 @@ It supports email, address books, calendars, tasks, news feeds and much more.Ekran görüntüsü yakalama aracı Spectacle, a new screenshot application that aims to replace KSnapshot.. spectacle bir ekran görüntüsü yakalama aracıdır. - mirrors://kde/stable/release-service/21.12.1/src/spectacle-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/spectacle-21.12.2.tar.xz - qt5-base-devel + qt5-base-devel extra-cmake-modules kdoctools-devel libkipi-devel - qt5-script-devel + qt5-script-devel libxcb-devel libkscreen-devel xcb-util-devel - qt5-x11extras-devel + qt5-x11extras-devel xcb-util-image-devel xcb-util-cursor-devel kxmlgui-devel @@ -77719,7 +78966,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwayland-devel knotifications-devel kglobalaccel-devel - qt5-declarative-devel + qt5-declarative-devel qt5-svg-devel desktop/kde/applications/spectacle/pspec.xml @@ -77727,7 +78974,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. spectacle - qt5-base + qt5-base kio libkscreen purpose @@ -77749,9 +78996,9 @@ It supports email, address books, calendars, tasks, news feeds and much more.libxcb xcb-util kwayland - qt5-x11extras + qt5-x11extras xcb-util-image - qt5-declarative + qt5-declarative qt5-svg kglobalaccel @@ -77770,6 +79017,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -78058,11 +79312,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.edu Interactive Physical Simulator Step is an interactive physical simulator. It allows you to explore the physical world through simulations. - mirrors://kde/stable/release-service/21.12.1/src/step-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/step-21.12.2.tar.xz - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel extra-cmake-modules kdoctools-devel kdelibs4-support-devel @@ -78088,7 +79342,7 @@ It supports email, address books, calendars, tasks, news feeds and much more. step - qt5-base + qt5-base cln gsl khtml @@ -78118,6 +79372,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -78422,12 +79683,12 @@ It supports email, address books, calendars, tasks, news feeds and much more.UML modelleme aracı ve kod üreticisi. Umbrello UML Modeller is a Unified Modelling Language diagram editor for KDE. umbrello UML (Unified Modellin Language) modelleme ve diyagram editörüdür. - mirrors://kde/stable/release-service/21.12.1/src/umbrello-21.12.1.tar.xz + mirrors://kde/stable/release-service/21.12.2/src/umbrello-21.12.2.tar.xz - qt5-base-devel - qt5-webkit-devel + qt5-base-devel + qt5-webkit-devel libxslt-devel - qt5-svg-devel + qt5-svg-devel kio-devel kparts-devel kinit-devel @@ -78456,8 +79717,8 @@ It supports email, address books, calendars, tasks, news feeds and much more. umbrello - qt5-base - qt5-webkit + qt5-base + qt5-webkit kio ki18n kcrash @@ -78465,7 +79726,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kconfig kxmlgui libxml2 - qt5-svg + qt5-svg karchive kcompletion kcoreaddons @@ -78487,6 +79748,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-10 21.12.1 @@ -115541,7 +116809,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.The KDE crash handler The KDE crash handler The KDE crash handler - https://download.kde.org/stable/plasma/5.23.5/drkonqi-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/drkonqi-5.24.2.tar.xz extra-cmake-modules qt5-base-devel @@ -115602,6 +116870,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -117895,7 +119170,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma Additional client tools for KDE applications Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.23.5/kdeplasma-addons-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/kdeplasma-addons-5.24.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -117921,7 +119196,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kiconthemes-devel krunner-devel plasma-framework-devel - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules kconfigwidgets-devel kcoreaddons-devel @@ -117972,7 +119247,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwidgetsaddons kunitconversion kactivities - plasma-workspace + plasma-workspace ibus scim-libs xcb-util-keysyms @@ -117990,6 +119265,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -118856,7 +120138,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE5 hotkey daemon KDE hotkey daemon module allows you to configure custom keyboard shortcuts and mouse gestures. - mirrors://kde/stable/plasma/5.23.5/khotkeys-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/khotkeys-5.24.2.tar.xz libX11-devel qt5-base-devel @@ -118885,7 +120167,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kinit-devel kunitconversion-devel plasma-framework-devel - plasma-workspace-devel + plasma-workspace-devel libXtst-devel docbook-xsl kjobwidgets-devel @@ -118916,7 +120198,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui libXtst kjobwidgets - plasma-workspace + plasma-workspace /usr/share @@ -118929,6 +120211,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -121713,7 +123002,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.KSystemStats is a daemon that collects statistics about the running system KSystemStats, çalışan sistemle ilgili istatistikleri toplayan bir arka plan programıdır. KSystemStats, çalışan sistemle ilgili istatistikleri toplayan bir arka plan programıdır. - https://download.kde.org/stable/plasma/5.23.5/ksystemstats-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/ksystemstats-5.24.2.tar.xz kio-devel eudev-devel @@ -121760,6 +123049,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -122743,7 +124039,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Wayland server components built on KDE Frameworks KDE Çerçeveleri üzerine kurulu Wayland sunucu bileşenleri KDE Çerçeveleri üzerine kurulu Wayland sunucu bileşenleri - mirrors://kde/stable/plasma/5.23.5/kwayland-server-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/kwayland-server-5.24.2.tar.xz doxygen mesa-devel @@ -122774,7 +124070,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwayland-server-devel Development files for kwayland-server - kwayland-server + kwayland-server qt5-base-devel wayland-devel @@ -122784,6 +124080,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -122926,7 +124229,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE5 window manager KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.23.5/kwin-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/kwin-5.24.2.tar.xz lcms2-devel kactivities-devel @@ -122938,7 +124241,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kcoreaddons-devel kcrash-devel kdeclarative-devel - kdecorations-devel + kdecorations-devel kdoctools-devel kglobalaccel-devel ki18n-devel @@ -122955,7 +124258,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwindowsystem-devel kxmlgui-devel kidletime-devel - kscreenlocker-devel + kscreenlocker-devel libepoxy-devel libICE-devel libSM-devel @@ -122994,7 +124297,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libXi-devel extra-cmake-modules xorg-xwayland-devel - breeze-style + breeze-style libdrm-devel kirigami-devel pipewire-devel @@ -123021,7 +124324,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kcrash wayland kdeclarative - kdecorations + kdecorations kglobalaccel ki18n kiconthemes @@ -123081,7 +124384,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwin-devel Development files for kwin - kwin + kwin /usr/include @@ -123102,7 +124405,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.pipewire kidletime fontconfig - kwin + kwin /usr/bin/kwin_wayland @@ -123111,6 +124414,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -123973,7 +125283,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Qt component to allow applications to make use of the Wayland wl-layer-shell protocol Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni Uygulamaların Wayland wl-layer-shell protokolünü kullanmasını sağlayan Qt bileşeni - https://download.kde.org/stable/plasma/5.23.5/layer-shell-qt-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/layer-shell-qt-5.24.2.tar.xz wayland-devel wayland-client @@ -124004,7 +125314,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.layer-shell-qt-devel Development files for layer-shell-qt - layer-shell-qt + layer-shell-qt /usr/include @@ -124012,6 +125322,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -125524,7 +126841,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE Oxygen style KDE Oxygen style - mirrors://kde/stable/plasma/5.23.5/oxygen-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/oxygen-5.24.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -125543,8 +126860,8 @@ It supports email, address books, calendars, tasks, news feeds and much more.kwayland-devel gtk3-devel kdoctools-devel - kdecorations-devel - plasma-workspace-devel + kdecorations-devel + plasma-workspace-devel extra-cmake-modules desktop/kde/plasma/oxygen/pspec.xml @@ -125561,7 +126878,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kguiaddons kcompletion kcoreaddons - kdecorations + kdecorations kwindowsystem qt5-x11extras kconfigwidgets @@ -125583,6 +126900,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -125983,7 +127307,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma Plasma browser integration Components necessary to integrate browsers into the Plasma Desktop. - https://download.kde.org/stable/plasma/5.23.5/plasma-browser-integration-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/plasma-browser-integration-5.24.2.tar.xz cmake extra-cmake-modules @@ -126001,7 +127325,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.knotifications-devel kfilemetadata-devel kitemmodels-devel - plasma-workspace-devel + plasma-workspace-devel qt5-quickcontrols2-devel qt5-declarative-devel @@ -126034,6 +127358,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -126204,11 +127535,11 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE5 plasma workspace This package contains the basic packages for a Plasma workspace. - mirrors://kde/stable/plasma/5.23.5/plasma-desktop-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/plasma-desktop-5.24.2.tar.xz qt5-base-devel boost-devel - breeze-style + breeze-style kdoctools-devel kactivities-stats-devel kio-devel @@ -126221,7 +127552,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kscreenlocker-devel kinit-devel kunitconversion-devel - kwin-devel + kwin-devel libX11-devel libXft-devel libxkbfile-devel @@ -126236,7 +127567,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.xorg-input-synaptics-devel pulseaudio-libs-devel fontconfig-devel - plasma-workspace-devel + plasma-workspace-devel plasma-framework-devel xorg-app-devel xkeyboard-config @@ -126339,7 +127670,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libXi libxkbfile plasma-framework - plasma-workspace + plasma-workspace libcanberra pulseaudio-libs xkeyboard-config @@ -126351,7 +127682,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.solid sonnet qt5-sql-sqlite - system-settings + system-settings ibus glib2 scim-libs @@ -126380,6 +127711,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -126802,7 +128140,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE5 Plasma artwork Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.23.5/plasma-integration-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/plasma-integration-5.24.2.tar.xz qt5-base-devel qt5-declarative-devel @@ -126876,7 +128214,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.plasma-integration-devel Development files for plasma-integration - plasma-integration + plasma-integration /usr/include @@ -126885,6 +128223,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -128769,7 +130114,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz Sistem sensörlerini, işlem bilgilerini ve diğer sistem kaynaklarını izlemek için bir arayüz - https://download.kde.org/stable/plasma/5.23.5/plasma-systemmonitor-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/plasma-systemmonitor-5.24.2.tar.xz cmake libgcc @@ -128789,7 +130134,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.extra-cmake-modules qt5-declarative-devel qt5-quickcontrols2-devel - libksysguard-devel + libksysguard-devel desktop/kde/plasma/plasma-systemmonitor/pspec.xml @@ -128824,6 +130169,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -128932,7 +130284,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.Plasma applet and services for creating encrypted vaults Şifreli kasaları oluşturmak için kullanılan plazma uygulaması ve hizmetleri Şifreli kasaları oluşturmak için kullanılan plazma uygulaması ve hizmetleri - https://download.kde.org/stable/plasma/5.23.5/plasma-vault-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/plasma-vault-5.24.2.tar.xz extra-cmake-modules qt5-base-devel @@ -128986,6 +130338,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -129318,7 +130677,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma The KDE5 Plasma Workspace Components The KDE5 Plasma Workspace Components - mirrors://kde/stable/plasma/5.23.5/plasma-workspace-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/plasma-workspace-5.24.2.tar.xz libgcc kio-devel @@ -129383,7 +130742,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.plasma-framework-devel kactivities-stats-devel networkmanager-qt-devel - kwin-devel + kwin-devel qt5-sql-odbc qt5-sql-mysql qt5-base-devel @@ -129524,7 +130883,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.plasma-workspace-devel Development files for kde5 plasma-workspace - plasma-workspace + plasma-workspace kio-devel zlib-devel baloo-devel @@ -129600,7 +130959,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.plasma-workspace-wayland Wayland support for Plasma - plasma-workspace + plasma-workspace xorg-xwayland @@ -129609,6 +130968,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -130955,7 +132321,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.plasma KDE power manager module KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - mirrors://kde/stable/plasma/5.23.5/powerdevil-5.23.5.tar.xz + mirrors://kde/stable/plasma/5.24.2/powerdevil-5.24.2.tar.xz qt5-base-devel qt5-x11extras-devel @@ -130967,6 +132333,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kauth-devel kconfig-devel kdbusaddons-devel + kirigami-devel kglobalaccel-devel kio-devel knotifyconfig-devel @@ -130980,7 +132347,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kitemmodels-devel kemoticons-devel docbook-xsl - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules ki18n-devel bluez-qt-devel @@ -131006,6 +132373,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.solid kconfig kxmlgui + kirigami kservice kwayland qt5-x11extras @@ -131034,6 +132402,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -132411,7 +133786,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.A backend implementation for xdg-desktop-portal using Qt/KF5 A backend implementation for xdg-desktop-portal using Qt/KF5 A backend implementation for xdg-desktop-portal using Qt/KF5 - https://download.kde.org/stable/plasma/5.23.5/xdg-desktop-portal-kde-5.23.5.tar.xz + https://download.kde.org/stable/plasma/5.24.2/xdg-desktop-portal-kde-5.24.2.tar.xz extra-cmake-modules qt5-base-devel @@ -132470,6 +133845,13 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + 2022-01-04 5.23.5 @@ -232743,6 +234125,56 @@ complete albums that you have purchased from Amazon. + + + libgssglue + http://www.citi.umich.edu/projects/nfsv4/linux/ + + Marcin Bojara + marcin@pisilinux.org + + BSD + library + network.misc + exports a gssapi interface which calls other random gssapi libraries + Diğer raslantısal gssapi kitaplıklarına çağrı yapan gssapi arayüzünü dışa aktaran kitaplık + libgssglue provides a gssapi interface, but does not implement any gssapi mechanisms itself; instead it calls other gssapi functions (e.g., those provided by MIT Kerberos), depending on the requested mechanism, to do the work. + libgssglue herhangi bir gssapi mekanizma gerçekleştirimi yapmadan istenilen mekanizmaya bakarak diğer gssapi fonsiyonlarına (örn:MIT Kerberos tarafından sağlanan) ulaşabilmek için bir arayüz (API) sunar. + http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.4.tar.gz + + libgssglue-0.1-gssglue.patch + + network/misc/libgssglue/pspec.xml + + + libgssglue + + /usr/lib/libgssglue.so* + /usr/share/doc + + + + libgssglue-devel + libgssglue development files + libgssglue geliştirme dosyaları + + libgssglue + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-10 + 0.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + libndp @@ -235921,6 +237353,101 @@ complete albums that you have purchased from Amazon. + + + nfs-utils + http://nfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + network.share + NFS client and server + NFS istemcisi ve sunucusu + Contains NFS (Network File System) client and server. It is possible to mount a network resource as a file system using the NFS protocol. + nfs-utils, NFS (Ağ dosya sistemi) istemcisi ve sunucusunu içerir. + mirrors://sourceforge/nfs/nfs-utils-2.6.1.tar.bz2 + + sqlite-devel + libcap-devel + libtirpc-devel + libevent-devel + e2fsprogs-devel + libgssglue-devel + mit-kerberos-devel + rpcsvc-proto-devel + tcp-wrappers-devel + device-mapper-devel + libutil-linux-devel + + network/share/nfs-utils/pspec.xml + + + nfs-utils + + libcap + sqlite + rpcbind + nfsidmap + keyutils + libevent + libtirpc + e2fsprogs + libgssglue + mit-kerberos + tcp-wrappers + device-mapper + libutil-linux + openldap-client + + + /etc/exports + /etc/gssapi_mech.conf + /etc/nfsmount.conf + /etc/conf.d/nfs + /usr/sbin + /sbin + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + System.Service + + + exports + nfs.confd + idmapd.conf + gssapi_mech.conf + + + + nfsidmap + Library to help mapping IDs, mainly for NFSv4 + Kimliklerin eşlenmesine yardımcı olacak kitaplık, özellikle NFSv4 için. + + openldap-client + + + /etc/idmapd.conf + /usr/lib/libnfsidmap* + /usr/share/doc/libnfsidmap + + + + + 2022-03-11 + 2.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + rsync @@ -236772,7 +238299,7 @@ complete albums that you have purchased from Amazon. Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. firefox - https://ftp.mozilla.org/pub/firefox/releases/97.0.1/source/firefox-97.0.1.source.tar.xz + https://ftp.mozilla.org/pub/firefox/releases/98.0/source/firefox-98.0.source.tar.xz mozconfig-inst mozconfig-opt @@ -236782,50 +238309,50 @@ complete albums that you have purchased from Amazon. rust wget - yasm + llvm nodejs + chrpath cbindgen - icu4c-devel + nss-devel + lld-devel + gdb-devel + util-linux + nspr-devel zlib-devel gtk3-devel gtk2-devel + yasm-devel + gconf-devel libXt-devel libSM-devel + autoconf213 + icu4c-devel + compiler-rt + libvpx-devel libpng-devel libffi-devel gnutls-devel python-devel - python3-devel - libnotify-devel - hunspell-devel sqlite-devel - autoconf213 + python3-devel + hunspell-devel alsa-lib-devel + libevent-devel + xorg-app-devel + libnotify-devel dbus-glib-devel + xkeyboard-config + xorg-server-xvfb + llvm-clang-devel + python3-setuptools + libxkbcommon-devel libXcomposite-devel libXScrnSaver-devel libjpeg-turbo-devel pulseaudio-libs-devel - gconf-devel - startup-notification-devel - libvpx-devel - libevent-devel - pulseaudio-libs-devel gst-plugins-base-devel - nss-devel - nspr-devel - chrpath + startup-notification-devel jack-audio-connection-kit-devel - llvm - libxkbcommon-devel - llvm-clang-devel - lld-devel - compiler-rt - xorg-server-xvfb - xorg-app - xkeyboard-config - gdb-devel - util-linux network/web/firefox/pspec.xml @@ -236851,7 +238378,7 @@ complete albums that you have purchased from Amazon. sqlite iconcan libXext - icu4c + icu4c libvpx alsa-lib libevent @@ -236900,7 +238427,7 @@ complete albums that you have purchased from Amazon. system.locale lang-az - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org.xpi @@ -236914,7 +238441,7 @@ complete albums that you have purchased from Amazon. system.locale lang-bs - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org.xpi @@ -236928,7 +238455,7 @@ complete albums that you have purchased from Amazon. system.locale lang-ca - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org.xpi @@ -236942,7 +238469,7 @@ complete albums that you have purchased from Amazon. system.locale lang-da - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org.xpi @@ -236956,7 +238483,7 @@ complete albums that you have purchased from Amazon. system.locale lang-de - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org.xpi @@ -236970,7 +238497,7 @@ complete albums that you have purchased from Amazon. system.locale lang-el - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org.xpi @@ -236984,7 +238511,7 @@ complete albums that you have purchased from Amazon. system.locale lang-en-US - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org.xpi @@ -236998,7 +238525,7 @@ complete albums that you have purchased from Amazon. system.locale lang-en-GB - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org.xpi @@ -237012,7 +238539,7 @@ complete albums that you have purchased from Amazon. system.locale lang-es-AR - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org.xpi @@ -237026,7 +238553,7 @@ complete albums that you have purchased from Amazon. system.locale lang-es-CL - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org.xpi @@ -237040,7 +238567,7 @@ complete albums that you have purchased from Amazon. system.locale lang-es-ES - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org.xpi @@ -237054,7 +238581,7 @@ complete albums that you have purchased from Amazon. system.locale lang-fi - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org.xpi @@ -237068,7 +238595,7 @@ complete albums that you have purchased from Amazon. system.locale lang-fr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org.xpi @@ -237082,7 +238609,7 @@ complete albums that you have purchased from Amazon. system.locale lang-hr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org.xpi @@ -237096,7 +238623,7 @@ complete albums that you have purchased from Amazon. system.locale lang-hu - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org.xpi @@ -237110,7 +238637,7 @@ complete albums that you have purchased from Amazon. system.locale lang-it - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org.xpi @@ -237124,7 +238651,7 @@ complete albums that you have purchased from Amazon. system.locale lang-lt - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org.xpi @@ -237138,7 +238665,7 @@ complete albums that you have purchased from Amazon. system.locale lang-nl - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org.xpi @@ -237152,7 +238679,7 @@ complete albums that you have purchased from Amazon. system.locale lang-pl - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org.xpi @@ -237166,7 +238693,7 @@ complete albums that you have purchased from Amazon. system.locale lang-pt-BR - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org.xpi @@ -237180,7 +238707,7 @@ complete albums that you have purchased from Amazon. system.locale lang-pt-PT - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org.xpi @@ -237194,7 +238721,7 @@ complete albums that you have purchased from Amazon. system.locale lang-ro - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org.xpi @@ -237208,7 +238735,7 @@ complete albums that you have purchased from Amazon. system.locale lang-ru - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org.xpi @@ -237222,7 +238749,7 @@ complete albums that you have purchased from Amazon. system.locale lang-sr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org.xpi @@ -237236,7 +238763,7 @@ complete albums that you have purchased from Amazon. system.locale lang-sv-SE - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org.xpi @@ -237250,7 +238777,7 @@ complete albums that you have purchased from Amazon. system.locale lang-tr - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org.xpi @@ -237264,13 +238791,20 @@ complete albums that you have purchased from Amazon. system.locale lang-uk - firefox + firefox /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org.xpi + + 2022-02-18 + 98.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2022-02-18 97.0.1 @@ -309534,6 +311068,59 @@ contacts, tasks, and calendar information. + + + rpcbind + http://nfsv4.bullopensource.org + + PisiLinux Community + admins@pisilinux.org + + BSD + service + server + Universal Addresses to RPC Program Number Mapper + Evrensel adresleri RPC program numaralarına eşleştirici + The rpcbind utility is a server that converts RPC program numbers into universal addresses. It must be running on the host to be able to make RPC calls on a server on that machine. + RPCbind aracı, RPC program numaralarını DARPA protokolü port numaralarına çeviren bir sunucu yazılımıdır. + mirrors://sourceforge/rpcbind/1.2.6/rpcbind-1.2.6.tar.bz2 + + libtirpc-devel + tcp-wrappers-devel + + server/rpcbind/pspec.xml + + + rpcbind + + libtirpc + tcp-wrappers + + + /etc + /usr/sbin/rpcbind + /usr/bin/rpcinfo + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + + + rpcbind.sysconfig + + + + + 2022-03-11 + 1.2.6 + First release + Kamil Atlı + suvari@pisilinux.org + + + samba @@ -317194,7 +318781,7 @@ contacts, tasks, and calendar information. Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. - https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_75_RTM/src/nss-3.75.tar.gz + https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_76_RTM/src/nss-3.76.tar.gz nss.pc.in nss-config.in @@ -317217,8 +318804,7 @@ contacts, tasks, and calendar information. zlib sqlite - nspr - libgcc + nspr /usr/lib @@ -317237,8 +318823,8 @@ contacts, tasks, and calendar information. Development files for nss nss için geliştirme dosyaları - nspr-devel - nss + nspr-devel + nss /usr/bin/nss-config @@ -317248,6 +318834,13 @@ contacts, tasks, and calendar information. + + 2022-03-08 + 3.76 + Version bump + Kamil Atlı + suvari@pisilinux.org + 2022-02-14 3.75 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index b8dcb3f51b..d691cc9c1e 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -891b2a2bede76a719880707255d42a9b8591b661 \ No newline at end of file +86a771cb40c808e2f2f1f37bfa84db4fec59967a \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 51b9c1445a..fd19bf709a 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 2ff78bb773..6a632382ad 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -900129338bce0fa9378fda8b32f5bcf21d3132fc \ No newline at end of file +9e473d5dd97037d6c311a6155123bcf2f671bf50 \ No newline at end of file diff --git a/server/rpcbind/actions.py b/server/rpcbind/actions.py new file mode 100644 index 0000000000..14637133b2 --- /dev/null +++ b/server/rpcbind/actions.py @@ -0,0 +1,36 @@ +#!/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 autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import get + +shelltools.export("CFLAGS", "%s -fpie" % get.CFLAGS()) +shelltools.export("LDFLAGS", "%s -fpie" % get.LDFLAGS()) + +def setup(): + autotools.autoreconf("-vfi") + ## glibc provides rpcinfo in /usr/sbin, so move it to /sbin, thus bindir=/sbin + autotools.configure("--bindir=/usr/bin \ + --enable-warmstarts \ + --with-statedir=/var/lib/rpcbind \ + --with-rpcuser=rpc \ + --with-systemdsystemunitdir=no \ + --enable-libwrap") + +def build(): + autotools.make() + +def install(): + autotools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodir("/var/lib/rpcbind") + + # glibc has rpcinfo.8, so avoid conflict with glibc + pisitools.insinto("/usr/share/man/man8", "man/rpcinfo.8", "rpcbind-rpcinfo.8") + + pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README") diff --git a/server/rpcbind/comar/service.py b/server/rpcbind/comar/service.py new file mode 100644 index 0000000000..bf0b6c0635 --- /dev/null +++ b/server/rpcbind/comar/service.py @@ -0,0 +1,33 @@ +# -*- coding: utf-8 -*- +import os +from comar.service import * + +serviceType = "server" +serviceDesc = _({"en": "RPCbind Daemon", + "tr": "RPCbind Servisi"}) + +serviceConf = "rpcbind" + +PIDFILE = "/var/run/rpcbind.pid" + +@synchronized +def start(): + startService(command="/sbin/rpcbind", + args="-f %s" % config.get("RPCBIND_OPTS"), + makepid=True, + detach=True, + pidfile=PIDFILE, + donotify=True) + +@synchronized +def stop(): + stopService(pidfile=PIDFILE, + donotify=True) + + try: + os.unlink(PIDFILE) + except OSError: + pass + +def status(): + return isServiceRunning(PIDFILE) diff --git a/server/rpcbind/files/fedora/rpcbind-0.2.1-rpcuser.patch b/server/rpcbind/files/fedora/rpcbind-0.2.1-rpcuser.patch new file mode 100644 index 0000000000..426f997e7f --- /dev/null +++ b/server/rpcbind/files/fedora/rpcbind-0.2.1-rpcuser.patch @@ -0,0 +1,26 @@ +commit b3b031b07cc5909aaf964f9d4cf46f6097769320 +Author: Steve Dickson +Date: Wed Aug 21 14:40:22 2013 -0400 + + rpcbind: rpcuser not being set in Makefile.am + + Commit 8d7a0708 cause a regression where the rpcuser id was not + being set, which in turn cause rpcbind to immediately exit. + This patch removes the extra ',' that was in the AC_ARG_WITH + statement in the configure.ac file. + + Signed-off-by: Steve Dickson + +diff --git a/configure.ac b/configure.ac +index 2b67720..1cf42d3 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -23,7 +23,7 @@ AC_ARG_WITH([statedir], + AC_SUBST([statedir], [$with_statedir]) + + AC_ARG_WITH([rpcuser], +- AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@]), ++ AS_HELP_STRING([--with-rpcuser=ARG], [use ARG for RPC @<:@default=root@:>@]) + ,, [with_rpcuser=root]) + AC_SUBST([rpcuser], [$with_rpcuser]) + diff --git a/server/rpcbind/files/rpcbind-sunrpc.patch b/server/rpcbind/files/rpcbind-sunrpc.patch new file mode 100644 index 0000000000..b6576f961c --- /dev/null +++ b/server/rpcbind/files/rpcbind-sunrpc.patch @@ -0,0 +1,26 @@ +Index: rpcbind-0.2.0/src/rpcbind.c +=================================================================== +--- rpcbind-0.2.0.orig/src/rpcbind.c ++++ rpcbind-0.2.0/src/rpcbind.c +@@ -114,7 +114,7 @@ char *tcptrans; /* Name of TCP transpor + char *udp_uaddr; /* Universal UDP address */ + char *tcp_uaddr; /* Universal TCP address */ + #endif +-static char servname[] = "rpcbind"; ++static char servname[] = "sunrpc"; + static char superuser[] = "superuser"; + + int main __P((int, char *[])); +Index: rpcbind-0.2.0/src/rpcinfo.c +=================================================================== +--- rpcbind-0.2.0.orig/src/rpcinfo.c ++++ rpcbind-0.2.0/src/rpcinfo.c +@@ -632,7 +632,7 @@ get_inet_address (addr, host) + { + memset (&hints, 0, sizeof hints); + hints.ai_family = AF_INET; +- if ((error = getaddrinfo (host, "rpcbind", &hints, &res)) != 0 && ++ if ((error = getaddrinfo (host, "sunrpc", &hints, &res)) != 0 && + (error = getaddrinfo (host, "portmapper", &hints, &res)) != 0) + { + fprintf (stderr, "rpcinfo: %s: %s\n", diff --git a/server/rpcbind/files/rpcbind.sysconfig b/server/rpcbind/files/rpcbind.sysconfig new file mode 100644 index 0000000000..91294f52c9 --- /dev/null +++ b/server/rpcbind/files/rpcbind.sysconfig @@ -0,0 +1,2 @@ +# RPCbind options +RPCBIND_OPTS="-i" diff --git a/server/rpcbind/pspec.xml b/server/rpcbind/pspec.xml new file mode 100644 index 0000000000..275f67a64a --- /dev/null +++ b/server/rpcbind/pspec.xml @@ -0,0 +1,56 @@ + + + + + rpcbind + http://nfsv4.bullopensource.org + + PisiLinux Community + admins@pisilinux.org + + BSD + service + Universal Addresses to RPC Program Number Mapper + The rpcbind utility is a server that converts RPC program numbers into universal addresses. It must be running on the host to be able to make RPC calls on a server on that machine. + mirrors://sourceforge/rpcbind/1.2.6/rpcbind-1.2.6.tar.bz2 + + libtirpc-devel + tcp-wrappers-devel + + + + + + + + rpcbind + + libtirpc + tcp-wrappers + + + /etc + /usr/sbin/rpcbind + /usr/bin/rpcinfo + /var/lib + /usr/share/man + /usr/share/doc + + + rpcbind.sysconfig + + + System.Service + + + + + + 2022-03-11 + 1.2.6 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/server/rpcbind/translations.xml b/server/rpcbind/translations.xml new file mode 100644 index 0000000000..32c5728bcc --- /dev/null +++ b/server/rpcbind/translations.xml @@ -0,0 +1,8 @@ + + + + rpcbind + Evrensel adresleri RPC program numaralarına eşleştirici + RPCbind aracı, RPC program numaralarını DARPA protokolü port numaralarına çeviren bir sunucu yazılımıdır. + +