From d30dadd6c33db96dea5ad653f13c5e460fb22c32 Mon Sep 17 00:00:00 2001 From: aydemir Date: Wed, 16 Dec 2015 08:51:56 +0200 Subject: [PATCH] kde plasma version bump to 5.5.1 --- circledep-finder | 193 + desktop/kde/plasma/bluedevil/pspec.xml | 9 +- desktop/kde/plasma/breeze/pspec.xml | 13 +- desktop/kde/plasma/discover/pspec.xml | 9 +- desktop/kde/plasma/kde-cli-tools/pspec.xml | 9 +- desktop/kde/plasma/kde-gtk-config/pspec.xml | 9 +- desktop/kde/plasma/kdecorations/pspec.xml | 9 +- desktop/kde/plasma/kdeplasma-addons/pspec.xml | 9 +- desktop/kde/plasma/kgamma5/pspec.xml | 9 +- desktop/kde/plasma/khelpcenter/pspec.xml | 9 +- desktop/kde/plasma/khotkeys/pspec.xml | 13 +- desktop/kde/plasma/kinfocenter/pspec.xml | 9 +- desktop/kde/plasma/kmenuedit/pspec.xml | 9 +- desktop/kde/plasma/kscreen/pspec.xml | 11 +- desktop/kde/plasma/kscreenlocker/pspec.xml | 9 +- desktop/kde/plasma/ksshaskpass/pspec.xml | 9 +- desktop/kde/plasma/ksysguard/pspec.xml | 13 +- desktop/kde/plasma/kwallet-pam/pspec.xml | 9 +- .../kde/plasma/kwayland-integration/pspec.xml | 13 +- desktop/kde/plasma/kwayland/pspec.xml | 9 +- desktop/kde/plasma/kwin/pspec.xml | 17 +- desktop/kde/plasma/kwrited/pspec.xml | 9 +- desktop/kde/plasma/libkscreen/pspec.xml | 9 +- desktop/kde/plasma/libksysguard/pspec.xml | 9 +- desktop/kde/plasma/milou/pspec.xml | 9 +- desktop/kde/plasma/oxygen/pspec.xml | 15 +- desktop/kde/plasma/plasma-desktop/pspec.xml | 19 +- .../kde/plasma/plasma-mediacenter/pspec.xml | 9 +- desktop/kde/plasma/plasma-nm/pspec.xml | 9 +- desktop/kde/plasma/plasma-pa/pspec.xml | 9 +- desktop/kde/plasma/plasma-sdk/pspec.xml | 9 +- .../plasma-workspace-wallpapers/pspec.xml | 9 +- desktop/kde/plasma/plasma-workspace/pspec.xml | 29 +- .../pspec.xml | 9 +- desktop/kde/plasma/powerdevil/pspec.xml | 13 +- desktop/kde/plasma/sddm-kcm/pspec.xml | 9 +- desktop/kde/plasma/system-settings/pspec.xml | 9 +- desktop/kde/plasma/user-manager/pspec.xml | 9 +- pisi-index.xml | 192714 ++++++++------- pisi-index.xml.sha1sum | 2 +- pisi-index.xml.xz | Bin 353748 -> 355984 bytes pisi-index.xml.xz.sha1sum | 2 +- 42 files changed, 97081 insertions(+), 96229 deletions(-) create mode 100755 circledep-finder diff --git a/circledep-finder b/circledep-finder new file mode 100755 index 0000000000..d237f8617b --- /dev/null +++ b/circledep-finder @@ -0,0 +1,193 @@ +#!/usr/bin/python +# +# -*- coding: utf-8 -*- +# +# Copyright (C) 2008, TUBITAK/UEKAE +# +# This program is free software; you can redistribute it and/or modify it under +# the terms of the GNU General Public License as published by the Free +# Software Foundation; either version 2 of the License, or (at your option) +# any later version. +# +# Please read the COPYING file. +# + +import sys +import multiprocessing + +import urllib2 +import bz2 +import lzma + +import piksemel + +import pisi +import pisi.dependency as dependency +from pisi.graph import CycleException + + +class SourceDB: + def __init__(self, index): + + self.__source_nodes = {} + self.__pkgstosrc = {} + + doc = piksemel.parseString(index) + self.__source_nodes, self.__pkgstosrc = self.__generate_sources(doc) + + def __generate_sources(self, doc): + sources = {} + pkgstosrc = {} + + for spec in doc.tags("SpecFile"): + src_name = spec.getTag("Source").getTagData("Name") + sources[src_name] = spec.toString() + for package in spec.tags("Package"): + pkgstosrc[package.getTagData("Name")] = src_name + + return sources, pkgstosrc + + def has_spec(self, name): + return self.__source_nodes.has_key(name) + + def get_spec(self, name): + src = self.__source_nodes[name] + spec = pisi.specfile.SpecFile() + spec.parse(src) + return spec + + def list_specs(self): + return self.__source_nodes.keys() + + def pkgtosrc(self, name): + return self.__pkgstosrc[name] + +def find_circle(sourcedb, A): + + G_f = pisi.graph.Digraph() + + def get_spec(name): + if sourcedb.has_spec(name): + return sourcedb.get_spec(name) + else: + raise Exception('Cannot find source package: %s' % name) + + def get_src(name): + return get_spec(name).source + + def add_src(src): + if not str(src.name) in G_f.vertices(): + G_f.add_vertex(str(src.name), (src.version, src.release)) + + def pkgtosrc(pkg): + try: + tmp = sourcedb.pkgtosrc(pkg) + except KeyError, e: + # this is a bad hack but after we hit a problem we need to continue + tmp = "e3" + print "---> borks in ", e + + return tmp + + B = A + + install_list = set() + + while len(B) > 0: + Bp = set() + for x in B: + sf = get_spec(x) + src = sf.source + add_src(src) + + # add dependencies + + def process_dep(dep): + srcdep = pkgtosrc(dep.package) + if not srcdep in G_f.vertices(): + Bp.add(srcdep) + add_src(get_src(srcdep)) + if not src.name == srcdep: # firefox - firefox-devel thing + G_f.add_edge(src.name, srcdep) + + for builddep in src.buildDependencies: + process_dep(builddep) + + for pkg in sf.packages: + for rtdep in pkg.packageDependencies: + process_dep(rtdep) + B = Bp + + try: + order_build = G_f.topological_sort() + order_build.reverse() + except CycleException, cycle: + return str(cycle) + + return "" + +def getIndex(uri): + try: + if "://" in uri: + rawdata = urllib2.urlopen(uri).read() + else: + rawdata = open(uri, "r").read() + except IOError: + print "could not fetch %s" % uri + return None + + if uri.endswith("bz2"): + data = bz2.decompress(rawdata) + elif uri.endswith("xz") or uri.endswith("lzma"): + data = lzma.decompress(rawdata) + else: + data = rawdata + + return data + +def processPackage(pkg, sourcesLength, counter): + global sourcedb + + sys.stdout.write("\r(%04d/%d) Calculating build dep of %s " % (counter, sourcesLength, pkg)) + sys.stdout.flush() + + return find_circle(sourcedb, [pkg]) + +def updateStatus(circleResult): + global cycles + cycles.add(circleResult) + + +if __name__ == "__main__": + + if len(sys.argv) < 2: + print "Usage: circlefinder.py " + sys.exit(1) + + rawIndex = getIndex(sys.argv[1]) + sourcedb = SourceDB(rawIndex) + sources = sourcedb.list_specs() + + sourcesLength = len(sources) + counter = 0 + + global cycles + cycles = set() + + pool = multiprocessing.Pool() + + for pkg in sources: + counter += 1 + pool.apply_async(processPackage, (pkg, sourcesLength, counter), callback=updateStatus) + + pool.close() + pool.join() + + if len(cycles): + print + for cycle in cycles: + print cycle + else: + print "No circular dep found" + + diff --git a/desktop/kde/plasma/bluedevil/pspec.xml b/desktop/kde/plasma/bluedevil/pspec.xml index 1542194427..d56435e968 100644 --- a/desktop/kde/plasma/bluedevil/pspec.xml +++ b/desktop/kde/plasma/bluedevil/pspec.xml @@ -13,7 +13,7 @@ app:console KDE 5 Bluetooth Stack Integrate the Bluetooth technology within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.0/bluedevil-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/bluedevil-5.5.1.tar.xz qt5-base-devel qt5-declarative @@ -66,6 +66,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/breeze/pspec.xml b/desktop/kde/plasma/breeze/pspec.xml index 9ee31c1572..b2a54357b2 100644 --- a/desktop/kde/plasma/breeze/pspec.xml +++ b/desktop/kde/plasma/breeze/pspec.xml @@ -13,13 +13,13 @@ app:console KDE5 Plasma artwork Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.5.0/breeze-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/breeze-5.5.1.tar.xz qt5-base-devel libxcb-devel qt5-x11extras-devel frameworkintegration-devel - kdecorations-devel + kdecorations-devel kcoreaddons-devel ki18n-devel kcmutils-devel @@ -50,7 +50,7 @@ kcoreaddons ki18n kwindowsystem - kdecorations + kdecorations /usr/share @@ -91,6 +91,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/discover/pspec.xml b/desktop/kde/plasma/discover/pspec.xml index 06f0a21af0..e5339279bf 100644 --- a/desktop/kde/plasma/discover/pspec.xml +++ b/desktop/kde/plasma/discover/pspec.xml @@ -12,7 +12,7 @@ app:gui KDE and Plasma resources management GUI KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.5.0/discover-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/discover-5.5.1.tar.xz qt5-base-devel qt5-svg-devel @@ -57,6 +57,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-10 5.5.0 diff --git a/desktop/kde/plasma/kde-cli-tools/pspec.xml b/desktop/kde/plasma/kde-cli-tools/pspec.xml index 8d36e6eb73..6f4287e11d 100644 --- a/desktop/kde/plasma/kde-cli-tools/pspec.xml +++ b/desktop/kde/plasma/kde-cli-tools/pspec.xml @@ -13,7 +13,7 @@ app:console Additional client tools for KDE applications Tools based on KDE Frameworks 5 to better interact with the system - mirrors://kde/stable/plasma/5.5.0/kde-cli-tools-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kde-cli-tools-5.5.1.tar.xz qt5-base-devel qt5-x11extras-devel @@ -81,6 +81,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kde-gtk-config/pspec.xml b/desktop/kde/plasma/kde-gtk-config/pspec.xml index be6be1dc2b..7e4efc52f9 100644 --- a/desktop/kde/plasma/kde-gtk-config/pspec.xml +++ b/desktop/kde/plasma/kde-gtk-config/pspec.xml @@ -13,7 +13,7 @@ app:console GTK2 and GTK3 Configurator for KDE Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. - mirrors://kde/stable/plasma/5.5.0/kde-gtk-config-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kde-gtk-config-5.5.1.tar.xz qt5-base-devel kio-devel @@ -64,6 +64,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kdecorations/pspec.xml b/desktop/kde/plasma/kdecorations/pspec.xml index fd89c6e40b..5e69ee5d23 100644 --- a/desktop/kde/plasma/kdecorations/pspec.xml +++ b/desktop/kde/plasma/kdecorations/pspec.xml @@ -12,7 +12,7 @@ library Plugin based library to create window decorations Plugin based library to create window decorations - mirrors://kde/stable/plasma/5.5.0/kdecoration-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kdecoration-5.5.1.tar.xz qt5-base-devel extra-cmake-modules @@ -50,6 +50,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kdeplasma-addons/pspec.xml b/desktop/kde/plasma/kdeplasma-addons/pspec.xml index 7825e14d17..3867fd7e9a 100644 --- a/desktop/kde/plasma/kdeplasma-addons/pspec.xml +++ b/desktop/kde/plasma/kdeplasma-addons/pspec.xml @@ -13,7 +13,7 @@ app:console Additional client tools for KDE applications Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.5.0/kdeplasma-addons-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kdeplasma-addons-5.5.1.tar.xz qt5-base-devel libxcb-devel @@ -84,6 +84,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kgamma5/pspec.xml b/desktop/kde/plasma/kgamma5/pspec.xml index 61d50739c2..d5dbe8a3f1 100644 --- a/desktop/kde/plasma/kgamma5/pspec.xml +++ b/desktop/kde/plasma/kgamma5/pspec.xml @@ -13,7 +13,7 @@ app:console Adjust your monitor's gamma settings. Adjust your monitor's gamma settings. - mirrors://kde/stable/plasma/5.5.0/kgamma5-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kgamma5-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -55,6 +55,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/khelpcenter/pspec.xml b/desktop/kde/plasma/khelpcenter/pspec.xml index 15ff598a14..b16bc5cc2b 100644 --- a/desktop/kde/plasma/khelpcenter/pspec.xml +++ b/desktop/kde/plasma/khelpcenter/pspec.xml @@ -13,7 +13,7 @@ app:console KDE Help Center KDE help center utility to read help documentation about various KDE applications. - mirrors://kde/stable/plasma/5.5.0/khelpcenter-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/khelpcenter-5.5.1.tar.xz qt5-base-devel libdbusmenu-qt-devel @@ -65,6 +65,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/khotkeys/pspec.xml b/desktop/kde/plasma/khotkeys/pspec.xml index 8003b57026..991a1bbc60 100644 --- a/desktop/kde/plasma/khotkeys/pspec.xml +++ b/desktop/kde/plasma/khotkeys/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 hotkey daemon KDE hotkey daemon module allows you to configure custom keyboard shortcuts and mouse gestures. - mirrors://kde/stable/plasma/5.5.0/khotkeys-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/khotkeys-5.5.1.tar.xz libX11-devel qt5-base-devel @@ -42,7 +42,7 @@ kinit-devel kunitconversion-devel plasma-framework-devel - plasma-workspace-devel + plasma-workspace-devel docbook-xsl extra-cmake-modules @@ -69,7 +69,7 @@ ki18n kio kxmlgui - plasma-workspace + plasma-workspace /usr/share @@ -83,6 +83,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kinfocenter/pspec.xml b/desktop/kde/plasma/kinfocenter/pspec.xml index 07a7df9d3b..87cbea7492 100644 --- a/desktop/kde/plasma/kinfocenter/pspec.xml +++ b/desktop/kde/plasma/kinfocenter/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 info center KDE5 Utility that provides information about a computer system. - mirrors://kde/stable/plasma/5.5.0/kinfocenter-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kinfocenter-5.5.1.tar.xz kcmutils-devel kcompletion-devel @@ -94,6 +94,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-11 5.5.0 diff --git a/desktop/kde/plasma/kmenuedit/pspec.xml b/desktop/kde/plasma/kmenuedit/pspec.xml index c1c216a0d8..6edc65e1d5 100644 --- a/desktop/kde/plasma/kmenuedit/pspec.xml +++ b/desktop/kde/plasma/kmenuedit/pspec.xml @@ -13,7 +13,7 @@ app:console Provides the interface and basic tools for the KDE workspace Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.0/kmenuedit-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kmenuedit-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -71,6 +71,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kscreen/pspec.xml b/desktop/kde/plasma/kscreen/pspec.xml index 9a47037dde..337169dcd2 100644 --- a/desktop/kde/plasma/kscreen/pspec.xml +++ b/desktop/kde/plasma/kscreen/pspec.xml @@ -13,13 +13,13 @@ app:console Provides the interface and basic tools for the KDE workspace Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.0/kscreen-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kscreen-5.5.1.tar.xz qt5-base-devel qt5-graphicaleffects qt5-declarative-devel kglobalaccel-devel - libkscreen-devel + libkscreen-devel kconfig-devel kdoctools-devel kxmlgui-devel @@ -56,6 +56,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kscreenlocker/pspec.xml b/desktop/kde/plasma/kscreenlocker/pspec.xml index c75a0ad541..e950d33301 100644 --- a/desktop/kde/plasma/kscreenlocker/pspec.xml +++ b/desktop/kde/plasma/kscreenlocker/pspec.xml @@ -13,7 +13,7 @@ app:console Library and components for secure lock screen architecture. Library and components for secure lock screen architecture. - mirrors://kde/stable/plasma/5.5.0/kscreenlocker-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kscreenlocker-5.5.1.tar.xz qt5-base-devel qt5-declarative-devel @@ -99,6 +99,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-10 5.5.0 diff --git a/desktop/kde/plasma/ksshaskpass/pspec.xml b/desktop/kde/plasma/ksshaskpass/pspec.xml index 61246049bb..3551561015 100644 --- a/desktop/kde/plasma/ksshaskpass/pspec.xml +++ b/desktop/kde/plasma/ksshaskpass/pspec.xml @@ -13,7 +13,7 @@ app:console ssh-add helper that uses kwallet and kpassworddialog ssh-add helper that uses kwallet and kpassworddialog - mirrors://kde/stable/plasma/5.5.0/ksshaskpass-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/ksshaskpass-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -52,6 +52,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/ksysguard/pspec.xml b/desktop/kde/plasma/ksysguard/pspec.xml index 55cc8f4821..2e4cb36f3e 100644 --- a/desktop/kde/plasma/ksysguard/pspec.xml +++ b/desktop/kde/plasma/ksysguard/pspec.xml @@ -13,7 +13,7 @@ app:console KDE system monitor KDE5 system monitor daemon and service. - mirrors://kde/stable/plasma/5.5.0/ksysguard-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/ksysguard-5.5.1.tar.xz kcompletion-devel kconfig-devel @@ -31,7 +31,7 @@ kwidgetsaddons-devel kwindowsystem-devel kxmlgui-devel - libksysguard-devel + libksysguard-devel kdesignerplugin kemoticons-devel kitemmodels-devel @@ -67,7 +67,7 @@ kwindowsystem kxmlgui libgcc - libksysguard + libksysguard lm_sensors qt5-base xdg-utils @@ -85,6 +85,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kwallet-pam/pspec.xml b/desktop/kde/plasma/kwallet-pam/pspec.xml index bbe3a67527..28a60bc1fb 100644 --- a/desktop/kde/plasma/kwallet-pam/pspec.xml +++ b/desktop/kde/plasma/kwallet-pam/pspec.xml @@ -13,7 +13,7 @@ app:console KWallet PAM integration. KWallet PAM integration. - mirrors://kde/stable/plasma/5.5.0/kwallet-pam-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kwallet-pam-5.5.1.tar.xz pam-devel libgcrypt-devel @@ -35,6 +35,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kwayland-integration/pspec.xml b/desktop/kde/plasma/kwayland-integration/pspec.xml index ceda62d2eb..197eae75e2 100644 --- a/desktop/kde/plasma/kwayland-integration/pspec.xml +++ b/desktop/kde/plasma/kwayland-integration/pspec.xml @@ -12,9 +12,9 @@ library Provides integration plugins for various KDE frameworks for the wayland windowing system Provides integration plugins for various KDE frameworks for the wayland windowing system - mirrors://kde/stable/plasma/5.5.0/kwayland-integration-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kwayland-integration-5.5.1.tar.xz - kwayland-devel + kwayland-devel qt5-base-devel kwindowsystem-devel kidletime-devel @@ -25,7 +25,7 @@ kwayland-integration - kwayland + kwayland kidletime kwindowsystem libgcc @@ -38,6 +38,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kwayland/pspec.xml b/desktop/kde/plasma/kwayland/pspec.xml index 74edd4d266..36ed7b64f0 100644 --- a/desktop/kde/plasma/kwayland/pspec.xml +++ b/desktop/kde/plasma/kwayland/pspec.xml @@ -12,7 +12,7 @@ library Qt-style Client and Server library wrapper for the Wayland libraries Qt-style Client and Server library wrapper for the Wayland libraries - mirrors://kde/stable/plasma/5.5.0/kwayland-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kwayland-5.5.1.tar.xz qt5-base-devel wayland-devel @@ -52,6 +52,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kwin/pspec.xml b/desktop/kde/plasma/kwin/pspec.xml index f688b3cbbe..2d432a79e9 100644 --- a/desktop/kde/plasma/kwin/pspec.xml +++ b/desktop/kde/plasma/kwin/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 window manager KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.5.0/kwin-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kwin-5.5.1.tar.xz kactivities-devel kauth-devel @@ -24,7 +24,7 @@ kcoreaddons-devel kcrash-devel kdeclarative-devel - kdecorations-devel + kdecorations-devel kdoctools-devel kglobalaccel-devel ki18n-devel @@ -34,7 +34,7 @@ knewstuff-devel knotifications-devel kservice-devel - kwayland-devel + kwayland-devel kwidgetsaddons-devel kwindowsystem-devel kxmlgui-devel @@ -86,7 +86,7 @@ kcoreaddons kcrash kdeclarative - kdecorations + kdecorations kglobalaccel ki18n kiconthemes @@ -94,7 +94,7 @@ knewstuff knotifications kservice - kwayland + kwayland kwidgetsaddons kwindowsystem kxmlgui @@ -195,6 +195,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/kwrited/pspec.xml b/desktop/kde/plasma/kwrited/pspec.xml index 230f4859f5..7c1258c952 100644 --- a/desktop/kde/plasma/kwrited/pspec.xml +++ b/desktop/kde/plasma/kwrited/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 daemon listening for wall and write messages KDE5 daemon listening for wall and write messages - mirrors://kde/stable/plasma/5.5.0/kwrited-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/kwrited-5.5.1.tar.xz qt5-base-devel ki18n-devel @@ -46,6 +46,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/libkscreen/pspec.xml b/desktop/kde/plasma/libkscreen/pspec.xml index add8ac4645..33557ac526 100644 --- a/desktop/kde/plasma/libkscreen/pspec.xml +++ b/desktop/kde/plasma/libkscreen/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 screen management library Dynamic display management library for KDE - mirrors://kde/stable/plasma/5.5.0/libkscreen-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/libkscreen-5.5.1.tar.xz qt5-base-devel qt5-x11extras-devel @@ -61,6 +61,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/libksysguard/pspec.xml b/desktop/kde/plasma/libksysguard/pspec.xml index 67515f5b44..9522594a1e 100644 --- a/desktop/kde/plasma/libksysguard/pspec.xml +++ b/desktop/kde/plasma/libksysguard/pspec.xml @@ -13,7 +13,7 @@ app:console Task management and system monitoring library Task management and system monitoring library - mirrors://kde/stable/plasma/5.5.0/libksysguard-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/libksysguard-5.5.1.tar.xz qt5-base-devel qt5-script-devel @@ -82,6 +82,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/milou/pspec.xml b/desktop/kde/plasma/milou/pspec.xml index 375ba24a8f..c73ec36c01 100644 --- a/desktop/kde/plasma/milou/pspec.xml +++ b/desktop/kde/plasma/milou/pspec.xml @@ -13,7 +13,7 @@ app:console KDedicated search application built on top of Baloo Dedicated search application built on top of Baloo - mirrors://kde/stable/plasma/5.5.0/milou-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/milou-5.5.1.tar.xz qt5-base-devel qt5-declarative @@ -51,6 +51,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/oxygen/pspec.xml b/desktop/kde/plasma/oxygen/pspec.xml index 9e4e0803d6..b881e0e87d 100644 --- a/desktop/kde/plasma/oxygen/pspec.xml +++ b/desktop/kde/plasma/oxygen/pspec.xml @@ -17,11 +17,11 @@ libxcb-devel gtk3-devel kdoctools-devel - kdecorations-devel - plasma-workspace-devel + kdecorations-devel + plasma-workspace-devel extra-cmake-modules - mirrors://kde/stable/plasma/5.5.0/oxygen-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/oxygen-5.5.1.tar.xz oxygen @@ -34,7 +34,7 @@ kguiaddons kcompletion kcoreaddons - kdecorations + kdecorations kwindowsystem qt5-x11extras kconfigwidgets @@ -54,6 +54,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-desktop/pspec.xml b/desktop/kde/plasma/plasma-desktop/pspec.xml index ad6cda96b9..b7ef80e748 100644 --- a/desktop/kde/plasma/plasma-desktop/pspec.xml +++ b/desktop/kde/plasma/plasma-desktop/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 plasma workspace This package contains the basic packages for a Plasma workspace. - mirrors://kde/stable/plasma/5.5.0/plasma-desktop-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-desktop-5.5.1.tar.xz qt5-base-devel boost-devel @@ -27,7 +27,7 @@ kitemmodels-devel kinit-devel kunitconversion-devel - kwin-devel + kwin-devel libX11-devel libXft-devel libxkbfile-devel @@ -40,8 +40,8 @@ xorg-input-synaptics-devel pulseaudio-libs-devel fontconfig-devel - plasma-workspace-devel - system-settings-devel + plasma-workspace-devel + system-settings-devel xorg-app-devel xkeyboard-config baloo-devel @@ -105,7 +105,7 @@ libXi libxkbfile plasma-framework - plasma-workspace + plasma-workspace libcanberra pulseaudio-libs xkeyboard-config @@ -117,7 +117,7 @@ solid sonnet qt5-sql-sqlite - system-settings + system-settings xcb-util-image oxygen-icons oxygen-fonts @@ -135,6 +135,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-mediacenter/pspec.xml b/desktop/kde/plasma/plasma-mediacenter/pspec.xml index bc2bc652d4..3ebc5a1517 100644 --- a/desktop/kde/plasma/plasma-mediacenter/pspec.xml +++ b/desktop/kde/plasma/plasma-mediacenter/pspec.xml @@ -12,7 +12,7 @@ library A mediacenter user interface based on KDE Plasma components A mediacenter user interface based on KDE Plasma components - mirrors://kde/stable/plasma/5.5.0/plasma-mediacenter-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-mediacenter-5.5.1.tar.xz qt5-base-devel qt5-multimedia-devel @@ -57,6 +57,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-nm/pspec.xml b/desktop/kde/plasma/plasma-nm/pspec.xml index 94b690badc..b7ebe133c2 100644 --- a/desktop/kde/plasma/plasma-nm/pspec.xml +++ b/desktop/kde/plasma/plasma-nm/pspec.xml @@ -13,7 +13,7 @@ app:console Plasma applet written in QML for managing network connections Plasma applet written in QML for managing network connections - mirrors://kde/stable/plasma/5.5.0/plasma-nm-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-nm-5.5.1.tar.xz qt5-base-devel libgcc @@ -78,6 +78,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-pa/pspec.xml b/desktop/kde/plasma/plasma-pa/pspec.xml index 47fd52a17a..602d1db5ad 100644 --- a/desktop/kde/plasma/plasma-pa/pspec.xml +++ b/desktop/kde/plasma/plasma-pa/pspec.xml @@ -13,7 +13,7 @@ app:console Plasma applet for audio volume management using PulseAudio. Plasma applet for audio volume management using PulseAudio. - mirrors://kde/stable/plasma/5.5.0/plasma-pa-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-pa-5.5.1.tar.xz qt5-base-devel qt5-quick1-devel @@ -53,6 +53,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-sdk/pspec.xml b/desktop/kde/plasma/plasma-sdk/pspec.xml index 4c32ddf41b..6a992f0fe8 100644 --- a/desktop/kde/plasma/plasma-sdk/pspec.xml +++ b/desktop/kde/plasma/plasma-sdk/pspec.xml @@ -14,7 +14,7 @@ app:gui Applications useful for Plasma development Applications useful for Plasma development - mirrors://kde/stable/plasma/5.5.0/plasma-sdk-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-sdk-5.5.1.tar.xz qt5-base-devel qt5-webkit-devel @@ -75,6 +75,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml index 2f4cbd6728..8c5413893a 100644 --- a/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml +++ b/desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml @@ -14,7 +14,7 @@ app:gui The KDE Plasma Workspace Components The KDE Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.0/plasma-workspace-wallpapers-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-workspace-wallpapers-5.5.1.tar.xz qt5-base extra-cmake-modules @@ -38,6 +38,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/plasma-workspace/pspec.xml b/desktop/kde/plasma/plasma-workspace/pspec.xml index a9820bfbbc..501ecb847a 100644 --- a/desktop/kde/plasma/plasma-workspace/pspec.xml +++ b/desktop/kde/plasma/plasma-workspace/pspec.xml @@ -14,11 +14,11 @@ app:gui The KDE5 Plasma Workspace Components The KDE5 Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.0/plasma-workspace-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/plasma-workspace-5.5.1.tar.xz baloo-devel kactivities-devel - kde-cli-tools + kde-cli-tools kdelibs4-support-devel kdesignerplugin kdesu-devel @@ -35,12 +35,12 @@ ktexteditor-devel kunitconversion-devel kscreenlocker-devel - kwayland-devel - kwin-devel + kwayland-devel + kwin-devel kxmlrpcclient-devel libdbusmenu-qt-devel - libkscreen-devel - libksysguard-devel + libkscreen-devel + libksysguard-devel libqalculate-devel libX11-devel libXau-devel @@ -85,7 +85,7 @@ kcrash kdbusaddons kdeclarative - kde-cli-tools + kde-cli-tools kdelibs4-support kdesu kdewebkit @@ -108,7 +108,7 @@ ktexteditor ktextwidgets kwallet - kwayland + kwayland kwidgetsaddons kwindowsystem kxmlgui @@ -116,8 +116,8 @@ libdbusmenu-qt libgcc libICE - libkscreen - libksysguard + libkscreen + libksysguard libqalculate libSM libX11 @@ -185,7 +185,7 @@ kcrash-devel kdbusaddons-devel kdeclarative-devel - kde-cli-tools + kde-cli-tools kdelibs4-support-devel kdesu-devel kdewebkit @@ -262,6 +262,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml index 5f421688e1..d5bdb0e9cc 100644 --- a/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml +++ b/desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml @@ -14,7 +14,7 @@ app:gui The KDE Plasma Workspace Components The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. - mirrors://kde/stable/plasma/5.5.0/polkit-kde-agent-1-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/polkit-kde-agent-1-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -55,6 +55,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/powerdevil/pspec.xml b/desktop/kde/plasma/powerdevil/pspec.xml index 0b65d5224b..7453f8886f 100644 --- a/desktop/kde/plasma/powerdevil/pspec.xml +++ b/desktop/kde/plasma/powerdevil/pspec.xml @@ -13,7 +13,7 @@ app:console KDE power manager module KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - mirrors://kde/stable/plasma/5.5.0/powerdevil-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/powerdevil-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -26,7 +26,7 @@ kitemmodels-devel kemoticons-devel docbook-xsl - plasma-workspace-devel + plasma-workspace-devel extra-cmake-modules @@ -39,7 +39,7 @@ libgcc libxcb eudev - plasma-workspace + plasma-workspace kio kauth ki18n @@ -73,6 +73,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/sddm-kcm/pspec.xml b/desktop/kde/plasma/sddm-kcm/pspec.xml index 0be67e1d4d..a264331261 100644 --- a/desktop/kde/plasma/sddm-kcm/pspec.xml +++ b/desktop/kde/plasma/sddm-kcm/pspec.xml @@ -12,7 +12,7 @@ app:console KDE5 Config Module for SDDM KDE5 Config Module for SDDM - mirrors://kde/stable/plasma/5.5.0/sddm-kcm-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/sddm-kcm-5.5.1.tar.xz kcoreaddons-devel kdoctools-devel @@ -70,6 +70,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/system-settings/pspec.xml b/desktop/kde/plasma/system-settings/pspec.xml index 5ab2e764e6..634f546c8f 100644 --- a/desktop/kde/plasma/system-settings/pspec.xml +++ b/desktop/kde/plasma/system-settings/pspec.xml @@ -13,7 +13,7 @@ app:console KDE5 system settings manager System-settings is a control panel for KDE5 Plasma - mirrors://kde/stable/plasma/5.5.0/systemsettings-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/systemsettings-5.5.1.tar.xz qt5-base-devel kdoctools-devel @@ -89,6 +89,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/desktop/kde/plasma/user-manager/pspec.xml b/desktop/kde/plasma/user-manager/pspec.xml index de61c57030..3a518e23d1 100644 --- a/desktop/kde/plasma/user-manager/pspec.xml +++ b/desktop/kde/plasma/user-manager/pspec.xml @@ -13,7 +13,7 @@ app:gui KDE 5 User Manager User Manager within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.0/user-manager-5.5.0.tar.xz + mirrors://kde/stable/plasma/5.5.1/user-manager-5.5.1.tar.xz qt5-base-devel accountsservice-devel @@ -58,6 +58,13 @@ + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2015-12-09 5.5.0 diff --git a/pisi-index.xml b/pisi-index.xml index 48b8ea23b7..56a59772e1 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -398,24 +398,3603 @@ - lmdb - http://symas.com/mdb/ + emacs-php-mode + http://php-mode.sourceforge.net PisiLinux Community admins@pisilinux.org - OpenLDAP - custom - library - app:console - server.database - Symas Lightning Memory-Mapped Database - An ultra-fast, ultra-compact key-value embedded data store. - https://github.com/LMDB/lmdb/archive/LMDB_0.9.16.tar.gz - server/database/lmdb/pspec.xml + GPLv2 + data + editor.emacs + PHP mode for Emacs + Emacs için PHP kipi + php-mode is an add-on for Emacs to help work with PHP files more efficiently. + php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. + http://stable.melpa.org/packages/php-mode-1.17.0.tar + + emacs + + editor/emacs/emacs-php-mode/pspec.xml - lmdb + emacs-php-mode + + emacs + + + /etc + /usr/share/emacs + + + 80-php-mode.el + + + + + 2015-12-05 + 1.17.0 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 1.5.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 1.5.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.5.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + emacs + http://www.gnu.org/software/emacs + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:gui + app:console + editor.emacs + An extensible console-mode editor + Genişletilebilir bir metin düzenleyici + Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. + Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. + emacs + ftp://mirrors.kernel.org/gnu/emacs/emacs-24.5.tar.xz + + gtk2-devel + alsa-lib-devel + fontconfig-devel + giflib-devel + gpm + libjpeg-turbo-devel + libICE-devel + libSM-devel + libXft-devel + libXpm-devel + libXrender-devel + libpng-devel + librsvg-devel + tiff-devel + + editor/emacs/emacs /pspec.xml + + + emacs + + gpm + tiff + gtk3 + cairo + pango + libSM + libXft + libICE + giflib + libXpm + gnutls + librsvg + alsa-lib + gdk-pixbuf + fontconfig + libXrender + imagemagick + libjpeg-turbo + + + /etc + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/share/emacs + /usr/share/icons + /var/games/emacs + /usr/share/pixmaps + /usr/share/applications + /usr/libexec/emacs + + + System.PackageHandler + + + site-start.el + pisi-spec.rnc + 80-nxml-mode.el + emacs.desktop + + + + + 2015-11-22 + 24.5 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 24.1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-29 + 24.3 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-23 + 24.2 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-26 + 24.2 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 24.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + emacs-mmm-mode + http://mmm-mode.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + editor.emacs + Multiple Major Mode module for Emacs + Emacs Çoklu Ana Kip eklentisi + MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. + MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. + http://sourceforge.net/projects/mmm-mode/files/mmm-mode/mmm-mode-0.5.4.tar.gz + editor/emacs/emacs-mmm-mode/pspec.xml + + + emacs-mmm-mode + + emacs + + + /etc + /usr/share/doc + /usr/share/info + /usr/share/emacs + + + 80-mmm-mode.el + + + + + 2015-12-07 + 0.5.4 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 0.5.1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 0.5.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.4.8 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + emacs-python + http://python-mode.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + editor.emacs + Emacs major mode for editing Python source code + Python kaynak kodlarını düzenlemek için emacs kipi + emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. + Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. + https://launchpad.net/python-mode/trunk/6.2.1/+download/python-mode.el-6.2.1.tar.gz + editor/emacs/emacs-python/pspec.xml + + + emacs-python + + pymacs + emacs + + + /etc/emacs + /usr/share/emacs + + + 80-python.el + + + + + 2015-12-05 + 6.2.1 + Release bump. + Ilker Manap + ilkermanap@gmail.com + + + 2014-05-24 + 6.1.2 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 6.1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-09 + 6.1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + emacs-color-theme + http://www.emacswiki.org/cgi-bin/wiki?ColorTheme + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + editor.emacs + Emacs-Lisp color theme package + Emacs-List renk paketi + Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. + Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. + http://download.gna.org/color-theme/color-theme-6.6.0.tar.gz + editor/emacs/emacs-color-theme/pspec.xml + + + emacs-color-theme + + emacs + + + /usr/share/doc + /etc/emacs/site-lisp + /usr/share/emacs/site-lisp/color-theme + + + 80-color-theme.el + + + + + 2014-05-24 + 6.6.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-23 + 6.6.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 6.6.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + nano + http://www.nano-editor.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + editor + GNU GPL'd Pico clone with more functionality + Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. + Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". + Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". + Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. + http://www.nano-editor.org/dist/v2.3/nano-2.3.5.tar.gz + + ncurses-devel + gettext-devel + + editor/nano/pspec.xml + + + nano + + ncurses + file + + + /etc + /usr/share/locale + /usr/share/doc/nano + /usr/share/man + /usr/share/info + /usr/share/nano + /usr/bin + /bin + + + + + 2014-07-11 + 2.3.5 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-11 + 2.3.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 2.3.1 + Fix dep, release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-06-27 + 2.3.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + bluefish + http://bluefish.openoffice.nl/index.html + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app:gui + programming.environment + Bluefish is a powerful editor targeted towards programmers and webdevelopers + Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici + Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Bluefish supports many programming and markup languages. + Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. + mirrors://sourceforge/bluefish/2.2.7/bluefish-2.2.7.tar.gz + + enchant + glib2-devel + gtk2-devel + libxml2-devel + intltool + gettext-devel + + editor/bluefish/pspec.xml + + + Bluefish + + atk + desktop-file-utils + cairo + gdk-pixbuf + gtk3 + pango + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + + 2015-10-19 + 2.2.7 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-02-11 + 2.2.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-05 + 2.2.4 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2013-01-10 + 2.2.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + medit + http://mooedit.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + app:gui + editor + Multiplatform GTK text editor + Sekme özelliğine sahip bir metin düzenleyicisi + Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. + Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. + medit + mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 + + python-gtk-devel + python-devel + intltool + gtk2-devel + atk-devel + cairo-devel + gettext-devel + pkgconfig + glib2-devel + libX11-devel + python3-devel + libxml2-devel + gtk2-devel + pango-devel + lua-devel + libSM-devel + libICE-devel + gdk-pixbuf-devel + + + desktop-tr.patch + fix_help_dir.patch + + editor/medit/pspec.xml + + + medit + + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/medit + /usr/share/pixmaps + /usr/share/doc + /usr/share/man + + + + + 2014-06-04 + 1.2.0 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 1.1.96 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-10 + 1.1.92 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vim + http://www.vim.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + editor.vi + Vi IMproved, an advanced text editor + Vi Improved, gelişmiş metin editörü + Vi IMproved – klon edytora Vi + Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. + VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. + Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. + https://github.com/vim/vim/archive/v7.4.909.tar.gz + + gpm + ctags + python-devel + acl-devel + gtk2-devel + libSM-devel + libXt-devel + pango-devel + libICE-devel + ruby-devel + ncurses-devel + + + vim-fix-xml-crash.patch + pisilinux/grub_conf.patch + pisilinux/xorg_conf.patch + vim-7.0-warning.patch + vim-7.3-interix-link.patch + + editor/vi/vim/pspec.xml + + + vim + app:console + + gpm + ctags + perl + ruby + acl + ncurses + + + /usr/bin/vi* + /usr/bin/rvi* + /usr/bin/ex + /usr/bin/xxd + /bin + /usr/share/vim + /usr/share/man + /usr/share/doc + /etc/vim + + + vimrc + pisilinux/actions.vim + pisilinux/pspec.vim + pisilinux/translations.vim + plugins/taglist.vim + plugins/kde-devel-vim.vim + plugins/newpythonfile.vim + plugins/redstring.vim + + + + gvim + app:gui + gvim + gui + + acl + perl + glib2 + libX11 + ncurses + gtk2 + gpm + libSM + libXt + pango + libICE + vim + ruby + gdk-pixbuf + + + /usr/bin/ggvi* + /usr/bin/gvi* + /usr/bin/egvi* + /usr/bin/rggvi* + /usr/bin/rgvi* + /usr/bin/gvimtutor + /usr/share/pixmaps + /usr/share/applications + + + gvimtutor + gvim.xpm + gvim.desktop + + + + + 2015-11-05 + 0.7.4.909 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-12 + 0.7.4.692 + Rebuild for ruby + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-09-28 + 0.7.4.461 + Update official patches to current 461. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-27 + 0.7.4.307 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-17 + 0.7.3.843 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 7.3.843 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 7.3.843 + Fix gvim desps. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-03 + 7.3.843 + Release no bump for ruby 2.0 + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-06 + 7.3.762 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gkrellm + http://www.gkrellm.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + service + hardware + A compact and clean system monitoring tool + Sade görünümlü sistem durumu izleyicisi + A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. + Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. + gkrellm + http://members.dslextreme.com/users/billw/gkrellm/gkrellm-2.3.5.tar.gz + + gnutls-devel + gtk2-devel + pango-devel + libX11-devel + glib2-devel + libgcrypt-devel + libICE-devel + libSM-devel + + + drop_privileges.patch + gkrellmd-conf.patch + + hardware/info/gkrellm/pspec.xml + + + gkrellm + + gnutls + gtk2 + pango + glib2 + libX11 + libgcrypt + libICE + gdk-pixbuf + libSM + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + /usr/share/man + + + System.Service + + + gkrellm.desktop + gkrellm.png + + + + gkrellm-devel + Development files for gkrellm + gkrellm için geliştirme dosyaları + + gkrellm + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-17 + 2.3.5 + Rebuild + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-04-07 + 2.3.5 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 2.3.5 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 2.3.5 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-06 + 2.3.5 + Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-15 + 2.3.5 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + dmidecode + http://www.nongnu.org/dmidecode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware + Tool to analyse BIOS DMI data + BIOS DMI verisi inceleme araçları + Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. + dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. + dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. + http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.12.tar.gz + hardware/info/dmidecode/pspec.xml + + + dmidecode + + /usr/bin + /usr/sbin + /usr/share/doc + /usr/share/man + + + laptop-detect + + + + + 2014-01-22 + 2.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-25 + 2.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + media-player-info + http://cgit.freedesktop.org/media-player-info + + PisiLinux Community + admins@pisilinux.org + + BSD + hardware + Media player capability database + Medya oynatıcısı yetenek veritabanı + media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. + media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. + http://www.freedesktop.org/software/media-player-info/media-player-info-22.tar.gz + + eudev-devel + python3-devel + + hardware/info/media-player-info/pspec.xml + + + media-player-info + + /lib/udev/rules.d + /lib/udev + /usr/share/media-player-info + /usr/share/doc + + + + + 2015-02-16 + 22 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-05 + 21 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-25 + 19 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-20 + 17 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2011-10-05 + 15 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + sane-backends + http://www.sane-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.scanner + Scanner access software + SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları + Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. + SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. + sane + ftp://ftp.archlinux.org/other/sane/sane-backends-1.0.24.tar.gz + + libieee1284-devel + libusb-compat-devel + libnl-devel + openssl-devel + cups-devel + libgphoto2-devel + libv4l-devel + avahi-devel + libjpeg-turbo-devel + tiff-devel + net-snmp-devel + + + fix-buffer-overflow.patch + sane-backends-1.0.20-open-macro.patch + sane-backends-1.0.23-sane-config-multilib.patch + sane-backends-1.0.23-soname.patch + sane-backends-1.0.21-epson-expression800.patch + sane-backends-1.0.23-udev.patch + suse/fix-mustek_pp_ccd300.c.patch + archlinux/network.patch + archlinux/segfault-avahi-fix-kodakio.patch + + hardware/scannner/sane-backends/pspec.xml + + + sane-backends + + libnl + openssl + libusb-compat + libieee1284 + avahi-libs + libgphoto2 + libv4l + tiff + libjpeg-turbo + net-snmp + cups + libexif + + + /etc/sane.d/dll.d + /etc/env.d + /etc/sane.d + /usr/bin + /usr/share/locale + /usr/sbin + /usr/libexec + /usr/lib + /usr/share/doc/sane-backends/README + /usr/share/doc/sane-backends/COPYING + /usr/share/man + /usr/share/pixmaps + /lib/udev/rules.d + /usr/share/sane + + + sane.png + 30sane + + + + sane-backends-devel + Development files for sane-backends + sane-backends için geliştirme dosyaları + + sane-backends + + + /usr/include + /usr/lib/pkgconfig + + + + sane-backends-docs + Documentation for SANE backends + sane-backends için belgelendirme dosyaları + + /usr/share/doc + + + + + 2014-02-15 + 1.0.24 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-21 + 1.0.23 + Move devel files fix to paths + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-28 + 1.0.23 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-25 + 1.0.23 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + b43-fwcutter + http://bu3sch.de/b43/fwcutter + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.firmware + Firmware Tool for Broadcom 43xx + Broadcom kablosuz sürücüleri için firmware üretme aracı + Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack + b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. + http://bues.ch/b43/fwcutter/b43-fwcutter-018.tar.bz2 + hardware/firmware/b43-fwcutter/pspec.xml + + + b43-fwcutter + + /usr/bin + /usr/share/doc + /usr/share/man/man1 + + + + + 2014-02-04 + 018 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-11-15 + 015 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + alsa-firmware + http://www.alsa-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv2+ + LGPLv2+ + BSD + data + hardware.firmware + firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). + Firmware for several ALSA-supported sound cards + Çeşitli ALSA destekli ses kartları için firmware dosyaları + alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. + alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. + ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.29.tar.bz2 + hardware/firmware/alsa-firmware/pspec.xml + + + alsa-firmware + + /usr/share/alsa/firmware + /lib/firmware + /usr/share/doc + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-06 + 1.0.27 + Remove conflicted ctefx.bin file, it is in linux-firmware package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-10 + 1.0.27 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-29 + 1.0.25.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + b43-firmware + http://www.linuxwireless.org/en/users/Drivers/b43 + + PisiLinux Community + admins@pisilinux.org + + freedist + data + hardware.firmware + Firmware for Broadcom B43 wireless network chips + Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı + Firmware for Broadcom wireless network chips + Broadcom kablosuz ağ çipleri için aygıt yazılımı + http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o + http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2 + + b43-fwcutter + + hardware/firmware/b43-firmware/pspec.xml + + + b43-firmware + + /lib/firmware + + + + + 2014-01-17 + 5.100.138 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-15 + 5.100.138 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + cdparanoia + http://www.xiph.org/paranoia/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.optical + An advanced CDDA reader with error correction + Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu + cdparanoia is an advanced CDDA (audio CD) reader with error correction. + http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz + + build_system.patch + cdparanoia-III-05-gcc4.3.patch + + hardware/optical/cdparanoia/pspec.xml + + + cdparanoia + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + cdparanoia-devel + Development files for cdparanoia + cdparanoia için geliştirme dosyaları + + cdparanoia + + + /usr/include + + + + + 2014-05-20 + 3.10.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-10 + 3.10.2 + Rebuild for patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2014-01-01 + 3.10.2 + Release bump and clean + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-09-14 + 3.10.2 + *Release bump. + *Disable patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-10-13 + 3.10.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libcdio-paranoia + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + GPLv2+ + LGPLv2.1 + library + hardware.optical + CD paranoia libraries from libcdio + An advanced CDDA reader with error correction. + mirrors://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.bz2 + + libcdio-devel + + + libcdio-paranoia-0.90-mkdir_p.patch + + hardware/optical/libcdio-paranoia/pspec.xml + + + libcdio-paranoia + + libcdio + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-paranoia-devel + Development files for libcdio-paranoia + + libcdio-paranoia + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-02-25 + 0.90_p1 + Rebuild for libcdio + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 0.90_p1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 0.90_p1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 0.90_p1 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + cdrkit + http://cdrkit.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Suite of programs for CD/DVD recording. + Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. + http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz + + cdparanoia-devel + libcap-devel + zlib-devel + bzip2 + cmake + + hardware/optical/cdrkit/pspec.xml + + + cdrkit + + file + zlib + bzip2 + libcap + + + /usr/bin + /usr/sbin + /usr/include + /usr/lib + /usr/share/man + /usr/share/doc + + + cdrtools + + + + + 2013-09-14 + 1.1.11 + Disable patch + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-05-16 + 1.1.11 + fixing working + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-11 + 1.1.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libcdio + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.optical + Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. + A library to encapsulate CD-ROM reading and control + CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü + This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. + GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. + mirrors://gnu/libcdio/libcdio-0.92.tar.gz + + libgcc + + + libcdio-0.83-linking.patch + + hardware/optical/libcdio/pspec.xml + + + libcdio + + libgcc + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-devel + Development files for libcdio + libcdio için geliştirme dosyaları + + libcdio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.92 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 0.90 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 0.90 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-05-27 + 0.82 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libmtdev + http://bitmath.org/code/mtdev + + PisiLinux Community + admins@pisilinux.org + + MIT + library + hardware.misc + Multitouch Protocol Translation Library + Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi + The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. + Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. + http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz + hardware/misc/libmtdev/pspec.xml + + + libmtdev + + /usr/bin + /usr/lib + /usr/share/doc + + + + libmtdev-devel + Development files of libmtdev + Libmtdev için geliştirme dosyaları + + libmtdev + + + /usr/include + /usr/lib/pkgconfig + + + + libmtdev-32bit + 32-bit shared libraries for libmtdev + emul32 + emul32 + + glibc-32bit + + + libmtdev + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.5 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 1.1.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2012-10-03 + 1.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libftdi + http://www.intra2net.com/en/developer/libftdi/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + A library for accessing to FTDI USB chips + FTDI USB entegrelerine erişim kitaplığı + libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. + libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. + http://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.1.tar.bz2 + + doxygen + + + fix-udev-group_and_usb_name.patch + + hardware/misc/libftdi/pspec.xml + + + libftdi + + libusb + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/doc + + + + python-libftdi + Python bindings for libftdi + Python için libftdi bağlayıcıları + + libusb + python3 + libftdi + + + /usr/lib/python* + + + + libftdi-devel + Development files for libftdi + libftdi için geliştirme dosyaları + + libftdi + libusb-devel + + + /usr/bin/libftdi-config + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/doc/libftdi/examples + + + + + 2014-07-05 + 1.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-10 + 0.20 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-03-09 + 0.20 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-30 + 0.20 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-11-16 + 0.20 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libgphoto2 + http://www.gphoto.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Library that implements support for numerous digital cameras + Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane + Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. + libgphoto2 is the core library designed to allow access to digital camera by external programs. + libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. + Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. + mirrors://sourceforge/gphoto/libgphoto2-2.5.8.tar.bz2 + + doxygen + libxml2-devel + gd-devel + tiff-devel + libjpeg-turbo-devel + libexif-devel + libusb-devel + + hardware/misc/libgphoto2/pspec.xml + + + libgphoto2 + + libxml2 + libtool-ltdl + libusb + gd + libexif + libjpeg-turbo + + + /usr/bin + /lib/udev + /usr/share/doc/libgphoto2/README + /usr/share/doc/libgphoto2/COPYING + /usr/lib + /usr/share/libgphoto2 + /usr/share/hal/fdi + /lib/udev/rules.d + /usr/share/locale + /usr/share/man + + + System.Package + + + + libgphoto2-docs + Documentation for libgphoto2 + libgphoto2 için detaylı belgelendirme + + /usr/share/doc/libgphoto2 + /usr/share/doc/libgphoto2/camlibs + /usr/share/doc/libgphoto2/apidocs.html + /usr/share/doc/libgphoto2/linux-hotplug + + + + libgphoto2-devel + Development files for libgphoto2 + libgphoto2 için geliştirme dosyaları + + libexif-devel + libgphoto2 + + + /usr/bin/gphoto2-config* + /usr/bin/gphoto2-port-config + /usr/include/gphoto2 + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-02 + 2.5.8 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-15 + 2.5.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-30 + 2.5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 2.5.0 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libsmbios + http://linux.dell.com/libsmbios/main/index.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + OSL-2.0 + library + app:console + hardware.misc + Provide access to (SM)BIOS information + (SM)BIOS bilgilerine ulaşabilmeyi sağlar + libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. + http://linux.dell.com/libsmbios/download/libsmbios/libsmbios-2.2.28/libsmbios-2.2.28.tar.bz2 + + libxml2-devel + + hardware/misc/libsmbios/pspec.xml + + + libsmbios + + libgcc + + + /etc + /usr/share + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/locale + + + + libsmbios-devel + Development files for libsmbios + libsmbios için geliştirme dosyaları + + libsmbios + + + /usr/include/smbios + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-02-01 + 2.2.28 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 2.2.28 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libmtp + http://libmtp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + An implementation of Microsoft's Media Transfer Protocol (MTP) + Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane + libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. + libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. + libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. + libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. + mirrors://sourceforge/libmtp/1.9/libmtp-1.1.9.tar.gz + + doxygen + libusb-devel + libgcrypt-devel + + hardware/misc/libmtp/pspec.xml + + + libmtp + + libusb + libgcrypt + + + /usr/bin + /usr/lib + /lib/udev + /lib/udev/rules.d + /usr/share/hal + /usr/share/doc + + + + libmtp-devel + Development files for libmtp + libmtp için geliştirme dosyaları + + libmtp + libusb-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-28 + 1.1.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.1.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-05 + 1.1.6 + Rebuild for libgcrypt. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 1.1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 1.1.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libieee1284 + http://cyberelk.net/tim/libieee1284/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Library to query devices using IEEE1284 + IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane + Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. + Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. + Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. + La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. + mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 + + python-devel + + + libieee1284-strict-aliasing.patch + + hardware/misc/libieee1284/pspec.xml + + + libieee1284 + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + python-libieee1284 + Python bindings for libieee1284 + libieee1284 için Python bağlayıcıları + + libieee1284 + + + /usr/lib/python* + + + + libieee1284-devel + Development files for libieee1284 + libieee1284 için geliştirme dosyaları + + libieee1284 + + + /usr/include + /usr/share/man/man3 + + + + + 2014-03-10 + 0.2.11 + Fix rpath + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-03-09 + 0.2.11 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 0.2.11 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 0.2.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gpm + http://linux.schottelius.org/gpm/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.misc + Console mouse driver + Konsol tabanlı fare sürücüsü + GPM (short for General Purpose Mouse) brings mouse support to TTYs. + Genel amaçlı fare ve konsolda fare desteği içindir. + http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 + + ncurses-devel + texinfo + + hardware/misc/gpm/pspec.xml + + + gpm + + ncurses + + + /usr/bin + /usr/include + /usr/share/man + /usr/share/info + /usr/share/doc + /usr/lib + /etc + /usr/share/emacs + + + System.Service + + + gpm.conf.d + + + + + 2014-05-20 + 1.20.7 + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-25 + 1.20.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-16 + 1.20.7 + First release + PisiLinux Community + namso-01qhotmail.it + + + + + + libx86 + http://www.codon.org.uk/~mjg59/libx86/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + A hardware-independent library for executing real-mode x86 code + Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane + libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. + libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. + A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. + http://www.codon.org.uk/~mjg59/libx86/downloads/libx86-1.1.tar.gz + + libx86-0.99-ifmask.patch + libx86-add-pkgconfig.patch + libx86-mmap-offset.patch + + hardware/misc/libx86/pspec.xml + + + libx86 + + /usr/lib + /usr/share/doc + + + + libx86-devel + + libx86 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 1.1 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + intel-ucode + http://www.intel.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + hardware.cpu + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + http://downloadmirror.intel.com/23574/eng/microcode-20140122.tgz + + intel-microcode2ucode.c + + hardware/cpu/intel-ucode/pspec.xml + + + intel-ucode + + /usr/share/doc + /lib/firmware + + + LICENSE + + + + + 2014-05-06 + 20140122 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-23 + 20130906 + Version Bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-10-01 + 20120606 + First release + Erdem Artan + admins@pisilinux.org + + + + + + irqbalance + http://www.irqbalance.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.cpu + Distribute hardware interrupts across processors + Donanım kesmelerini işlemciler arasında dağıtır + Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. + Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. + https://github.com/Irqbalance/irqbalance/archive/v1.0.9.tar.gz + + numactl-devel + glib2-devel + libcap-ng-devel + + hardware/cpu/irqbalance/pspec.xml + + + irqbalance + + numactl + glib2 + libcap-ng + + + /etc + /usr/sbin + /usr/share/man + /usr/share/doc + + + System.Service + + + irqbalance.confd + + + + + 2015-10-01 + 1.0.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-06 + 1.0.7 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-26 + 1.0.4 + Rebuild with new Download Area + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-01 + 1.0.4 + First release + Erdem Artan + admins@pisilinux.org + + + + + + foomatic-db-engine + http://www.linuxprinting.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Foomatic printer database engine + Foomatic yazıcı veritabanı motoru + foomatic-db-engine is the layer that provides the database engine to Foomatic. + foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. + http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0.12.tar.gz + + libxml2-devel + cups-devel + + + foomatic-db-engine-4.0.8-fix-sandbox.patch + 4.0.7-perl-module.patch + 4.0.7-respect-ldflag.patch + + hardware/printer/foomatic-db-engine/pspec.xml + + + foomatic-db-engine + + libxml2 + + + /usr/bin + /usr/sbin + /usr/lib + /etc/foomatic + /usr/share/foomatic/templates + /usr/share/man + /usr/share/doc + + + + + 2015-10-28 + 4.0.12 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-09-13 + 4.0.11 + Rebuild for new perl. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-15 + 4.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 4.0.8 + Depend on cups-filters. + PisiLinux Community + admins@pisilinux.org + + + 2013-12-01 + 4.0.8 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-19 + 4.0.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + foomatic-db + http://www.linuxprinting.org/foomatic.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + data + hardware.printer + Database of printers and printer drivers + Yazıcı sürücüleri + foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. + Foomatic yazıcı veritabanı ve sürücüleri + http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20150819.tar.gz + + cleanup-script + + + fedora/foomatic-db-device-ids.patch + fedora/foomatic-db-invalid.patch + + hardware/printer/foomatic-db/pspec.xml + + + foomatic-db + + pnm2ppa + + + /usr/share + + + + + 2015-10-28 + 4.0.20150819 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 4.0_20130103 + Depend on cups-filters. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-24 + 4.0_20130103 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-03 + 4.0_20130103 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + cups-filters + http://www.openprinting.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + GPLv3 + GPLv2+ + GPLv3+ + LGPLv2+ + MIT + data + library + app:console + hardware.printer + OpenPrinting CUPS filters and backends + Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. + http://www.openprinting.org/download/cups-filters/cups-filters-1.1.0.tar.xz + + cups-devel + glib2-devel + tiff-devel + lcms2-devel + dbus-devel + python-devel + libpng-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + dejavu-fonts + poppler-utils + poppler-cpp-devel + zlib-devel + avahi-devel + avahi-glib-devel + python-cups + qpdf-devel + ghostscript-devel + poppler-devel + + hardware/printer/cups-filters/pspec.xml + + + cups-filters + + cups + dbus + tiff + zlib + glib2 + lcms2 + libgcc + libpng + fontconfig + mit-kerberos + libjpeg-turbo + qpdf + ghostscript + poppler + e2fsprogs + avahi-glib + avahi-libs + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/ppd + /usr/bin + /usr/share/cups + /etc/cups/cups-browsed.conf + /etc/fonts/conf.d/99pdftoopvp.conf + + + cups + foomatic-filters + + + foomatic-filters + + + + cups-filters-devel + Development files for cups-filters + Cups-filters için geliştirme dosyaları + + cups-filters + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-28 + 1.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-15 + 1.0.65 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-25 + 1.0.58 + Verison bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-17 + 1.0.53 + Verison bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-05 + 1.0.44 + Rebuild to replace foomatic-filters. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-28 + 1.0.44 + rebuild for unused and runtime dep. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-18 + 1.0.44 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-02 + 1.0.41 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-16 + 1.0.40 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 1.0.39 + Cersion bump,rebuil for new poppler. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-28 + 1.0.35 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-01 + 1.0.35 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + cups + http://www.cups.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + service + hardware.printer + Common Unix Printing System + Unix Ortak Yazdırma Sistemi + cups provides a portable printing layer for *nix-based operating systems. + http://www.cups.org/software/2.0.3/cups-2.0.3-source.tar.bz2 + + acl-devel + pam-devel + dbus-devel + zlib-devel + libusb-devel + libgcc + mit-kerberos + libpaper-devel + + + archlinux/cups-no-export-ssllibs.patch + archlinux/cups-no-gzip-man.patch + archlinux/cups-1.6.2-statedir.patch + archlinux/cups-no-gcrypt.patch + fedora/cups-enum-all.patch + fedora/cups-final-content-type.patch + fedora/cups-res_init.patch + gentoo/cups-1.6.0-fix-install-perms.patch + gentoo/cups-2.0.1-rename-systemd-service-files.patch + pisilinux/lib64.patch + pisilinux/nostrip.patch + pisilinux/cups-run.patch + pld-linux/cups-avahi-address.patch + + hardware/printer/cups/pspec.xml + + + cups + + acl + pam + dbus + zlib + libusb + libgcc + libpaper + mit-kerberos + + + /etc/cups/*conf + /usr/lib/tmpfiles.d/cups.conf + /usr/lib + /usr/sbin + /usr/bin + /var/cache/cups/rss + /var/spool/cups/tmp + /run/cups/certs + /var/log/cups + /etc + /lib/udev/rules.d + /lib/systemd/system + /usr/share/cups + /usr/share/icons + /usr/share/applications + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Service + System.Package + + + tmpfiles.conf + cups.logrotate + fedora/textonly.ppd + + + + cups-devel + Development files for cups + cups için geliştirme dosyaları + + cups + + + /usr/include + /usr/bin/cups-config + + + + cups-32bit + 32-bit shared libraries for cups + cups için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + zlib-32bit + openssl-32bit + + + glibc-32bit + zlib-32bit + openssl-32bit + libgcc + cups + + + /usr/bin/cups-config-32bit + /usr/lib32 + + + + + 2015-06-10 + 2.0.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-05 + 2.0.1 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-25 + 1.7.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.7.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-30 + 1.7.1 + Fix comar service. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-18 + 1.7.1 + Add tmpfiles.conf. Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-17 + 1.7.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-1 + 1.7.0 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-10-14 + 1.6.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-13 + 1.6.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-19 + 1.6.1 + Lib64 path correction. + Ertan Güven + ertan@pisilinux.org + + + 2013-03-13 + 1.6.1 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-18 + 1.5.4 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-10-18 + 1.5.4 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + libpaper + http://packages.debian.org/unstable/source/libpaper + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.printer + Library for handling paper characteristics + Kağıt özelliklerini düzenlemek için kitaplık + Libpaper is a programming library for handling paper characteristics. + libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. + Libpaper es una librería de programación para manejar características de papel. + http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.24.tar.gz + + libpaper-1.1.23-debianbug475683.patch + libpaper-useglibcfallback.patch + + hardware/printer/libpaper/pspec.xml + + + libpaper + + /usr/bin + /usr/sbin + /usr/lib + /etc/ + /usr/share/man + /usr/share/doc + /usr/share/locale + + + papersize + + + + libpaper-devel + Development files for libpaper + libpaper için geliştirme dosyaları + + libpaper + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-21 + 1.1.24 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-13 + 1.1.24 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + enscript + http://www.gnu.org/software/enscript/enscript.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Powerful text-to-postscript converter + Metin dosyalarından postscript belge oluşturma aracı + enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. + Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç + http://www.iki.fi/mtr/genscript/enscript-1.6.4.tar.gz + + enscript-1.6.3-security.patch + enscript-1.6.3-language.patch + enscript-catmur.patch + ruby.patch + enscript-1.6.4-CVE-2008-3863-CVE-2008-4306.patch + enscript-1.6.4-config.patch + + hardware/printer/enscript/pspec.xml + + + enscript + + /etc + /usr/bin + /usr/share/doc + /usr/share/enscript + /usr/share/info + /usr/share/locale + /usr/share/man + + + ruby.st + + + + + 2014-01-23 + 1.6.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.6.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pnm2ppa + http://pnm2ppa.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Driver addons for some Hp Deskjet printers + Bazı Hp Deskjet yazıcılar için sürücü eklentileri + Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. + Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar + mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz + + pnm2ppa-default_config.patch + + hardware/printer/pnm2ppa/pspec.xml + + + pnm2ppa + + enscript + + + /etc + /etc/pdq + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/pnm2ppa + + + + + 2014-02-04 + 1.13 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 1.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libraw1394 + http://www.linux1394.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library that provides direct access to the IEEE 1394 bus + IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane + IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. + libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. + IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. + IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. + http://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.0.tar.xz + hardware/firewire/libraw1394/pspec.xml + + + libraw1394 + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libraw1394-devel + Development files for libraw1394 + libraw1394 için geliştirme dosyaları + + libraw1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 2.1.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-15 + 2.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libfreebob + http://freebob.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.firewire + FreeBoB firewire audio driver library + FreeBoB firewire ses sürücü kütüphanesi + libfreebob implements a userland driver for BeBoB-based firewire audio devices. + libfreebob BeBoB tabanlı firewire ses aygıtları için sürücü kütüphanesi içerir. + mirrors://sourceforge/freebob/libfreebob-1.0.11.tar.gz + + alsa-lib-devel + libraw1394-devel + libavc1394-devel + libiec61883-devel + + + libfreebob-1.0.11-includes.patch + gcc-4.5.patch + fix_usleep.patch + + hardware/firewire/libfreebob/pspec.xml + + + libfreebob + + alsa-lib + libraw1394 + libavc1394 + libiec61883 + + + /usr/lib + /usr/share/doc + + + + libfreebob-devel + Development files for libfreebob + libfreebob için geliştirme dosyaları + + libfreebob + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-01-30 + 1.0.11 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 1.0.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libiec61883 + http://www.linux1394.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. + libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. + http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz + + libraw1394-devel + + + libiec61883-1.2.0-installtests.patch + libiec61883-channel-allocation-without-local-node-rw.patch + + hardware/firewire/libiec61883/pspec.xml + + + libiec61883 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libiec61883-devel + Development files for libiec61883 + libiec61883 için geliştirme dosyaları + + libiec61883 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-03-09 + 1.2.0 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 1.2.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-15 + 1.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdc1394 + http://sourceforge.net/projects/libdc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Programming interface for IEEE 1394 based cameras + IEEE 1394 tabanlı kameralar için programlama kitaplığı + libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). + libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). + Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. + libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). + http://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.3/libdc1394-2.2.3.tar.gz + + libraw1394-devel + + hardware/firewire/libdc1394/pspec.xml + + + libdc1394 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdc1394-devel + Development files for libdc1394 + libdc1394 için geliştirme dosyaları + + libdc1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-09-13 + 2.2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-20 + 2.2.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 2.2.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-20 + 2.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libffado + http://www.ffado.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + hardware.firewire + Free firewire audio drivers + Ücretsiz firewire ses sürücüleri + libffado tries to provide open-source drivers for all FireWire based pro-audio devices. + libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. + http://www.ffado.org/files/libffado-2.2.1.tgz + + xdg-utils + glibmm-devel + libxmlpp-devel + alsa-lib-devel + dbus-c++-devel + libsigc++-devel + libconfig-devel + libraw1394-devel + libiec61883-devel + libgcc + + + libffado-api-doc-only.patch + libffado-libconfig145.patch + flags.patch + libffado-2.2.1-jack-detect.patch + libffado-2.2.1-mixer.patch + + hardware/firewire/libffado/pspec.xml + + + libffado + library + + glibmm + libgcc + dbus-c++ + libxmlpp + libconfig + libsigc++ + xdg-utils + libraw1394 + libiec61883 + python-setuptools + + + /usr/bin + /usr/lib + /usr/share/locale + /lib/udev/rules.d + /usr/share/libffado + /usr/share/dbus-1 + /usr/share/man + /usr/share/doc + + + + libffado-devel + Development files for libffado + libffado için geliştirme dosyaları + library + + libffado + + + /usr/include + /usr/lib/pkgconfig + + + + ffado-mixer + Graphical User Interface for FFADO + FFADO için grafik arayüzü + app:gui + hardware.sound + ffado-mixer + + libffado + python-setuptools + + + /usr/bin/ffado-mixer* + /usr/share/applications + /usr/share/pixmaps + + + pisilinux-ffadomixer.desktop + + + + + 2015-04-28 + 2.2.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-05-06 + 2.1.0 + Sandbox Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-15 + 2.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libavc1394 + http://sourceforge.net/projects/libavc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). + library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set + 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane + The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. + mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz + + libraw1394-devel + + + libavc1394-0.5.3-librom.patch + + hardware/firewire/libavc1394/pspec.xml + + + libavc1394 + + libraw1394 + /usr/bin /usr/lib @@ -424,23 +4003,3367 @@ - lmdb-devel - Development files for lmdb + libavc1394-devel + Development files for libavc1394 + libavc1394 için geliştirme dosyaları - lmdb + libavc1394 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 0.5.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 0.5.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.5.4 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 0.5.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + sbc + http://www.bluez.org/ + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + LGPLv2.1 + library + hardware.bluetooth + Bluetooth Subband Codec (SBC) library + An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. + http://www.kernel.org/pub/linux/bluetooth/sbc-1.3.tar.gz + hardware/bluetooth/sbc/pspec.xml + + + sbc + + /usr/bin/* + /usr/lib + /usr/share/doc/sbc/* + + + + sbc-devel + Development files for sbc + + sbc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-12 + 1.3 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-27 + 1.0 + R.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-12-19 + 1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + bluez + http://bluez.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + service + library + app:console + hardware.bluetooth + Official Linux Bluetooth protocol stack + Linux resmi Bluetooth protokol yığını + bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. + Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. + https://www.kernel.org/pub/linux/bluetooth/bluez-5.33.tar.xz + + cups-devel + dbus-devel + libnl-devel + alsa-lib-devel + gstreamer-devel + libsndfile-devel + libical-devel + glib2-devel + eudev-devel + readline-devel + + + 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch + + hardware/bluetooth/bluez/pspec.xml + + + bluez + + dbus + eudev + glib2 + readline + libical + bluez-libs + + + /lib/udev/rules.d + /lib/systemd/system + /usr/share/misc + /usr/bin + /usr/sbin + /lib/udev + /lib/bluetooth/obexd + /lib/bluetooth/bluetoothd + /usr/lib + /usr/libexec + /usr/share/man + /var/lib/bluetooth + /usr/share/alsa/bluetooth.conf + /usr/share/dbus-1 + /etc + + + System.Service + + + + bluez-libs + Libraries for use in Bluetooth applications + Uygulamalar için bluetooth erişim kitaplığı + + libical + + + /usr/lib/libbluetooth.so* + /usr/share/doc + + + + bluez-libs-devel + Development files for bluez-libs + bluez-libs için geliştirme dosyaları + + bluez-libs + + + /usr/include/bluetooth + /usr/lib/pkgconfig + + + + + 2015-08-16 + 5.33 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-29 + 5.27 + rebuild. + Vedat Demir + vedat@pisilinux.org + + + 2015-01-25 + 5.27 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-07-05 + 5.21 + Version bump and bugs fix. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-23 + 5.18 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2014-01-28 + 4.101 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-27 + 4.101 + R.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-06-28 + 4.101 + Add patches, --enable-hid2hci --enable-wiimote + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-09 + 4.101 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + alsa-tools + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + hardware.sound + ALSA configuration tools + Gelişmiş Linux Ses Mimarisi araçları + alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. + ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.29.tar.bz2 + + gtk2-devel + fltk-devel + alsa-lib-devel + + + usx2yloader_udev.patch + firmware_locations.patch + alsa-tools-1.0.17rc1-fix-link.patch + + hardware/sound/alsa-tools/pspec.xml + + + alsa-tools + ALSA console tools + alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. + + alsa-lib + + + /usr/bin + /usr/sbin + /lib/udev + /usr/lib + /lib/udev/rules.d + /usr/share/ld10k1 + /usr/share/sounds + /usr/share/man + /usr/share/doc/alsa-tools + + + 90-alsa-tools-firmware.rules + + + + alsa-tools-gui + Graphical frontends for some ALSA tools + alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. + + fltk + gtk2 + alsa-lib + + + /usr/share/man/man1/envy24control.1 + /usr/share/doc/alsa-tools-gui + /usr/share/applications + /usr/share/pixmaps + /usr/bin/echomixer + /usr/bin/envy24control + /usr/bin/hwmixvolume + /usr/bin/hdspconf + /usr/bin/hdspmixer + /usr/bin/rmedigicontrol + /usr/bin/qlo10k1 + + + alsa-tools.xpm + hwmixvolume.png + echomixer.desktop + envy24control.desktop + hdspmixer.desktop + hdspconf.desktop + hwmixvolume.desktop + rmedigicontrol.desktop + + + + alsa-tools-devel + Development files for alsa-tools + alsa-tools için geliştirme dosyaları + + alsa-tools + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-22 + 1.0.27 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-01-29 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + alsa-lib + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.sound + The Advanced Linux Sound Architecture (ALSA) library + Gelişmiş Linux Ses Mimarisi kütüphanesi + alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. + alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. + ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.29.tar.bz2 + + python-devel + + hardware/sound/alsa-lib/pspec.xml + + + alsa-lib + + python + + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/alsa + + + + alsa-lib-devel + Development files for alsa-lib + alsa-lib için geliştirme dosyaları + + alsa-lib + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include/sys + /usr/include/alsa + /usr/share/aclocal + /usr/share/man/man3 + + + + alsa-lib-32bit + 32-bit shared libraries for alsa-lib + alsa-lib için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + + + /usr/lib32 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27.2 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-05 + 1.0.27.2 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-08-22 + 1.0.27.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + alsa-utils + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.sound + Advanced Linux Sound Architecture (ALSA) utilities + ALSA araçları + alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). + Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir + ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.29.tar.bz2 + + xmlto + util-linux + libxslt + ncurses-devel + libsamplerate-devel + alsa-lib-devel + + hardware/sound/alsa-utils/pspec.xml + + + alsa-utils + + ncurses + alsa-lib + libsamplerate + + + /etc + /sbin + /usr/share/doc + /usr/share/man + /var/lib/alsa + /usr/bin + /usr/share/alsa + /lib/udev/rules.d + /usr/share/sounds + /lib/systemd/system + /usr/share/locale + + + System.Service + + + alsaunmute + 01beep.conf + alsactl.conf + alsaunmute.1 + + + + + 2015-03-04 + 1.0.29 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-19 + 1.0.28 + Rebuild version 28. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-19 + 1.0.28 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-26 + 1.0.27.2 + Remove systemd part. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-05 + 1.0.27.2 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-08-22 + 1.0.27.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.27.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 1.0.26.20121013 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + docker + http://docker.io + + Ertuğrul Erata + ertugrulerata@gmail.com + + Apache + app:console + hardware.virtualization + Pack, ship and run any application as a lightweight container + Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer + An open platform for distributed applications for developers and sysadmins + Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform + https://github.com/docker/docker/archive/v1.9.0.tar.gz + + git + golang + btrfs-progs-devel + device-mapper-devel + sqlite-devel + + hardware/virtualization/docker/pspec.xml + + + docker + + git + golang + sqlite + device-mapper + btrfs-progs + bridge-utils + iproute2 + iptables + + + /etc + /usr/bin/ + /usr/lib/docker + /usr/share/ + + + System.Service + System.Package + + + cgroupfs-mount + cgroupfs-umount + docker.confd + + + + + 2015-11-04 + 1.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-10-28 + 1.8.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-12 + 1.8.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-06 + 1.8.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-12 + 1.8.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-24 + 1.7.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 1.7.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-17 + 1.6.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + security + 2015-05-09 + 1.6.1 + Version bump.http://seclists.org/fulldisclosure/2015/May/28 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-17 + 1.6.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + virt-wrapper + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.virtualization + Wrapper for virtualization software + Sanallaştırma yazılımları için önbetik + virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. + virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. + http://source.pisilinux.org/1.0/virt-wrapper-0.1.1.tar.gz + + pass-options-arg.patch + kmod.patch + change_group.patch + + hardware/virtualization/virt-wrapper/pspec.xml + + + virt-wrapper + + /usr/libexec + /usr/share/locale + /usr/share/doc + + + + + 2014-11-23 + 0.1.1 + Chande group for usb connect issue + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-17 + 0.1.1 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 0.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lirc + http://www.lirc.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + hardware.irda + LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). + Linux Infrared Remote Control system + Linux Kızılötesi Uzaktan Kumanda Sistemi + Sistema de control remoto por infrarrojo en Linux + lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. + lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. + LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. + http://downloads.sourceforge.net/project/lirc/LIRC/0.9.3/lirc-0.9.3.tar.bz2 + + alsa-lib-devel + libftdi-devel + libusb-compat-devel + libX11-devel + libxslt + doxygen + + hardware/irda/lirc/pspec.xml + + + lirc + + alsa-lib + libftdi + libusb-compat + libX11 + + + /etc + /lib/udev/rules.d + /usr/bin + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /usr/share/lirc + /run + + + System.Service + + + lirc.conf.d + lirc.tmpfiles + lirc.logrotate + + + + lirc-devel + Development files for lirc + lirc için geliştirme dosyaları + + lirc /usr/include - - 2015-08-28 - 0.9.16 - First release. + + 2015-10-02 + 0.9.3 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com + + 2014-05-25 + 0.9.0 + Rebuild for libftdi + Kamil Atlı + suvarice@gmail.com + + + 2012-10-01 + 0.9.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libplist + http://matt.colyer.name/projects/iphone-linux + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for manipulating Apple Binary and XML Property Lists + Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane + libplist is a library for manipulating Apple Binary and XML Property Lists. + libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. + http://www.libimobiledevice.org/downloads/libplist-1.11.tar.bz2 + + libxml2-devel + python-devel + cython + + hardware/mobile/libplist/pspec.xml + + + libplist + + libxml2 + python + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libplist-devel + Development files for libplist + libplist için geliştirme dosyaları + + libplist + libxml2-devel + python-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-31 + 1.11 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-02 + 1.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-01 + 1.8 + Cosmetics Fixed + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-20 + 1.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + usbmuxd + http://marcansoft.com/blog/iphonelinux/usbmuxd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + service + library + hardware.mobile + Daemon for communicating with Apple's iPod Touch and iPhone + Apple iPod Touch ve iPhone iletişim hizmeti + usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. + usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. + http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.9.tar.bz2 + + libplist-devel + + hardware/mobile/usbmuxd/pspec.xml + + + usbmuxd + + libplist + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/sbin + /lib/udev/rules.d + + + + usbmuxd-devel + Development files for usbmuxd + usbmuxd için geliştirme dosyaları + + usbmuxd + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 1.0.9 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-20 + 1.0.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libimobiledevice + http://www.libimobiledevice.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for connecting to mobile devices + libimobiledevice is a library for connecting to mobile devices including phones and music players + http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.7.tar.bz2 + + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + + hardware/mobile/libimobiledevice/pspec.xml + + + libimobiledevice + + gnutls + usbmuxd + libplist + libtasn1 + libgcrypt + + + /usr/lib + /usr/bin + /usr/share/man/man1 + /usr/share/doc/libimobiledevice + + + + libimobiledevice-devel + Development files for libimobiledevice + + gnutls-devel + usbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + libimobiledevice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-25 + 1.1.7 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 1.1.6 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 1.1.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-04 + 1.1.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-12 + 1.1.4 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-03-18 + 1.1.4 + fix cython disagreement + Erdinç Gültekin + admins@pisilinux.org + + + 2012-10-20 + 1.1.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + nvidia-settings + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + hardware.graphics + The NVIDIA X Server Settings tool + NVIDIA X Sunucusu ayarlama aracı + The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. + nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. + nvidia-settings + ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 + + atk-devel + gtk3-devel + cairo-devel + fontconfig-devel + gtk2-devel + libXext-devel + libXv-devel + gdk-pixbuf-devel + mesa-devel + libvdpau-devel + + hardware/graphics/nvidia-settings/pspec.xml + + + nvidia-settings + + atk + cairo + glib2 + libX11 + freetype + fontconfig + gtk2 + libXext + libXv + gdk-pixbuf + libXxf86vm + pango + + + /usr/bin + /etc/X11/Xsession.d + /usr/lib + /usr/share/applications + /usr/share/pixmaps + /usr/share/man + /usr/share/doc + + + nvidia-settings.desktop + nvidia-settings.png + 21-nvidia-settings.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-29 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-06 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-30 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + nvidia-xconfig + http://www.nvidia.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + The NVIDIA X Configuration Tool + NVIDIA X yapılandırma araçı + ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 + hardware/graphics/nvidia-xconfig/pspec.xml + + + nvidia-xconfig + + /usr/bin + /usr/share/man + /usr/share/doc + + + nvidia-bug-report.sh + + + + + 2015-11-20 + 355.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-16 + 349.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-31 + 349.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-03-13 + 346.47 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 346.35 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-24 + 343.22 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-08 + 337.19 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 334.21 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-21 + 331.20 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-30 + 313.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-29 + 313.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + vbetool + http://www.codon.org.uk/~mjg59/vbetool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + Alter video hardware state through video BIOS + Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) + vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. + Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. + http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz + + libx86-devel + pciutils-devel + + + vbetool-1.0-build-as-needed.patch + unsigned_int.patch + + hardware/graphics/vbetool/pspec.xml + + + vbetool + + libx86 + pciutils + + + /usr/share/doc + /usr/share/man + /usr/sbin + + + + + 2014-05-24 + 1.1 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + btrfs-progs + http://btrfs.wiki.kernel.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace utilities for btrfs + btrfs dosya sistemi araçları + btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. + btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. + http://source.pisilinux.org/1.0/btrfs-progs-v4.1.2.tar.xz + + xmlto + asciidoc + lzo-devel + zlib-devel + libutil-linux-devel + util-linux + libxslt + e2fsprogs-devel + + hardware/disk/btrfs-progs/pspec.xml + + + btrfs-progs + + lzo + zlib + libutil-linux + e2fsprogs + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + btrfs-progs-devel + Development files for btrfs-progs + + btrfs-progs + + + /usr/include + + + + + 2015-07-20 + 4.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-23 + 3.19.1 + Version bump, fix deps + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-23 + 3.17.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 3.14.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-01-19 + 3.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-19 + 0.19.20121005 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-13 + 0.19.20121005 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ntfs-3g + http://www.tuxera.com/community/ntfs-3g-download + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + library + app:console + hardware.disk + Userspace driver for NTFS read/write support + NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü + ntfs-3g allows regular users read/write access to NTFS filesystems. + ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. + http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz + + fuse-devel + libutil-linux-devel + + hardware/disk/ntfs-3g/pspec.xml + + + ntfs-3g + + fuse + + + /bin + /sbin + /lib + /usr/lib + /usr/include + /usr/lib/pkgconfig + /usr/share/hal/fdi + /usr/share/doc/ntfs-3g + /usr/share/man/man8/mount* + /usr/share/man/man8/ntfs-3g* + + + + ntfsprogs + Userspace tools for NTFS filesystems + NTFS dosya sistemi için kullanıcı araçları + Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. + NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. + hardware.disk + + ntfs-3g + fuse + libutil-linux + + + /sbin/mkfs.ntfs + /usr/bin + /usr/sbin + /usr/share/doc/ntfsprogs + /usr/share/man/man8 + + + + + 2015-05-06 + 2015.3.14 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 2014.2.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-11 + 2013.1.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-30 + 2013.1.13 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-30 + 2013.1.13 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-14 + 0.0_2012.01.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + sg3_utils + http://sg.danny.cz/sg/sg3_utils.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + app:console + library + hardware.disk + Utilities for devices that use SCSI command sets + SCSI komut setini kullanan aygıtlar için araçlar + sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. + sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. + http://sg.danny.cz/sg/p/sg3_utils-1.41.tar.xz + hardware/disk/sg3_utils/pspec.xml + + + sg3_utils + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + rescan-scsi-bus.sh + + + + sg3_utils-devel + Development files for sg3_utils + sg3_utils için geliştirme dosyaları + + sg3_utils + + + /usr/include + + + + + 2015-08-19 + 1.41 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.38 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2012-11-14 + 1.34 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + parted + http://www.gnu.org/software/parted + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + hardware.disk + Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. + Create, destroy, resize, check, copy partitions and file systems + GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. + The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. + http://ftp.gnu.org.ua/gnu/parted/parted-3.2.tar.xz + + libutil-linux-devel + device-mapper-devel + readline-devel + + hardware/disk/parted/pspec.xml + + + parted + + libutil-linux + ncurses + device-mapper + readline + util-linux + + + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man + + + + parted-devel + Development files for parted + parted için geliştirme dosyaları + + parted + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-08-09 + 3.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-25 + 3.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-02-02 + 3.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-05 + 3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + thin-provisioning-tools + http://github.com/jthornber/thin-provisioning-tools" + + Ali Algul + alialgul@pisilinux.org + + GPLv2 + hardware.disk + A suite of tools for thin provisioning on Linux + A suite of tools for thin provisioning on Linux + https://codeload.github.com/jthornber/thin-provisioning-tools/tar.gz/v0.5.3 + + libaio-devel + boost-devel + expat-devel + libgcc + + hardware/disk/thin-provisioning-tools/pspec.xml + + + thin-provisioning-tools + + expat + libgcc + libaio + + + /usr/sbin/ + /usr/share/man/man8/ + + + + + 2015-07-20 + 0.5.3 + First Build + Ali Algul + alialgul@pisilinux.org + + + + + + libatasmart + http://git.0pointer.de/?p=libatasmart.git + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + app:console + hardware.disk + ATA S.M.A.R.T. Disk Health Monitoring Library + ATA S.M.A.R.T. disk sağlığı izleme kitaplığı + A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. + libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. + http://0pointer.de/public/libatasmart-0.19.tar.xz + + eudev-devel + + + libatasmart-uninitialized-var.patch + + hardware/disk/libatasmart/pspec.xml + + + libatasmart + + eudev + + + /usr/sbin/skdump + /usr/sbin/sktest + /usr/lib/libatasmart.so* + /usr/share/doc/libatasmart/README + /usr/share/doc/libatasmart/LGPL + + + + libatasmart-devel + Development files for libatasmart + libatasmart için geliştirme dosyaları + + libatasmart + eudev-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + /usr/share/doc + + + + + 2014-05-25 + 0.19 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 0.19 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-02 + 0.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gptfdisk + http://www.rodsbooks.com/gdisk/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:console + hardware.disk + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.1/gptfdisk-1.0.1.tar.gz + + util-linux + ncurses-devel + popt-devel + libutil-linux-devel + + hardware/disk/gptfdisk/pspec.xml + + + gptfdisk + + ncurses + popt + libgcc + libutil-linux + + + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2015-10-28 + 1.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-11 + 1.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-04 + 0.8.10 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + dmraid + http://people.redhat.com/~heinzm/sw/dmraid + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Device-Mapper Software RAID support tool and library + ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı + Device-Mapper Software RAID support tool and library + ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. + http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 + + device-mapper-event-devel + device-mapper-devel + + + dmraid-diet.patch + dmraid-1.0.0_rc16-return-all-sets.patch + dmraid-1.0.0_rc16-static-build-fixes.patch + dmraid-1.0.0_rc16-undo-p-rename.patch + + hardware/disk/dmraid/pspec.xml + + + dmraid + + device-mapper + device-mapper-event + + + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmraid-devel + Development files for dmraid + dmraid için geliştirme dosyaları + + dmraid + + + /usr/include + + + + + 2014-02-17 + 1.0.0_rc16 + Release. + PisiLinux Community + admins@pisilinux.org + + + 2013-03-15 + 1.0.0_rc16 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.0.0_rc15 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + udisks2 + http://udisks.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.disk + Disk Management Service + Disk Yönetim Hizmeti + udisks provides a daemon, API and command line tools for managing disk devices attached to the system. + udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. + http://udisks.freedesktop.org/releases/udisks-2.1.6.tar.bz2 + + tr.po + + + gtk-doc + acl-devel + glib2-devel + polkit-devel + eudev-devel + parted-devel + libatasmart-devel + device-mapper-devel + lvm2-devel + gobject-introspection-devel + sg3_utils-devel + ntfsprogs + dosfstools + docbook-xsl + libxslt + intltool + + + udisks-2.x-ntfs-3g.patch + + hardware/disk/udisks2/pspec.xml + + + udisks2 + + acl + glib2 + polkit + eudev + lvm2 + mdadm + parted + libatasmart + device-mapper + ntfsprogs + dosfstools + sg3_utils + + + /etc/udisks2 + /etc/dbus-1 + /lib/udev/rules.d + /usr/bin + /usr/sbin + /usr/lib + /usr/libexec + /usr/share/bash-completion/completions + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/gtk-doc/ + /usr/share/locale + /usr/share/polkit-1/ + /usr/share/man + /var/lib/ + /run/udisks + + + + udisks2-devel + Development files for udisks2 + udisks için geliştirme dosyaları + + udisks2 + + + /usr/include + /usr/share/dbus-1/interfaces/*.xml + /usr/lib/pkgconfig + + + + + 2015-08-19 + 2.1.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-07 + 2.1.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-25 + 2.1.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-05 + 2.1.3 + add builddep docbook-xsl. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-29 + 2.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-20 + 2.1.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-15 + 2.1.0 + V.bump + PisiLinux Community + admins@pisilinux.org + + + 2013-08-13 + 2.0.0 + fix path + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-26 + 2.0.0 + Release bump for rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2012-10-22 + 2.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xfsprogs + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + XFS filesystem utilities + XFS dosya sistemi araçları + xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. + xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. + ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs-3.2.4.tar.gz + + libutil-linux-devel + readline-devel + + hardware/disk/xfsprogs/pspec.xml + + + xfsprogs + + libutil-linux + readline + + + /lib + /sbin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + xfsprogs-devel + Development headers for xfsprogs + + xfsprogs + + + /usr/include + /usr/share/man/man3 + + + + + 2015-08-04 + 3.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-01 + 3.1.11 + Version bump + Burak Fazıl Erturk + burakerturk@pisilinux.org + + + 2012-10-05 + 3.1.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + reiserfsprogs + http://www.kernel.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Tools to work with Reiserfs filesystems + Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar + Contains tools designed to create, modify and check Reiserfs filesystems. + Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. + http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.24/reiserfsprogs-3.6.24.tar.xz + hardware/disk/reiserfsprogs/pspec.xml + + + reiserfsprogs + + /sbin + /usr/share/doc + /usr/share/man + + + + + 2014-12-13 + 3.6.24 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-10 + 3.6.21 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 3.6.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hdparm + http://sourceforge.net/projects/hdparm/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + hardware.disk + Utility to change hard drive performance parameters + Sabit disk parametrelerini değiştirmekte kullanılan araç + le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. + hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. + hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. + http://downloads.sourceforge.net/hdparm/hdparm-9.43.tar.gz + hardware/disk/hdparm/pspec.xml + + + hdparm + + /sbin + /usr/share/doc + /usr/share/man + /etc/conf.d + + + hdparm.confd + + + + + 2014-05-24 + 9.43 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2011-02-02 + 9.42 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mtools + http://mtools.linux.lu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Utilities to access MS-DOS disks without mounting them + MS-DOS (Windows) disketlerinize -mount ile bağlamadan- erişim araçları + Mtools are utilities to access MS-DOS disks without mounting them. + Mtools diskinizdeki MS-DOS (Windows) bölümlerine -mount komutu ile bağlamadan- erişebilmek için gereken araç setidir. + mirrors://gnu/mtools/mtools-4.0.18.tar.gz + hardware/disk/mtools/pspec.xml + + + mtools + + /usr/bin + /etc + /usr/share/doc + /usr/share/info + /usr/share/man + + + + + 2014-02-12 + 4.0.18 + Fix mtools.conf syntax. + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-20 + 4.0.18 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-22 + 4.0.17 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + dmapi + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + Librairie de l'API de gestion de données XFS. + XFS data management API library + XFS veri yönetimi kütüphanesi + The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. + ftp://oss.sgi.com/projects/xfs/cmd_tars/dmapi-2.2.12.tar.gz + + xfsprogs-devel + + hardware/disk/dmapi/pspec.xml + + + dmapi + + xfsprogs + + + /lib + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmapi-devel + Development files for dmapi + dmapi için geliştirme dosyaları + + dmapi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-05-22 + 2.2.12 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-02 + 2.2.12 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-03-16 + 2.2.10 + URL Fixed + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 2.2.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + dosfstools + http://www.daniel-baumann.ch/software/dosfstools/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.disk + Tools to create and check DOS and VFAT filesystems + DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar + The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies + Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. + http://daniel-baumann.ch/files/software/dosfstools/dosfstools-3.0.26.tar.xz + hardware/disk/dosfstools/pspec.xml + + + dosfstools + + /sbin + /usr/share/doc + /usr/share/man + + + + + 2014-04-03 + 3.0.26 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-18 + 3.0.25 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-21 + 3.0.23 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-06-13 + 3.0.20 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-13 + 3.0.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + squashfs-tools + http://squashfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace tools to create squashfs compressed filesystem + squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı + Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. + squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. + http://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.2/squashfs4.2.tar.gz + + lzo-devel + xz-devel + zlib-devel + + hardware/disk/squashfs-tools/pspec.xml + + + squashfs-tools + + lzo + zlib + xz + + + /usr/sbin + /usr/share/doc + + + + + 2014-03-09 + 4.2 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-02-12 + 4.2 + Change compression type to xz, and some other enhancements. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-14 + 4.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + upower + http://upower.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.powermanagement + Power Management Service + Güç Yönetim Hizmeti + upower provides a daemon, API and command line tools for managing power devices attached to the system. + upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. + http://upower.freedesktop.org/releases/upower-0.9.23.tar.xz + + tr.po + + + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + eudev-devel + libusb-devel + libplist-devel + libimobiledevice-devel + gobject-introspection-devel + docbook-xsl + intltool + + + add-tr.patch + + hardware/powermanagement/upower/pspec.xml + + + upower + + dbus + glib2 + polkit + dbus-glib + eudev + libplist + libimobiledevice + pm-utils + libusb + + + /lib + /usr/lib + /etc/dbus-1 + /usr/share/man + /usr/share/doc + /etc/UPower + /usr/bin + /var/lib/upower + /usr/share/dbus-1 + /usr/libexec + /usr/share/polkit-1 + /usr/share/locale + /usr/share/dbus-1/interfaces/*.xml + /usr/lib/girepository-1.0/*.typelib + + + + upower-devel + Development files for upower + upower için geliştirme dosyaları + + upower + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + eudev-devel + libplist-devel + libimobiledevice-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2015-01-28 + 0.9.23 + Rebuild. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 0.9.23 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-15 + 0.9.23 + Rebuild for libplist and libimobiledevice. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-05 + 0.9.23 + Rebuild and builddep docbook-xsl added. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-02 + 0.9.23 + Add patch. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-08 + 0.9.23 + Moved some files to core pack + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-12-19 + 0.9.23 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 0.9.21 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-03 + 0.9.20 + Fix suspend/hibernation issue + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-20 + 0.9.20 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-20 + 0.9.18 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + acpica + http://www.acpica.org + + PisiLinux Community + admins@pisilinux.org + + custom + app:console + hardware.powermanagement + ACPI debugging tools written by Intel + Intel ACPI hata ayıklama araçları + acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. + acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. + ftp://gentoo.arcticnetwork.ca/pub/gentoo/distfiles/acpica-unix-20130117.tar.gz + hardware/powermanagement/acpica/pspec.xml + + + acpica + + /usr/share/doc + /usr/bin + /usr/sbin + /usr/share/man/man1 + + + iasl.1 + LICENSE + + + + + 2014-03-05 + 0.0_20130117 + Rebuild for buildhost + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-02 + 0.0_20130117 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-12-22 + 0.0_20130117 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + pm-utils + http://pm-utils.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + A toolset to suspend and hibernate computers + Askıya alma işlemleri için gerekli araçlar + pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. + pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. + http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz + http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz + + xmlto + libxslt + util-linux + + + pisilinux/check-for-swap-partition.patch + pisilinux/disable-powersave.patch + suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff + suse/pm-utils-1.3.0-suse-smart-uswsusp.patch + suse/pm-utils-1.4.1-suse-config.patch + gentoo/1.4.1-bluetooth-sync.patch + gentoo/1.4.1-disable-sata-alpm.patch + gentoo/1.4.1-fix-intel-audio-powersave-hook.patch + gentoo/1.4.1-logging-append.patch + + hardware/powermanagement/pm-utils/pspec.xml + + + pm-utils + + hdparm + vbetool + + + /etc/pm + /usr/lib + /run/pm-utils + /usr/share/doc + /usr/share/man + /usr/bin + /usr/sbin + /usr/lib/pkgconfig + /usr/lib/pm-utils/video-quirks + /usr/lib/tmpfiles.d/pm-utils.conf + + + tmpfiles.conf + suse/hooks/config.d/rtcwake.config + suse/hooks/sleep.d/30s2disk-check + suse/hooks/sleep.d/45pcmcia + + + + + 2015-07-31 + 1.4.1 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-01-10 + 1.4.1 + Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-26 + 1.4.1 + Fix hibernation issue, add some patches. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-03 + 1.4.1 + Fix suspend/hibernation issue + Marcin Bojara + marcin@pisilinux.org + + + 2011-04-05 + 1.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lm_sensors + http://www.lm-sensors.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + library + hardware.powermanagement + Hardware monitoring tools + Donanım sıcaklığı izleyicisi + lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. + lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. + http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-3.4.0.tar.bz2 + + rrdtool-devel + + + lm_sensors-fancontrol.patch + + hardware/powermanagement/lm_sensors/pspec.xml + + + lm_sensors + + dmidecode + rrdtool + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + lm_sensors-devel + Development files for lm_sensors + lm_sensors için geliştirme dosyaları + + lm_sensors + rrdtool-devel + + + /usr/include + /usr/share/man/man3 + + + + + 2015-10-02 + 3.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-14 + 3.3.5 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-19 + 3.3.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + suspend + http://suspend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + A set of tools to support sleep modes + Uyku kiplerini destekleme araçları + suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. + suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. + http://sourceforge.net/projects/suspend/files/suspend/suspend-1.0/suspend-utils-1.0.tar.bz2 + + lzo-devel + pciutils-devel + libx86-devel + plymouth-devel + + + suse/suspend-comment-configfile-options.diff + suse/suspend-default-compress.diff + suse/suspend-default-splash.diff + suse/suspend-0.80-dont-return-eintr-on-abort.diff + suse/suspend-0.80-keygen-new-defaults.diff + suse/suspend-0.80-vbetool-retry-on-errors.diff + mandriva/suspend-0.8-printf_format.patch + resume-dont-ask-questions.patch + suppress-outputs.patch + + hardware/powermanagement/suspend/pspec.xml + + + suspend + + lzo + libx86 + plymouth-core-libs + pciutils + + + /etc/suspend.conf + /etc/suspend.key + /usr/sbin + /usr/share/doc + + + suse/configure-suspend-encryption.sh + + + + + 2014-03-09 + 1.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-12-29 + 1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + bind + http://www.isc.org/products/BIND/bind9.html + + PisiLinux Community + admins@pisilinux.org + + as-is + service + server + The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server + Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu + bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. + bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. + ftp://ftp.isc.org/isc/bind9/9.10.2/bind-9.10.2.tar.gz + + openssl-devel + libxml2-devel + libcap-devel + zlib-devel + e2fsprogs-devel + readline-devel + geoip-devel + + + nslookup-pisilinux.patch + fedora/bind-9.5-PIE.patch + fedora/bind-9.5-parallel-build.patch + fedora/bind-96-libtool2.patch + fedora/bind-95-rh452060.patch + fedora/bind93-rh490837.patch + fedora/bind97-rh478718.patch + fedora/bind97-rh645544.patch + fedora/bind97-rh693982.patch + + server/bind/pspec.xml + + + bind-libs + bind-libs contains the libraries used by both the bind server package and the tools package + bind kitaplık dosyaları + library + server.library + + openssl + libxml2 + mit-kerberos + + + /usr/lib + + + + bind-devel + bind header and development files + bind geliştirme başlıkları ve araçları + library + server.library + + bind-libs + + + /usr/include + /usr/bin/isc-config.sh + /usr/share/man/man1/isc-config* + /usr/share/man/man3/lwres* + + + + bind-tools + Utilities for querying DNS name servers + DNS isim çözümleme araçları + app:console + network.analyzer + + bind-libs + readline + mit-kerberos + + + /usr/bin + /usr/share/man/man1 + + + + bind-chroot + A chroot runtime environment for the ISC BIND DNS server 'named' + bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar + service + + bind + + + /etc/rsyslog.d/bind_chroot.conf + /var/named/chroot/etc + /var/named/chroot + + + System.Package + System.Service + + + chroot.rsyslog + + + + bind + service + + bind-libs + libcap + libxml2 + openssl + + + /etc + /usr/sbin + /var + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc + + + System.Service + System.Package + + + named.conf + named.confd + gentoo/named.ca + gentoo/127.zone + gentoo/localhost.zone + fedora/named.logrotate + + + + + 2015-05-08 + 9.10.2 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2014-05-24 + 9.10.0 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-01-24 + 9.9.4 + Rebuild for unused link + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-16 + 9.9.4 + Version bump + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-04-23 + 9.9.2 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-14 + 9.9.2 + First release + PisiLinux Community + admins@pisilinux.org + @@ -683,239 +7606,6 @@ - - - firebird - http://www.firebirdsql.org/ - - PisiLinux Community - admins@pisilinux.org - - IPL-1 - IDPL-1 - LGPLv2.1 - service - library - server.database - A relational database offering many ANSI SQL-99 features - Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı - Firebird is an open source relational database management system offering many ANSI SQL-99 features. - Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. - http://sourceforge.net/projects/firebird/files/firebird/2.5.4-Release/Firebird-2.5.4.26856-0.tar.bz2 - - icu4c-devel - btyacc - libedit-devel - - - editline-dumb-tr.patch - firebird-2.5.1.26351.0-deps-flags.patch - - server/database/firebird/pspec.xml - - - firebird-client - Firebird database client library - Firebird veritabanı istemci kütüphanesi - Firebird relational database client library. - Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi - - libgcc - - - /usr/lib/libfbclient.* - /usr/lib/libgds.* - /usr/lib/libib_util.* - /usr/lib/libfbtrace.so - /opt/firebird/lib/libfbclient.* - /opt/firebird/lib/libgds.* - /opt/firebird/lib/libib_util.* - /opt/firebird/plugins/libfbtrace.so - - - - firebird-superserver - Firebird super server - Firebird veritabanı sunucusu - Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. - - firebird-client - icu4c - libedit - libgcc - - - /etc/firebird - /etc/env.d/50firebird - /opt/firebird/*.conf - /opt/firebird/*.msg - /opt/firebird/security2.fdb - /opt/firebird/README - /opt/firebird/WhatsNew - /opt/firebird/UDF - /opt/firebird/bin - /opt/firebird/doc - /opt/firebird/examples - /opt/firebird/help - /opt/firebird/intl - /opt/firebird/lib/libicu* - /opt/firebird/upgrade - /opt/firebird/firebird.log - /opt/firebird - /run/firebird - - - System.Service - System.Package - - - hosts.equiv - 50firebird - - - - firebird-devel - Development files for firebird - Firebird için geliştirme dosyaları - - firebird-client - - - /usr/include/firebird - - - - - 2015-07-03 - 2.5.4.26856 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-19 - 2.5.2.26540 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-14 - 2.5.2.26539 - Rebuild for icu4c - Ertan Güven - ertan@pisilinux.org - - - 2013-03-20 - 2.5.2.26539 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-15 - 2.5.1.26351 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libtdb - http://tdb.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - app:console - server.database - Trivial database library - TDB veritabanına erişim için gerekli kitaplıklar - libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. - libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. - http://www.samba.org/ftp/tdb/tdb-1.3.7.tar.gz - - libxslt - python-devel - docbook-xsl - libbsd-devel - - server/database/libtdb/pspec.xml - - - libtdb - - python - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libtdb-devel - Development files for libtdb - libtdb için geliştirme dosyaları - - libtdb - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-07-30 - 1.3.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 1.2.13 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-26 - 1.2.13 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-09 - 1.2.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-18 - 1.2.11 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.2.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - postgresql @@ -1090,182 +7780,280 @@ - bind - http://www.isc.org/products/BIND/bind9.html + firebird + http://www.firebirdsql.org/ PisiLinux Community admins@pisilinux.org - as-is + IPL-1 + IDPL-1 + LGPLv2.1 service - server - The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server - Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu - bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. - bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. - ftp://ftp.isc.org/isc/bind9/9.10.2/bind-9.10.2.tar.gz + library + server.database + A relational database offering many ANSI SQL-99 features + Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı + Firebird is an open source relational database management system offering many ANSI SQL-99 features. + Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. + http://sourceforge.net/projects/firebird/files/firebird/2.5.4-Release/Firebird-2.5.4.26856-0.tar.bz2 - openssl-devel - libxml2-devel - libcap-devel - zlib-devel - e2fsprogs-devel - readline-devel - geoip-devel + icu4c-devel + btyacc + libedit-devel - nslookup-pisilinux.patch - fedora/bind-9.5-PIE.patch - fedora/bind-9.5-parallel-build.patch - fedora/bind-96-libtool2.patch - fedora/bind-95-rh452060.patch - fedora/bind93-rh490837.patch - fedora/bind97-rh478718.patch - fedora/bind97-rh645544.patch - fedora/bind97-rh693982.patch + editline-dumb-tr.patch + firebird-2.5.1.26351.0-deps-flags.patch - server/bind/pspec.xml + server/database/firebird/pspec.xml - bind-libs - bind-libs contains the libraries used by both the bind server package and the tools package - bind kitaplık dosyaları - library - server.library + firebird-client + Firebird database client library + Firebird veritabanı istemci kütüphanesi + Firebird relational database client library. + Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi - openssl - libxml2 - mit-kerberos + libgcc - /usr/lib + /usr/lib/libfbclient.* + /usr/lib/libgds.* + /usr/lib/libib_util.* + /usr/lib/libfbtrace.so + /opt/firebird/lib/libfbclient.* + /opt/firebird/lib/libgds.* + /opt/firebird/lib/libib_util.* + /opt/firebird/plugins/libfbtrace.so - bind-devel - bind header and development files - bind geliştirme başlıkları ve araçları - library - server.library + firebird-superserver + Firebird super server + Firebird veritabanı sunucusu + Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. - bind-libs + firebird-client + icu4c + libedit + libgcc - /usr/include - /usr/bin/isc-config.sh - /usr/share/man/man1/isc-config* - /usr/share/man/man3/lwres* - - - - bind-tools - Utilities for querying DNS name servers - DNS isim çözümleme araçları - app:console - network.analyzer - - bind-libs - readline - mit-kerberos - - - /usr/bin - /usr/share/man/man1 - - - - bind-chroot - A chroot runtime environment for the ISC BIND DNS server 'named' - bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar - service - - bind - - - /etc/rsyslog.d/bind_chroot.conf - /var/named/chroot/etc - /var/named/chroot - - - System.Package - System.Service - - - chroot.rsyslog - - - - bind - service - - bind-libs - libcap - libxml2 - openssl - - - /etc - /usr/sbin - /var - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc + /etc/firebird + /etc/env.d/50firebird + /opt/firebird/*.conf + /opt/firebird/*.msg + /opt/firebird/security2.fdb + /opt/firebird/README + /opt/firebird/WhatsNew + /opt/firebird/UDF + /opt/firebird/bin + /opt/firebird/doc + /opt/firebird/examples + /opt/firebird/help + /opt/firebird/intl + /opt/firebird/lib/libicu* + /opt/firebird/upgrade + /opt/firebird/firebird.log + /opt/firebird + /run/firebird System.Service - System.Package + System.Package - named.conf - named.confd - gentoo/named.ca - gentoo/127.zone - gentoo/localhost.zone - fedora/named.logrotate + hosts.equiv + 50firebird + + firebird-devel + Development files for firebird + Firebird için geliştirme dosyaları + + firebird-client + + + /usr/include/firebird + + + + + 2015-07-03 + 2.5.4.26856 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-19 + 2.5.2.26540 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-14 + 2.5.2.26539 + Rebuild for icu4c + Ertan Güven + ertan@pisilinux.org + + + 2013-03-20 + 2.5.2.26539 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-10-15 + 2.5.1.26351 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + lmdb + http://symas.com/mdb/ + + PisiLinux Community + admins@pisilinux.org + + OpenLDAP + custom + library + app:console + server.database + Symas Lightning Memory-Mapped Database + An ultra-fast, ultra-compact key-value embedded data store. + https://github.com/LMDB/lmdb/archive/LMDB_0.9.16.tar.gz + server/database/lmdb/pspec.xml + + + lmdb + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + lmdb-devel + Development files for lmdb + + lmdb + + + /usr/include + + + + + 2015-08-28 + 0.9.16 + First release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtdb + http://tdb.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + app:console + server.database + Trivial database library + TDB veritabanına erişim için gerekli kitaplıklar + libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. + libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. + http://www.samba.org/ftp/tdb/tdb-1.3.7.tar.gz + + libxslt + python-devel + docbook-xsl + libbsd-devel + + server/database/libtdb/pspec.xml + + + libtdb + + python + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtdb-devel + Development files for libtdb + libtdb için geliştirme dosyaları + + libtdb + + + /usr/lib/pkgconfig + /usr/include + + - 2015-05-08 - 9.10.2 - Version bump - Vedat Demir - vedat@pisilinux.org + 2015-07-30 + 1.3.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-05-24 - 9.10.0 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org + 2014-05-22 + 1.2.13 + rebuild. + Marcin Bojara + marcin@pisilinux.org - 2014-01-24 - 9.9.4 - Rebuild for unused link - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-04-26 + 1.2.13 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2013-11-16 - 9.9.4 - Version bump - Aydın Demirel - aydin.demirel@pisilinux.org + 2014-01-09 + 1.2.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org - - 2013-04-23 - 9.9.2 - Dep fixed + + 2013-03-18 + 1.2.11 + V.Bump PisiLinux Community admins@pisilinux.org - 2012-10-14 - 9.9.2 + 2010-10-13 + 1.2.1 First release - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org @@ -1641,137 +8429,6 @@ - - - dhcp - http://www.isc.org/products/DHCP - - PisiLinux Community - admins@pisilinux.org - - isc-dhcp - app:console - library - service - server - DHCP Sunucusu - DHCP-Server - Dynamic host configuration protocol software - DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. - IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu - http://ftp.isc.org/isc/dhcp/4.3.0/dhcp-4.3.0.tar.gz - - groff - openldap-client - bind-devel - - - dhcp-4.2.0-release-by-ifup.patch - dhcp-4.2.0-dhclient-decline-backoff.patch - dhcp-4.2.0-unicast-bootp.patch - dhcp-4.2.0-default-requested-options.patch - dhcp-4.2.0-paths.patch - dhcp-4.2.0-inherit-leases.patch - dhcp-4.2.0-garbage-chars.patch - dhcp-4.2.0-IFNAMSIZ.patch - dhcp-4.2.0-add_timeout_when_NULL.patch - dhcp-4.2.0-logpid.patch - dhcp-4.2.0-sendDecline.patch - dhcp-4.2.1-retransmission.patch - dhcp-4.2.0-honor-expired.patch - dhcp-4.3.0a1-PPP.patch - dhcp-4.2.0-P2-omapi.patch - - server/dhcp/pspec.xml - - - dhcp - - openldap-client - bind-libs - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /var/lib - /run - /usr/share/man - /usr/share/doc - - - System.Service - System.Service - System.Service - System.Package - - - dhcpd - dhcpd6 - dhcrelay - dhcpd.conf - - - - dhclient - Provides the dhclient ISC DHCP client daemon - DHCP İstemcisi - app:console - - dhcp - bind-libs - - - /etc/dhcp/dhclient.conf - /usr/sbin/dhclient - /var/lib/dhclient - /usr/share/man/man5/dhclient* - /usr/share/man/man8/dhclient* - /usr/share/man/man5/dhcp-options* - /usr/share/man/man5/dhcp-eval* - /usr/share/doc/dhcp/dhclient* - - - dhclient.conf - - - - dhcp-devel - Development files for dhcp - dhcp için geliştirme dosyaları - - dhcp - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-19 - 4.3.0 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2014-01-22 - 4.2.5 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-14 - 4.2.3 - First release - PisiLinux Community - admins@pisilinux.org - - - samba @@ -2164,108 +8821,6 @@ - - - libpwquality - https://fedorahosted.org/libpwquality/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - server.auth - Password quality checking - The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. - https://fedorahosted.org/releases/l/i/libpwquality/libpwquality-1.2.4.tar.bz2 - - cracklib-devel - pam-devel - - server/auth/libpwquality/pspec.xml - - - libpwquality - - cracklib - pam - - - /lib - /etc/security - /usr/lib - /usr/share/man/man1 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc/libpwquality - /usr/share/locale - /usr/bin - - - - libpwquality-devel - libpwquality için geliştirme dosyaları - libpwquality için geliştirme dosyaları - - libpwquality - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-23 - 1.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 1.2.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-20 - 1.2.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-12 - 1.2.2 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 1.2.1 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-04 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-01 - 1.2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - mit-kerberos @@ -2499,6 +9054,47421 @@ + + + libpwquality + https://fedorahosted.org/libpwquality/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + server.auth + Password quality checking + The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. + https://fedorahosted.org/releases/l/i/libpwquality/libpwquality-1.2.4.tar.bz2 + + cracklib-devel + pam-devel + + server/auth/libpwquality/pspec.xml + + + libpwquality + + cracklib + pam + + + /lib + /etc/security + /usr/lib + /usr/share/man/man1 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc/libpwquality + /usr/share/locale + /usr/bin + + + + libpwquality-devel + libpwquality için geliştirme dosyaları + libpwquality için geliştirme dosyaları + + libpwquality + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-23 + 1.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 1.2.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-20 + 1.2.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-12 + 1.2.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 1.2.1 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-04 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-01 + 1.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + dhcp + http://www.isc.org/products/DHCP + + PisiLinux Community + admins@pisilinux.org + + isc-dhcp + app:console + library + service + server + DHCP Sunucusu + DHCP-Server + Dynamic host configuration protocol software + DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. + IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu + http://ftp.isc.org/isc/dhcp/4.3.0/dhcp-4.3.0.tar.gz + + groff + openldap-client + bind-devel + + + dhcp-4.2.0-release-by-ifup.patch + dhcp-4.2.0-dhclient-decline-backoff.patch + dhcp-4.2.0-unicast-bootp.patch + dhcp-4.2.0-default-requested-options.patch + dhcp-4.2.0-paths.patch + dhcp-4.2.0-inherit-leases.patch + dhcp-4.2.0-garbage-chars.patch + dhcp-4.2.0-IFNAMSIZ.patch + dhcp-4.2.0-add_timeout_when_NULL.patch + dhcp-4.2.0-logpid.patch + dhcp-4.2.0-sendDecline.patch + dhcp-4.2.1-retransmission.patch + dhcp-4.2.0-honor-expired.patch + dhcp-4.3.0a1-PPP.patch + dhcp-4.2.0-P2-omapi.patch + + server/dhcp/pspec.xml + + + dhcp + + openldap-client + bind-libs + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /var/lib + /run + /usr/share/man + /usr/share/doc + + + System.Service + System.Service + System.Service + System.Package + + + dhcpd + dhcpd6 + dhcrelay + dhcpd.conf + + + + dhclient + Provides the dhclient ISC DHCP client daemon + DHCP İstemcisi + app:console + + dhcp + bind-libs + + + /etc/dhcp/dhclient.conf + /usr/sbin/dhclient + /var/lib/dhclient + /usr/share/man/man5/dhclient* + /usr/share/man/man8/dhclient* + /usr/share/man/man5/dhcp-options* + /usr/share/man/man5/dhcp-eval* + /usr/share/doc/dhcp/dhclient* + + + dhclient.conf + + + + dhcp-devel + Development files for dhcp + dhcp için geliştirme dosyaları + + dhcp + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-19 + 4.3.0 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2014-01-22 + 4.2.5 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-14 + 4.2.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + thunderbird + http://www.mozilla.org/projects/thunderbird/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2+ + app:gui + network.mail + The Stand-Alone Mozilla Mail Component + Thunderbird eposta istemcisi + Klient pocztowy Thunderbird + Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. + Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. + Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. + thunderbird + http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/38.2.0/source/thunderbird-38.2.0.source.tar.bz2 + + pisilinux/mozconfig + + + wget + yasm + nss-devel + gtk2-devel + zlib-devel + libXt-devel + libSM-devel + libpng-devel + sqlite-devel + libXcomposite-devel + alsa-lib-devel + libjpeg-turbo-devel + + + thunderbird-install-dir.patch + + network/mail/thunderbird/pspec.xml + + + thunderbird + + atk + nss + gtk2 + nspr + zlib + cairo + glib2 + libXt + pango + libX11 + libgcc + libpng + sqlite + iconcan + libXext + alsa-lib + freetype + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + + + /usr/share/doc + /usr/bin + /usr/share/pixmaps + /usr/lib/thunderbird + /usr/share/applications + /usr/share/icons/hicolor + + + vendor.js + thunderbird.desktop + pisilinux/sound.wav + + + + thunderbird-lang-be + Беларуская мова пакет для Thunderbird + Беларуская мова пакет для Thunderbird + locale:be + system.locale + lang-be + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org + + + + thunderbird-lang-ca + Arxiu d'idioma català del Thunderbird + Arxiu d'idioma català del Thunderbird + locale:ca + system.locale + lang-ca + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org + + + + thunderbird-lang-da + Dansk sprogpakke til Thunderbird + Dansk sprogpakke til Thunderbird + locale:da + system.locale + lang-da + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org + + + + thunderbird-lang-de + Deutsch Sprachdatei für Thunderbird + Deutsch Sprachdatei für Thunderbird + locale:de + system.locale + lang-de + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org + + + + thunderbird-lang-el + Ελληνική γλώσσα pack για τον Thunderbird + Ελληνική γλώσσα pack για τον Thunderbird + locale:el + system.locale + lang-el + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org + + + + thunderbird-lang-en-US + English language pack for Thunderbird + English language pack for Thunderbird + locale:en_US + system.locale + lang-en-US + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org + + + + thunderbird-lang-es-AR + Paquete de idioma español para Thunderbird + Paquete de idioma español para Thunderbird + locale:es_AR + system.locale + lang-es-AR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org + + + + thunderbird-lang-es-ES + Paquete de idioma español para Thunderbird + Paquete de idioma español para Thunderbird + locale:es + system.locale + lang-es-ES + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org + + + + thunderbird-lang-fi + Suomen kielen pack for Thunderbird + Suomen kielen pack for Thunderbird + locale:fi + system.locale + lang-fi + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org + + + + thunderbird-lang-fr + Paquet de langue française pour Thunderbird + Paquet de langue française pour Thunderbird + locale:fr + system.locale + lang-fr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org + + + + thunderbird-lang-hr + Hrvatski jezični paket za Thunderbird + Hrvatski jezični paket za Thunderbird + locale:hr + system.locale + lang-hr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org + + + + thunderbird-lang-hu + Magyar nyelvű pack for Thunderbird + Magyar nyelvű pack for Thunderbird + locale:hu + system.locale + lang-hu + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org + + + + thunderbird-lang-it + Language Pack italiano per Thunderbird + Language Pack italiano per Thunderbird + locale:it + system.locale + lang-it + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org + + + + thunderbird-lang-lt + Lietuvių kalbos paketas Thunderbird + Lietuvių kalbos paketas Thunderbird + locale:lt + system.locale + lang-lt + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org + + + + thunderbird-lang-nl + Nederlands taalpakket voor Thunderbird + Nederlands taalpakket voor Thunderbird + locale:nl + system.locale + lang-nl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org + + + + thunderbird-lang-pl + Polski pakiet językowy dla programu Thunderbird + Polski pakiet językowy dla programu Thunderbird + locale:pl + system.locale + lang-pl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org + + + + thunderbird-lang-pt-BR + Pacote de idioma português para o Thunderbird + Pacote de idioma português para o Thunderbird + locale:pt_BR + system.locale + lang-pt-BR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org + + + + thunderbird-lang-pt-PT + Pacote de idioma português para o Thunderbird + Pacote de idioma português para o Thunderbird + locale:pt + system.locale + lang-pt-PT + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org + + + + thunderbird-lang-ro + Pachet de limba română pentru Thunderbird + Pachet de limba română pentru Thunderbird + locale:ro + system.locale + lang-ro + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org + + + + thunderbird-lang-ru + Русский языковый пакет для Thunderbird + Русский языковый пакет для Thunderbird + locale:ru + system.locale + lang-ru + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org + + + + thunderbird-lang-sr + Паковање српски језик за Фирефок + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org + + + + thunderbird-lang-sv-SE + Svenska språkpaket för Thunderbird + Svenska språkpaket för Thunderbird + locale:sv_SE + system.locale + lang-sv-SE + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org + + + + thunderbird-lang-tr + Thunderbird için Türkçe dil dosyası + Thunderbird için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org + + + + thunderbird-lang-uk + Український мовний пакет для Thunderbird + Український мовний пакет для Thunderbird + lang-uk + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org + + + + + 2015-09-01 + 38.2.0 + Version Bumps, https://www.mozilla.org/en-US/thunderbird/38.2.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-07 + 38.1.0 + Version Bumps, https://www.mozilla.org/en-US/thunderbird/38.1.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-06-10 + 31.7.0 + https://www.mozilla.org/en-US/thunderbird/31.7.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-04-25 + 31.6.0 + https://www.mozilla.org/en-US/thunderbird/31.6.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-01-30 + 31.4.0 + https://www.mozilla.org/en-US/thunderbird/31.4.0/releasenotes/ + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-11-10 + 31.2.0 + https://www.mozilla.org/en-US/thunderbird/31.2.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-30 + 31.1.2 + https://www.mozilla.org/en-US/thunderbird/31.1.2/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-21 + 31.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-07 + 24.5.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-01 + 24.5.0 + https://www.mozilla.org/en-US/thunderbird/24.5.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-11 + 24.4.0 + https://www.mozilla.org/en-US/thunderbird/24.4.0/releasenotes/ + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-15 + 24.3.0 + https://www.mozilla.org/en-US/thunderbird/24.3.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-19 + 24.2.0 + https://www.mozilla.org/en-US/thunderbird/24.2.0/releasenotes/ + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-19 + 24.1.1 + https://www.mozilla.org/en-US/thunderbird/24.1.1/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-11-13 + 24.1.0 + https://www.mozilla.org/en-US/thunderbird/24.1.0/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-09 + 24.0 + https://www.mozilla.org/en-US/thunderbird/24.0/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-09 + 17.0.8 + https://www.mozilla.org/en-US/thunderbird/17.0.8/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-19 + 17.0.7 + rebuild for nspr + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-13 + 17.0.7 + https://www.mozilla.org/en-US/thunderbird/17.0.7/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-20 + 17.0.6 + https://www.mozilla.org/en-US/thunderbird/17.0.6/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-03 + 17.0.5 + https://www.mozilla.org/en-US/thunderbird/17.0.5/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-11 + 17.0.4 + https://www.mozilla.org/en-US/thunderbird/17.0.4/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-19 + 17.0.3 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-11-26 + 17.0.2 + First release + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + + + + openconnect + http://www.infradead.org/openconnect.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + network.connection + A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols + Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci + openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. + openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. + ftp://ftp.infradead.org/pub/openconnect/openconnect-7.06.tar.gz + + intltool + python-devel + openssl-devel + libxml2-devel + zlib-devel + + network/connection/openconnect/pspec.xml + + + openconnect + + zlib + libxml2 + openssl + + + /usr/bin/openconnect + /usr/share/man/man8 + /usr/share/doc + /usr/share/locale + /usr/sbin + /usr/lib + + + + openconnect-devel + Development files and headers for openconnect + openconnect için geliştirme dosyaları ve başlıkları + + openconnect + zlib-devel + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-15 + 7.06 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-03-09 + 5.01 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-29 + 5.01 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-05 + 5.01 + fix remove dep. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-07-04 + 5.01 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-08-28 + 4.06 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + wpa_supplicant + http://hostap.epitest.fi/wpa_supplicant/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + service + network.connection + IEEE 802.1X/WPA supplicant for secure wireless transfers + Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı + wpa_supplicant is a WPA supplicant with support for WPA and WPA2. + WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. + http://hostap.epitest.fi/releases/wpa_supplicant-2.4.tar.gz + + wpa_supplicant.config + + + libnl-devel + openssl-devel + dbus-devel + readline-devel + + + ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch + wpa_supplicant-1.0-dbus-path-fix.patch + wpa_supplicant-1.0-do-not-call-dbus-functions-with-NULL-path.patch + mandriva/wpa_supplicant-0.6.3-WEP232.patch + fedora/wpa_supplicant-openssl-more-algs.patch + fedora/wpa_supplicant-flush-debug-output.patch + fedora/wpa_supplicant-assoc-timeout.patch + suse/wpa_supplicant-errormsg.patch + + network/connection/wpa_supplicant/pspec.xml + + + wpa_supplicant + + libnl + dbus + openssl + readline + + + /etc + /etc/dbus-1 + /usr/sbin + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/dbus-1/system-services + /run + + + System.Service + + + wpa_supplicant.conf + wpa_supplicant.confd + wpa_supplicant.logrotate + wpa_supplicant.py + + + + + 2015-07-15 + 2.4 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-06-02 + 2.1 + Version Bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-03-02 + 2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-14 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mobile-broadband-provider-info + http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders + + PisiLinux Community + admins@pisilinux.org + + public-domain + data + network.connection + Service provider specific settings of mobile broadband providers in different countries + Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı + The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. + mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. + ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20120614/mobile-broadband-provider-info-20120614.tar.xz + network/connection/mobile-broadband-provider-info/pspec.xml + + + mobile-broadband-provider-info + + /usr/share + + + + + 2012-08-28 + 20120614 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + bridge-utils + http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.connection + Linux network bridging utilities + Linux için ağ köprüleme yardımcı uygulamaları + Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. + Linux için ağ köprüleme yardımcı uygulamaları. + http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-1.5.tar.gz + + bridge-utils-1.0.4-inc.patch + bridge-utils-1.2-params.patch + bridge-utils-1.5-linux_3.8.x.patch + + network/connection/bridge-utils/pspec.xml + + + bridge-utils + + /usr/include + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2014-01-19 + 1.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-28 + 1.5 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ppp + http://samba.org/ppp + + PisiLinux Community + admins@pisilinux.org + + BSD + GPLv2 + service + network.connection + Point-to-point protocol - patched for PPPOE + Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü + The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. + PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. + http://samba.org/ftp/ppp/ppp-2.4.6.tar.gz + http://www.netservers.net.uk/gpl/ppp-dhcpc.tgz + + libpcap-devel + openssl-devel + pam-devel + + + gentoo/02_all_make-vars.patch + gentoo/04_all_mpls.patch + gentoo/06_all_killaddr-smarter.patch + gentoo/08_all_wait-children.patch + gentoo/10_all_defaultgateway.patch + gentoo/12_all_linkpidfile.patch + gentoo/16_all_auth-fail.patch + gentoo/18_all_defaultmetric.patch + gentoo/20_all_dev-ppp.patch + gentoo/24_all_passwordfd-read-early.patch + gentoo/26_all_pppd-usepeerwins.patch + gentoo/28_all_connect-errors.patch + gentoo/30_all_Makefile.patch + gentoo/32_all_pado-timeout.patch + gentoo/34_all_lcp-echo-adaptive.patch + ppp-2.3.6-sample.patch + ppp-2.4.3-fix64.patch + ppp-2.4.2-change_resolv_conf.patch + nostrip.patch + ppp-2.4.3-local.patch + ppp-2.4.3-ipv6-accept-remote.patch + ppp-2.4.5-ppp_resolv.patch + ppp-2.4.5-var_run_ppp.patch + ppp-2.4.6-eaptls-mppe-0.99.patch + + network/connection/ppp/pspec.xml + + + ppp + + libpcap + pam + openssl + + + /etc + /usr/lib/tmpfiles.d/ppp.conf + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /run/ppp + + + tmpfiles.conf + options-pptp + options-pppoe + chat-default + ip-up + ip-down + confd.ppp0 + ppp.pamd + ppp.logrotate + + + + ppp-devel + Development files for ppp + ppp için geliştirme dosyaları + + ppp + + + /usr/include + + + + + 2014-04-03 + 2.4.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-10 + 2.4.5 + Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-12 + 2.4.5 + service.py no longer needed. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-23 + 2.4.5 + Add service.py + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-13 + 2.4.5 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + network-manager-applet + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:gui + network.connection + Network connection manager GUI interface + NetworkManager için güçlü bir grafik arayüzü + network-manager-applet is a powerful graphical frontend to NetworkManager. + network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. + http://ftp.gnome.org/mirror/gnome.org/sources/network-manager-applet/1.0/network-manager-applet-1.0.4.tar.xz + + gtk2-devel + gtk3-devel + libsecret-devel + cairo-devel + pango-devel + libnotify-devel + libmm-glib-devel + gdk-pixbuf-devel + at-spi2-core-devel + NetworkManager-devel + iso-codes + dbus-devel + glib2-devel + dbus-glib-devel + atk-devel + eudev-devel + intltool + + network/connection/network-manager-applet/pspec.xml + + + network-manager-applet + + gtk3 + atk + cairo + pango + libsecret + libnotify + libmm-glib + gdk-pixbuf + NetworkManager + at-spi2-core + dbus + glib2 + dbus-glib + eudev + + + /usr/bin + /usr/share/libnm-gtk + /usr/lib/ + /usr/share/icons + /usr/share/applications + /usr/share/nm-applet + /etc/dbus-1 + /usr/share + /usr/libexec + /etc/gconf/schemas + /etc/xdg/autostart + /usr/share/man + /usr/share/doc + /usr/share/locale + + + + network-manager-applet-devel + network-manager-applet için geliştirme dosyaları + network-manager-applet için geliştirme dosyaları + + network-manager-applet + NetworkManager-devel + dbus-glib-devel + gtk3-devel + + + /usr/include/libnm-gtk + /usr/lib/pkgconfig + + + + + 2015-07-22 + 1.0.4 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-13 + 1.0.2 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-11 + 1.0.2 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2015-01-13 + 1.0.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-21 + 0.9.8.10 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2014-02-19 + 0.9.8.8 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-17 + 0.9.8.8 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-27 + 0.9.8.2 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-04 + 0.9.8.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-21 + 0.9.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-26 + 0.9.7.995 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 0.9.6.4 + New version + Ertan Güven + ertan@pisilinux.org + + + 2012-08-28 + 0.9.6.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + NetworkManager + http://projects.gnome.org/NetworkManager + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2+ + app:console + network.connection + Network connection manager powered by D-Bus and UDEV + D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı + NetworkManager attempts to keep an active network connection available at all times. + NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. + https://download.gnome.org/sources/NetworkManager/1.0/NetworkManager-1.0.4.tar.xz + + tr.po + + + intltool + ppp-devel + nss-devel + newt-devel + nspr-devel + libnl-devel + libsoup-devel + bluez-libs-devel + iptables-devel + wpa_supplicant + dbus-glib-devel + gobject-introspection + libndp-devel + libmm-glib-devel + dbus-devel + glib2-devel + polkit-devel + readline-devel + eudev-devel + libutil-linux-devel + ConsoleKit-devel + + + disable_set_hostname.patch + + network/connection/NetworkManager/pspec.xml + + + NetworkManager + + dbus + nspr + glib2 + polkit + readline + dbus-glib + libutil-linux + eudev + nss + newt + ppp + libnl + libsoup + bluez-libs + iproute2 + iptables + libmm-glib + ModemManager + wpa_supplicant + libndp + ConsoleKit + mobile-broadband-provider-info + + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /lib/udev + /usr/sbin + /lib/udev/rules.d + /usr/libexec + /run/NetworkManager + /lib/systemd/system + /usr/share/locale + /var/lib/NetworkManager + /etc/NetworkManager/system-connections + /usr/lib/tmpfiles.d/NetworkManager.conf + /etc/polkit-1/localauthority/10-vendor.d + + + System.Service + + + NetworkManager.confd + tmpfiles.conf + NetworkManager.conf + migrate-comar-network-profiles + gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla + 01-org.freedesktop.ModemManager1.rules + 01-org.freedesktop.NetworkManager.settings.modify.system.rules + + + + NetworkManager-devel + Development files for NetworkManager + NetworkManager için geliştirme dosyaları + + glib2-devel + dbus-glib-devel + NetworkManager + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2015-07-22 + 1.0.4 + fixed missing dep and added rules files + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2015-06-14 + 1.0.2 + fixed missing dep and added rules files + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2015-05-14 + 1.0.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + systemRestart + + + + 2015-01-07 + 1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + 2014-05-17 + 0.9.8.10 + Version bump. + Vedat Demir + vedat@pisilinux.org + + systemRestart + + + + 2014-01-10 + 0.9.8.8 + Version bump. Add tmpfiles.conf + Marcin Bojara + marcin@pisilinux.org + + systemRestart + + + + 2013-09-08 + 0.9.8.2 + /var/run => /run + Marcin Bojara + marcin@pisilinux.org + + systemRestart + + + + 2013-07-27 + 0.9.8.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-02-21 + 0.9.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-23 + 0.9.7.995 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-13 + 0.9.6.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + linux-atm + http://linux-atm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.connection + Tools to support ATM networking under Liunx + ATM ağ bağlantısı desteği için araçlar + linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. + linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. + mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz + + flex + + + man-pages.patch + + network/connection/linux-atm/pspec.xml + + + linux-atm + + flex + + + /lib/firmware + /usr/sbin + /usr/bin + /etc + /usr/lib + /usr/share/man + /usr/share/doc + + + + linux-atm-devel + Development files for linux-atm + linux-atm için geliştirme dosyaları + + linux-atm + + + /usr/include + + + + + 2015-04-13 + 2.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2010-10-13 + 2.5.1 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + ModemManager + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + service + network.connection + A manager framework for mobile broadband modems + Mobil modemler için yönetim katmanı + ModemManager provides a unified high level API for communicating with mobile broadband modems. + ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. + http://www.freedesktop.org/software/ModemManager/ModemManager-1.2.0.tar.xz + + ppp-devel + libqmi-devel + libmbim-devel + intltool + + network/connection/ModemManager/pspec.xml + + + ModemManager + + ppp + glib2 + libqmi + libmbim + eudev + libmm-glib + + + /usr/share/doc + /usr/sbin + /usr/share/icons + /usr/share/locale + /usr/share/dbus-1 + /usr/share/gir-1.0/ModemManager-1.0.gir + /lib/udev/rules.d/ + /etc/dbus-1/system.d/ + /usr/lib/ModemManager + /usr/lib/girepository-1.0/ModemManager-1.0.typelib + /usr/share/man/man8/ModemManager.8 + + + + ModemManager-devel + Development files for ModemManager + ModemManager için geliştirme dosyaları + + ModemManager + + + /usr/include/ModemManager/ + /usr/lib/pkgconfig/ModemManager.pc + + + + libmm-glib + D-Bus service for managing modems - shared libraries + + glib2 + + + /usr/bin + /usr/share/vala/vapi/libmm-glib.vapi + /usr/share/vala/vapi/libmm-glib.deps + /usr/lib/libmm-glib.so* + /usr/share/man/man8/mmcli.8 + + + + libmm-glib-devel + Development files for libmm-glib + libmm-glib için geliştirme dosyaları + + libmm-glib + glib2-devel + ModemManager-devel + + + /usr/include/libmm-glib/ + /usr/lib/pkgconfig/mm-glib.pc + + + + + 2014-02-17 + 1.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-20 + 1.0.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-08-28 + 5.3.96 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + flashplugin + http://labs.adobe.com/technologies/flashplayer10 + + PisiLinux Community + admins@pisilinux.org + + Macromedia + library + network.plugin + Adobe Flash Player + Adobe Flash Oynatıcı + Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. + Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. + flash-player-properties + http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.i386.tar.gz + http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.x86_64.tar.gz + + nss + gtk2 + libXt + libX11 + libXext + libXpm + + network/plugin/flashplugin/pspec.xml + + + flashplugin + + noDelta + + + atk + nss + gtk2 + nspr + cairo + glib2 + libXt + pango + libX11 + libXext + freetype + fontconfig + gdk-pixbuf + libXcursor + libXrender + + + /usr/share + /usr/lib + /usr/bin + + + + + 2015-11-02 + 11.2.202.540 + security update + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-07-17 + 11.2.202.491 + security update + Vedat Demir + vedat@pisilinux.org + + + 2015-07-01 + 11.2.202.468 + security update + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-21 + 11.2.202.460 + security update + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-02-09 + 11.2.202.442 + security update + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-04 + 11.2.202.440 + security update + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-12-14 + 11.2.202.425 + security update + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-11-30 + 11.2.202.424 + security update + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-10-16 + 11.2.202.411 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-09-22 + 11.2.202.406 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-07-09 + 11.2.202.394 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-06-18 + 11.2.202.378 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-06-07 + 11.2.202.359 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-05-01 + 11.2.202.356 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-03-14 + 11.2.202.346 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-02-22 + 11.2.202.341 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-02-06 + 11.2.202.336 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-02-02 + 11.2.202.335 + Split package + PisiLinux Community + admins@pisilinux.org + + + 2014-01-24 + 11.2.202.335 + security update + PisiLinux Community + admins@pisilinux.org + + + 2014-01-21 + 11.2.202.332 + security update + PisiLinux Community + admins@pisilinux.org + + + 2013-11-17 + 11.2.202.327 + security update + Richard de Bruin + richdb@pisilinux.org + + + 2013-09-18 + 11.2.202.310 + fix dep + Kamil Atlı + suvarice@gmail.com + + + 2013-09-11 + 11.2.202.310 + security update + Mathias Freire + mathiasfreire45@gmail.com + + + 2013-07-14 + 11.2.202.297 + security update + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-13 + 11.2.202.291 + security update + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 11.2.202.280 + security update + Erdinç Gültekin + admins@pisilinux.org + + + 2013-03-21 + 11.2.202.275 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2013-03-06 + 11.2.202.273 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2013-02-12 + 11.2.202.270 + security update + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-09 + 11.2.202.261 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + freshplayerplugin + https://github.com/i-rinat/freshplayerplugin + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + app:gui + network.plugin + ppapi2npapi compatibility layer + PPAPI-host NPAPI-plugin adapter. + https://github.com/i-rinat/freshplayerplugin/archive/v0.3.3.tar.gz + + cmake + ragel + gtk2-devel + libva-devel + libv4l-devel + ffmpeg-devel + openssl-devel + libvdpau-devel + alsa-lib-devel + libevent-devel + libXrandr-devel + libXcursor-devel + pulseaudio-libs-devel + + network/plugin/freshplayerplugin/pspec.xml + + + freshplayerplugin + + mesa + libva + ffmpeg + libv4l + alsa-lib + libevent + libvdpau + libXrandr + pepperflash + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/freshplayerplugin/ + + + + + 2015-11-04 + 0.3.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pepperflash + http://www.google.com + + Osman Erkan + osman.erkan@pisilinux.org + + custom:chrome + library + network.plugin + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. + Google Chrome's Pepper Flash plugin for Chromium. + Google Chrome's Pepper Flash plugin for Chromium (stable version) + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) + http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz + network/plugin/pepperflash/pspec.xml + + + pepperflash + + libgcc + + + /etc/chromium-browser + /usr/lib/chromium-browser/PepperFlash + + + pepperflash-plugin.conf + + + + + 2015-11-02 + 19.0.0.226 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-15 + 18.0.0.233 + Version bump + Vedat Demir + vedat@pisilinux.org + + + + + + geoclue + http://www.freedesktop.org/wiki/Software/GeoClue + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + network.misc + The Geoinformation Service. + Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. + http://people.freedesktop.org/~hadess/geoclue-0.12.99.tar.gz + + dbus-devel + glib2-devel + dbus-glib-devel + libxml2-devel + libxslt + NetworkManager-devel + + network/misc/geoclue/pspec.xml + + + geoclue + + glib2 + libxml2 + dbus-glib + NetworkManager + + + /usr/lib/ + /usr/share/ + /usr/libexec/ + + + + geoclue-devel + geoclue için geliştirme dosyaları + geoclue için geliştirme dosyaları + + geoclue + dbus-glib-devel + libxml2-devel + + + /usr/include/geoclue + /usr/lib/pkgconfig + + + + + 2015-07-22 + 0.12.99 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-07-18 + 0.12.99 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-23 + 0.12.99 + rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 0.12.99 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-26 + 0.12.99 + Release no bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-03 + 0.12.99 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + neon + http://www.webdav.org/neon/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Librairie cliente HTTP et WebDAV. + HTTP and WebDAV client library + C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı + neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. + neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. + http://www.webdav.org/neon/neon-0.30.0.tar.gz + + openssl-devel + expat-devel + zlib-devel + mit-kerberos + + + fixdocdir.patch + multilib.patch + + network/misc/neon/pspec.xml + + + neon + + zlib + expat + openssl + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + neon-devel + Development files for neon + neon için geliştirme dosyaları + + neon + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 0.30.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.30.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-03 + 0.29.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + iputils + https://github.com/iputils/iputils + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + network.misc + Network monitoring tools including ping and ping6 + ping ve ping6 uygulamalarını da içeren ağ izleme araçları + Iputils contient les outils de surveillance réseau incluant ping et ping6. + iputils contains network monitoring tools including ping and ping6. + Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. + https://github.com/iputils/iputils/archive/s20150815.tar.gz + + openssl-devel + libidn-devel + libcap-devel + + network/misc/iputils/pspec.xml + + + iputils + + libcap + libidn + + + /etc + /usr/bin + /usr/sbin + /sbin + /lib/systemd/system + /etc/conf.d/rdisc + /usr/share/doc + /usr/share/man + + + man/arping.8 + man/clockdiff.8 + man/ping.8 + man/rarpd.8 + man/rdisc.8 + man/tracepath.8 + man/traceroute6.8 + fedora/tftp.xinetd + + + + + 2015-10-01 + 20150815 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 20121221 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 20121221 + Fix dep, release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-14 + 20121221 + New release + PisiLinux Community + admins@pisilinux.org + + + 2012-08-23 + 20101006 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libndp + http://libndp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + library + network.misc + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + http://libndp.org/files/libndp-1.4.tar.gz + + glibc-devel + + network/misc/libndp/pspec.xml + + + libndp + libndp için geliştirme dosyaları + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libndp-devel + Development files for NetworkManager + + libndp + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2015-01-07 + 1.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libasyncns + http://0pointer.de/lennart/projects/libasyncns + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + A C library for asynchronous name service queries + Asenkron isim servisi sorguları için C kitaplığı + libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. + libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz + network/misc/libasyncns/pspec.xml + + + libasyncns + + /usr/lib + /usr/share/doc + + + + libasyncns-devel + Development files for libasyncns + libasyncns için geliştirme dosyaları + + libasyncns + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-01-29 + 0.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.8 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + libnfnetlink + http://www.netfilter.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Low level library for netfilter related kernel/userspace communication + Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık + Niskopoziomowa biblioteka do netfilter + libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. + libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. + libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. + http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 + network/misc/libnfnetlink/pspec.xml + + + libnfnetlink + + /usr/lib + + + + libnfnetlink-devel + Development files for libnfnetlink + libnfnetlink için geliştirme dosyaları + Pliki nagłówkowe do bibliioteki libnfnetlink + + libnfnetlink + + + /usr/include + /usr/lib/pkgconfig/libnfnetlink.pc + + + + + 2014-03-13 + 1.0.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-04 + 1.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + webkit-gtk2 + http://webkitgtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + LGPLv2.1 + BSD + library + network.misc + An opensource web browser engine for GTK+ applications + The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. + http://www.webkitgtk.org/releases/webkitgtk-2.4.9.tar.xz + + mesa-devel + gtk-doc + glib2-devel + gtk2-devel + ruby-devel + webp-devel + cairo-devel + icu4c-devel + libXt-devel + enchant-devel + sqlite-devel + geoclue-devel + libsoup-devel + fontconfig-devel + libxslt-devel + harfbuzz-devel + libsecret-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-next-devel + gobject-introspection-devel + gst-plugins-base-next-devel + which + icon-theme-hicolor + gperf + libSM-devel + + network/misc/webkit-gtk2/pspec.xml + + + webkit-gtk2 + + atk + zlib + glib2 + gtk2 + mesa + webp + cairo + icu4c + libXt + libX11 + libgcc + libpng + libxml2 + pango + sqlite + enchant + geoclue + libsoup + libxslt + harfbuzz + freetype + libsecret + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/share + /usr/share/doc + + + + webkit-gtk2-devel + Development files for GTK+ port of WebKit + library + data:doc + + libgcc + gtk2-devel + glib2-devel + webkit-gtk2 + libsoup-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/webkit-gtk/Web* + /usr/share/doc/webkit-gtk2/html + /usr/share/doc/webkit-gtk/JavaScriptCore + + + + + 2015-08-05 + 2.4.9 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-07 + 2.4.8 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-16 + 2.4.8 + Version Bump + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-24 + 2.4.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-21 + 2.4.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-14 + 1.10.2 + Rebuild for icu4c + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 1.10.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-25 + 1.10.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-23 + 1.10.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libssh + http://www.libssh.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + Full C library functions for manipulating a client-side SSH connection + SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı + libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). + libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. + https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.6.4.tar.gz + + zlib-devel + openssl-devel + doxygen + cmake + + network/misc/libssh/pspec.xml + + + libssh + + zlib + openssl + + + /usr/lib + /usr/share/doc + + + + libssh-devel + Development files for libssh + libssh için geliştirme dosyaları + + libssh + + + /usr/include + /usr/lib/pkgconfig + + + + libssh-docs + Development documentation for libssh + + /usr/share/doc/libssh/html + /usr/share/man + + + + + 2014-07-30 + 0.6.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-08 + 0.6.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-09 + 5.4 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-27 + 5.4 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-05-04 + 5.4 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-09-01 + 0.5.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libnl + http://people.suug.ch/~tgr/libnl + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + A library for applications dealing with netlink sockets + Netlink soketleri erişimi için bir kitaplığı + libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. + libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. + http://www.infradead.org/~tgr/libnl/files/libnl-3.2.25.tar.gz + + glibc + flex + bison + pkgconfig + libtool + check + + network/misc/libnl/pspec.xml + + + libnl + + /usr/lib + /usr/share/doc + /usr/share/man + /etc/libnl + /usr/sbin + + + + libnl-devel + Development files for libnl + libnl için geliştirme dosyaları + + libnl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-15 + 3.2.25 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-04-03 + 3.2.24 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-13 + 3.2.23 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-19 + 3.2.23 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-10-14 + 3.2.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libconfig + http://www.hyperrealm.com/libconfig/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + C/C++ Configuration File Library + C/C++ Yapılandırma Dosyası Kitaplığı + Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. + Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. + http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz + network/misc/libconfig/pspec.xml + + + libconfig + + /usr/lib + /usr/share/doc + + + + libconfig-devel + Development files for libconfig + libconfig için geliştirme dosyaları + + libconfig + + + /usr/include + /usr/lib/pkgconfig + /usr/share/info + + + + + 2013-03-04 + 1.4.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 1.4.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libcddb + http://libcddb.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + Une librairie pour accéder aux serveurs CDDB. + A library for accessing a CDDB server + CDDB sunucularına ulaşmak için bir kitaplık + Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). + libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. + mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 + network/misc/libcddb/pspec.xml + + + libcddb + + /usr/bin + /usr/lib + /usr/share/doc + + + + libcddb-devel + Development files for libcddb + libcddb için geliştirme dosyaları + + libcddb + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 1.3.2 + rebuild for libcdio + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 1.3.2 + rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 1.3.2 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2010-10-13 + 1.3.2 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + freerdp + http://www.freerdp.com + + Aydın Demirel + aydin.demirel@pisilinux.org + + ASF + app:console + network.misc + A Remote Desktop Implementation + Bir uzak masaüstü protokol uygulaması + FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. + FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. + http://pub.freerdp.com/releases/freerdp-1.0.2.tar.gz + + cups-devel + ffmpeg-devel + alsa-lib-devel + libXinerama-devel + xmlto + libXcursor-devel + libxkbfile-devel + libXv-devel + + + ffmpeg2.0.patch + patch_numblock.patch + + network/misc/freerdp/pspec.xml + + + freerdp + + cups + libX11 + openssl + libXv + ffmpeg + libXext + alsa-lib + libXcursor + libxkbfile + libXinerama + + + /usr/bin + /usr/lib + /usr/share/freerdp + /usr/share/doc + /usr/share/man + + + + freerdp-devel + + /usr/include + + + + + 2015-01-01 + 1.0.2 + Rebuild, fix build dep. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 1.0.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-29 + 1.0.2 + rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-09-28 + 1.0.2 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + iproute2 + http://linux-net.osdl.org/index.php/Iproute2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Kernel routing and traffic control utilities + Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. + Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. + Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. + https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.3.0.tar.xz + + iptables-devel + linux-atm-devel + db-devel + elfutils + + network/filter/iproute2/pspec.xml + + + iproute2 + + linux-atm + iptables + db + elfutils + + + /etc + /sbin + /usr/sbin + /lib + /usr/lib + /usr/share/man + /usr/share/doc + /var/lib + + + + + 2015-12-02 + 4.3.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-20 + 4.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-13 + 4.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-23 + 3.12.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-01 + 3.5.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + iptables + http://www.iptables.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Firewall, NAT and packet mangling tools + Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı + Contains iptables firewall, NAT and packet mangling tools. + Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. + ftp://ftp.netfilter.org/pub/iptables/iptables-1.4.21.tar.bz2 + + libnfnetlink-devel + + network/filter/iptables/pspec.xml + + + iptables + + libnfnetlink + + + /usr/bin + /sbin + /lib + /usr/lib + /usr/share/man + /etc + /var + /usr/share/xtables + + + System.Service + Network.Firewall + + + + iptables-devel + Development files for iptables + iptables için geliştirme dosyaları + + iptables + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2013-11-23 + 1.4.21 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-03-04 + 1.4.17 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-21 + 1.4.16.3 + First release + PisiLinux Community + admins@pisilinux.org + + reverseDependencyUpdate + + + + + + + farstream + http://www.freedesktop.org/wiki/Software/Farstream + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + library + network.voip + Farstream (formerly Farsight) - Audio/Video Communications Framework + Ses/Video İletişim Çatısı + Farstream (formerly Farsight) - Audio/Video Communications Framework + Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. + http://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.7.tar.gz + + libnice-devel + gstreamer-next-devel + gstreamer-devel + gst-plugins-base-next-devel + + network/voip/farstream/pspec.xml + + + farstream + + glib2 + libnice + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/lib/farstream-0.2 + /usr/lib/gstreamer-0.1 + /usr/lib/libfarstream-0.2* + /usr/share/doc + /usr/share/farstream + /usr/share/gir-1.0 + /usr/share + + + + farstream-devel + Development files for farstream + farstream için geliştirme dosyaları + + farstream + gstreamer-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-27 + 0.2.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + librsync + http://librsync.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + network.share + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı + librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. + librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. + mirrors://sourceforge/librsync/librsync-0.9.7.tar.gz + + popt-devel + + + librsync-0.9.7-largefiles.patch + librsync-link.patch + + network/share/librsync/pspec.xml + + + librsync + + popt + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/librsync + + + + librsync-devel + Development files for librsync + librsync için geliştirme dosyaları + + librsync + + + /usr/include + /usr/lib/librsync.so + /usr/share/man/man3 + + + + + 2014-02-01 + 0.9.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.9.7 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + rsync + http://rsync.samba.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + network.share + File transfer program to keep local copies in sync with remote files + Dosya yedekleme ve eşleme uygulaması + rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). + rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. + http://rsync.samba.org/ftp/rsync/rsync-3.1.1.tar.gz + + acl-devel + attr-devel + popt-devel + zlib-devel + + network/share/rsync/pspec.xml + + + rsync + + acl + attr + popt + zlib + + + /usr/bin + /usr/share/doc + /usr/share/man + /etc + + + System.Service + + + rsyncd.conf + rsyncd.conf.d + + + + + 2015-03-24 + 3.1.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-11 + 3.1.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-10 + 3.1.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-05 + 3.0.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + serf + https://code.google.com/p/serf/ + + Osman Erkan + osman.erkan@pisilinux.org + + Apachev2 + library + network.library + High-performance asynchronous HTTP client library. + The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. + http://serf.googlecode.com/svn/src_releases/serf-1.3.8.tar.bz2 + + db-devel + zlib-devel + expat-devel + openssl-devel + apr-devel + apr-util-devel + scons + + network/library/serf/pspec.xml + + + serf + + db + zlib + expat + openssl + apr + apr-util + openldap-client + + + /usr/lib + /usr/share/doc + + + + serf-devel + Development files for serf + serf için geliştirme dosyaları + + serf + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-02 + 1.3.8 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 1.3.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-12-24 + 1.3.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libmbim + http://www.freedesktop.org/wiki/Software/libmbim/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.library + MBIM modem protocol helper library. + libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. + http://www.freedesktop.org/software/libmbim/libmbim-1.12.2.tar.xz + + gtk-doc + glib2-devel + eudev-devel + + network/library/libmbim/pspec.xml + + + libmbim + + glib2 + eudev + + + /usr/lib + /usr/share/man + /usr/bin/ + /usr/share/gtk-doc/ + /usr/libexec + /usr/share/doc/libmbim + + + + libmbim-devel + libmbim için geliştirme dosyaları + libmbim için geliştirme dosyaları + + libmbim + + + /usr/lib/pkgconfig + /usr/include/libmbim-glib/ + + + + + 2015-07-15 + 1.12.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-01-20 + 1.6.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + nodejs + http://nodejs.org/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + MIT + app:console + network.library + is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications + Olay bazlı V8 Javascript motoru + Evented I/O for V8 javascript + Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. + http://nodejs.org/dist/v4.1.2/node-v4.1.2.tar.gz + + openssl-devel + + network/library/nodejs/pspec.xml + + + nodejs + + openssl + libgcc + + + /usr/bin + /usr/include + /usr/lib/node_modules + /usr/share/doc + /usr/share/man + /usr/share/systemtap + + + + + 2015-10-10 + 4.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 0.12.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-07 + 0.10.36 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-10-31 + 0.10.33 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libqmi + http://www.freedesktop.org/wiki/Software/libqmi/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + network.library + QMI modem protocol helper library + libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. + http://www.freedesktop.org/software/libqmi/libqmi-1.8.0.tar.xz + + glib2-devel + gobject-introspection-devel + + network/library/libqmi/pspec.xml + + + libqmi + + glib2 + gobject-introspection + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/gtk-doc + /usr/share/doc/libqmi/ + + + + libqmi-devel + Development files for libqmi + + libqmi + + + /usr/include + /usr/lib/pkgconfig/qmi-glib.pc + + + + + 2014-01-19 + 1.8.0 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + glib-networking + http://git.gnome.org/browse/glib-networking/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.library + Network-related giomodules for glib + Moduły GIO dotyczące sieci do glib + This package contains various network related extensions for the GIO library. + Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. + mirrors://gnome/glib-networking/2.38/glib-networking-2.38.2.tar.xz + + gnutls-devel + p11-kit-devel + ca-certificates + intltool + glib2-devel + + network/library/glib-networking/pspec.xml + + + glib-networking + + gnutls + p11-kit + glib2 + ca-certificates + + + /usr/lib/gio/modules + /usr/libexec + /usr/share + /usr/share/doc/glib-networking + + + + + 2014-03-30 + 2.38.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-27 + 2.34.2 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + net-snmp + http://net-snmp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + network.monitor + A collection of SNMP protocol tools and libraries + SNMP protokol araçları ve kitaplıkları + Kolekcja narzędzi do obsługi protokołu SNMP + Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. + net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. + SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. + mirrors://sourceforge/net-snmp/net-snmp-5.7.3.tar.gz + + libnl-devel + python-setuptools + openssl-devel + python-devel + perl + pciutils-devel + tcp-wrappers-devel + + + locale.patch + + network/monitor/net-snmp/pspec.xml + + + net-snmp + + libnl + openssl + python + perl + pciutils + tcp-wrappers + + + /etc/snmp + /usr/bin + /usr/sbin/snmpd + /etc/conf.d/snmpd + /usr/lib + /usr/share/snmp + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + + + confd-snmpd.conf + net-snmpd.conf + + + + net-snmptrap + + net-snmp + tcp-wrappers + + + /etc/conf.d/snmptrapd + /etc/snmp/snmptrapd.conf + /usr/sbin/snmptrapd + + + System.Service + + + confd-snmptrapd.conf + net-snmptrapd.conf + + + + net-snmp-devel + Development files for net-snmp + net-snmp için geliştirme dosyaları + Pliki naglowkowe do net-snmp + + net-snmp + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-02 + 5.7.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-13 + 5.7.2.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-19 + 5.7.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-01 + 5.7.2 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 5.7.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-09 + 5.7.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + avahi + http://avahi.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + network.analyzer + Local network service discovery + Yerel ağ hizmeti bulma sistemi + avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. + avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. + http://avahi.org/download/avahi-0.6.31.tar.gz + + gtk2-devel + gtk3-devel + libcap-devel + libdaemon-devel + gobject-introspection-devel + libepoxy-devel + at-spi2-core-devel + gdbm-devel + intltool + + + avahi-0.6.31-no-deprecations.patch + + network/analyzer/avahi/pspec.xml + + + avahi-glib + Libraries for easy use of avahi from glib applications + Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar + + glib2 + avahi + avahi-libs + + + /usr/lib/libavahi-glib.* + /usr/lib/libavahi-gobject.* + + + + avahi-glib-devel + Development files for avahi-glib + avahi-glib için geliştirme dosyaları + + avahi-glib + avahi-devel + + + /usr/include/avahi-glib + /usr/include/avahi-gobject + /usr/lib/pkgconfig/avahi-glib.pc + /usr/lib/pkgconfig/avahi-gobject.pc + + + + avahi-ui + Gtk user interface library for Avahi + avahi için geliştirme dosyaları + + gdbm + gtk2 + glib2 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/libavahi-ui.so* + + + + avahi-ui-devel + Development files for avahi-ui + avahi-ui için geliştirme dosyaları + + gtk2-devel + avahi-ui + avahi-devel + avahi-glib-devel + + + /usr/include/avahi-ui + /usr/lib/pkgconfig/avahi-ui.pc + + + + avahi-ui-gtk3 + Gtk3 user interface library for Avahi + avahi-gtk3, Gtk3 user interface library for Avahi + + gdbm + glib2 + gtk3 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + + + /usr/lib/libavahi-ui-gtk3.so* + + + + avahi-ui-gtk3-devel + Development files for avahi-ui-gtk3 + avahi-ui-gtk3 için geliştirme dosyaları + + gtk2-devel + avahi-ui-gtk3 + avahi-devel + avahi-glib-devel + gtk3-devel + + + /usr/lib/pkgconfig/avahi-ui-gtk3.pc + + + + avahi-ui-tools + UI tools for mDNS browsing + Grafiksel mDNS tarama araçları + + gtk3 + glib2 + avahi + avahi-ui + avahi-glib + avahi-ui-gtk3 + avahi-libs + gtk3 + + + /usr/lib/python*/site-packages + /usr/bin/b* + /usr/bin/avahi-discover* + /usr/bin/avahi-bookmarks + /usr/share/man/man1/b* + /usr/share/man/man1/avahi-discover* + /usr/share/man/man1/avahi-bookmarks* + /usr/share/avahi/interfaces + /usr/share/applications/b* + /usr/share/applications/avahi-discover.desktop + + + + avahi-compat-howl + Libraries for howl compatibility + howl uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libhowl.so* + + + + avahi-compat-howl-devel + Development files for avahi-compat-howl + avahi-compat-howl için geliştirme dosyaları + + avahi-compat-howl + + + /usr/include/avahi-compat-howl + /usr/lib/pkgconfig/avahi-compat-howl.pc + /usr/lib/pkgconfig/howl.pc + + + + avahi-compat-libdns_sd + Libraries for Apple Bonjour mDNSResponder compatibility + libdns_sd uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libdns_sd.so* + + + + avahi-compat-libdns_sd-devel + Development files for avahi-compat-libdns_sd + avahi-compat-libdns_sd için geliştirme dosyaları + + avahi-compat-libdns_sd + + + /usr/include/avahi-compat-libdns_sd + /usr/include/dns_sd.h + /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc + /usr/lib/pkgconfig/libdns_sd.pc + + + + avahi-libs + Libraries needed to run programs that use avahi + Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar + + dbus + + + /usr/lib/libavahi-common.so* + /usr/lib/libavahi-client.so* + + + + avahi + + dbus + expat + libcap + libdaemon + avahi-libs + + + /usr/sbin/avahi-daemon + /usr/lib/libavahi-core.so* + /etc/avahi/avahi-daemon.conf + /etc/avahi/hosts + /etc/avahi/services/ssh.service + /etc/dbus-1/system.d/avahi-dbus.conf + /usr/share/avahi + /usr/share/dbus-1/interfaces/*.xml + /usr/share/dbus-1/system-services + /usr/lib/avahi/service* + /lib/systemd/system + /usr/share/locale + /usr/share/doc + /usr/share/man/man5/* + /usr/share/man/man8/avahi-daemon.* + /run/avahi-daemon + /usr/lib/tmpfiles.d/avahi.conf + + + System.Service + System.Package + + + avahi.conf + + + + avahi-autoipd + Link-local IPv4 address automatic configuration daemon (IPv4LL) + Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) + + libdaemon + + + /etc/avahi/avahi-autoipd.action + /usr/sbin/avahi-autoipd + /usr/share/man/man8/avahi-autoipd.* + /var/lib/avahi-autoipd + + + + avahi-dnsconfd + Configure local unicast DNS settings based on information published in mDNS + Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti + + libdaemon + avahi + avahi-libs + + + /etc/avahi/avahi-dnsconfd.action + /usr/sbin/avahi-dnsconfd + /usr/share/man/man8/avahi-dnsconfd.* + + + System.Service + + + + avahi-tools + Command line tools for mDNS browsing and publishing + mDNS taramak ve yayınlamak için komut satırı araçları + + gdbm + avahi + avahi-libs + + + /usr/bin + /usr/share/man/man1 + + + + avahi-devel + Development files for avahi + avahi için geliştirme dosyaları + + avahi-libs + + + /usr/lib/pkgconfig/avahi-core.pc + /usr/lib/pkgconfig/avahi-client.pc + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/include/avahi-client + /usr/include/avahi-common + /usr/include/avahi-core + + + + + 2014-05-20 + 0.6.31 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-24 + 0.6.31 + rebuild for unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-08 + 0.6.31 + Add avahi.conf, fix build + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-17 + 0.6.31 + Fix deps + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-06-27 + 0.6.31 + Fix avahi-daemon.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-03 + 0.6.31 + Avahi-ui-gtk3 added + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 0.6.31 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-05 + 0.6.31 + First release + Erdem Artan + admins@pisilinux.org + + + + + + rrdtool + http://oss.oetiker.ch/rrdtool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.analyzer + A system to store and display time-series data + Zaman serisi verilerini saklamak ve göstermek için bir araç + RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). + RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. + http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.5.3.tar.gz + + lua-devel + tcl-devel + ruby-devel + cairo-devel + pango-devel + libart_lgpl-devel + dejavu-fonts + perl + glib2-devel + python-devel + libxml2-devel + tcp-wrappers-devel + groff + + network/analyzer/rrdtool/pspec.xml + + + rrdtool + + lua + tcl + ruby + cairo + pango + libart_lgpl + dejavu-fonts + perl + glib2 + python + libxml2 + tcp-wrappers + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/rrdtool + + + + rrdtool-devel + + rrdtool + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-30 + 1.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-25 + 1.5.2 + Rebuild for ruby, ver. bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-20 + 1.4.7 + Rebuild for lua. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-28 + 1.4.7 + Rebuild, rm unused deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-12-01 + 1.4.7 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2013-05-29 + 1.4.7 + Build for ruby 2.0 + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-01 + 1.4.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + lynx + http://lynx.isc.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL + app:gui + network.web + Lynx is the text web browser. + This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. + http://lynx.isc.org/lynx2.8.8/lynx2.8.8.tar.bz2 + + ncurses-devel + openssl-devel + gettext-devel + + + lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch + lynx2-8-6-fix-ugly-color.patch + lynx2-8-7-adapt-to-modern-file-localizations.patch + lynx2-8-7-tmp_dir.patch + + network/web/lynx/pspec.xml + + + lynx + + ncurses + openssl + gettext + + + /usr/bin + /etc + /usr/share + /usr/share/man + + + + + 2014-05-29 + 2.8.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-09 + 2.8.7 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2012-07-26 + 2.8.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + firefox + http://www.mozilla.org/projects/firefox/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2 + app:gui + network.web + Firefox Web Browser + Firefox Web Browser + Firefox Web-Browser + Firefox Web Tarayıcı + Przeglądarka WWW Firefox + Firefox Navegador Web + It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. + Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. + Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. + Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. + 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/mozilla.org/firefox/releases/42.0/source/firefox-42.0.source.tar.xz + + mozconfig + pisilinux/browserconfig.properties + + + wget + yasm + zlib-devel + gtk2-devel + libXt-devel + libSM-devel + libpng-devel + libffi-devel + gnutls-devel + hunspell-devel + alsa-lib-devel + dbus-glib-devel + libXcomposite-devel + libXScrnSaver-devel + libjpeg-turbo-devel + pulseaudio-libs-devel + gst-plugins-base-next-devel + nss-devel + nspr-devel + + + firefox-install-dir.patch + + network/web/firefox/pspec.xml + + + firefox + + atk + nss + dbus + gtk2 + nspr + zlib + cairo + glib2 + libXt + pango + libX11 + libffi + libgcc + libpng + pixman + sqlite + iconcan + libXext + alsa-lib + freetype + hunspell + dbus-glib + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + + + /etc/ + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/libexec + /usr/lib/pkgconfig + /usr/share/pixmaps + /usr/lib/firefox + /usr/share/applications + + + System.Package + + + pisilinux/mozillafirefox.desktop + pisilinux/firefox-l10n.js + pisilinux/default-prefs.js + pisilinux/pisilinux_bookmark-tr.html + pisilinux/pisilinux_bookmark-en.html + pisilinux/pisilinux_bookmark-nl.html + pisilinux/pisilinux_bookmark-de.html + + + + firefox-lang-az + Firefox üçün Türkçe dil faylı + Firefox üçün Türkçe dil faylı + locale:az + system.locale + lang-az + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org + + + + firefox-lang-be + Беларуская мова пакет для Firefox + Беларуская мова пакет для Firefox + locale:be + system.locale + lang-be + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org + + + + firefox-lang-bs + Engleskom jeziku paket za Firefox + Engleskom jeziku paket za Firefox + locale:bs + system.locale + lang-bs + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org + + + + firefox-lang-ca + Arxiu d'idioma català del Firefox + Arxiu d'idioma català del Firefox + locale:ca + system.locale + lang-ca + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org + + + + firefox-lang-da + Dansk sprogpakke til Firefox + Dansk sprogpakke til Firefox + locale:da + system.locale + lang-da + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org + + + + firefox-lang-de + Deutsch Sprachdatei für Firefox + Deutsch Sprachdatei für Firefox + locale:de + system.locale + lang-de + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org + + + + firefox-lang-el + Ελληνική γλώσσα pack για τον Firefox + Ελληνική γλώσσα pack για τον Firefox + locale:el + system.locale + lang-el + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org + + + + firefox-lang-en-US + English language pack for Firefox + English language pack for Firefox + locale:en-US + system.locale + lang-en-US + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org + + + + firefox-lang-en-ZA + South African English language pack for Firefox + South African English language pack for Firefox + locale:en-ZA + system.locale + lang-en-ZA + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org + + + + firefox-lang-en-GB + British English language pack for Firefox + British English language pack for Firefox + locale:en-GB + system.locale + lang-en-GB + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org + + + + firefox-lang-es-AR + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-AR + system.locale + lang-es-AR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org + + + + firefox-lang-es-CL + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-CL + system.locale + lang-es-CL + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org + + + + firefox-lang-es-ES + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-ES + system.locale + lang-es-ES + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org + + + + firefox-lang-fi + Suomen kielen pack for Firefox + Suomen kielen pack for Firefox + locale:fi + system.locale + lang-fi + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org + + + + firefox-lang-fr + Paquet de langue française pour Firefox + Paquet de langue française pour Firefox + locale:fr + system.locale + lang-fr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org + + + + firefox-lang-hr + Hrvatski jezični paket za Firefox + Hrvatski jezični paket za Firefox + locale:hr + system.locale + lang-hr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org + + + + firefox-lang-hu + Magyar nyelvű pack for Firefox + Magyar nyelvű pack for Firefox + locale:hu + system.locale + lang-hu + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org + + + + firefox-lang-it + Language Pack italiano per Firefox + Language Pack italiano per Firefox + locale:it + system.locale + lang-it + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org + + + + firefox-lang-lt + Lietuvių kalbos paketas Firefox + Lietuvių kalbos paketas Firefox + locale:lt + system.locale + lang-lt + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org + + + + firefox-lang-nl + Nederlands taalpakket voor Firefox + Nederlands taalpakket voor Firefox + locale:nl + system.locale + lang-nl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org + + + + firefox-lang-pl + Polski pakiet językowy dla programu Firefox + Polski pakiet językowy dla programu Firefox + locale:pl + system.locale + lang-pl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org + + + + firefox-lang-pt-BR + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-BR + system.locale + lang-pt-BR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org + + + + firefox-lang-pt-PT + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-PT + system.locale + lang-pt-PT + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org + + + + firefox-lang-ro + Pachet de limba română pentru Firefox + Pachet de limba română pentru Firefox + locale:ro + system.locale + lang-ro + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org + + + + firefox-lang-ru + Русский языковый пакет для Firefox + Русский языковый пакет для Firefox + locale:ru + system.locale + lang-ru + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org + + + + firefox-lang-sr + Паковање српски језик за Фирефок + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org + + + + firefox-lang-sv-SE + Svenska språkpaket för Firefox + Svenska språkpaket för Firefox + locale:sv-SE + system.locale + lang-sv-SE + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org + + + + firefox-lang-tr + Firefox için Türkçe dil dosyası + Firefox için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org + + + + firefox-lang-uk + Український мовний пакет для Firefox + Український мовний пакет для Firefox + locale:uk + system.locale + lang-uk + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org + + + + + 2015-11-08 + 42.0 + Version bump, http://www.mozilla.org/en-US/firefox/42.0/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-09-01 + 40.0.3 + Version bump, http://www.mozilla.org/en-US/firefox/40.0.3/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-20 + 40.0.2 + Version bump, http://www.mozilla.org/en-US/firefox/40.0.2/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-11 + 39.0.3 + Version bump, http://www.mozilla.org/en-US/firefox/39.0.3/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-08-05 + 39.0 + Version bump, http://www.mozilla.org/en-US/firefox/39.0/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-06-08 + 38.0.5 + Version bump, http://www.mozilla.org/en-US/firefox/38.0.5/releasenotes + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-04-25 + 37.0.2 + Version bump, http://www.mozilla.org/en-US/firefox/37.0.2/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2015-04-04 + 37.0.1 + Version bump, http://www.mozilla.org/en-US/firefox/37.0.1/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-27 + 36.0.4 + Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-28 + 36.0 + Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-04 + 35.0.1 + Version bump, http://www.mozilla.org/en-US/firefox/35.0.1/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-12-19 + 34.0.5 + Version bump, http://www.mozilla.org/en-US/firefox/34.0.5/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-11-30 + 33.1.1 + Version bump, http://www.mozilla.org/en-US/firefox/33.1.1/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-09-29 + 32.0.3 + Version bump, http://www.mozilla.org/en-US/firefox/32.0.3/releasenotes + PisiLinux Community + admins@pisilinux.org + + + 2014-09-04 + 32.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-08-18 + 31.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-07-05 + 30.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-29 + 29.0.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-01 + 29.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-29 + 28.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-03-03 + 27.0.1 + Rebuild for openjdk + PisiLinux Community + admins@pisilinux.org + + + 2014-02-15 + 27.0.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-02-09 + 27.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-12-16 + 26.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-12-01 + 25.0.1 + rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-18 + 25.0.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-11-12 + 25.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 24.0 + Rebuild for icu4c + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-10-07 + 24.0 + * fix en-us searchplugins + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-17 + 24.0 + * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-24 + 23.0.1 + * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-08 + 23.0 + * http://www.mozilla.org/en-US/firefox/23.0/releasenotes/ + * fixing bug 809055: Moving Firefox to background while playing a flash video in full screen mode and bring it back to view will freeze the app + Erdinç Gültekin-Marcin Bojara + erdincgultekin@pisilinux.org + + + 2013-06-27 + 22.0 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-15 + 21.0 + http://www.mozilla.org/en-US/firefox/21.0/releasenotes/ + Erdinç Gültekin-Marcin Bojara + erdincgultekin@pisilinux.org + + + 2013-05-10 + 20.0.1 + http://www.mozilla.org/en-US/firefox/20.0.1/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-03 + 20.0 + http://www.mozilla.org/en-US/firefox/20.0/releasenotes/ + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-11 + 19.0.2 + http://www.mozilla.org/en-US/firefox/19.0.2/releasenotes/ + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-19 + 19.0 + * Built-in PDF viewer + * CSS @page is now supported + * security fixes + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-08 + 18.0.2 + * 18.0.2: Fix JavaScript related stability issues + * Support for W3C touch events implemented, taking the place of MozTouch events + * security fixes + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-21 + 18.0.1 + bump + Erdinç Gültekin + admins@pisilinux.org + + + 2012-12-02 + 17.0.1 + First release + Demiray Muhterem + bilgi@bilgegunluk.com + + + + + + telepathy-gabble + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + A Jabber/XMPP connection manager for Telepathy + Telepathy için Jabber/XMPP bağlantı yöneticisi + telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. + telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.3.tar.gz + + libnice-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + libxslt-devel + gnutls-devel + sqlite-devel + libsoup-devel + libnice-devel + cyrus-sasl-devel + + network/chat/telepathy-gabble/pspec.xml + + + telepathy-gabble + + dbus + glib2 + gnutls + sqlite + libnice + libsoup + libxml2 + dbus-glib + telepathy-glib + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-11-21 + 0.18.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.15.3 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.15.3 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-03 + 0.15.3 + Dep added + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.15.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-mission-control + http://telepathy.freedesktop.org/wiki/Mission_Control + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + network.chat + Telepathy component managing connection managers + Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni + telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. + telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. + http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.3.tar.gz + + libxslt-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + gtk-doc + NetworkManager-devel + docbook-xsl + + network/chat/telepathy-mission-control/pspec.xml + + + telepathy-mission-control + + dbus + glib2 + dbus-glib + NetworkManager + telepathy-glib + + + /usr/bin + /usr/lib/libmission-control-plugins.so.0* + /usr/lib/telepathy/mission-control-5 + /usr/share/man + /usr/share/doc + /usr/share/dbus-1 + /usr/share/glib-2.0 + + + + telepathy-mission-control-devel + Development files for telepathy-mission-control + telepathy-mission-control için geliştirme dosyaları + + telepathy-mission-control + telepathy-glib-devel + + + /usr/include/mission-control-5.5 + /usr/lib/libmission-control-plugins.so + /usr/lib/pkgconfig/mission-control-plugins.pc + /usr/share/gtk-doc/html/mission-control-plugins + + + + + 2015-11-22 + 5.16.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 5.16.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-19 + 5.16.0 + Version bump for upower. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 5.14.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-15 + 5.14.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-01 + 5.12.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-farstream + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Telepathy client to handle media streaming channels + Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi + Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. + Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. + http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + farstream-devel + gstreamer-next-devel + + network/chat/telepathy-farstream/pspec.xml + + + telepathy-farstream + library + + dbus + glib2 + dbus-glib + farstream + gstreamer-next + telepathy-glib + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + + + + telepathy-farstream-docs + Help files and API documents of telepathy-farstream library + telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-farstream + + + /usr/share/gtk-doc + + + + telepathy-farstream-devel + Development files for telepathy-farstream + telepathy-farstream için geliştirme dosyaları + + telepathy-farstream + farstream-devel + gstreamer-next-devel + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-20 + 0.6.2 + Version bump and fix name + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 0.0.17 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.0.17 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.0.17 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pidgin + http://www.pidgin.im + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + network.chat + Instant messaging application previously known as gaim + Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı + Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. + Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. + pidgin + mirrors://sourceforge/pidgin/pidgin-2.10.11.tar.bz2 + + intltool + glib2-devel + gtk2-devel + libXScrnSaver-devel + libSM-devel + gtkspell-devel + sqlite-devel + libxml2-devel + gstreamer-devel + farstream-devel + gst-plugins-base-devel + libidn-devel + avahi-glib-devel + dbus-glib-devel + NetworkManager-devel + nss-devel + tcl-devel + tcltk-devel + cyrus-sasl-devel + doxygen + libxslt-devel + gnutls-devel + atk-devel + cairo-devel + gdk-pixbuf-devel + ncurses-devel + python-devel + + + suse/ pidgin-2.10.11-send-video-enum.patch + suse/pidgin-2.10.11-add-dtmf-support.patch + suse/pidgin-2.10.11-fix-sound-play-fd-leak.patch + suse/pidgin-2.10.11-gst-references.patch + suse/pidgin-2.10.11-init-media-optional.patch + suse/pidgin-2.10.11-private-media.patch + suse/pidgin-ncurses-6.0-accessors.patch + + network/chat/pidgin/pspec.xml + + + pidgin + app:gui + + atk + dbus + gtk2 + cairo + glib2 + libSM + pango + libICE + sqlite + freetype + gtkspell + dbus-glib + gstreamer + fontconfig + gdk-pixbuf + libXScrnSaver + libpurple + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/sounds + /usr/share/dbus-1 + /usr/share/purple + /usr/share/pixmaps + /usr/lib/pidgin + /etc/gconf/schemas + /usr/share/appdata/ + /usr/share/locale + /usr/share/applications + + + + pidgin-devel + Development files of pidgin + pidgin paketine ait geliştirme dosyaları + library + + pidgin + libpurple-devel + gtk2-devel + + + /usr/include/pidgin + /usr/bin/dh_pidgin + /usr/share/man/man3/Pidgin* + /usr/lib/pkgconfig/pidgin.pc + + + + finch + Console based instant messaging application + Konsol tabanlı anında mesajlaşma istemcisi + app:console + + glib2 + libX11 + python + libxml2 + ncurses + gstreamer + libpurple + + + /usr/lib/gnt + /usr/lib/finch + /usr/lib/libgnt* + /usr/bin/finch + /usr/share/man/man1/finch* + + + + finch-devel + Development files of finch + finch paketine ait geliştirme dosyaları + library + + finch + libpurple-devel + + + /usr/include/gnt + /usr/include/finch + /usr/lib/pkgconfig/gnt* + /usr/lib/pkgconfig/finch* + + + + libpurple + The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. + Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı + library + + nss + tcl + dbus + nspr + perl + glib2 + tcltk + gnutls + libidn + libxml2 + dbus-glib + gstreamer + avahi-glib + avahi-libs + cyrus-sasl + gst-plugins-base + + + /usr/lib/purple-2 + /usr/bin/purple* + /usr/lib/libpurple* + + + + libpurple-devel + Development files of libpurple + libpurple paketine ait geliştirme dosyaları + library + + libpurple + + + /usr/share/aclocal + /usr/include/libpurple + /usr/share/man/man3/Purple* + /usr/lib/pkgconfig/purple.pc + + + + + 2015-11-20 + 2.10.11 + rebuild and add pisi-2.0. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-17 + 2.10.11 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-17 + 2.10.9 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-04 + 2.10.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-11 + 2.10.7 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-07-29 + 2.10.7 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-22 + 2.10.7 + fixing some errors + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-16 + 2.10.7 + Updated + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-07-25 + 2.10.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + telepathy-logger-qt + https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + network.chat + Qt bindings for telepathy logger + Qt Wrapper around TpLogger client library. + http://download.kde.org/stable/telepathy-logger-qt/15.04/src/telepathy-logger-qt-15.04.0.tar.xz + + extra-cmake-modules + qt5-base-devel + doxygen + telepathy-qt5-devel + glib2-devel + dbus-devel + dbus-glib-devel + libxml2-devel + telepathy-logger-devel + + network/chat/telepathy-logger-qt/pspec.xml + + + telepathy-logger-qt + Qt bindings for telepathy logger + + glib2 + libgcc + qt5-base + telepathy-qt5 + telepathy-glib + telepathy-logger + + + /usr/lib/libtelepathy-logger-qt.so.* + /usr/share/doc + + + + telepathy-logger-qt-devel + Development files for telepathy-logger-qt + + telepathy-logger-qt + telepathy-glib-devel + + + /usr/include + /usr/lib/libtelepathy-logger-qt.so + /usr/lib/cmake/TelepathyLoggerQt + + + + + 2015-11-22 + 15.04.0 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-qt5 + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + Qt based classes for Telepathy communication framework + Telepathy iletişim çatısı için Qt tabanlı sınıflar + The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. + Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. + http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.6.tar.gz + + cmake + qt5-base-devel + gobject-introspection-devel + dbus-glib-devel + libxml2-devel + farstream-devel + telepathy-farstream-devel + doxygen + + + glibc-2.20.patch + + network/chat/telepathy-qt5/pspec.xml + + + telepathy-qt5 + + glib2 + libgcc + qt5-base + telepathy-glib + telepathy-farstream + doxygen + + + /usr/lib + /usr/share/doc + + + + telepathy-qt5-devel + Development files for telepathy-qt5 + telepathy-qt5 için geliştirme dosyaları + + telepathy-qt5 + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 0.9.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.9.3 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.9.3 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-19 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + telepathy-sunshine + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + network.chat + Gadu-Gadu connection manager for telepathy + Telepathy için Gadu Gadu bağlantı yöneticisi + Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. + Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-sunshine/pspec.xml + + + telepathy-sunshine + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/man + /usr/share/doc + + + + + 2015-11-22 + 2.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 2.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-haze + http://developer.pidgin.im/wiki/Telepathy + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + A multi-protocol Libpurple connection manager for Telepathy + Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi + telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. + Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. + http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz + + glib2-devel + dbus-devel + dbus-glib-devel + libpurple-devel + telepathy-glib-devel + libxslt-devel + + network/chat/telepathy-haze/pspec.xml + + + telepathy-haze + + dbus + glib2 + dbus-glib + libpurple + telepathy-glib + + + /usr/libexec + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-11-21 + 0.8.0 + version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2013-09-19 + 0.5.0 + Fix dep, we have no kdenetwork package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 0.5.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.5.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-glib + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + GLib bindings for the Telepathy D-Bus protocol + Telepathy D-Bus protokolü için GLib bağlayıcıları + Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. + Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. + http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + libxslt-devel + vala-devel + + network/chat/telepathy-glib/pspec.xml + + + telepathy-glib + GLib bindings for the Telepathy D-Bus protocol + library + + dbus + glib2 + dbus-glib + + + /usr/lib + /usr/share/gir-1.0 + /usr/share/doc + + + + telepathy-glib-docs + Help files and API documents of telepathy-glib library + telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-glib + + + /usr/share/gtk-doc + + + + telepathy-glib-devel + Development files for telepathy-glib + telepathy-glib için geliştirme dosyaları + + telepathy-glib + + + /usr/include + /usr/lib/pkgconfig + /usr/share/vala/vapi + + + + + 2015-11-20 + 0.24.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-25 + 0.24.0 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2013-11-26 + 0.23.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-07-09 + 0.20.2 + Enable vala bindings + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-12 + 0.20.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-22 + 0.20.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libotr + http://www.cypherpunks.ca/otr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.chat + Portable OTR (Off The Record) messaging library + Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı + OTR messaging allows you to have private conversations over instant messaging. + OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. + https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz + + libgcrypt-devel + + network/chat/libotr/pspec.xml + + + libotr + + libgcrypt + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libotr-devel + Development files for libotr + libotr için geliştirme dosyaları + + libotr + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libotr/html + + + + + 2015-11-22 + 4.1.0 + Rebuild, add dep + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-17 + 4.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-04-07 + 4.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 4.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-01 + 3.2.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-butterfly + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + MSN connection manager for Telepathy + Telepathy için MSN bağlantı yöneticisi + telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. + telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. + http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-butterfly/pspec.xml + + + telepathy-butterfly + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2015-11-22 + 0.5.15 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.5.15 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 0.5.15 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-salut + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Link-local XMPP Telepathy connection manager + XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. + telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. + telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz + + libxslt-devel + glib2-devel + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + avahi-devel + avahi-glib-devel + libsoup-devel + openssl-devel + python-devel + sqlite-devel + cyrus-sasl-devel + + + fix_bork_in_tr_locale.patch + + network/chat/telepathy-salut/pspec.xml + + + telepathy-salut + + dbus + glib2 + sqlite + libsoup + libxml2 + openssl + dbus-glib + avahi-glib + avahi-libs + telepathy-glib + + + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + /usr/share/man + + + + + 2015-11-22 + 0.8.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-10 + 0.8.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 0.8.0 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-logger + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + Logging utility Telepathy + Telepathy için kayıt tutma aracı. + telepathy-logger is a logging utility for Telepathy communication framework. + telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. + http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 + + glib2-devel + intltool + libxslt-devel + dbus-devel + dbus-glib-devel + gobject-introspection-devel + libxml2-devel + sqlite-devel + telepathy-glib-devel + + network/chat/telepathy-logger/pspec.xml + + + telepathy-logger + + dbus + glib2 + sqlite + libxml2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/gir-1.0/ + /usr/share/telepathy + /usr/share/glib-2.0/ + /usr/libexec + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/share/doc + + + + telepathy-logger-devel + Development files for telepathy-logger + telepathy-logger için geliştirme dosyaları + + telepathy-logger + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-22 + 0.8.2 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.8.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-12 + 0.8.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.1.7 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telepathy-idle + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + IRC connection manager for Telepathy + Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi + telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. + telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz + + telepathy-glib-devel + libxslt-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + + network/chat/telepathy-idle/pspec.xml + + + telepathy-idle + + glib2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /usr/share/telepathy + + + + + 2015-11-22 + 0.2.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.1.12 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-01 + 0.1.12 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + kde-l10n-hu + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hu + desktop.kde.l10n + Hungarian KDE5 internationalization package + KDE5 Macar yerelleştirme paketi + kde-l10n-hu is the KDE5 internationalization package that provides Hungarian translations for KDE5 applications. + kde-l10n-hu, KDE uygulamalarını Macar yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hu-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hu/pspec.xml + + + kde-l10n-hu + system.locale + lang-hu + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ko + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ko + desktop.kde.l10n + Korean KDE5 internationalization package + KDE5 Koreli yerelleştirme paketi + kde-l10n-ko is the KDE5 internationalization package that provides Korean translations for KDE5 applications. + kde-l10n-ko, KDE uygulamalarını Koreli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ko-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ko/pspec.xml + + + kde-l10n-ko + system.locale + lang-ko + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nb + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nb + desktop.kde.l10n + Norwegian Bookma KDE5 internationalization package + KDE5 Norveç bookma yerelleştirme paketi + kde-l10n-nb is the KDE5 internationalization package that provides Norwegian Bookma translations for KDE5 applications. + kde-l10n-nb, KDE uygulamalarını Norveç bookma yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nb-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nb/pspec.xml + + + kde-l10n-nb + system.locale + lang-nb + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-lv + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:lv + desktop.kde.l10n + Latvian KDE5 internationalization package + KDE5 Letonya yerelleştirme paketi + kde-l10n-lv is the KDE5 internationalization package that provides Latvian translations for KDE5 applications. + kde-l10n-lv, KDE uygulamalarını Letonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lv-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-lv/pspec.xml + + + kde-l10n-lv + system.locale + lang-lv + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-en_GB + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:en_GB + desktop.kde.l10n + British English KDE5 internationalization package + KDE5 Britanya İngilizcesi yerelleştirme paketi + kde-l10n-en_GB is the KDE5 internationalization package that provides British English translations for KDE5 applications. + kde-l10n-tr, KDE uygulamalarını Britanya İngilizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-en_GB-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-en_GB/pspec.xml + + + kde-l10n-en_GB + system.locale + lang-en_GB + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart/syntax + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-eu + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:eu + desktop.kde.l10n + Basque KDE5 internationalization package + kde-l10n-eu is the KDE5 internationalization package that provides Basque translations for KDE5 applications. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eu-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-eu/pspec.xml + + + kde-l10n-eu + system.locale + lang-eu + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-lt + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:lt + desktop.kde.l10n + Lithuanian KDE5 internationalization package + KDE5 Litvanya yerelleştirme paketi + kde-l10n-lt is the KDE5 internationalization package that provides Lithuanian translations for KDE5 applications. + kde-l10n-lt, KDE uygulamalarını Litvanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lt-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-lt/pspec.xml + + + kde-l10n-lt + system.locale + lang-lt + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-lt-doc + German documentation files for KDE + KDE5 için Litvanya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-cs + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:cs + desktop.kde.l10n + Czech KDE5 internationalization package + KDE5 Çek yerelleştirme paketi + kde-l10n-cs is the KDE5 internationalization package that provides Czech translations for KDE5 applications. + kde-l10n-cs, KDE uygulamalarını Çek yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-cs-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + extra-cmake-modules + qt5-linguist + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-cs/pspec.xml + + + kde-l10n-cs + system.locale + lang-cs + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-cs-doc + Czech documentation files for KDE + KDE5 için Çek belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-bg + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:bg + desktop.kde.l10n + Bulgarian KDE5 internationalization package + KDE5 Bulgar yerelleştirme paketi + kde-l10n-bg is the KDE5 internationalization package that provides Bulgarian translations for KDE5 applications. + kde-l10n-br, KDE uygulamalarını Bulgar yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bg-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-bg/pspec.xml + + + kde-l10n-bg + system.locale + lang-bg + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nn + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nn + desktop.kde.l10n + Norwegian Nynorsk KDE5 internationalization package + KDE5 Norveççe yerelleştirme paketi + kde-l10n-nn is the KDE5 internationalization package that provides Norwegian Nynorsk translations for KDE5 applications. + kde-l10n-nn, KDE uygulamalarını Norveççe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nn-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nn/pspec.xml + + + kde-l10n-nn + system.locale + lang-nn + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-nn-doc + Norwegian Nynorsk documentation files for KDE + KDE5 için Norveççe belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-id + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:id + desktop.kde.l10n + Indonesian KDE5 internationalization package + KDE5 Endonezyalı yerelleştirme paketi + kde-l10n-id is the KDE5 internationalization package that provides Indonesian translations for KDE5 applications. + kde-l10n-id, KDE uygulamalarını Endonezyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-id-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-id/pspec.xml + + + kde-l10n-id + system.locale + lang-id + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-uk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:uk + desktop.kde.l10n + Ukrainian KDE5 internationalization package + KDE5 Ukraynalı yerelleştirme paketi + kde-l10n-uk is the KDE5 internationalization package that provides Ukrainian translations for KDE5 applications. + kde-l10n-uk, KDE uygulamalarını Ukraynalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-uk-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-uk/pspec.xml + + + kde-l10n-uk + system.locale + lang-uk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-uk-doc + Ukrainian documentation files for KDE + KDE5 için Ukraynalı belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-km + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:km + desktop.kde.l10n + Khmer KDE5 internationalization package + KDE5 Kmer yerelleştirme paketi + kde-l10n-km is the KDE5 internationalization package that provides Khmer translations for KDE5 applications. + kde-l10n-km, KDE uygulamalarını Kmer yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-km-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-km/pspec.xml + + + kde-l10n-km + system.locale + lang-km + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-gl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:gl + desktop.kde.l10n + Galician KDE5 internationalization package + KDE5 Galiçya yerelleştirme paketi + kde-l10n-gl is the KDE5 internationalization package that provides Galician translations for KDE5 applications. + kde-l10n-gl, KDE uygulamalarını Galiçya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-gl-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-gl/pspec.xml + + + kde-l10n-gl + system.locale + lang-gl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-gl-doc + Galician documentation files for KDE + KDE5 için Galiçya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pl + desktop.kde.l10n + Polish KDE5 internationalization package + KDE5 Polonyalı yerelleştirme paketi + kde-l10n-pl is the KDE5 internationalization package that provides Polish translations for KDE5 applications. + kde-l10n-pl, KDE uygulamalarını Polonyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pl-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pl/pspec.xml + + + kde-l10n-pl + system.locale + lang-pl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-pl-doc + Polish documentation files for KDE + KDE5 için Polonyalı belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-kk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:kk + desktop.kde.l10n + Kazakh KDE5 internationalization package + KDE5 Kazak yerelleştirme paketi + kde-l10n-kk is the KDE5 internationalization package that provides Kazakh translations for KDE5 applications. + kde-l10n-kk, KDE uygulamalarını Kazak yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-kk-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-kk/pspec.xml + + + kde-l10n-kk + system.locale + lang-kk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-kk-doc + Kazakh documentation files for KDE + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-hi + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hi + desktop.kde.l10n + Hindi KDE5 internationalization package + KDE5 Hintçe yerelleştirme paketi + kde-l10n-ga is the KDE5 internationalization package that provides Hindi translations for KDE5 applications. + kde-l10n-hi, KDE uygulamalarını Hintçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hi-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hi/pspec.xml + + + kde-l10n-hi + system.locale + lang-hi + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-is + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:is + desktop.kde.l10n + Icelandic KDE5 internationalization package + KDE5 İzlanda'ya özgü yerelleştirme paketi + kde-l10n-is is the KDE5 internationalization package that provides Icelandic translations for KDE5 applications. + kde-l10n-is, KDE uygulamalarını İzlanda'ya özgü yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-is-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-is/pspec.xml + + + kde-l10n-is + system.locale + lang-is + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-bs + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:bs + desktop.kde.l10n + Bosnian KDE5 internationalization package + KDE5 Boşnakça yerelleştirme paketi + kde-l10n-bs is the KDE5 internationalization package that provides Bosnian translations for KDE5 applications. + kde-l10n-bs, KDE uygulamalarını Boşnakça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bs-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-bs/pspec.xml + + + kde-l10n-bs + system.locale + lang-bs + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sl + desktop.kde.l10n + Slovenian KDE5 internationalization package + KDE5 Sloven yerelleştirme paketi + kde-l10n-sl is the KDE5 internationalization package that provides Slovenian translations for KDE5 applications. + kde-l10n-sl, KDE uygulamalarını Sloven yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sl-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sl/pspec.xml + + + kde-l10n-sl + system.locale + lang-sl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pt_BR + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pt_BR + desktop.kde.l10n + Brazilian Portuguese KDE5 internationalization package + KDE5 Brezilya Portekizcesi yerelleştirme paketi + kde-l10n-pt_BR is the KDE5 internationalization package that provides Brazilian Portuguese translations for KDE5 applications. + kde-l10n-pt_BR, KDE uygulamalarını Brezilya Portekizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt_BR-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pt_BR/pspec.xml + + + kde-l10n-pt_BR + system.locale + lang-pt_BR + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-pt_BR-doc + Brazilian Portuguese documentation files for KDE + KDE5 için Brezilya Portekizcesi belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nds + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nds + desktop.kde.l10n + Low Saxon KDE5 internationalization package + KDE5 Düşük Sakson yerelleştirme paketi + kde-l10n-nds is the KDE5 internationalization package that provides Low Saxon translations for KDE5 applications. + kde-l10n-nds, KDE uygulamalarını Düşük Sakson yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nds-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nds/pspec.xml + + + kde-l10n-nds + system.locale + lang-nds + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + /usr/share/kstars + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-nl + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:nl + desktop.kde.l10n + Dutch KDE5 internationalization package + KDE5 Hollandaca yerelleştirme paketi + kde-l10n-nl is the KDE5 internationalization package that provides Dutch translations for KDE5 applications. + kde-l10n-nl, KDE uygulamalarını Hollandaca yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nl-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-nl/pspec.xml + + + kde-l10n-nl + system.locale + lang-nl + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kturtle + /usr/share/katepart + + + + kde-l10n-nl-doc + Dutch documentation files for KDE + KDE5 için Hollandaca belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ca + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ca + desktop.kde.l10n + Catalan KDE5 internationalization package + KDE5 Katalan yerelleştirme paketi + kde-l10n-ca is the KDE5 internationalization package that provides Catalan translations for KDE5 applications. + kde-l10n-ca, KDE uygulamalarını Katalan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ca/pspec.xml + + + kde-l10n-ca + system.locale + lang-ca + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + + + + kde-l10n-ca-doc + Catalan documentation files for KDE + KDE5 için Katalan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-05 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-da + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:da + desktop.kde.l10n + Danish KDE5 internationalization package + KDE5 Danimarkalı yerelleştirme paketi + kde-l10n-da is the KDE5 internationalization package that provides Danish translations for KDE5 applications. + kde-l10n-da, KDE uygulamalarını Danimarkalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-da-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-da/pspec.xml + + + kde-l10n-da + system.locale + lang-da + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-ia + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ia + desktop.kde.l10n + Interlingua KDE5 internationalization package + KDE5 Interlingua yerelleştirme paketi + kde-l10n-ia is the KDE5 internationalization package that provides Interlingua translations for KDE5 applications. + kde-l10n-ia, KDE uygulamalarını Interlingua yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ia-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ia/pspec.xml + + + kde-l10n-ia + system.locale + lang-ia + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-eo + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:eo + desktop.kde.l10n + Esperanto KDE5 internationalization package + KDE5 Esperanto yerelleştirme paketi + kde-l10n-eo is the KDE5 internationalization package that provides Esperanto translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Esperanto yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eo-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-eo/pspec.xml + + + kde-l10n-eo + system.locale + lang-eo + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-pa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pa + desktop.kde.l10n + Punjabi KDE5 internationalization package + KDE5 Pencaplı yerelleştirme paketi + kde-l10n-pa is the KDE5 internationalization package that provides Punjabi translations for KDE5 applications. + kde-l10n-pa, KDE uygulamalarını Pencaplı yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pa-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pa/pspec.xml + + + kde-l10n-pa + system.locale + lang-pa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-tr + http://l10n.kde.org + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + locale:tr + desktop.kde.l10n + Turkish KDE5 internationalization package + KDE5 Türkçe yerelleştirme paketi + kde-l10n-tr is the KDE5 internationalization package that provides Turkish translations for KDE5 applications. + kde-l10n-tr, KDE uygulamalarını Türkçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-tr-15.08.3.tar.xz + + qt5-linguist + ki18n-devel + kconfig-devel + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-tr/pspec.xml + + + kde-l10n-tr + system.locale + lang-tr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + + + + kde-l10n-tr-doc + Turkish documentation files for KDE + KDE5 için Türkçe belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-pt + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:pt + desktop.kde.l10n + Portuguese KDE5 internationalization package + KDE5 Portekizli yerelleştirme paketi + kde-l10n-pt is the KDE5 internationalization package that provides Portuguese translations for KDE5 applications. + kde-l10n-pt, KDE uygulamalarını Portekizli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-pt/pspec.xml + + + kde-l10n-pt + system.locale + lang-pt + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-pt-doc + Portuguese documentation files for KDE + KDE5 için Portekizli belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-fa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fa + desktop.kde.l10n + Farsi KDE5 internationalization package + KDE5 Farsça yerelleştirme paketi + kde-l10n-fa is the KDE5 internationalization package that provides Farsi translations for KDE5 applications. + kde-l10n-fa, KDE uygulamalarını Farsça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fa-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fa/pspec.xml + + + kde-l10n-fa + system.locale + lang-fa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-it + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:it + desktop.kde.l10n + Italian KDE5 internationalization package + KDE5 İtalyan yerelleştirme paketi + kde-l10n-it is the KDE5 internationalization package that provides Italian translations for KDE5 applications. + kde-l10n-it, KDE uygulamalarını İtalyan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-it-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-it/pspec.xml + + + kde-l10n-it + system.locale + lang-it + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-it-doc + Italian documentation files for KDE + KDE5 için İtalyan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-et + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:et + desktop.kde.l10n + Estonian KDE5 internationalization package + KDE5 Estonya yerelleştirme paketi + kde-l10n-el is the KDE5 internationalization package that provides Estonian translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Estonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-et-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-et/pspec.xml + + + kde-l10n-et + system.locale + lang-et + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-et-doc + Estonian documentation files for KDE + KDE5 için Estonya belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-el + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:el + desktop.kde.l10n + Greek KDE5 internationalization package + KDE5 Yunan yerelleştirme paketi + kde-l10n-el is the KDE5 internationalization package that provides Greek translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını Yunan yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-el-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-el/pspec.xml + + + kde-l10n-el + system.locale + lang-el + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-el-doc + Greek documentation files for KDE + KDE5 için Yunan belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-zh_CN + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:zh_CN + desktop.kde.l10n + Chinese Simplified KDE5 internationalization package + KDE5 Sadeleştirilmiş Çince yerelleştirme paketi + kde-l10n-zh_CN is the KDE5 internationalization package that provides Chinese Simplified translations for KDE5 applications. + kde-l10n-zh_CN, KDE uygulamalarını Sadeleştirilmiş Çince yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_CN-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-zh_CN/pspec.xml + + + kde-l10n-zh_CN + system.locale + lang-zh_CN + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-zh_TW + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:zh_TW + desktop.kde.l10n + Chinese Traditional KDE5 internationalization package + KDE5 Geleneksel Çin yerelleştirme paketi + kde-l10n-zh_TW is the KDE5 internationalization package that provides Chinese Traditional translations for KDE5 applications. + kde-l10n-zh_TW, KDE uygulamalarını Geleneksel Çin yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_TW-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-zh_TW/pspec.xml + + + kde-l10n-zh_TW + system.locale + lang-zh_TW + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sv + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sv + desktop.kde.l10n + Swedish KDE5 internationalization package + KDE5 İsveçli yerelleştirme paketi + kde-l10n-sv is the KDE5 internationalization package that provides Swedish translations for KDE5 applications. + kde-l10n-sv, KDE uygulamalarını İsveçli yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sv-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sv/pspec.xml + + + kde-l10n-sv + system.locale + lang-sv + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-sv-doc + Swedish documentation files for KDE + KDE5 için İsveçli belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-sk + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:sk + desktop.kde.l10n + Slovak KDE5 internationalization package + KDE5 Slovak yerelleştirme paketi + kde-l10n-sk is the KDE5 internationalization package that provides Slovak translations for KDE5 applications. + kde-l10n-sk, KDE uygulamalarını Slovak yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sk-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-sk/pspec.xml + + + kde-l10n-sk + system.locale + lang-sk + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ga + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ga + desktop.kde.l10n + Irish Gaelic KDE5 internationalization package + KDE5 İrlandalı Gaelce yerelleştirme paketi + kde-l10n-ga is the KDE5 internationalization package that provides Irish Gaelic translations for KDE5 applications. + kde-l10n-ga, KDE uygulamalarını İrlandalı Gaelce yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ga-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ga/pspec.xml + + + kde-l10n-ga + system.locale + lang-ga + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ru + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ru + desktop.kde.l10n + Russian KDE5 internationalization package + KDE5 Rusça yerelleştirme paketi + kde-l10n-ru is the KDE5 internationalization package that provides Russian translations for KDE5 applications. + kde-l10n-ru, KDE uygulamalarını Rusça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ru-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ru/pspec.xml + + + kde-l10n-ru + system.locale + lang-ru + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/katepart + + + + kde-l10n-ru-doc + Russian documentation files for KDE + KDE5 için Rusça belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ca-valencia + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ca@valencia + desktop.kde.l10n + Southern Catalan KDE5 internationalization package + kde-l10n-ca@valencia is the KDE5 internationalization package that provides Southern Catalan translations for KDE5 applications. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca@valencia-15.08.3.tar.xz + + qt5-base-devel + gettext-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ca-valencia/pspec.xml + + + kde-l10n-ca-valencia + system.locale + lang-ca@valencia + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-l10n-he + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:he + desktop.kde.l10n + Hebrew KDE5 internationalization package + KDE5 İbranice yerelleştirme paketi + kde-l10n-he is the KDE5 internationalization package that provides Hebrew translations for KDE5 applications. + kde-l10n-he, KDE uygulamalarını İbranice yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-he-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-he/pspec.xml + + + kde-l10n-he + system.locale + lang-he + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-hr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:hr + desktop.kde.l10n + Croatian KDE5 internationalization package + KDE5 Hırvat yerelleştirme paketi + kde-l10n-hr is the KDE5 internationalization package that provides Croatian translations for KDE5 applications. + kde-l10n-hr, KDE uygulamalarını Hırvat yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hr-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-hr/pspec.xml + + + kde-l10n-hr + system.locale + lang-hr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-21 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-de + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:de + desktop.kde.l10n + German KDE5 internationalization package + kde-l10n-de is the KDE5 internationalization package that provides German translations for KDE5 applications. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-de-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-de/pspec.xml + + + kde-l10n-de + system.locale + lang-de + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-de-doc + German documentation files for KDE + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ro + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ro + desktop.kde.l10n + Romanian KDE5 internationalization package + KDE5 Romanya yerelleştirme paketi + kde-l10n-ro is the KDE5 internationalization package that provides Romanian translations for KDE5 applications. + kde-l10n-ro, KDE uygulamalarını Romanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ro-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ro/pspec.xml + + + kde-l10n-ro + system.locale + lang-ro + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-mr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:mr + desktop.kde.l10n + Marathi translations KDE5 internationalization package + KDE5 Marathi translations yerelleştirme paketi + kde-l10n-mr is the KDE5 internationalization package that provides Marathi translations translations for KDE5 applications. + kde-l10n-mr, KDE uygulamalarını Marathi translations yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-mr-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-mr/pspec.xml + + + kde-l10n-mr + system.locale + lang-mr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ja + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ja + desktop.kde.l10n + Japanese KDE5 internationalization package + KDE5 Japon yerelleştirme paketi + kde-l10n-ja is the KDE5 internationalization package that provides Japanese translations for KDE5 applications. + kde-l10n-ja, KDE uygulamalarını Japon yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ja-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ja/pspec.xml + + + kde-l10n-ja + system.locale + lang-ja + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-ja-doc + Japanese documentation files for KDE + KDE5 için Japon belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-wa + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:wa + desktop.kde.l10n + Walloon KDE5 internationalization package + KDE5 Valon yerelleştirme paketi + kde-l10n-wa is the KDE5 internationalization package that provides Walloon translations for KDE5 applications. + kde-l10n-wa, KDE uygulamalarını Valon yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-wa-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-wa/pspec.xml + + + kde-l10n-wa + system.locale + lang-wa + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-es + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:es + desktop.kde.l10n + Spanish KDE5 internationalization package + KDE5 İspanyolca yerelleştirme paketi + kde-l10n-es is the KDE5 internationalization package that provides Spanish translations for KDE5 applications. + kde-l10n-el, KDE uygulamalarını İspanyolca yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-es-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-es/pspec.xml + + + kde-l10n-es + system.locale + lang-es + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + kde-l10n-es-doc + Spanish documentation files for KDE + KDE5 için İspanyolca belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-fi + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fi + desktop.kde.l10n + Finnish KDE5 internationalization package + KDE5 Finlandiya yerelleştirme paketi + kde-l10n-fi is the KDE5 internationalization package that provides Finnish translations for KDE5 applications. + kde-l10n-fi, KDE uygulamalarını Finlandiya yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fi-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fi/pspec.xml + + + kde-l10n-fi + system.locale + lang-fi + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-fr + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:fr + desktop.kde.l10n + French KDE5 internationalization package + KDE5 Fransız yerelleştirme paketi + kde-l10n-fr is the KDE5 internationalization package that provides French translations for KDE5 applications. + kde-l10n-fr, KDE uygulamalarını Fransız yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fr-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-fr/pspec.xml + + + kde-l10n-fr + system.locale + lang-fr + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + /usr/share/kstars + + + + kde-l10n-fr-doc + French documentation files for KDE + KDE5 için Fransız belgeler + + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ar + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ar + desktop.kde.l10n + Arabic KDE5 internationalization package + KDE5 Arapça yerelleştirme paketi + kde-l10n-ar is the KDE5 internationalization package that provides Arabic translations for KDE5 applications. + kde-l10n-ar, KDE uygulamalarını Arapça yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ar-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + qt5-linguist + kconfig-devel + extra-cmake-modules + kdoctools-devel + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ar/pspec.xml + + + kde-l10n-ar + system.locale + lang-ar + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-l10n-ug + http://l10n.kde.org + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + locale:ug + desktop.kde.l10n + Uygur KDE5 internationalization package + KDE5 Uygur yerelleştirme paketi + kde-l10n-ug is the KDE5 internationalization package that provides Uygur translations for KDE5 applications. + kde-l10n-ug, KDE uygulamalarını Uygur yerelde kullanmanızı sağlayan yerelleştirme paketidir. + mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ug-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kconfig-devel + qt5-linguist + extra-cmake-modules + kdoctools-devel + docbook-xsl + + + kde4.patch + + desktop/kde/l10n/kde-l10n-ug/pspec.xml + + + kde-l10n-ug + system.locale + lang-ug + + /usr/share/locale + /usr/share/apps + /usr/share/khangman + /usr/share/klettres + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-26 + 15.08.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kshisen + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + 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/applications/15.08.0/src/kshisen-15.08.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + kcoreaddons-devel + kdbusaddons-devel + libkdegames-devel + libkmahjongg-devel + knewstuff-devel + kdnssd-devel + kdeclarative-devel + kio-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/kshisen/pspec.xml + + + kshisen + + qt5-base + libgcc + ki18n + kconfig + kconfigwidgets + kwidgetsaddons + kxmlgui + kcoreaddons + kdbusaddons + libkdegames + libkmahjongg + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-08-29 + 1.6.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kpat + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + 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/applications/15.08.3/src/kpat-15.08.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-phonon-devel + kdoctools-devel + cmake + gettext-devel + kio-devel + kpackage-devel + kitemviews-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kiconthemes-devel + ktextwidgets-devel + kitemmodels-devel + knotifyconfig-devel + libkdegames-devel + kemoticons-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kconfig-devel + kxmlgui-devel + qt5-svg-devel + kguiaddons-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + shared-mime-info + extra-cmake-modules + python3 + mesa-devel + kdesignerplugin + + desktop/kde/games/kpat/pspec.xml + + + kpat + + qt5-base + kdelibs4-support + libkdegames + knewstuff + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + kguiaddons + kcompletion + kcoreaddons + kdbusaddons + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-23 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-16 + 15.04.3 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkdegames + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + A tool for managing print jobs and printers + Print-Manager. A tool to managing your print jobs and the Printers + mirrors://kde/stable/applications/15.08.3/src/libkdegames-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kdnssd-devel + openal-devel + cmake + extra-cmake-modules + python3 + kdeclarative-devel + knewstuff-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kxmlgui-devel + qt5-svg-devel + karchive-devel + kguiaddons-devel + libsndfile-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + mesa-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/libkdegames/pspec.xml + + + libkdegames + + qt5-base + kdelibs4-support + kdnssd + kdeclarative + knewstuff + kio + ki18n + libgcc + openal + kconfig + kxmlgui + qt5-svg + karchive + kguiaddons + libsndfile + kcompletion + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkdegames-devel + Shared libraries for KDE games. + + libkdegames + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-16 + 15.04.3 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkmahjongg + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + 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/applications/15.08.3/src/libkmahjongg-15.08.3.tar.xz + + qt5-base-devel + qt5-svg-devel + extra-cmake-modules + gettext-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + mesa-devel + + desktop/kde/games/libkmahjongg/pspec.xml + + + libkmahjongg + + qt5-base + qt5-svg + libgcc + ki18n + kconfig + kcompletion + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + libkmahjongg-devel + Development files for libkmahjongg + + libkmahjongg + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-25 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kwordquiz + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + 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/applications/15.08.3/src/kwordquiz-15.08.3.tar.xz + + qt5-base-devel + gettext-devel + ki18n-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kdoctools-devel + kguiaddons-devel + kiconthemes-devel + kitemviews-devel + knotifyconfig-devel + kio-devel + knewstuff-devel + knotifications-devel + kxmlgui-devel + kdelibs4-support-devel + kdeclarative-devel + kcoreaddons-devel + kwindowsystem-devel + kwidgetsaddons-devel + qt5-phonon-devel + libkeduvocdocument-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + cmake + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/games/kwordquiz/pspec.xml + + + kwordquiz + + qt5-base + qt5-phonon + ki18n + kconfig + kconfigwidgets + kguiaddons + kiconthemes + kitemviews + knotifyconfig + knewstuff + knotifications + kxmlgui + kdelibs4-support + libgcc + kcoreaddons + kwindowsystem + kwidgetsaddons + libkeduvocdocument + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-30 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kauth + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Abstraction to system policy and authentication features + Framework which lets applications perform actions as a privileged user + mirrors://kde/stable/frameworks/5.17/kauth-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + polkit-qt-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/framework/kauth/pspec.xml + + + kauth + + qt5-base + polkit-qt + kcoreaddons + libgcc + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kauth-devel + Development files for kauth + + kauth + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kinit + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE applications initialization utility + Process launcher to speed up launching KDE applications. + mirrors://kde/stable/frameworks/5.17/kinit-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + libX11-devel + libcap-devel + libgcc + kcrash-devel + kcoreaddons-devel + kitemviews-devel + solid-devel + kxmlgui-devel + kjobwidgets-devel + kcompletion-devel + kwidgetsaddons-devel + kconfig-devel + kcodecs-devel + kauth-devel + kconfigwidgets-devel + kio-devel + ki18n-devel + kservice-devel + kbookmarks-devel + kwindowsystem-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kinit/pspec.xml + + + kinit + + qt5-base + libX11 + libcap + libgcc + kio + kcrash + kcoreaddons + kconfig + ki18n + kservice + kwindowsystem + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/locale + /usr/bin + /usr/share/doc + /usr/share/man + + + + kinit-devel + Development files for kinit + + qt5-base-devel + libX11-devel + libcap-devel + kio-devel + kcrash-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kservice-devel + kwindowsystem-devel + kinit + + + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-framework + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Plasma library and runtime components based upon KDE Frameworks 5 and Qt5 + Plasma library and runtime components based upon KF5 and Qt5 + mirrors://kde/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz + + qt5-base-devel + qt5-quickcontrols + kdoctools-devel + qt5-svg-devel + qt5-script-devel + qt5-quick1-devel + qt5-x11extras-devel + qt5-declarative-devel + mesa-devel + libX11-devel + libxcb-devel + kauth-devel + kcodecs-devel + kwidgetsaddons-devel + kbookmarks-devel + kcompletion-devel + kactivities-devel + kitemviews-devel + kjobwidgets-devel + solid-devel + knotifications-devel + kpackage-devel + karchive-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kparts-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/plasma-framework/pspec.xml + + + plasma-framework + + qt5-base + qt5-svg + qt5-script + qt5-x11extras + qt5-declarative + qt5-quickcontrols + qt5-quick1 + mesa + libgcc + libX11 + libxcb + kactivities + knotifications + kpackage + karchive + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kservice + kwindowsystem + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + plasma-framework-devel + Development files for plasma-framework + + plasma-framework + qt5-base-devel + qt5-svg-devel + qt5-script-devel + qt5-x11extras-devel + qt5-declarative-devel + mesa-devel + libX11-devel + libxcb-devel + kactivities-devel + knotifications-devel + kpackage-devel + karchive-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kemoticons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE emoticon manager + KEmoticons converts emoticons from text to a graphical representation with images in HTML. + mirrors://kde/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz + + qt5-base-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kservice-devel + extra-cmake-modules + + desktop/kde/framework/kemoticons/pspec.xml + + + kemoticons + + qt5-base + libgcc + karchive + kcoreaddons + kconfig + kservice + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kemoticons-devel + Development files for kemoticons + + kemoticons + qt5-base-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kservice-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + networkmanager-qt + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + A QT wrapper around the NetworkManager libraries + A QT wrapper around the NetworkManager libraries + mirrors://kde/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz + + qt5-base-devel + NetworkManager-devel + extra-cmake-modules + + desktop/kde/framework/networkmanager-qt/pspec.xml + + + networkmanager-qt + + qt5-base + NetworkManager + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + networkmanager-qt-devel + Development files for networkmanager-qt + + qt5-base-devel + networkmanager-qt + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kidletime + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Idle time reporting utility + KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. + mirrors://kde/stable/frameworks/5.17/kidletime-5.17.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libX11-devel + libXext-devel + libXScrnSaver-devel + libxcb-devel + extra-cmake-modules + + desktop/kde/framework/kidletime/pspec.xml + + + kidletime + + qt5-base + libX11 + libgcc + libxcb + libXScrnSaver + libXext + qt5-x11extras + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidletime-devel + Development files for kidletime + + kidletime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sonnet + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE spell schecking library + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.17/sonnet-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + hunspell-devel + aspell-devel + extra-cmake-modules + + desktop/kde/framework/sonnet/pspec.xml + + + sonnet + + qt5-base + libgcc + aspell + hunspell + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + sonnet-devel + Development files for sonnet + + qt5-base-devel + sonnet + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kapidox + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + mirrors://kde/stable/frameworks/5.17/kapidox-5.17.0.tar.xz + + python-Jinja2 + python-PyYAML + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kapidox/pspec.xml + + + kapidox + + qt5-base + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kded + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 daemon + Kded runs in the background and performs a number of small tasks. + mirrors://kde/stable/frameworks/5.17/kded-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + kinit-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kservice-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kded/pspec.xml + + + kded + + qt5-base + libgcc + kcoreaddons + kconfig + kcrash + kdbusaddons + kservice + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + kded-devel + Development files for kded + + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kservice-devel + kded + + + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kbookmarks + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Access and manipulate bookmarks stored using XBEL format + Framework which lets you access and manipulate bookmarks stored using XBEL format + mirrors://kde/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kcoreaddons-devel + kauth-devel + kcodecs-devel + kconfig-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kbookmarks/pspec.xml + + + kbookmarks + + qt5-base + libgcc + kcoreaddons + kcodecs + kconfig + kiconthemes + kwidgetsaddons + kxmlgui + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kbookmarks-devel + Development files for kbookmarks + + kbookmarks + qt5-base-devel + kcoreaddons-devel + kcodecs-devel + kconfig-devel + kiconthemes-devel + kwidgetsaddons-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + frameworkintegration + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework providing components to allow applications to integrate with a KDE Workspace + Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. + mirrors://kde/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz + + libxcb-devel + libXcursor-devel + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + oxygen-fonts + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kjobwidgets-devel + kconfigwidgets-devel + kiconthemes-devel + ki18n-devel + kauth-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/frameworkintegration/pspec.xml + + + frameworkintegration + + libgcc + qt5-base + libxcb + libXcursor + qt5-x11extras + kconfig + kxmlgui + kcompletion + kcoreaddons + kjobwidgets + kconfigwidgets + kiconthemes + ki18n + kio + knotifications + kwidgetsaddons + oxygen-fonts + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + frameworkintegration-devel + Development files for framework-integration + + frameworkintegration + qt5-base-devel + libxcb-devel + libXcursor-devel + qt5-x11extras-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kjobwidgets-devel + kconfigwidgets-devel + kiconthemes-devel + ki18n-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + New Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kplotting + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Data plotting + Kplotting contains data plotting classes for QT 5 and KDE + mirrors://kde/stable/frameworks/5.17/kplotting-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kplotting/pspec.xml + + + kplotting + + qt5-base + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kplotting-devel + Development files for kplotting + + qt5-base-devel + kplotting + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpackage + https://userbase.kde.org/KPackage + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPL + app:library + desktop.kde.framework + Framework that lets applications manage user installable packages of non-binary assets + KPackage is dependent on the Smart package manager. + mirrors://kde/stable/frameworks/5.17/kpackage-5.17.0.tar.xz + + qt5-base-devel + libX11-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + kdoctools-devel + docbook-sgml4_5 + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kpackage/pspec.xml + + + kpackage + + qt5-base + libgcc + kconfig + ki18n + kcoreaddons + karchive + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man/man1 + + + + kpackage-devel + Development files for kpackage + + kpackage + qt5-base-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + extra-cmake-modules + http://www.kde.org + + Pisi Linux Admins + admin@gmail.com + + LGPLv2 + library + desktop.kde.framework + Extra cmake modules for KDE5 + Extra cmake modules KDE5 + mirrors://kde/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz + + cmake + + desktop/kde/framework/extra-cmake-modules/pspec.xml + + + extra-cmake-modules + programming.build + + cmake + + + /usr/share + /usr/lib + /usr/share/man/man7 + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-01 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdeclarative + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Integration of QML and KDE workspaces + KDeclarative provides integration of QML and KDE workspaces. + mirrors://kde/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz + + qt5-base-devel + mesa-devel + libepoxy-devel + qt5-declarative-devel + kauth-devel + kcodecs-devel + kpackage-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + kguiaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kbookmarks-devel + kcompletion-devel + kconfigwidgets-devel + kitemviews-devel + kjobwidgets-devel + solid-devel + kxmlgui-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kdeclarative/pspec.xml + + + kdeclarative + + qt5-base + libgcc + libepoxy + qt5-declarative + kpackage + kconfig + kservice + kcoreaddons + kglobalaccel + ki18n + kiconthemes + kio + kwidgetsaddons + kwindowsystem + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdeclarative-devel + Development files for kdeclarative + + qt5-base-devel + libepoxy-devel + qt5-declarative-devel + kpackage-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdeclarative + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kglobalaccel + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Global desktop keyboard shortcuts + KGlobalAccel allows you to have global accelerators that are independent of the focused window. + mirrors://kde/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-base + libxcb-devel + kcrash-devel + kconfig-devel + qt5-x11extras-devel + kcoreaddons-devel + kdbusaddons-devel + xcb-util-keysyms-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kglobalaccel/pspec.xml + + + kglobalaccel + + qt5-base + libgcc + libxcb + kcrash + kconfig + qt5-x11extras + kcoreaddons + kdbusaddons + xcb-util-keysyms + kwindowsystem + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kglobalaccel-devel + Development files for kglobalaccel + + kglobalaccel + qt5-base-devel + libxcb-devel + kcrash-devel + kconfig-devel + qt5-x11extras-devel + kcoreaddons-devel + kdbusaddons-devel + xcb-util-keysyms-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + baloo + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/frameworks/5.17/baloo-5.17.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kdbusaddons-devel + kauth-devel + kconfig-devel + kcrash-devel + ki18n-devel + kidletime-devel + kio-devel + solid-devel + kfilemetadata-devel + kdoctools-devel + lmdb-devel + extra-cmake-modules + + desktop/kde/framework/baloo/pspec.xml + + + baloo + + qt5-base + qt5-declarative + kcoreaddons + kdbusaddons + kauth + libgcc + kconfig + kcrash + ki18n + kidletime + kio + solid + kfilemetadata + lmdb + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + baloo-devel + Development files for baloo-widgets + + baloo + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kdbusaddons-devel + kauth-devel + kconfig-devel + kcrash-devel + ki18n-devel + kidletime-devel + kio-devel + solid-devel + kfilemetadata-devel + lmdb-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.9.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.9.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + modemmanager-qt + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Qt wrapper for ModemManager DBus API + Qt wrapper for ModemManager DBus API + mirrors://kde/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz + + qt5-base-devel + ModemManager-devel + extra-cmake-modules + + desktop/kde/framework/modemmanager-qt/pspec.xml + + + modemmanager-qt + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + modemmanager-qt-devel + Development files for modemmanger-qt + + qt5-base-devel + modemmanager-qt + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ktextwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 text editing widgets + KTextWidgets provides widgets for displaying and editing text. It supports rich text as well as plain text. + mirrors://kde/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz + + qt5-base-devel + kconfig-devel + kcompletion-devel + kcodecs-devel + kauth-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + ki18n-devel + sonnet-devel + kservice-devel + kcoreaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/ktextwidgets/pspec.xml + + + ktextwidgets + + qt5-base + libgcc + kconfig + kcompletion + kconfigwidgets + kiconthemes + kwidgetsaddons + ki18n + sonnet + kservice + kcoreaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktextwidgets-devel + Development files for ktextwidgets + + ktextwidgets + qt5-base-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + ki18n-devel + sonnet-devel + kservice-devel + kcoreaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knewstuff + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for downloading and sharing additional application data + The KNewStuff library implements collaborative data sharing for applications. + mirrors://kde/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz + + qt5-base-devel + boost-devel + kauth-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/knewstuff/pspec.xml + + + knewstuff + + qt5-base + libgcc + kwidgetsaddons + ktextwidgets + kiconthemes + kcompletion + kitemviews + karchive + attica + kconfig + kcoreaddons + ki18n + kio + kservice + kxmlgui + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knewstuff-devel + Development files for knewstuff + + qt5-base-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + kxmlgui-devel + knewstuff + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kio + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Resource and network access abstraction + Network transparent access to files and data + mirrors://kde/stable/frameworks/5.17/kio-5.17.0.tar.xz + + qt5-base-devel + acl-devel + attr-devel + mit-kerberos + karchive-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kservice-devel + solid-devel + sonnet-devel + kdoctools-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel + kconfigwidgets-devel + kauth-devel + kcodecs-devel + kiconthemes-devel + kitemviews-devel + kjobwidgets-devel + kwindowsystem-devel + qt5-x11extras-devel + kwallet-devel + kxmlgui-devel + ktextwidgets-devel + knotifications-devel + libxslt-devel + qt5-script-devel + zlib-devel + docbook-sgml4_5 + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kio/pspec.xml + + + kio + + qt5-base + acl + attr + libxml2 + libxslt + libgcc + mit-kerberos + knotifications + qt5-script + qt5-x11extras + karchive + kconfig + kcodecs + kbookmarks + kcompletion + kconfigwidgets + kcoreaddons + kdbusaddons + ki18n + kiconthemes + kitemviews + kjobwidgets + kservice + ktextwidgets + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + solid + + + /etc/ + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kio-devel + Development files for kio + + qt5-base-devel + kio + qt5-base-devel + acl-devel + attr-devel + libxml2-devel + libxslt-devel + knotifications-devel + qt5-script-devel + qt5-x11extras-devel + karchive-devel + kconfig-devel + kcodecs-devel + kbookmarks-devel + kcompletion-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kjobwidgets-devel + kservice-devel + ktextwidgets + kwallet-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + solid-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdbusaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Extra modules for Qt-DBus + KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. + mirrors://kde/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kdbusaddons/pspec.xml + + + kdbusaddons + + libgcc + qt5-base + qt5-x11extras + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdbusaddons-devel + Development files for kdbusaddons + + qt5-base-devel + kdbusaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcoreaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Utilities for core application functionality and accessing the OS + KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. + mirrors://kde/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + shared-mime-info + extra-cmake-modules + mesa-devel + + desktop/kde/framework/kcoreaddons/pspec.xml + + + kcoreaddons + + qt5-base + libgcc + shared-mime-info + docbook-xsl + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcoreaddons-devel + Development files for kcoreaddons + + qt5-base-devel + kcoreaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + System.Package + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kfilemetadata + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 library for extracting meta data from files. + KDE library for extracting meta data from files. + mirrors://kde/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz + + qt5-base-devel + attr-devel + ebook-tools-devel + karchive-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kfilemetadata/pspec.xml + + + kfilemetadata + + qt5-base + ebook-tools + libgcc + exiv2-libs + taglib + ffmpeg + poppler-qt5 + karchive + ki18n + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kfilemetadata-devel + Development files for kfilemetadata + + kfilemetadata + qt5-base-devel + ebook-tools-devel + exiv2-devel + taglib-devel + ffmpeg-devel + poppler-qt5-devel + karchive-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.9.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 5.9.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + threadweaver + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Multi-threaded programming framework for KDE + ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. + mirrors://kde/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/threadweaver/pspec.xml + + + threadweaver + + qt5-base + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + threadweaver-devel + Development files for threadweaver + + qt5-base-devel + threadweaver + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcmutils + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Utilities for interacting with KCModules + KCMUtils provides various classes to work with KCModules. KCModules can be created with the KConfigWidgets framework. + mirrors://kde/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + mesa-devel + kcodecs-devel + kpackage-devel + kdeclarative-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kservice-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kcmutils/pspec.xml + + + kcmutils + + qt5-base + qt5-declarative + libgcc + kdeclarative + kconfigwidgets + kwidgetsaddons + kconfig + kauth + kcoreaddons + ki18n + kiconthemes + kitemviews + kservice + kxmlgui + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcmutils-devel + Development files for kcmutils + + kcmutils + qt5-base-devel + qt5-declarative-devel + kdeclarative-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kservice-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kconfigwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Kconfig widgets + KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. + mirrors://kde/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz + + qt5-base-devel + ki18n-devel + kauth-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + kguiaddons-devel + kwidgetsaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kconfigwidgets/pspec.xml + + + kconfigwidgets + + libgcc + qt5-base + kauth + kcodecs + kconfig + kcoreaddons + kguiaddons + ki18n + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kconfigwidgets-devel + Development files for kconfigwidgets + + kconfigwidgets + qt5-base-devel + kauth-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + kguiaddons-devel + ki18n-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwidgetsaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 desktop widgets + KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. + mirrors://kde/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-designer-devel + extra-cmake-modules + + desktop/kde/framework/kwidgetsaddons/pspec.xml + + + kwidgetsaddons + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kwidgetsaddons-devel + Development files for kwidgetsaddons + + qt5-base-devel + kwidgetsaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + solid + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 hardware integration framework + Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. + mirrors://kde/stable/frameworks/5.17/solid-5.17.0.tar.xz + + qt5-base-devel + eudev-devel + qt5-linguist + qt5-declarative-devel + udisks2-devel + upower-devel + media-player-info + extra-cmake-modules + + desktop/kde/framework/solid/pspec.xml + + + solid + + qt5-base + qt5-declarative + media-player-info + libgcc + eudev + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + solid-devel + Development files for solid + + qt5-base-devel + solid + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdesu + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + User interface for running shell commands with root privileges + kdesu provides functionality for building GUI front ends for (password asking) console mode programs. + mirrors://kde/stable/frameworks/5.17/kdesu-5.17.0.tar.xz + + qt5-base-devel + kcoreaddons-devel + kpty-devel + kservice-devel + ki18n-devel + kconfig-devel + libX11-devel + extra-cmake-modules + + desktop/kde/framework/kdesu/pspec.xml + + + kdesu + + qt5-base + kcoreaddons + kpty + kservice + ki18n + kconfig + libgcc + libX11 + + + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdesu-devel + Development files for kdesu + + kdesu + qt5-base-devel + kcoreaddons-devel + kpty-devel + kservice-devel + ki18n-devel + kconfig-devel + libX11-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kservice + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 Desktop Services + Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. + mirrors://kde/stable/frameworks/5.17/kservice-5.17.0.tar.xz + + qt5-base-devel + kdoctools-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kservice/pspec.xml + + + kservice + + qt5-base + libgcc + kconfig + kcoreaddons + kcrash + kdbusaddons + ki18n + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kservice-devel + Development files for kservice + + kservice + qt5-base-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdoctools + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 document generator + kdoctools is an application aims to generate documents from DocBook. + mirrors://kde/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz + + qt5-base-devel + perl-URI + python + libxml2-devel + libxslt-devel + docbook-xml + docbook-xsl + docbook-sgml4_5 + ki18n-devel + karchive-devel + extra-cmake-modules + + desktop/kde/framework/kdoctools/pspec.xml + + + kdoctools + + qt5-base + libxml2 + libgcc + libxslt + karchive + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + kdoctools-devel + Development files for kdoctools + + qt5-base-devel + kdoctools + karchive-devel + libgcc + libxml2-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + attica + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Open Collaboration Service client library, based on Qt 5 + Attica is a library to access Open Collaboration Service servers, based on Qt 5. + mirrors://kde/stable/frameworks/5.17/attica-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/attica/pspec.xml + + + attica + + qt5-base + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + attica-devel + Development files for attica5 + + qt5-base-devel + attica + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kitemviews + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Set of item models extending the Qt model-view framework + KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. + mirrors://kde/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kitemviews/pspec.xml + + + kitemviews + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kitemviews-devel + Development files for kitemviews + + qt5-base-devel + kitemviews + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwindowsystem + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 window manager access framework + KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. + mirrors://kde/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + libX11-devel + libgcc + libxcb-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + extra-cmake-modules + + desktop/kde/framework/kwindowsystem/pspec.xml + + + kwindowsystem + + qt5-base + libX11 + libgcc + libxcb + qt5-x11extras + libXfixes + xcb-util-keysyms + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + kwindowsystem-devel + Development files for kwindowsystem + + qt5-base-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + kwindowsystem + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libkexiv2 + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.framework + An Exiv2 wrapper library + 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. + https://github.com/KDE/libkexiv2/archive/frameworks.zip + + cmake + extra-cmake-modules + qt5-base-devel + exiv2-devel + + desktop/kde/framework/libkexiv2/pspec.xml + + + libkexiv2 + + qt5-base + exiv2-libs + + + /usr/lib + /usr/bin + /usr/share/kde4/apps + + + + libkexiv2-devel + Development files for libkexiv2 + libkexiv2 için geliştirme dosyaları + + libkexiv2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-05 + 15.07.71 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kjobwidgets + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Widgets for showing progress of asynchronous jobs + KJobWIdgets provides widgets for showing progress of asynchronous jobs. + mirrors://kde/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz + + libX11-devel + qt5-base-devel + qt5-linguist + kcoreaddons-devel + kwidgetsaddons-devel + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kjobwidgets/pspec.xml + + + kjobwidgets + + qt5-base + libgcc + kcoreaddons + kwidgetsaddons + qt5-x11extras + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kjobwidgets-devel + Development files for kjobwidgets + + qt5-base-devel + kjobwidgets + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kparts + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugin framework for user interface components + This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). + mirrors://kde/stable/frameworks/5.17/kparts-5.17.0.tar.xz + + qt5-base-devel + kauth-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/kparts/pspec.xml + + + kparts + + qt5-base + libgcc + kjobwidgets + kconfig + kcoreaddons + ki18n + kiconthemes + knotifications + kservice + kwidgetsaddons + kxmlgui + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kparts-devel + Development files for kparts + + qt5-base-devel + kjobwidgets-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + kparts + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knotifications + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Desktop notifications + KNotification is used to notify the user of an event. It covers feedback and persistent events. + mirrors://kde/stable/frameworks/5.17/knotifications-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kwindowsystem-devel + qt5-x11extras-devel + kservice-devel + kconfig-devel + kcoreaddons-devel + kiconthemes-devel + kcodecs-devel + libdbusmenu-qt-devel + qt5-phonon-devel + extra-cmake-modules + + desktop/kde/framework/knotifications/pspec.xml + + + knotifications + + qt5-base + qt5-phonon + libgcc + qt5-x11extras + kconfig + kcodecs + kcoreaddons + kiconthemes + kservice + libdbusmenu-qt + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knotifications-devel + Development files for knotifications + + knotifications + qt5-base-devel + qt5-phonon-devel + qt5-x11extras-devel + kconfig-devel + kcodecs-devel + kcoreaddons-devel + kiconthemes-devel + kservice-devel + kwindowsystem-devel + libdbusmenu-qt-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kiconthemes + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 icon utilities + This library contains classes to improve the handling of icons in applications using the KDE Frameworks. + mirrors://kde/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + ki18n-devel + kauth-devel + kcodecs-devel + kconfig-devel + kitemviews-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kiconthemes/pspec.xml + + + kiconthemes + + libgcc + qt5-base + qt5-svg + kconfigwidgets + ki18n + kitemviews + kwidgetsaddons + kconfig + kcoreaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kiconthemes-devel + Development files for kiconthemes + + kiconthemes + qt5-base-devel + qt5-svg-devel + kconfigwidgets-devel + ki18n-devel + kitemviews-devel + kwidgetsaddons-devel + kconfig-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-22 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdnssd + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Network service discovery using Zeroconf + KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. + mirrors://kde/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + avahi-devel + avahi-compat-libdns_sd-devel + extra-cmake-modules + + desktop/kde/framework/kdnssd/pspec.xml + + + kdnssd + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdnssd-devel + Development files for kdnssd. + + qt5-base-devel + kdnssd + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kunitconversion + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE unit conversion framework + KUnitConversion provides functions to convert values in different physical units. + mirrors://kde/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz + + qt5-base-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kunitconversion/pspec.xml + + + kunitconversion + + qt5-base + libgcc + ki18n + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kunitconversion-devel + Development files for kunitconversion + + qt5-base-devel + ki18n-devel + kunitconversion + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kconfig + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Advanced configuration system for KDE Frameworks 5 + Kconfig provides advanced libraries and tools for accessing configuration files. + mirrors://kde/stable/frameworks/5.17/kconfig-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kconfig/pspec.xml + + + kconfig + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kconfig-devel + Development files for kconfig + + qt5-base-devel + kconfig + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + karchive + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Qt 5 addon providing access to numerous types of archives + KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. + mirrors://kde/stable/frameworks/5.17/karchive-5.17.0.tar.xz + + qt5-base-devel + xz-devel + zlib-devel + bzip2 + extra-cmake-modules + + desktop/kde/framework/karchive/pspec.xml + + + karchive + + qt5-base + xz + zlib + bzip2 + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + karchive-devel + Development files for karchive + + qt5-base-devel + karchive + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-20 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwallet + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE password storage framework + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.17/kwallet-5.17.0.tar.xz + + libxslt + docbook-xsl + qt5-base-devel + libgcrypt-devel + kconfig-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kwallet/pspec.xml + + + kwallet + + qt5-base + libgcc + libgcrypt + kconfig + kcoreaddons + kdbusaddons + ki18n + kiconthemes + knotifications + kservice + kwidgetsaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + kwallet-devel + Development files for kwallet + + kwallet + qt5-base-devel + libgcrypt-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-14 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdesignerplugin + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + QT Designer integration for KDE5 Frameworks widgets + This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. + mirrors://kde/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kdoctools-devel + kio-devel + kauth-devel + kconfigwidgets-devel + kxmlgui-devel + kplotting-devel + ktextwidgets-devel + sonnet-devel + kdewebkit-devel + docbook-xml + docbook-xsl + extra-cmake-modules + + desktop/kde/framework/kdesignerplugin/pspec.xml + + + kdesignerplugin + + qt5-base + libgcc + kdewebkit + kcoreaddons + kitemviews + kconfig + sonnet + kcompletion + kconfigwidgets + kiconthemes + kio + kplotting + ktextwidgets + kwidgetsaddons + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + bluez-qt + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.framework + Qt wrapper for KDE 5 Bluez DBus API + Qt wrapper for KDE 5 DBus API. + mirrors://kde/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz + + bluez + bluez-libs-devel + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/bluez-qt/pspec.xml + + + bluez-qt + + bluez + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + bluez-qt-devel + Development files for bluez-qt + + qt5-base-devel + qt5-declarative-devel + bluez-qt + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-14 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-26 + 5.13.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpty + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Libraries for pseudo terminal devices + Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. + mirrors://kde/stable/frameworks/5.17/kpty-5.17.0.tar.xz + + qt5-base-devel + utempter-devel + kcoreaddons-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kpty/pspec.xml + + + kpty + + qt5-base + utempter + libgcc + kcoreaddons + ki18n + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpty-devel + Development files for kpty + + qt5-base-devel + utempter-devel + kcoreaddons-devel + ki18n-devel + kpty + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcodecs + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugins allowing Qt applications to access further types of images + KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. + mirrors://kde/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kcodecs/pspec.xml + + + kcodecs + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcodecs-devel + Development files for kcodecs + + qt5-base-devel + kcodecs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kactivities + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Library for KDE's Plasma Activities support + Kactivities provides an API for using and interacting with the Plasma Activities Manager. + mirrors://kde/stable/frameworks/5.17/kactivities-5.17.0.tar.xz + + qt5-base-devel + mesa-devel + boost-devel + kdbusaddons-devel + kdeclarative-devel + kpackage-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kio-devel + kservice-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel + kjobwidgets-devel + kitemviews-devel + solid-devel + kauth-devel + kcodecs-devel + kconfigwidgets-devel + kxmlgui-devel + kwindowsystem-devel + kglobalaccel-devel + kcmutils-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + extra-cmake-modules + + + build-source.patch + + desktop/kde/framework/kactivities/pspec.xml + + + kactivities + + qt5-base + qt5-declarative + libgcc + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + ki18n + kio + kglobalaccel + kservice + kxmlgui + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kactivities-devel + Development files for kactivities + + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kwindowsystem-devel + kactivities + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcompletion + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Addon with auto completion widgets and classes + KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. + mirrors://kde/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz + + qt5-base-devel + qt5-linguist + kconfig-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kcompletion/pspec.xml + + + kcompletion + + qt5-base + libgcc + kconfig + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcompletion-devel + Development files for kcompletion + + qt5-base-devel + kcompletion + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ki18n + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE Gettext-based UI text internationalization. + KDE grafik arabirim yerelleştirme kitaplığı + KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. + ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır + mirrors://kde/stable/frameworks/5.17/ki18n-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/ki18n/pspec.xml + + + ki18n + + libgcc + qt5-base + qt5-script + qt5-declarative + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + ki18n-devel + Development files for kde5-ki18n + ki18n için geliştirme dosyaları + + ki18n + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kitemmodels + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Set of item models extending the Qt model-view framework + KItemModels provides a set of item models extending the Qt model-view framework. + mirrors://kde/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/kitemmodels/pspec.xml + + + kitemmodels + + qt5-base + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kitemmodels-devel + Development files for kitemmodels + + qt5-base-devel + kitemmodels + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-24 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kguiaddons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Utilities for graphical user interfaces + The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. + mirrors://kde/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz + + libX11-devel + libxcb-devel + qt5-base-devel + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kguiaddons/pspec.xml + + + kguiaddons + + libgcc + libX11 + qt5-base + qt5-x11extras + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kguiaddons-devel + Development files for kguiaddons + + kguiaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kcrash + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Kcrash crash handling application + KCrash provides support for intercepting and handling application crashes. + mirrors://kde/stable/frameworks/5.17/kcrash-5.17.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + kcoreaddons-devel + kwindowsystem-devel + libX11-devel + extra-cmake-modules + + desktop/kde/framework/kcrash/pspec.xml + + + kcrash + + qt5-base + libX11 + libgcc + qt5-x11extras + kcoreaddons + kwindowsystem + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcrash-devel + Development files for kcrash + + qt5-base-devel + qt5-x11extras-devel + kcrash + kcoreaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-23 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kxmlrpcclient + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + XML-RPC client library for KDE + This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. + mirrors://kde/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz + + qt5-base-devel + kauth-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/kxmlrpcclient/pspec.xml + + + kxmlrpcclient + + qt5-base + libgcc + ki18n + kcoreaddons + kio + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kxmlrpcclient-devel + Development files for kdelibs4-support + + kxmlrpcclient + qt5-base-devel + ki18n-devel + kcoreaddons-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kpeople + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + A contact aggregation library for KDE + KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. + mirrors://kde/stable/frameworks/5.17/kpeople-5.17.0.tar.xz + + qt5-base-devel + kconfig-devel + qt5-declarative-devel + kcoreaddons-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + kservice-devel + kwidgetsaddons-devel + ki18n-devel + kitemviews-devel + extra-cmake-modules + + desktop/kde/framework/kpeople/pspec.xml + + + kpeople + + qt5-base + qt5-declarative + libgcc + kconfig + kcoreaddons + kservice + kwidgetsaddons + ki18n + kitemviews + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpeople-devel + Development files for kpeople + + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kcoreaddons-devel + kwidgetsaddons-devel + kservice-devel + ki18n-devel + kitemviews-devel + kpeople + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kimageformats + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Image formats addons for QT 5 + This framework provides additional image format plugins for QtGui. + mirrors://kde/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz + + qt5-base-devel + openexr-devel + ilmbase-devel + extra-cmake-modules + + desktop/kde/framework/kimageformats/pspec.xml + + + kimageformats + + qt5-base + libgcc + openexr-libs + ilmbase + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-30 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdewebkit + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 WebKit integration + KdeWebkit provides KDE integration of the QtWebKit library. + mirrors://kde/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz + + qt5-base-devel + qt5-webkit-devel + qt5-webkit + kauth-devel + sonnet-devel + kconfig-devel + ktextwidgets-devel + kjobwidgets-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/kdewebkit/pspec.xml + + + kdewebkit + + qt5-webkit + libgcc + kconfig + kjobwidgets + qt5-base + kcoreaddons + kparts + kservice + kwallet + kio + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/mkspecs/modules/ + /usr/share/doc + + + + kdewebkit-devel + Development files for kdewebkit + + kdewebkit + qt5-webkit-devel + kconfig-devel + kjobwidgets-devel + qt5-base-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kxmlgui + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for managing menu and toolbar actions + Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. + mirrors://kde/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz + + qt5-base-devel + attica-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kauth-devel + kcodecs-devel + sonnet-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kxmlgui/pspec.xml + + + kxmlgui + + qt5-base + libgcc + attica + kcoreaddons + kconfig + kconfigwidgets + kglobalaccel + ki18n + kiconthemes + kitemviews + ktextwidgets + kwidgetsaddons + kwindowsystem + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kxmlgui-devel + Development files for kxmlgui + + kxmlgui + qt5-base-devel + attica-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-25 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-31 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ktexteditor + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 text editor libraries + KTextEditor provides a powerful text editor component that you can embed in your application. + mirrors://kde/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-xmlpatterns-devel + kauth-devel + kguiaddons-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kparts-devel + libgit2-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/ktexteditor/pspec.xml + + + ktexteditor + + qt5-script + qt5-base + libgcc + libgit2 + ktextwidgets + kwidgetsaddons + kconfigwidgets + kjobwidgets + kiconthemes + kcoreaddons + kcompletion + kitemviews + kxmlgui + kcodecs + karchive + kguiaddons + kconfig + ki18n + kio + ki18n + kparts + sonnet + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktexteditor-devel + Development files for ktexteditor + + qt5-script-devel + qt5-base-devel + libgit2-devel + ktextwidgets-devel + kwidgetsaddons-devel + kconfigwidgets-devel + kjobwidgets-devel + kiconthemes-devel + kcoreaddons-devel + kcompletion-devel + kitemviews-devel + kxmlgui-devel + kcodecs-devel + karchive-devel + kguiaddons-devel + kconfig-devel + ki18n-devel + kio-devel + ki18n-devel + kparts-devel + sonnet-devel + ktexteditor + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + knotifyconfig + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Configuration dialog for desktop notifications + KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. + mirrors://kde/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz + + qt5-base-devel + qt5-phonon-devel + kauth-devel + kconfig-devel + kcompletion-devel + ki18n-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/knotifyconfig/pspec.xml + + + knotifyconfig + + qt5-base + qt5-phonon + libgcc + kconfig + kcompletion + ki18n + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knotifyconfig-devel + Development files for knotifyconfig + + knotifyconfig + qt5-base-devel + qt5-phonon-devel + kauth-devel + kconfig-devel + kcompletion-devel + ki18n-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-16 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-27 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kstars + http://edu.kde.org/applications/all/kstars + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A desktop planetarium for KDE + KDE için bir masaüstü gözlemevi + 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 + mirrors://kde/stable/applications/15.08.3/src/kstars-15.08.3.tar.xz + + qt5-base-devel + qt5-multimedia-devel + qt5-quick1-devel + qt5-svg-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + eigen3 + xplanet + cfitsio-devel + libindi-devel + kdoctools-devel + kconfig-devel + kguiaddons-devel + kwidgetsaddons-devel + knewstuff-devel + kdbusaddons-devel + gettext-devel + ki18n-devel + kinit-devel + kjobwidgets-devel + kio-devel + kwindowsystem-devel + kxmlgui-devel + kplotting-devel + ktexteditor-devel + kiconthemes-devel + pkgconfig + mesa-glu-devel + mesa-devel + wcslib-devel + zlib-devel + extra-cmake-modules + + desktop/kde/edu/kstars/pspec.xml + + + kstars + + qt5-base + qt5-svg + libindi + cfitsio + kio + kinit + knewstuff + kplotting + ktexteditor + zlib + ki18n + libgcc + kconfig + kxmlgui + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + wcslib + xplanet + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-18 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + klettres + http://edu.kde.org/applications/all/klettres + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An alphabet learning application + Alfabe öğrenme uygulaması + 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/applications/15.08.3/src/klettres-15.08.3.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + extra-cmake-modules + kcompletion-devel + kemoticons-devel + kitemmodels-devel + ki18n-devel + knewstuff-devel + kwidgetsaddons-devel + kconfigwidgets-devel + kcoreaddons-devel + kconfig-devel + kxmlgui-devel + qt5-phonon-devel + + desktop/kde/edu/klettres/pspec.xml + + + klettres + + qt5-base + qt5-svg + qt5-phonon + knewstuff + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + libgcc + + + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + blinken + https://www.kde.org/applications/education/blinken/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + gui + desktop.kde.education + Blinken - Memory Enhancement Game + 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. + http://download.kde.org/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz + + extra-cmake-modules + gettext-devel + kdbusaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kxmlgui-devel + qt5-base-devel + + desktop/kde/edu/blinken/pspec.xml + + + blinken + Blinken - Memory Enhancement Game + + kconfig + kcoreaddons + kdbusaddons + kguiaddons + ki18n + kxmlgui + libgcc + qt5-base + qt5-phonon + qt5-svg + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kiten + http://edu.kde.org/applications/all/kiten + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A Japanese reference/study tool + Japonca referans ve alıştırma uygulaması + Kiten is a Japanese reference/study tool. + Kiten, Japonca referans ve alıştırma uygulamasıdır. + kiten>kiten + mirrors://kde/stable/applications/15.08.3/src/kiten-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + gettext-devel + ki18n-devel + khtml-devel + kxmlgui-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + + desktop/kde/edu/kiten/pspec.xml + + + kiten + + qt5-base + karchive + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdoctools + gettext + ki18n + khtml + kxmlgui + kio + kparts + libgcc + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + kiten-devel + Development files for kiten + kiten için geliştirme dosyaları + + kiten + + + /usr/include + /usr/lib/cmake + + + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdeedu-data + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.edu + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz + + extra-cmake-modules + + desktop/kde/edu/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kturtle + http://edu.kde.org/applications/all/kturtle + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An educational programming environment + Öğrenim amaçlı programlama ortamı + 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/applications/15.08.3/src/kturtle-15.08.3.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + kdelibs4-support-devel + knewstuff-devel + extra-cmake-modules + kio-devel + kcoreaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + kconfig-devel + gettext-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/edu/kturtle/pspec.xml + + + kturtle + + qt5-base + qt5-svg + ki18n + knewstuff + libgcc + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kxmlgui + kconfig + kdelibs4-support + + + /etc/xdg + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmplot + http://kde.org/applications/education/kmplot/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.education + 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. + http://download.kde.org/stable/applications/15.08.3/src/kmplot-15.08.3.tar.xz + + extra-cmake-modules + gettext-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kparts-devel + kwidgetsaddons-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + qt5-base-devel + + desktop/kde/edu/kmplot/pspec.xml + + + kmplot + Mathematical Function Plotter + + kdelibs4-support + ki18n + kparts + kwidgetsaddons + qt5-base + qt5-svg + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + parley + http://edu.kde.org/applications/all/parley + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + Parley is a program to help you memorize things. + Tekrar yapmanıza yardım eden bir uygulama + 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/applications/15.08.3/src/parley-15.08.3.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-multimedia-devel + libxslt-devel + libXrender-devel + libxml2-devel + libkeduvocdocument-devel + kdoctools-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + gettext-devel + ki18n-devel + kio-devel + knewstuff-devel + kross-devel + kcmutils-devel + kxmlgui-devel + sonnet-devel + kservice-devel + ktextwidgets-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + knotifications-devel + khtml-devel + extra-cmake-modules + + desktop/kde/edu/parley/pspec.xml + + + parley + + qt5-base + qt5-svg + qt5-multimedia + libxslt + libXrender + libxml2 + libkeduvocdocument + kdoctools + kcoreaddons + kconfig + kcrash + gettext + ki18n + kio + knewstuff + kross + kcmutils + kxmlgui + knotifications + sonnet + kservice + libgcc + ktextwidgets + kcompletion + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-11-17 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kig + http://edu.kde.org/applications/all/kig + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An interactive geometry application + Bir etkileşimli geometri uygulaması + Kig is an application for interactive geometry. + Kig, bir etkileşimli geometri uygulamasıdır. + kig + mirrors://kde/stable/applications/15.08.3/src/kig-15.08.3.tar.xz + + qt5-base-devel + qt5-svg-devel + boost-devel + ktexteditor-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + qt5-xmlpatterns-devel + gettext-devel + pkgconfig + extra-cmake-modules + + desktop/kde/edu/kig/pspec.xml + + + kig + + qt5-base + boost + ktexteditor + qt5-xmlpatterns + qt5-svg + ki18n + kparts + ktexteditor + kiconthemes + kconfigwidgets + karchive + kxmlgui + kitemmodels + libgcc + kservice + kcompletion + kcoreaddons + kwidgetsaddons + kconfig + + + /usr/lib + /usr/lib/qt5 + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + khangman + http://edu.kde.org/applications/all/khangman + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + KHangMan is a game for kids based on the well-known hangman game + Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu + 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/applications/15.08.3/src/khangman-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kcrash-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + knotifications-devel + kxmlgui-devel + kwidgetsaddons-devel + kio-devel + qt5-svg-devel + qt5-linguist + qt5-declarative-devel + libkeduvocdocument-devel + extra-cmake-modules + + desktop/kde/edu/khangman/pspec.xml + + + khangman + + qt5-base + kdeclarative + knewstuff + ki18n + kwidgetsaddons + kconfig + kcoreaddons + kxmlgui + qt5-declarative + libkeduvocdocument + libgcc + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-11-16 + 15.08.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + prison-qt5 + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + desktop.kde.addon + A barcode API to produce QRCode barcodes and DataMatrix barcode + A barcode API to produce QRCode barcodes and DataMatrix barcode. + http://source.pisilinux.org/1.0/prison-1.1.1_20150821.tar.xz + + qt5-base-devel + libdmtx-devel + qrencode-devel + extra-cmake-modules + mesa-devel + + desktop/kde/addon/prison-qt5/pspec.xml + + + prison-qt5 + + qt5-base + libgcc + mesa + libdmtx + qrencode + + + /usr/lib + /usr/share/doc + + + + prison-qt5-devel + Development files for libepoxy + + prison-qt5 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-08-22 + 1.1.1_20150821 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libdmtx + http://www.libdmtx.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.kde.addon + A Library for working with Data Matrix 2D bar-codes + Data Matrix 2D barkodlarıyla çalışmak için kitaplık + libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. + libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. + http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz + desktop/kde/addon/libdmtx/pspec.xml + + + libdmtx + + /usr/lib + /usr/share/doc + + + + libdmtx-devel + Development files for libdmtx + libdmtx için geliştirme dosyaları + + libdmtx + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-06-05 + 0.7.4 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-08-09 + 0.7.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + qrencode + http://fukuchi.org/works/qrencode/index.en.html + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + desktop.kde.addon + A C library for encoding data in a QR code symbol + QR kod sembolüne veri gömmek için bir kitaplık + qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. + qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. + http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz + + libsdl-devel + m4 + gettext-devel + libpng-devel + + desktop/kde/addon/qrencode/pspec.xml + + + qrencode + + libpng + + + /usr/lib + /usr/bin/qrencode + /usr/share/man/man1 + /usr/share/doc + + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-22 + 3.4.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 3.3.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-04-05 + 3.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcharselect + http://utils.kde.org/projects/kcharselect + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A character selector + Bir karakter seçici + 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/applications/15.08.3/src/kcharselect-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + mesa-devel + + desktop/kde/utils/kcharselect/pspec.xml + + + kcharselect + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kcalc + http://kde.org/applications/utilities/kcalc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A scientific calculator + Bir bilimsel hesap makinesi + 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/applications/15.08.3/src/kcalc-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + gmp-devel + cmake + kconfig-devel + kconfigwidgets-devel + kguiaddons-devel + ki18n-devel + kinit-devel + knotifications-devel + kxmlgui-devel + mesa-devel + + desktop/kde/utils/kcalc/pspec.xml + + + kcalc + + qt5-base + gmp + ki18n + libgcc + kconfig + kxmlgui + kguiaddons + kcoreaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + filelight + http://utils.kde.org/projects/filelight + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + View disk usage information + View disk usage information + 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/applications/15.08.3/src/filelight-15.08.3.tar.xz + + qt5-base-devel + qt5-script-devel + kdoctools-devel + extra-cmake-modules + kio-devel + kparts-devel + solid-devel + kxmlgui-devel + kcoreaddons-devel + ki18n-devel + mesa-devel + docbook-xsl + + desktop/kde/utils/filelight/pspec.xml + + + filelight + + qt5-base + kparts + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktimer + http://kde.org/applications/utilities/ktimer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A countdown launcher + A countdown launcher + 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/applications/15.08.3/src/ktimer-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kio-devel + kiconthemes-devel + kdbusaddons-devel + knotifications-devel + mesa-devel + + desktop/kde/utils/ktimer/pspec.xml + + + ktimer + + qt5-base + kio + ki18n + libgcc + kconfig + kcoreaddons + kdbusaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kwalletmanager + http://kde.org/applications/system/kwalletmanager + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + 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/applications/15.08.3/src/kwalletmanager-15.08.3.tar.xz + + qt5-base + kdoctools-devel + cmake + extra-cmake-modules + kcoreaddons-devel + kauth-devel + kwallet-devel + kservice-devel + kcmutils-devel + kdelibs4-support-devel + ki18n-devel + kxmlgui-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + mesa-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/utils/kwalletmanager/pspec.xml + + + kwalletmanager + + qt5-base + kcmutils + kdelibs4-support + kauth + ki18n + libgcc + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kitemviews + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy + /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kfoldersync + http://ur1.ca/hq3ve + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + system + Folder synchronization and backup tool for KDE + Smart folder comparison, It depends only on KDE Frameworks. + http://kde-apps.org/CONTENT/content-files/164092-kfoldersync-3.0.0.tar.xz + + extra-cmake-modules + gettext-devel + cmake + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kio-devel + knotifications-devel + kxmlgui-devel + qt5-base-devel + + desktop/kde/utils/kfoldersync/pspec.xml + + + kfoldersync + Folder synchronization and backup tool for KDE + + kcoreaddons + ki18n + kio + qt5-base + libgcc + kconfig + kxmlgui + kitemviews + kdbusaddons + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-12-02 + 3.0.0 + Update to stable version + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-11-05 + 3.0.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kapptemplate + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Application template generator + 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/applications/15.08.3/src/kapptemplate-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + gettext + kcoreaddons-devel + kconfigwidgets-devel + kcompletion-devel + karchive-devel + kio-devel + ki18n-devel + kdoctools-devel + + desktop/kde/sdk/kapptemplate/pspec.xml + + + kapptemplate + + qt5-base + kio + ki18n + libgcc + kconfig + karchive + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-19 + 15.08.2 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kompare + http://www.kde.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + File difference viewer + Dosya karşılaştırma göstericisi. + Diff/Patch Frontend. + Dosya karşılaştırma göstericisi. + mirrors://kde/stable/applications/15.08.3/src/kompare-15.08.3.tar.xz + + extra-cmake-modules + kdoctools-devel + qt5-base-devel + gettext-devel + libkomparediff2-devel + kcoreaddons-devel + kcodecs-devel + kiconthemes-devel + kjobwidgets-devel + kconfig-devel + kparts-devel + ktexteditor-devel + kwidgetsaddons-devel + + desktop/kde/sdk/kompare/pspec.xml + + + kompare + + qt5-base + libkomparediff2 + kio + ki18n + kparts + libgcc + kcodecs + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktexteditor + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/include + + + kdesdk + + + kdesdk + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-07 + 15.08.2 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkomparediff2 + https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.sdk + Library to compare files and strings + Library to compare files and strings + mirrors://kde/stable/applications/15.08.3/src/libkomparediff2-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + python3-devel + gettext-devel + kcoreaddons-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + ki18n-devel + kio-devel + kparts-devel + + desktop/kde/sdk/libkomparediff2/pspec.xml + + + libkomparediff2 + + qt5-base + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcoreaddons + kconfigwidgets + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + libkomparediff2-devel + Shared libraries for libkomparediff2. + + libkomparediff2 + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + lokalize + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Lokalize is the localization tool for KDE and other open source software + 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/applications/15.08.3/src/lokalize-15.08.3.tar.xz + + qt5-base-devel + hunspell-devel + extra-cmake-modules + kdoctools-devel + kio-devel + kitemviews-devel + ki18n-devel + kross-devel + kparts-devel + sonnet-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + knotifications-devel + kwidgetsaddons-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + + desktop/kde/sdk/lokalize/pspec.xml + + + lokalize + + qt5-base + kio + kitemviews + ki18n + kross + kparts + libgcc + sonnet + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + hunspell + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-19 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + umbrello + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.sdk + UML modelling tool and code generator + 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/applications/15.08.3/src/umbrello-15.08.3.tar.xz + + qt5-base-devel + libxslt-devel + qt5-svg-devel + kio-devel + kparts-devel + kinit-devel + kcompletion-devel + kxmlgui-devel + kauth-devel + kconfig-devel + ktexteditor-devel + kcoreaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/sdk/umbrello/pspec.xml + + + umbrello + + qt5-base + kio + ki18n + libgcc + kconfig + kxmlgui + libxml2 + qt5-svg + karchive + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktextwidgets + kconfigwidgets + kwidgetsaddons + ktexteditor + libxslt + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-common-internals + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Common components for KDE-Telepathy + Common components for KDE-Telepathy + http://download.kde.org/stable/applications/15.08.3/src/ktp-common-internals-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + knotifications-devel + kio-devel + kwidgetsaddons-devel + kcmutils-devel + knotifyconfig-devel + ktexteditor-devel + kwallet-devel + kconfig-devel + kwindowsystem-devel + kiconthemes-devel + kpeople-devel + signon-devel + kaccounts-integration-devel + telepathy-logger-qt-devel + libaccounts-qt5-devel + telepathy-qt5-devel + libaccounts-glib-devel + libgcrypt-devel + sqlite-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + telepathy-mission-control-devel + libotr-devel + + desktop/kde/application/ktp-common-internals/pspec.xml + + + ktp-common-internals + Common components for KDE-Telepathy + + ki18n + kparts + libgcc + libotr + signon + kconfig + kpeople + kwallet + kxmlgui + kcmutils + kservice + qt5-base + libgcrypt + kcoreaddons + kiconthemes + ktexteditor + knotifyconfig + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + libaccounts-qt5 + qt5-declarative + telepathy-logger-qt + kaccounts-integration + + + /usr/bin + /usr/lib/libKTpCommonInternals.so.* + /usr/lib/libKTpModels.so.* + /usr/lib/libKTpLogger.so.* + /usr/lib/libKTpWidgets.so.* + /usr/lib/libKTpOTR.so.* + /usr/lib/ktp-proxy + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/knotifications5 + /usr/share/config.kcfg + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/icons + /usr/share/katepart5 + /usr/share/doc + + + + ktp-common-internals-devel + Development files for ktp-common-internals + + ktp-common-internals + libotr-devel + + + /usr/include/KTp + /usr/lib/cmake/KTp + /usr/lib/libKTpCommonInternals.so + /usr/lib/libKTpModels.so + /usr/lib/libKTpLogger.so + /usr/lib/libKTpWidgets.so + /usr/lib/libKTpOTR.so + + + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + akonadi-calendar + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Akonadi calendar integration + Calendar integration for Akonadi. + mirrors://kde/stable/applications/15.08.3/src/akonadi-calendar-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + boost-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmailtransport-devel + akonadi-devel + kdelibs4-support-devel + extra-cmake-modules + kdesignerplugin + kdepimlibs-devel + kmime-devel + cyrus-sasl-devel + kcontacts-devel + kidentitymanagement-devel + kcalcore-devel + kcalutils-devel + + desktop/kde/application/akonadi-calendar/pspec.xml + + + akonadi-calendar + + qt5-base + ki18n + kcodecs + kdelibs4-support + kio + kmime + libgcc + kconfig + kxmlgui + kcalcore + kcalutils + kcontacts + kdepimlibs + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + kconfigwidgets + kmailtransport + kwidgetsaddons + kidentitymanagement + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + akonadi-calendar-devel + Development files for akonadi-calendar + + qt5-base-devel + akonadi-calendar + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kate + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Advanced Text Editor + Plasma library and runtime components based upon KF5 and Qt5 + mirrors://kde/stable/applications/15.08.3/src/kate-15.08.3.tar.xz + + qt5-base-devel + plasma-framework-devel + kdoctools-devel + knewstuff-devel + kinit-devel + kparts-devel + ktexteditor-devel + threadweaver-devel + kitemmodels-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + docbook-xsl + extra-cmake-modules + kded-devel + + desktop/kde/application/kate/pspec.xml + + + kate + + qt5-base + libgcc + libgit2 + knewstuff + ki18n + kconfig + kded + kguiaddons + kactivities + kjobwidgets + kitemmodels + kio + kparts + ktexteditor + kwindowsystem + kxmlgui + plasma-framework + kwallet + kservice + kbookmarks + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + threadweaver + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/share + /etc/xdg + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + signon-kwallet-extension + http://kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app + desktop.kde.application + KWallet signon extension + KWallet signon extension + http://download.kde.org/stable/applications/15.08.3/src/signon-kwallet-extension-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + signon-devel + + desktop/kde/application/signon-kwallet-extension/pspec.xml + + + signon-kwallet-extension + KWallet signon extension + + libgcc + signon + kwallet + qt5-base + + + /usr/lib/signon + /usr/share/doc + + + + + 2015-12-03 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kbruch + http://edu.kde.org/applications/mathematics/kbruch + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Practice calculating with fractions and percentages + Ondalık ve kesirli sayılarla pratik yapın + 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/applications/15.08.3/src/kbruch-15.08.3.tar.xz + + qt5-base + kdoctools-devel + kconfig-devel + kcrash-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kcoreaddons-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/application/kbruch/pspec.xml + + + kbruch + + qt5-base + kxmlgui + kconfig + kcrash + ki18n + libgcc + kwidgetsaddons + kcoreaddons + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/man/man1 + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-send-file + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + 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 + http://download.kde.org/stable/applications/15.08.3/src/ktp-send-file-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kcmutils-devel + kio-devel + kiconthemes-devel + ki18n-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-send-file/pspec.xml + + + ktp-send-file + A File manager plugin to launch a file transfer job with a specified contact + + kio + ki18n + libgcc + qt5-base + kcoreaddons + kiconthemes + telepathy-qt5 + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kio-extras + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Additional KIO-slaves for KDE5 applications + Additional KIO-slaves for KDE5 applications + mirrors://kde/stable/applications/15.08.3/src/kio-extras-15.08.3.tar.xz + + exiv2-devel + gettext-devel + karchive-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdnssd-devel + kdoctools-devel + kemoticons-devel + khtml-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + kitemmodels-devel + kpty-devel + kunitconversion-devel + libjpeg-turbo-devel + libmtp-devel + libssh-devel + qt5-base-devel + qt5-phonon-devel + qt5-svg-devel + samba-devel + shared-mime-info + solid-devel + openexr-devel + openslp-devel + docbook-xsl + kdesignerplugin + extra-cmake-modules + cmake + + desktop/kde/application/kio-extras/pspec.xml + + + kio-extras + + exiv2-libs + karchive + kbookmarks + kcodecs + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdelibs4-support + kdnssd + kguiaddons + khtml + ki18n + kiconthemes + kio + kparts + kpty + kservice + kxmlgui + libgcc + libjpeg-turbo + libmtp + libssh + qt5-base + qt5-phonon + qt5-svg + samba + solid + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kmailtransport + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + Mail Transport Service + Mail Transport Service + akonadi + mirrors://kde/stable/applications/15.08.3/src/kmailtransport-15.08.3.tar.xz + + qt5-base-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kmime-devel + akonadi-search-devel + akonadi-devel + cyrus-sasl-devel + extra-cmake-modules + + desktop/kde/application/kmailtransport/pspec.xml + + + kmailtransport + app:console + + qt5-base + ki18n + kio + libgcc + kmime + kconfig + kwallet + kcompletion + kdepimlibs + kcoreaddons + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/lib + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/doc/ + /usr/share/config.kcfg + + + + kmailtransport-devel + Development files for akonadi + + kmailtransport + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kfourinline + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Four in a row board game + Bir satırda dört tahta oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kfourinline-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kcompletion-devel + kxmlgui-devel + kdnssd-devel + kio-devel + knotifyconfig-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/application/kfourinline/pspec.xml + + + kfourinline + + ki18n + kdnssd + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-18 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bovo + https://www.kde.org/applications/games/bovo/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + 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/applications/15.08.3/src/bovo-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kxmlgui-devel + kdoctools-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/bovo/pspec.xml + + + bovo + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/applications + /usr/share/bovo + /usr/share/doc + + + org.kde.bovo.desktop + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-18 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + partitionmanager + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer + 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/partitionmanager/1.2.1/src/partitionmanager-1.2.1.tar.xz + + qt5-base-devel + libatasmart-devel + extra-cmake-modules + parted-devel + libutil-linux-devel + ki18n-devel + kio-devel + kconfig-devel + kxmlgui-devel + kservice-devel + kcoreaddons-devel + kiconthemes-devel + kjobwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdoctools-devel + + desktop/kde/application/partitionmanager/pspec.xml + + + partitionmanager + + qt5-base + libatasmart + libgcc + parted + libutil-linux + kio + ki18n + kconfig + kxmlgui + kservice + kcoreaddons + kiconthemes + kjobwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-09-27 + 1.2.1 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmbox + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + MBox library support. + MBox library support. + mirrors://kde/stable/applications/15.08.3/src/kmbox-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + kmime-devel + boost-devel + + desktop/kde/application/kmbox/pspec.xml + + + kmbox + + qt5-base + kmime + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmbox-devel + Development files for kmbox + + qt5-base-devel + kmbox + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkeduvocdocument + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + Common libraries for KDE Edu applications + Libraries for KDE EDU applications. + mirrors://kde/stable/applications/15.08.3/src/libkeduvocdocument-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + ki18n-devel + kio-devel + karchive-devel + mesa-devel + + desktop/kde/application/libkeduvocdocument/pspec.xml + + + libkeduvocdocument + + qt5-base + karchive + libgcc + ki18n + kio + kcoreaddons + + + /usr/lib + /usr/share/doc + + + + libkeduvocdocument-devel + Development files for libkeduvocdocument + + libkeduvocdocument + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + gwenview + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + desktop.kde.application + An image viewer + Resim görüntüleyici + Gwenview is an easy to use image viewer. + Gwenview, kullanımı kolay bir resim görüntüleyicisidir. + gwenview + mirrors://kde/stable/applications/15.08.3/src/gwenview-15.08.3.tar.xz + + exiv2-devel + qt5-base-devel + libkipi-devel + kdoctools-devel + kio-devel + kactivities-devel + kded-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + baloo-devel + libkdcraw-devel + libpng-devel + zlib-devel + mesa-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/gwenview/pspec.xml + + + gwenview + + qt5-base + exiv2-libs + kactivities + libkipi + libkdcraw + kded + kdelibs4-support + kio + ki18n + lcms2 + kparts + libX11 + libgcc + libpng + kconfig + kxmlgui + qt5-svg + kservice + baloo + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + ktextwidgets + libjpeg-turbo + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + kfilemetadata + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-12 + 15.08.0 + first release, use stable source. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gpgmepp + https://projects.kde.org/gpgmepp + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPLv2 + desktop.kde.application + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + mirrors://kde/stable/applications/15.08.3/src/gpgmepp-15.08.3.tar.xz + + boost-devel + qt5-base-devel + gpgme-devel + extra-cmake-modules + + desktop/kde/application/gpgmepp/pspec.xml + + + gpgmepp + + libgcc + qt5-base + gpgme + + + /usr/lib + /usr/share/doc + + + + gpgmepp-devel + + gpgmepp + + + /usr/include + /usr/lib/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + ktp-text-ui + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Telepathy handler for Text Chats + Telepathy handler for Text Chats + http://download.kde.org/stable/applications/15.08.3/src/ktp-text-ui-15.08.3.tar.xz + + extra-cmake-modules + karchive-devel + sonnet-devel + kwidgetsaddons-devel + kservice-devel + kemoticons-devel + kio-devel + kcmutils-devel + knotifyconfig-devel + knotifications-devel + ki18n-devel + kdewebkit-devel + kwindowsystem-devel + kxmlgui-devel + kitemviews-devel + ktextwidgets-devel + kiconthemes-devel + kdbusaddons-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + qt5-location-devel + qt5-webkit-devel + + desktop/kde/application/ktp-text-ui/pspec.xml + + + ktp-text-ui + Telepathy handler for Text Chats + + kio + ki18n + libgcc + sonnet + kconfig + kxmlgui + karchive + kcmutils + kservice + qt5-base + kdewebkit + kemoticons + kitemviews + qt5-webkit + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + knotifyconfig + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/lib + /usr/share + /usr/share/ktelepathy + /usr/share/ktp-log-viewer + /usr/share/kxmlgui5 + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kcontacts + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + Address book API for KDE. + Address book for KDE for Contacts. + mirrors://kde/stable/applications/15.08.3/src/kcontacts-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kconfig-devel + kio-devel + extra-cmake-modules + + desktop/kde/application/kcontacts/pspec.xml + + + kcontacts + + qt5-base + ki18n + kcodecs + kconfig + kcoreaddons + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcontacts-devel + Development files for kcontacts + + qt5-base-devel + kcontacts + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdepimlibs + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE5 PIM libraries + KDE5 PIM kitaplıkları + Contains KDE5 PIM (Personal Information Management) base libraries. + KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıkları içerir. + mirrors://kde/stable/applications/15.08.3/src/kdepimlibs-15.08.3.tar.xz + + qt5-base-devel + boost-devel + gpgme-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + prison-qt5-devel + kmbox-devel + qt5-phonon-devel + akonadi-devel + libical-devel + libqjson-devel + libgpg-error-devel + libxslt-devel + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalcore-devel + kldap-devel + extra-cmake-modules + + desktop/kde/application/kdepimlibs/pspec.xml + + + kdepimlibs + + qt5-base + kio + ki18n + libgcc + kcodecs + kmime + kldap + kxmlgui + kcalcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + ktextwidgets + kconfigwidgets + kwidgetsaddons + kdelibs4-support + qt5-phonon + prison-qt5 + akonadi + cyrus-sasl + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/dbus-1 + /usr/share/config.kcfg + /usr/share/kf5 + /usr/share/config + /usr/share/akonadi + + + + kdepimlibs-devel + Development package for KDE5 PIM libraries + KDE5 PIM kitaplıkları için geliştirme paketi + Contains development tools and header files for KDE5 PIM (Personal Information Management) base libraries. + KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıklarla ilgili geliştirme araçları ve başlık dosyalarını içerir. + + qt5-base-devel + boost-devel + kdepimlibs + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-11 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-14 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-09 + 4.11.4 + Rebuild for cyrus-sasl. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kteatime + http://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Timer for making tea. + Ç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. + http://download.kde.org/stable/applications/15.08.3/src/kteatime-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + kcrash-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + knotifyconfig-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kxmlgui-devel + + desktop/kde/application/kteatime/pspec.xml + + + kteatime + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kiconthemes + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + + + /usr/bin + /usr/doc + /usr/share + + + kdetoys + + + kdetoys + + + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + ktnef + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + 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/applications/15.08.3/src/ktnef-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcalcore-devel + kcalutils-devel + kcontacts-devel + + desktop/kde/application/ktnef/pspec.xml + + + ktnef + + qt5-base + kcalutils + ki18n + libgcc + kcalcore + kcontacts + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktnef-devel + Development files for ktnef + + qt5-base-devel + ktnef + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + picmi + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Picmi is a single player logic-based puzzle game + 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. + http://download.kde.org/stable/applications/15.08.3/src/picmi-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kio-devel + knewstuff-devel + kxmlgui-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/picmi/pspec.xml + + + picmi + picmi + + ki18n + libgcc + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-12-03 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpimtextedit + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + A textedit with PIM-specific features. + Text Edit with KDE-PIM specific features. + mirrors://kde/stable/applications/15.08.3/src/kpimtextedit-15.08.3.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kconfig-devel + kio-devel + kemoticons-devel + kdesignerplugin + kitemmodels-devel + kinit-devel + kdelibs4-support-devel + kunitconversion-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/kpimtextedit/pspec.xml + + + kpimtextedit + + qt5-base + ki18n + kcodecs + kio + sonnet + libgcc + kemoticons + kcompletion + ktextwidgets + kwidgetsaddons + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kpimtextedit-devel + Development files for kpimtextedit + + qt5-base-devel + kpimtextedit + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kapman + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Pac-Man clone + Pac-Man klonu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kapman-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwindowsystem-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + kdesignerplugin + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + + desktop/kde/application/kapman/pspec.xml + + + kapman + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-15 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kgeography + http://edu.kde.org/applications/all/kgeography + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KGeography is a geography learning tool + Bir coğrafya uygulaması + 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 + mirrors://kde/stable/applications/15.08.3/src/kgeography-15.08.3.tar.xz + + qt5-base-devel + kconfig-devel + kdoctools-devel + kxmlgui-devel + kwidgetsaddons-devel + kcoreaddons-devel + ki18n-devel + kitemviews-devel + kiconthemes-devel + kservice-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/application/kgeography/pspec.xml + + + kgeography + + qt5-base + libgcc + kconfig + kxmlgui + kwidgetsaddons + kcoreaddons + ki18n + kitemviews + kiconthemes + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-desktop-applets + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + The KDE-Telepathy Plasma desktop applets + The KDE-Telepathy Plasma desktop applets + http://download.kde.org/stable/applications/15.08.3/src/ktp-desktop-applets-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kwindowsystem-devel + plasma-framework-devel + + desktop/kde/application/ktp-desktop-applets/pspec.xml + + + ktp-desktop-applets + The KDE-Telepathy Plasma desktop applets + + libgcc + qt5-base + kwindowsystem + qt5-declarative + + + /usr/lib + /usr/share + /usr/share/plasma + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kontactinterface + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + 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/applications/15.08.3/src/kontactinterface-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kcoreaddons-devel + kparts-devel + kwindowsystem-devel + ki18n-devel + kxmlgui-devel + kiconthemes-devel + + desktop/kde/application/kontactinterface/pspec.xml + + + kontactinterface + + qt5-base + kio + kparts + libgcc + kxmlgui + kcoreaddons + kiconthemes + kwindowsystem + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kontactinterface-devel + Development files for kontactinterface + + qt5-base-devel + kontactinterface + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ksyndication + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + RSS/Atom parser library + syndication is a parser library for RSS and Atom feeds. + mirrors://kde/stable/applications/15.08.3/src/syndication-15.08.3.tar.xz + + qt5-base-devel + kio-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/ksyndication/pspec.xml + + + ksyndication + + qt5-base + kio + kcodecs + libgcc + kcoreaddons + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ksyndication-devel + Development files for ksyndication + + qt5-base-devel + ksyndication + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kjumpingcube + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Territory capture game + Alan kapma oyunu + KJumpingCube is a simple tactical game. + KJumpingCube basit bir taktik oyunudur. + kjumpingcube + http://download.kde.org/stable/applications/15.08.3/src/kjumpingcube-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/application/kjumpingcube/pspec.xml + + + kjumpingcube + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdepim-runtime + http://community.kde.org/KDE_PIM + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + KDE5 PIM Runtime Environment + KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı + 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/applications/15.08.3/src/kdepim-runtime-15.08.3.tar.xz + + kdoctools-devel + boost-devel + shared-mime-info + akonadi-devel + akonadi-calendar-devel + akonadi-search-devel + kcmutils-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + knotifyconfig-devel + kross-devel + kmailtransport-devel + kidentitymanagement-devel + kalarmcal-devel + kcalutils-devel + kmbox-devel + kimap-devel + libkgapi-devel + kholidays-devel + ksyndication-devel + kdepimlibs-devel + cyrus-sasl-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-xmlpatterns-devel + qt5-webkit-devel + extra-cmake-modules + qt5-location-devel + + desktop/kde/application/kdepim-runtime/pspec.xml + + + kdepim-runtime + + akonadi + libkgapi + kio + ki18n + kimap + kmbox + kmime + libgcc + kcodecs + kconfig + kwallet + kxmlgui + kcalcore + kcmutils + kservice + qt5-base + kalarmcal + kcalutils + kdepimlibs + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kitemmodels + kcontacts + kjobwidgets + knotifyconfig + kwindowsystem + kconfigwidgets + kmailtransport + ktextwidgets + knotifications + kwidgetsaddons + qt5-xmlpatterns + akonadi-calendar + kdelibs4-support + kidentitymanagement + + + /etc/xdg + /usr/lib + /usr/bin + /usr/share/mime + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/knotifications5 + /usr/share/icons + /usr/share/dbus-1 + /usr/share/akonadi + /usr/share/ontology + /usr/share/autostart + /usr/share/applications + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + analitza + https://projects.kde.org/projects/kde/kdeedu/analitza + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + desktop.kde.application + A KDE library for mathematical features + Matematiksel özellikler için bir KDE kitaplığı + 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/applications/15.08.2/src/analitza-15.08.2.tar.xz + + cmake + eigen3 + mesa-devel + qt5-svg-devel + extra-cmake-modules + qt5-declarative-devel + + desktop/kde/application/analitza/pspec.xml + + + analitza + + mesa + libgcc + qt5-svg + qt5-base + qt5-declarative + + + /usr/lib + /usr/share/doc + /usr/share/libanalitza/ + + + + analitza-devel + Development files for analitza + analitza için geliştirme dosyaları + + analitza + + + /usr/include + /usr/lib/cmake + + + + + 2015-10-19 + 15.08.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-18 + 15.04.3 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-23 + 4.10.2 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kanagram + http://edu.kde.org/applications/all/kanagram + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A letter order game + Bir harf sıralama oyunu + 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/applications/15.08.3/src/kanagram-15.08.3.tar.xz + + qt5-base-devel + qt5-declarative + kdoctools-devel + knewstuff-devel + kdeclarative-devel + ki18n-devel + kio-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kxmlgui + kwidgetsaddons-devel + extra-cmake-modules + libkeduvocdocument-devel + + desktop/kde/application/kanagram/pspec.xml + + + kanagram + + ki18n + libgcc + sonnet + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdeclarative + kconfigwidgets + qt5-declarative + libkeduvocdocument + + + /etc/xdg + /usr/share + /usr/bin + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + granatier + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A Bomberman game + Bombalama macera oyunu + 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/applications/15.08.3/src/granatier-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kwidgetsaddons-devel + ki18n-devel + kxmlgui-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/granatier/pspec.xml + + + granatier + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdepim + http://www.kde.org + + Pisi Linux Admins + vedat@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.application + KDE Pim different packages with akonadi-console, kadressbook blogilo etc + Provides different Packages for KDE5 + mirrors://kde/stable/applications/15.08.3/src/kdepim-15.08.3.tar.xz + + qt5-base-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + qt5-declarative-devel + qt5-quick1-devel + qt5-phonon-devel + qt5-webkit-devel + qt5-x11extras-devel + qt5-location-devel + prison-qt5-devel + openssl-devel + kinit-devel + kross-devel + libassuan-devel + akonadi-devel + akonadi-search-devel + kdnssd-devel + grantlee-qt5-devel + kpimtextedit-devel + kmailtransport-devel + kcalutils-devel + kholidays-devel + ktnef-devel + kimap-devel + ksyndication-devel + gpgmepp-devel + akonadi-calendar-devel + libSM-devel + NetworkManager-devel + kauth-devel + kbookmarks-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kdesignerplugin + kdoctools-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kinit + kio-devel + kitemviews-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kunitconversion-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kcmutils-devel + kdewebkit-devel + khtml-devel + ktexteditor-devel + kidentitymanagement-devel + kldap-devel + cyrus-sasl-devel + kmbox-devel + kontactinterface-devel + kalarmcal-devel + kxmlrpcclient-devel + kblog-devel + kdelibs4-support-devel + kdepimlibs-devel + kidentitymanagement-devel + gpgme-devel + libX11-devel + extra-cmake-modules + qt5-linguist + kemoticons-devel + kitemmodels-devel + knewstuff-devel + knotifyconfig-devel + libkgapi-devel + curl-devel + kdepim-runtime + + desktop/kde/application/kdepim/pspec.xml + + + kdepim + + qt5-base + qt5-phonon + qt5-webkit + qt5-x11extras + gpgme + kross + libassuan + akonadi + akonadi-search + kdnssd + grantlee-qt5 + kpimtextedit + kmailtransport + kcalutils + kholidays + ktnef + kimap + ksyndication + gpgmepp + akonadi-calendar + kauth + kbookmarks + kcompletion + kconfig + kconfigwidgets + kcrash + kdbusaddons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + knotifications + kparts + kservice + ktextwidgets + kunitconversion + kwidgetsaddons + kwindowsystem + kxmlgui + kcmutils + kdewebkit + khtml + ktexteditor + kidentitymanagement + kldap + kcodecs + kwallet + cyrus-sasl + kmbox + kontactinterface + kalarmcal + kxmlrpcclient + karchive + kcalcore + kcontacts + kholidays + knewstuff + sonnet + kblog + kdepimlibs + kcoreaddons + kitemmodels + kjobwidgets + knotifyconfig + kdelibs4-support + libgpg-error + libX11 + libgcc + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kblog + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + A blogging library for KDE + 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/applications/15.08.3/src/kblog-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kcoreaddons-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + qt5-webkit-devel + kcalcore-devel + ksyndication-devel + kxmlrpcclient-devel + + desktop/kde/application/kblog/pspec.xml + + + kblog + + qt5-base + kcalcore + kxmlrpcclient + kio + ki18n + libgcc + kcoreaddons + ksyndication + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kblog-devel + Development files for kblog + + qt5-base-devel + kblog + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-24 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + cantor + http://edu.kde.org/cantor + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.application + A KDE frontend to mathematical softwares + Matematiksel uygulamalar için bir KDE önyüzü + 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. + cantar + mirrors://kde/stable/applications/15.08.3/src/cantor-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + qt5-xmlpatterns-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ktexteditor-devel + knewstuff-devel + kpty-devel + analitza-devel + libqalculate-devel + cln-devel + + desktop/kde/application/cantor/pspec.xml + + + cantor + + cln + kio + kpty + ki18n + kparts + libgcc + kconfig + kxmlgui + analitza + karchive + kservice + qt5-base + knewstuff + kcompletion + kcoreaddons + kiconthemes + ktexteditor + ktextwidgets + libqalculate + kconfigwidgets + kwidgetsaddons + qt5-xmlpatterns + kdelibs4-support + + + /etc + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + cantor-devel + Development files for cantor + cantor için geliştirme dosyaları + + cantor + + + /usr/include + /usr/share/kde5/apps/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 4.11.2 + Rebuild for icu4c. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-23 + 4.10.2 + Dep fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kblackbox + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Blackbox logic game + Blackbox mantık oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kblackbox-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kblackbox/pspec.xml + + + kblackbox + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + karchive + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-kded-module + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + 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 + http://download.kde.org/stable/applications/15.08.3/src/ktp-kded-module-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + kdbusaddons-devel + kwidgetsaddons-devel + kconfig-devel + ki18n-devel + kio-devel + knotifications-devel + kconfigwidgets-devel + kidletime-devel + kcmutils-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-kded-module/pspec.xml + + + ktp-kded-module + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + + kio + ki18n + libgcc + kconfig + qt5-base + kidletime + kcoreaddons + kdbusaddons + telepathy-qt5 + kconfigwidgets + knotifications + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + Fİrst Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kbreakout + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Breakout like game + Breakout benzeri oyun + 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 + http://download.kde.org/stable/applications/15.08.3/src/kbreakout-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + kjobwidgets-devel + kxmlgui-devel + kio-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kbreakout/pspec.xml + + + kbreakout + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + blinken + http://kde.org/applications/education/blinken/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + Memory Enhancement Game + Hafıza geliştirme oyunu. + Memory Enhancement Game + Hafıza geliştirme oyunu. + blinken + mirrors://kde/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kdoctools-devel + kxmlgui-devel + qt5-phonon-devel + + desktop/kde/application/blinken/pspec.xml + + + blinken + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kguiaddons + qt5-phonon + kcoreaddons + kdbusaddons + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/blinken + /usr/share/config.kcfg + /usr/share/icons + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ark + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE Archiving Tool + Ark is a program for managing various archive formats within the KDE environment. + mirrors://kde/stable/applications/15.08.3/src/ark-15.08.3.tar.xz + + qt5-base-devel + karchive-devel + kconfig-devel + kcrash-devel + kio-devel + kpty-devel + khtml-devel + xz-devel + kdbusaddons-devel + kdoctools-devel + docbook-xsl + libarchive-devel + extra-cmake-modules + + desktop/kde/application/ark/pspec.xml + + + ark + + qt5-base + libarchive + karchive + kconfig + kio + unrar + kpty + khtml + ki18n + libgcc + kxmlgui + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + kwidgetsaddons + kparts + kconfigwidgets + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib + /usr/share/icons + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + print-manager + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KDE print manager + KDE print tool. + print-manager + mirrors://kde/stable/applications/15.08.3/src/print-manager-15.08.3.tar.xz + + kdoctools-devel + extra-cmake-modules + cups-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kservice-devel + qt5-base-devel + kdbusaddons-devel + kiconthemes-devel + kcoreaddons-devel + kwindowsystem-devel + knotifications-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kcmutils-devel + plasma-framework-devel + + desktop/kde/application/print-manager/pspec.xml + + + print-manager + + kio + cups + ki18n + libgcc + kconfig + kservice + qt5-base + kdbusaddons + kiconthemes + kcoreaddons + kwindowsystem + knotifications + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-23 + 15.08.1 + First Release. + Ergün Salman + poyraz76@pisilinux.org + + + + + + kmines + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Minesweeper like game + Mayın tarlası oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kmines-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kmines/pspec.xml + + + kmines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dolphin + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.application + KDE File Manager + Dolphin is the File Manager for KDE. + mirrors://kde/stable/applications/15.08.3/src/dolphin-15.08.3.tar.xz + + qt5-base-devel + qt5-phonon-devel + kio-devel + kcmutils-devel + knewstuff-devel + kinit-devel + kactivities-devel + baloo-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + baloo-widgets + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/dolphin/pspec.xml + + + dolphin + + qt5-base + knewstuff + kio + ki18n + solid + kparts + libgcc + kcodecs + kconfig + kxmlgui + kcmutils + kservice + kbookmarks + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + dolphin-devel + + dolphin + qt5-base-devel + qt5-phonon-devel + kio-devel + kcmutils-devel + knewstuff-devel + kinit-devel + kactivities-devel + baloo-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + + + /usr/include + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-31 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-23 + 14.12 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + dolphin-plugins + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.application + Extra dolphin plugins + 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/applications/15.08.3/src/dolphin-plugins-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + dolphin-devel + kio-devel + kdelibs4-support-devel + extra-cmake-modules + + desktop/kde/application/dolphin-plugins/pspec.xml + + + dolphin-plugins + + qt5-base + dolphin + kio + ki18n + libgcc + kconfig + kxmlgui + kcompletion + kcoreaddons + ktextwidgets + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-12 + 15.07.90 + First Relase unstable. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + klines + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Kolor Lines + Renkli çizgiler + 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 + http://download.kde.org/stable/applications/15.08.3/src/klines-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knewstuff-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/klines/pspec.xml + + + klines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcalcore + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + the KDE calendar access library. + A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information. + mirrors://kde/stable/applications/15.08.3/src/kcalcore-15.08.3.tar.xz + + qt5-base-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libical-devel + extra-cmake-modules + + desktop/kde/application/kcalcore/pspec.xml + + + kcalcore + + qt5-base + kcodecs + kconfig + kcoreaddons + libical + kdelibs4-support + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcalcore-devel + Development files for kcontacts + + qt5-base-devel + libical-devel + kcalcore + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kaccounts-integration + https://projects.kde.org/projects/kdereview/kaccounts-integration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + 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 + http://download.kde.org/stable/applications/15.08.3/src/kaccounts-integration-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcmutils-devel + kio-devel + ki18n-devel + kwidgetsaddons-devel + kcoreaddons-devel + kiconthemes-devel + kconfig-devel + kwallet-devel + kdbusaddons-devel + libaccounts-qt5-devel + signon-devel + + desktop/kde/application/kaccounts-integration/pspec.xml + + + kaccounts-integration + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + + kio + ki18n + libgcc + signon + kconfig + kwallet + qt5-base + kcoreaddons + kdbusaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + libaccounts-qt5 + qt5-declarative + + + /usr/share + /usr/share/kservices5 + /usr/share/doc + /usr/lib/qt5 + /usr/lib/libkaccounts.so* + + + + kaccounts-integration-devel + Development files for kaccounts-integration + + kaccounts-integration + + + /usr/include + /usr/lib/cmake/KAccounts + + + + + 2015-11-14 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkgapi + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + Google API library for KDE + A KDE-based library for accessing various Google services via their public API + mirrors://kde/stable/libkgapi/5.1.0/src/libkgapi-5.1.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcontacts-devel + kwindowsystem-devel + kio-devel + kcalcore-devel + kdoctools-devel + qt5-webkit-devel + qt5-linguist + qt5-location-devel + + desktop/kde/application/libkgapi/pspec.xml + + + libkgapi + + qt5-base + kcalcore + kcontacts + kio + libgcc + qt5-webkit + kwindowsystem + kdelibs4-support + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkgapi-devel + Development files for libkgapi + + qt5-base-devel + kcalcore-devel + kcontacts-devel + kio-devel + qt5-webkit-devel + kwindowsystem-devel + kdelibs4-support-devel + libkgapi + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-26 + 5.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-08 + 5.0.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-baseapps + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + desktop.kde.application + KDE-Baseapps: base applications from the official KDE release + Base application for KDE5 such as Dolphin, kfind, plasma-widget-folderview, konqueror etc. + http://sourceforge.net/projects/pisilinux/files/source/kde-baseapps-15.07.90_20151029.tar.xz + + qt5-base-devel + zlib-devel + glib2-devel + libX11-devel + kfilemetadata-devel + qt5-phonon-devel + kactivities-devel + libXrender-devel + libXt-devel + libraw1394-devel + mesa-devel + kdelibs4-support-devel + tidy-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesu-devel + khtml-devel + kdelibs4-support-devel + kcmutils-devel + kconfig-devel + kded-devel + kdoctools-devel + kdesignerplugin + libxslt + docbook-xsl + extra-cmake-modules + + desktop/kde/application/kde-baseapps/pspec.xml + + + kde-baseapps + + qt5-base + zlib + libX11 + libgcc + tidy + kio + kdesu + khtml + ki18n + kparts + kcodecs + kconfig + kxmlgui + karchive + kcmutils + kservice + kbookmarks + kitemviews + qt5-script + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib + /usr/share/doc + + + + kde-baseapps-devel + Development files for kde-baseapps + + kde-baseapps + tidy-devel + qt5-base-devel + zlib-devel + glib2-devel + libX11-devel + kfilemetadata-devel + qt5-phonon-devel + kactivities-devel + libXrender-devel + libXt-devel + libraw1394-devel + mesa-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesu-devel + khtml-devel + kcmutils-devel + kconfig-devel + kded-devel + kdoctools-devel + + + /usr/include + /usr/lib/cmake + + + + + 2015-11-01 + 15.07.90_20151029 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-08-31 + 15.07.90_20150729 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-03 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kldap + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + LDAP access API for KDE + Allows LDAP accessing with a convenient Qt style C++ API. + mirrors://kde/stable/applications/15.08.3/src/kldap-15.08.3.tar.xz + + qt5-base-devel + kcompletion-devel + ki18n-devel + openldap-client + cyrus-sasl-devel + extra-cmake-modules + + desktop/kde/application/kldap/pspec.xml + + + kldap + + qt5-base + kcompletion + ki18n + libgcc + cyrus-sasl + openldap-client + kwidgetsaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kldap-devel + Development files for kdelibs4-support + + qt5-base-devel + kldap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kcalutils + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + The KDE calendar utility library + Calendar utility library for KDE + mirrors://kde/stable/applications/15.08.3/src/kcalutils-15.08.3.tar.xz + + qt5-base-devel + kcalcore-devel + kidentitymanagement-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/kcalutils/pspec.xml + + + kcalutils + + qt5-base + kcalcore + kidentitymanagement + ki18n + libgcc + kcodecs + kconfig + kcoreaddons + kiconthemes + kwidgetsaddons + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcalutils-devel + Development files for kcalutils + + qt5-base-devel + kcalutils + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkdcraw + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + A C++ interface around LibRaw library + 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. + http://source.pisilinux.org/1.0/libkdcraw-15.07.90_20150715.tar.xz + + qt5-base-devel + kdoctools-devel + libraw-devel + kconfig-devel + ki18n-devel + cmake + extra-cmake-modules + + desktop/kde/application/libkdcraw/pspec.xml + + + libkdcraw + + qt5-base + libraw + kconfig + ki18n + libgcc + + + /usr/lib + /usr/bin + /usr/share/icons + /usr/share/ + + + + libkdcraw-devel + Development files for libkdcraw + libkdcraw için geliştirme dosyaları + + libkdcraw + qt5-base-devel + libraw-devel + kconfig-devel + ki18n-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/apps/cmake + + + + + 2015-08-13 + 15.07.90_p1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kruler + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A screen ruler and color measurement tool + Ekran cetveli ve renk ölçüm aracı + KRuler is a screen ruler and color measurement tool. + KRuler, bir ekran cetveli ve renk ölçüm aracıdır. + kruler + mirrors://kde/stable/applications/15.08.3/src/kruler-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + knotifications-devel + kwindowsystem-devel + kxmlgui-devel + python-devel + docbook-xsl + + desktop/kde/application/kruler/pspec.xml + + + kruler + + qt5-base + kxmlgui + knotifications + ki18n + libgcc + libxcb + kconfig + kcoreaddons + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdeedu-data + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.application + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/application/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libkexiv2 + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + An Exiv2 wrapper library + 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/unstable/applications/15.11.80/src/libkexiv2-15.11.80.tar.xz + + extra-cmake-modules + cmake + exiv2-devel + qt5-base-devel + + desktop/kde/application/libkexiv2/pspec.xml + + + libkexiv2 + + qt5-base + exiv2-libs + + + /usr/lib + /usr/bin + + + + libkexiv2-devel + Development files for libkexiv2 + libkexiv2 için geliştirme dosyaları + + libkexiv2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-26 + 5.11.80 + First Release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdiamond + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Three in a row game + Bir satırda üç oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kdiamond-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + knotifications-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kdiamond/pspec.xml + + + kdiamond + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2015-11-17 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-contact-list + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Telepathy contact list application + KDE Telepathy contact list application + http://download.kde.org/stable/applications/15.08.3/src/ktp-contact-list-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kio-devel + kcmutils-devel + knotifications-devel + kwindowsystem-devel + knotifyconfig-devel + ki18n-devel + kiconthemes-devel + kxmlgui-devel + kpeople-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + + desktop/kde/application/ktp-contact-list/pspec.xml + + + ktp-contact-list + KDE Telepathy contact list application + + ki18n + libgcc + kconfig + kpeople + kxmlgui + kservice + qt5-base + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/dbus-1 + /usr/share/applications + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + katomic + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Sokoban like logic game + Sokoban benzeri mantık oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/katomic-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/katomic/pspec.xml + + + katomic + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-15 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + knetwalk + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Network construction game + Ağ yapılandırma oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/knetwalk-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/knetwalk/pspec.xml + + + knetwalk + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksnapshot + http://kde.org/applications/graphics/ksnapshot + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A screen capture utility + Ekran görüntüsü yakalama aracı + ksnapshot is a screen capture utility. + ksnapshot bir ekran görüntüsü yakalama aracıdır. + ksnapshot + http://source.pisilinux.org/1.0/ksnapshot-15.04.3_20150731.tar.gz + + qt5-base-devel + libkipi-devel + kdoctools-devel + kio-devel + kparts-devel + libX11-devel + libxcb-devel + docbook-xsl + cmake + extra-cmake-modules + + desktop/kde/application/ksnapshot/pspec.xml + + + ksnapshot + + qt5-base + libkipi + kio + ki18n + libX11 + libgcc + libxcb + kconfig + kxmlgui + kservice + kcoreaddons + kdbusaddons + kjobwidgets + kwindowsystem + qt5-x11extras + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/dbus-1 + /usr/share/applications + + + + + 2015-08-01 + 15.04.3_20150731 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + konversation + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + A user friendly IRC client for KDE + Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. + mirrors://kde/stable/konversation/1.6/src/konversation-1.6.tar.xz + + qt5-base-devel + qt5-phonon-devel + extra-cmake-modules + kdoctools-devel + kitemviews-devel + kbookmarks-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kemoticons-devel + ki18n-devel + kidletime-devel + knotifyconfig-devel + kio-devel + kparts-devel + solid-devel + sonnet-devel + kwallet-devel + kwidgetsaddons-devel + kglobalaccel-devel + kdbusaddons-devel + knotifications-devel + kwindowsystem-devel + kiconthemes-devel + karchive-devel + qca2-qt5-devel + python3-devel + gettext-devel + docbook-xsl + + desktop/kde/application/konversation/pspec.xml + + + konversation + + qt5-base + qca2-qt5 + kemoticons + kidletime + knotifyconfig + kparts + kio + libgcc + ki18n + sonnet + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kbookmarks + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2015-08-29 + 1.6.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + bomber + https://www.kde.org/applications/games/bomber/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.application + 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/applications/15.08.3/src/bomber-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/bomber/pspec.xml + + + bomber + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + qt5-phonon + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/appdata + /usr/share/applications + /usr/share + /usr/share/bomber + /usr/share/config.kcfg + /usr/share/icons + /usr/share/doc + /usr/share/kxmlgui5 + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + dragonplayer + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Multimedia player + a multimedia player where the focus is on simplicity, instead of features. + mirrors://kde/stable/applications/15.08.3/src/dragon-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kio-devel + kparts-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/application/dragonplayer/pspec.xml + + + dragonplayer + + qt5-base + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + qt5-phonon + kcoreaddons + kdbusaddons + kjobwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kparts + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 15.07.80 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-servicemenu-rootactions + http://www.kde-apps.org/content/show.php?content=48411 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Root actions servicemenu for Dolphin + Dolphin için yetkili kullanıcı eylemleri menüsü + kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. + kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. + dolphin + http://kde-apps.org/CONTENT/content-files/48411-rootactions_servicemenu_2.8.1.tar.gz + desktop/kde/application/kde-servicemenu-rootactions/pspec.xml + + + kde-servicemenu-rootactions + + /usr/bin + /usr/share/kservices5 + /usr/share/doc + + + + + 2014-05-30 + 2.8.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-09 + 2.8.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-20 + 2.7.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kiriki + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Yahtzee like dice game + Yahtzee benzeri zar oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kiriki-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kiriki/pspec.xml + + + kiriki + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + kiconthemes + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-19 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + rocs + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + 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/applications/15.08.3/src/rocs-15.08.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + qt5-webkit-devel + qt5-base-devel + qt5-xmlpatterns-devel + extra-cmake-modules + kdoctools-devel + kdeclarative-devel + ki18n-devel + gettext-devel + kitemviews-devel + ktexteditor-devel + kxmlgui-devel + kconfig-devel + karchive-devel + kcompletion-devel + kcoreaddons-devel + ktexteditor-devel + kconfigwidgets-devel + kxmlgui-devel + kwidgetsaddons-devel + karchive-devel + cmake + qt5-location-devel + grantlee-qt5-devel + gettext-devel + boost-devel + + desktop/kde/application/rocs/pspec.xml + + + rocs + + qt5-base + qt5-script + qt5-declarative + qt5-xmlpatterns + qt5-webkit + grantlee-qt5 + kdeclarative + ktexteditor + kparts + libgcc + ki18n + kconfig + karchive + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + karchive + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kwidgetsaddons + kxmlgui + kitemviews + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + rocs-devel + Development files for rocs + + rocs + + + /usr/include + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-29 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ktp-filetransfer-handler + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Telepathy file transfer handler + KDE Telepathy file transfer handler + http://download.kde.org/stable/applications/15.08.3/src/ktp-filetransfer-handler-15.08.3.tar.xz + + extra-cmake-modules + kcoreaddons-devel + ki18n-devel + kio-devel + kconfig-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-filetransfer-handler/pspec.xml + + + ktp-filetransfer-handler + KDE Telepathy file transfer handler + + kio + ki18n + libgcc + kconfig + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ktp-approver + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KDE Channel Approver for Telepathy + KDE Channel Approver for Telepathy + http://download.kde.org/stable/applications/15.08.3/src/ktp-approver-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kconfig-devel + ki18n-devel + knotifications-devel + kservice-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-approver/pspec.xml + + + ktp-approver + + ki18n + libgcc + kconfig + kservice + qt5-base + kcoreaddons + kdbusaddons + telepathy-qt5 + knotifications + + + /etc + /usr/lib + /usr/share + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/dbus-1 + /usr/share/doc + + + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kaccounts-providers + https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + 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 + http://download.kde.org/stable/applications/15.08.3/src/kaccounts-providers-15.08.3.tar.xz + + extra-cmake-modules + intltool + kaccounts-integration-devel + qt5-declarative-devel + qt5-base-devel + kcoreaddons-devel + libaccounts-qt5-devel + libaccounts-glib-devel + signon-devel + + desktop/kde/application/kaccounts-providers/pspec.xml + + + kaccounts-providers + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, +Jabber and others + + kaccounts-integration + libaccounts-glib + + + /etc + /usr/share + /usr/share/doc + + + + + 2015-11-15 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kmime + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + KDE library for handling mail messages and newsgroup articles. + Kmime library for handling mail messages and newsgroup articles. + mirrors://kde/stable/applications/15.08.3/src/kmime-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + kdelibs4-support-devel + + desktop/kde/application/kmime/pspec.xml + + + kmime + + qt5-base + ki18n + kcodecs + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmime-devel + Development files for kmime + + qt5-base-devel + kmime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kde-dev-scripts + https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Scripts and setting files useful during development of KDE software + Scripts and setting files useful during development of KDE software + http://download.kde.org/stable/applications/15.08.3/src/kde-dev-scripts-15.08.3.tar.xz + + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + + desktop/kde/application/kde-dev-scripts/pspec.xml + + + kde-dev-scripts + Scripts and setting files useful during development of KDE software + + qt5-base + kdoctools + kdelibs4-support + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-11-16 + 15.08.3 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ksquares + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Connect the dots to create squares + Noktaları birleştirerek kare yapma oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/ksquares-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/ksquares/pspec.xml + + + ksquares + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + okular + http://okular.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + A document viewer + Belge gösterici + Okular is a document viewer. + Okular bir belge göstericidir. + okular + http://sourceforge.net/projects/pisilinux/files/source/okular-15.08.02_20151104.tar.xz + + qt5-base-devel + qt5-declarative-devel + kjs-devel + qca2-qt5-devel + tiff-devel + kdelibs4-support-devel + qt5-phonon-devel + poppler-qt5-devel + ebook-tools-devel + libkexiv2-devel + kdoctools-devel + threadweaver-devel + kdesignerplugin + khtml-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kactivities-devel + libkscreen-devel + libspectre-devel + djvu-devel + kpty-devel + extra-cmake-modules + + desktop/kde/application/okular/pspec.xml + + + okular + app:gui + + qt5-base + qca2-qt5 + tiff + libkexiv2 + poppler-qt5 + ebook-tools + kactivities + libjpeg-turbo + kdelibs4-support + khtml + kpty + kio + kjs + zlib + ki18n + kparts + libgcc + kcodecs + kconfig + kwallet + kxmlgui + qt5-svg + freetype + karchive + kservice + kbookmarks + kitemviews + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + threadweaver + kwindowsystem + kconfigwidgets + kwidgetsaddons + qt5-declarative + djvu + libspectre + qt5-phonon + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share + + + + okular-devel + Development files for okular + Okular için geliştirme dosyaları + + okular + + + /usr/include + /usr/lib/cmake + + + + + 2015-11-05 + 15.08.02_20151104 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kollision + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A simple ball dodging game + Basit bir top sıçratma oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kollision-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kollision/pspec.xml + + + kollision + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-20 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + konsole + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.application + KDE Konsole + Konsole for KDE5 + mirrors://kde/stable/applications/15.08.3/src/konsole-15.08.3.tar.xz + + qt5-base-devel + qt5-script-devel + kpty-devel + kio-devel + kinit-devel + knotifyconfig-devel + kparts-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + docbook-xsl + extra-cmake-modules + kdoctools-devel + cmake + + desktop/kde/application/konsole/pspec.xml + + + konsole + + libgcc + qt5-base + kdelibs4-support + kiconthemes + knotifyconfig + knotifications + kparts + kpty + kio + ki18n + kconfig + kxmlgui + kservice + kbookmarks + kguiaddons + kcompletion + kcoreaddons + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/lib + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-19 + 15.08.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-05 + 15.04.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ktp-contact-runner + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + KRunner plugin for KDE Telepathy + KRunner plugin for KDE Telepathy + http://download.kde.org/stable/applications/15.08.3/src/ktp-contact-runner-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kservice-devel + krunner-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/application/ktp-contact-runner/pspec.xml + + + ktp-contact-runner + KRunner plugin for KDE Telepathy + + ki18n + libgcc + krunner + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2015-11-23 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + akonadi-search + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + Libraries and daemons to implement searching in Akonadi + Libraries and daemons to implement searching in Akonadi + akonadi + mirrors://kde/stable/applications/15.08.3/src/akonadi-search-15.08.3.tar.xz + + qt5-base-devel + kcrash-devel + kconfig-devel + ki18n-devel + akonadi-devel + kcontacts-devel + kmime-devel + kjobwidgets-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdelibs4-support-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kcalcore-devel + libical-devel + kdesignerplugin + kcompletion-devel + kdepimlibs-devel + boost-devel + xapian-core-devel + kdoctools-devel + extra-cmake-modules + + desktop/kde/application/akonadi-search/pspec.xml + + + akonadi-search + app:console + + qt5-base + ki18n + kmime + libgcc + kcodecs + kconfig + kcalcore + kcontacts + kdepimlibs + kcoreaddons + xapian-core + kdelibs4-support + + + /etc/akonadi + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/config + /usr/share/mime + /usr/share/kde4 + /usr/share/doc/ + /usr/share/akonadi + + + + akonadi-search-devel + Development files for akonadi + + akonadi-search + qt5-base-devel + ki18n-devel + kmime-devel + kcodecs-devel + kconfig-devel + kcalcore-devel + kcontacts-devel + kdepimlibs-devel + kcoreaddons-devel + xapian-core-devel + kdelibs4-support-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kcron + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Graphical task scheduler + Görev zamanlayıcı arayüzü. + 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 + http://download.kde.org/stable/applications/15.08.3/src/kcron-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kdoctools-devel + kiconthemes-devel + kio-devel + kxmlgui-devel + kiconthemes-devel + kiconthemes-devel + kiconthemes-devel + + desktop/kde/application/kcron/pspec.xml + + + kcron + + kio + ki18n + libgcc + qt5-base + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + + + kdeadmin + + + kdeadmin + + + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-03 + 4.11.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + yakuake + http://extragear.kde.org/apps/yakuake + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Very powerful Quake style Konsole for KDE4 + KDE5 için Quake tarzı oldukça güçlü bir Konsole + The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. + İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. + yakuake + http://source.pisilinux.org/1.0/yakuake-2.9.9_20150703.tar.gz + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + knewstuff-devel + kio-devel + kparts-devel + knotifyconfig-devel + extra-cmake-modules + + desktop/kde/application/yakuake/pspec.xml + + + yakuake + + qt5-base + qt5-x11extras + kio + ki18n + kparts + kconfig + kxmlgui + karchive + kservice + knewstuff + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + knotifyconfig + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libX11 + libgcc + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/locale + /usr/share/doc + + + yakuake.notifyrc + + + + + 2015-08-01 + 2.9.9_20150703 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kross-interpreters + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/applications/15.08.3/src/kross-interpreters-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + kross-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + python-devel + + desktop/kde/application/kross-interpreters/pspec.xml + + + kross-interpreters + + qt5-base + libgcc + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-25 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-29 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + killbots + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Run for your life + Hayatta kalmak için kaçın + 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 + http://download.kde.org/stable/applications/15.08.3/src/killbots-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + kcompletion-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/killbots/pspec.xml + + + killbots + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-18 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kblocks + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Falling blocks game + Tetris + 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 + http://download.kde.org/stable/applications/15.08.3/src/kblocks-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kdoctools-devel + ki18n-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kemoticons-devel + + desktop/kde/application/kblocks/pspec.xml + + + kblocks + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + qt5-phonon + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kidentitymanagement + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.application + KDE PIM libraries + Library for the KDE-PIM(Personal-Infomation-Management + mirrors://kde/stable/applications/15.08.3/src/kidentitymanagement-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kpimtextedit-devel + kio-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwidgetsaddons-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + extra-cmake-modules + + desktop/kde/application/kidentitymanagement/pspec.xml + + + kidentitymanagement + + qt5-base + kpimtextedit + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcompletion + kcoreaddons + ktextwidgets + kwidgetsaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidentitymanagement-devel + Development files for kidentitymanagement + + qt5-base-devel + kpimtextedit-devel + kidentitymanagement + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + khangman + http://edu.kde.org/applications/all/khangman + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KHangMan is a game for kids based on the well-known hangman game + Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu + 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/applications/15.08.3/src/khangman-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kcrash-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + knotifications-devel + kxmlgui-devel + kwidgetsaddons-devel + kio-devel + qt5-svg-devel + qt5-declarative-devel + extra-cmake-modules + mesa-devel + libkeduvocdocument-devel + + desktop/kde/application/khangman/pspec.xml + + + khangman + + qt5-base + kdeclarative + knewstuff + ki18n + kwidgetsaddons + kconfig + kcoreaddons + kxmlgui + qt5-declarative + libkeduvocdocument + libgcc + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-24 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kholidays + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + KDE library for regional holiday information + KDE library for regional holiday information + mirrors://kde/stable/applications/15.08.3/src/kholidays-15.08.3.tar.xz + + qt5-base-devel + kitemviews-devel + kdoctools-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + extra-cmake-modules + + desktop/kde/application/kholidays/pspec.xml + + + kholidays + + qt5-base + kdelibs4-support + ki18n + libgcc + kitemviews + kcompletion + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kholidays-devel + Development files for kdelibs4-support + + qt5-base-devel + kholidays + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + akonadi + http://pim.kde.org/akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.application + PIM (Personal Information Management) Storage Service + PIM (Kişisel Bilgi Yönetimi) Depolama Servisi + 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/applications/15.08.3/src/akonadi-15.08.3.tar.xz + + qt5-base-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + sqlite-devel + shared-mime-info + mariadb-client + mariadb-server + postgresql-server + libxslt-devel + boost-devel + extra-cmake-modules + + desktop/kde/application/akonadi/pspec.xml + + + akonadi + app:console + + qt5-base + sqlite + libgcc + mariadb-client + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/mime + /usr/share/kf5 + /usr/share/doc/ + + + + akonadi-devel + Development files for akonadi + akonadi için geliştirme dosyaları + + akonadi + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-21 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-15 + 1.13.0 + Rebuild + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-21 + 1.13.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 1.12.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-24 + 1.12.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-18 + 1.11.0 + Dep fixed. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-13 + 1.11.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 1.10.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-06 + 1.10.3 + Version bump. + Fix crash when there are no flags to update during flags change + Fix crash on Akonadi shutdown when using PostgreSQL + Fix notification to clients about database upgrade + Send dummy requests to MySQL from time to time to keep the connection alive + Bug #277839 – Fix problem with too long socket paths + Bug #323977 – Check minimum MySQL version at runtime + Bug #252120, Bug #322931 – Use text instead of bytea column type for QString in PostgreSQL + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-18 + 1.10.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-11 + 1.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-10 + 1.9.80 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-03 + 1.9.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-08 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-08 + 1.9.0 + First release + Idris Kalp + yaralikurt15@hotmail.com + + + + + + kalarmcal + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Library to provides access and handling of KAlarm calendar data + Library to provides access and handling of KAlarm calendar data + mirrors://kde/stable/applications/15.08.3/src/kalarmcal-15.08.3.tar.xz + + qt5-base-devel + akonadi-devel + kcalcore-devel + kidentitymanagement-devel + kdepimlibs-devel + boost-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdoctools-devel + libical-devel + kholidays-devel + extra-cmake-modules + + desktop/kde/application/kalarmcal/pspec.xml + + + kalarmcal + + qt5-base + kcalcore + kholidays + kidentitymanagement + ki18n + libgcc + kdepimlibs + kdelibs4-support + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kalarmcal-devel + Development files for kalarmcal + + qt5-base-devel + kalarmcal + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-23 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kbounce + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + Ball bouncing game + Top zıplatma oyunu + 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 + http://download.kde.org/stable/applications/15.08.3/src/kbounce-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/kbounce/pspec.xml + + + kbounce + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2015-11-16 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-11-13 + 4.14.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-15 + 4.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-20 + 4.14.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-21 + 4.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-13 + 4.13.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-13 + 4.13.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-03 + 4.13.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-05 + 4.12.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-04 + 4.12.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-06 + 4.12.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-13 + 4.11.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-03 + 4.11.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 4.11.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 4.11.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 4.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-02 + 4.10.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-10 + 4.10.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-06 + 4.10.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-03 + 4.10.2 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-06 + 4.10.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-15 + 4.10.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-19 + 4.9.98 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-auth-handler + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.application + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + http://download.kde.org/stable/applications/15.08.3/src/ktp-auth-handler-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + kwidgetsaddons-devel + ki18n-devel + kio-devel + kdewebkit-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + qca2-qt5-devel + libaccounts-qt5-devel + kaccounts-integration-devel + signon-devel + + desktop/kde/application/ktp-auth-handler/pspec.xml + + + ktp-auth-handler + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + + kio + ki18n + libgcc + signon + kconfig + qca2-qt5 + qt5-base + kcoreaddons + telepathy-qt5 + kwidgetsaddons + libaccounts-qt5 + ktp-common-internals + kaccounts-integration + + + /usr/lib + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/doc + + + + + 2015-11-22 + 15.08.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkipi + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.application + Common plugin infrastructure for KDE image applications + 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. + http://source.pisilinux.org/1.0/libkipi-15.04.3_20150731.tar.gz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + cmake + extra-cmake-modules + + desktop/kde/application/libkipi/pspec.xml + + + libkipi + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + + + + libkipi-devel + Development files for libkipi + libkipi için geliştirme dosyaları + + libkipi + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-01 + 15.04.3_20150731 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + baloo-widgets + http://www.kde.org + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/applications/15.08.3/src/baloo-widgets-15.08.3.tar.xz + + baloo-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kfilemetadata-devel + kinit-devel + kio-devel + kitemmodels-devel + kunitconversion-devel + qt5-base-devel + + desktop/kde/application/baloo-widgets/pspec.xml + + + baloo-widgets + Development files for baloo-widgets + + baloo + kconfig + kcoreaddons + kfilemetadata + ki18n + kio + kwidgetsaddons + libgcc + qt5-base + + + /etc + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/locale + + + + baloo-widgets-devel + Development files for baloo-widgets + + baloo-widgets + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-28 + 15.08.0 + First Release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + step + http://kde.org/applications/education/step/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.application + Interactive Physical Simulator + Step is an interactive physical simulator. It allows you to explore the physical world through simulations. + mirrors://kde/stable/applications/15.08.3/src/step-15.08.3.tar.xz + + qt5-base-devel + qt5-quick1-devel + qt5-svg-devel + qt5-declarative-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + mesa-devel + khtml-devel + kconfig-devel + kdelibs4-support-devel + knewstuff-devel + kplotting-devel + eigen3 + pkgconfig + libqalculate-devel + cln-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/application/step/pspec.xml + + + step + + qt5-base + cln + gsl + khtml + knewstuff + kplotting + libqalculate + kparts + kio + libgcc + kdelibs4-support + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + kservice + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-19 + 15.08.2 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdenlive + http://www.kdenlive.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + A video editing GUI for KDE4 using the MLT video framework + MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması + Nieliniowy edytor wideo + Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. + 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. + http://download.kde.org/stable/applications/15.08.3/src/kdenlive-15.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-script-devel + qt5-svg-devel + karchive-devel + kbookmarks-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + kio-devel + kwidgetsaddons-devel + kplotting-devel + knotifyconfig-devel + knewstuff-devel + kxmlgui-devel + knotifications-devel + kguiaddons-devel + ktextwidgets-devel + kiconthemes-devel + kdoctools-devel + mlt-devel + qt5-declarative-devel + + desktop/kde/application/kdenlive/pspec.xml + + + kdenlive + + kio + mlt + ki18n + solid + libgcc + kconfig + kxmlgui + qt5-svg + karchive + kservice + qt5-base + knewstuff + kplotting + kbookmarks + kguiaddons + kitemviews + qt5-script + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man + + + + + 2015-11-17 + 15.08.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-04-06 + 0.9.10 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-18 + 0.9.8 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-26 + 0.9.6 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-04-08 + 0.9.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-29 + 0.9.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-03 + 0.9.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kalgebra + http://edu.kde.org/applications/mathematics/kalgebra + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.application + A graph calculator + Bir grafiksel hesap makinesi + 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/applications/15.08.3/src/kalgebra-15.08.3.tar.xz + + mesa-devel + mesa-glu-devel + qt5-base-devel + qt5-quick1-devel + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel + analitza-devel + kdoctools-devel + ncurses-devel + readline-devel + gettext-devel + ki18n-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kio-devel + extra-cmake-modules + + desktop/kde/application/kalgebra/pspec.xml + + + kalgebra + + qt5-base + qt5-declarative + qt5-webkit + qt5-location + analitza + libgcc + kconfig + kxmlgui + readline + kcoreaddons + ki18n + kconfigwidgets + kwidgetsaddons + kio + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-22 + 15.08.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kimap + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.application + Job-based API for interacting with IMAP servers + API for interacting with IMAP servers + mirrors://kde/stable/applications/15.08.3/src/kimap-15.08.3.tar.xz + + qt5-base-devel + kdoctools-devel + kmime-devel + boost-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + cyrus-sasl-devel + kunitconversion-devel + extra-cmake-modules + + desktop/kde/application/kimap/pspec.xml + + + kimap + + qt5-base + kmime + kio + ki18n + libgcc + kcodecs + cyrus-sasl + kcoreaddons + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kimap-devel + Development files for kimap + + qt5-base-devel + kimap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-22 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmix + http://kde.org/applications/multimedia/kmix/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.application + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer. + kmix + mirrors://kde/stable/applications/15.08.3/src/kmix-15.08.3.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + ki18n-devel + kcmutils-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + libcanberra-devel + glib2-devel + alsa-lib-devel + kglobalaccel-devel + extra-cmake-modules + cmake + + desktop/kde/application/kmix/pspec.xml + + + kmix + + qt5-base + alsa-lib + libcanberra + pulseaudio-libs + kdelibs4-support + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libgcc + + + /etc + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/include + /usr/bin + + + + + 2015-11-10 + 15.08.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-14 + 15.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-16 + 15.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-08-20 + 15.08.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-13 + 15.04.3 + First Release. + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kmediaplayer + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + KDE5 media player Plugin interface for media player features + KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. + mirrors://kde/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz + + qt5-base-devel + kio-devel + kauth-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/porting-aids/kmediaplayer/pspec.xml + + + kmediaplayer + + qt5-base + libgcc + kparts + kxmlgui + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmediaplayer-devel + Development files for kmediaplayer + + kmediaplayer + qt5-base-devel + kparts-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kross + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + KDE5 application scripting helper + Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. + mirrors://kde/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz + + qt5-base-devel + qt5-script-devel + kcoreaddons-devel + kdoctools-devel + kconfigwidgets-devel + ktextwidgets-devel + kparts-devel + sonnet-devel + kauth-devel + ki18n-devel + kcompletion-devel + kiconthemes-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + kxmlgui-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kross/pspec.xml + + + kross + + qt5-base + qt5-script + libgcc + kcoreaddons + ki18n + kcompletion + kiconthemes + kio + kparts + kwidgetsaddons + kxmlgui + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kross-devel + Development files for kross + + kross + qt5-base-devel + qt5-script-devel + kcoreaddons-devel + ki18n-devel + kcompletion-devel + kiconthemes-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + krunner + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + Krunner Framework for providing different actions given a string query + Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. + mirrors://kde/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz + + qt5-base-devel + gettext-devel + kdoctools-devel + qt5-declarative-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel + extra-cmake-modules + + desktop/kde/porting-aids/krunner/pspec.xml + + + krunner + + qt5-base + qt5-declarative + libgcc + kconfig + kcoreaddons + ki18n + kio + kservice + plasma-framework + solid + threadweaver + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + krunner-devel + Development files for krunner + + krunner + qt5-base-devel + qt5-declarative-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + plasma-framework-devel + solid-devel + threadweaver-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kjsembed + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.porting-aids + JavaScript support for HTML rendering engine on KDE5 + The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. + mirrors://kde/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-designer-devel + kdoctools-devel + ki18n-devel + kjs-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kjsembed/pspec.xml + + + kjsembed + + qt5-base + qt5-svg + libgcc + ki18n + kjs + + + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kjsembed-devel + Development files for kjsembed + + qt5-base-devel + qt5-svg-devel + ki18n-devel + kjs-devel + kjsembed + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + khtml + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + HTML rendering engine for KDE + KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. + mirrors://kde/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz + + qt5-base-devel + libjpeg-turbo-devel + giflib-devel + libpng-devel + qt5-phonon-devel + libX11-devel + zlib-devel + kio-devel + kjs-devel + kglobalaccel-devel + kauth-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + openssl-devel + extra-cmake-modules + + desktop/kde/porting-aids/khtml/pspec.xml + + + khtml + + qt5-base + qt5-x11extras + qt5-phonon + zlib + openssl + giflib + libX11 + libgcc + libpng + libjpeg-turbo + sonnet + kcodecs + kconfig + kjobwidgets + kwidgetsaddons + kcompletion + karchive + kconfigwidgets + kcoreaddons + kglobalaccel + ki18n + kiconthemes + kio + kjs + knotifications + kparts + kservice + ktextwidgets + kwallet + kwindowsystem + kxmlgui + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + khtml-devel + Development files for khtml + + khtml + qt5-base-devel + qt5-x11extras-devel + qt5-phonon-devel + zlib-devel + openssl-devel + giflib-devel + libX11-devel + libpng-devel + libjpeg-turbo-devel + sonnet-devel + kcodecs-devel + kconfig-devel + kjobwidgets-devel + kwidgetsaddons-devel + kcompletion-devel + karchive-devel + kconfigwidgets-devel + kcoreaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kio-devel + kjs-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kwallet-devel + kwindowsystem-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kjs + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + JavaScript engine for KDE + This library provides an ECMAScript compatible interpreter. The ECMA standard is based on well known scripting languages such as Netscape's JavaScript and Microsoft's JScript. + mirrors://kde/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz + + qt5-base-devel + libpcre-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kjs/pspec.xml + + + kjs + + qt5-base + libgcc + libpcre + + + /usr/bin + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + kjs-devel + Development files for kjs + + libpcre-devel + qt5-base-devel + kjs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-02 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kross-interpreters + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.porting-aids + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/applications/15.08.0/src/kross-interpreters-15.08.0.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kross-devel + kunitconversion-devel + python-devel + + desktop/kde/porting-aids/kross-interpreters/pspec.xml + + + kross-interpreters + + qt5-base + libgcc + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2015-08-29 + 15.08.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + kdelibs4-support + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.porting-aids + Code and utilities to ease the transition to KDE Frameworks 5 + KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 + mirrors://kde/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz + + qt5-base-devel + qt5-svg-devel + perl-URI + libSM-devel + docbook-xml + openssl-devel + libX11-devel + kio-devel + kauth-devel + kcrash-devel + kdesignerplugin + intltool + kdoctools-devel + kglobalaccel-devel + kguiaddons-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + kunitconversion-devel + NetworkManager-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/porting-aids/kdelibs4-support/pspec.xml + + + kdelibs4-support + + qt5-base + libICE + libgcc + libX11 + qt5-svg + qt5-x11extras + libSM + kauth + solid + kcodecs + kcoreaddons + kjobwidgets + kcompletion + kconfig + kconfigwidgets + kcrash + kdbusaddons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + knotifications + kparts + kservice + ktextwidgets + kxmlgui + kwindowsystem + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kdelibs4-support-devel + Development files for kdelibs4-support + + kdelibs4-support + qt5-base-devel + libICE-devel + libX11-devel + qt5-svg-devel + qt5-x11extras-devel + libSM-devel + kauth-devel + solid-devel + kcodecs-devel + kcoreaddons-devel + kjobwidgets-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knotifications-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kxmlgui-devel + kwindowsystem-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-12 + 5.17.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-13 + 5.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-11 + 5.15.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-13 + 5.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-17 + 5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-28 + 5.11.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-01 + 5.10.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon-backend-vlc + http://gitorious.org/phonon/phonon-vlc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.phonon + VLC Backend for qt5-phonon + phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. + mirrors://kde/stable/phonon/phonon-backend-vlc/0.8.2/src/phonon-backend-vlc-0.8.2.tar.xz + + qt5-base-devel + qt5-phonon-devel + pulseaudio + vlc-devel + + desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml + + + qt5-phonon-backend-vlc + + libgcc + qt5-base + qt5-phonon + vlc-libs + + + /usr/lib + /usr/lib/qt5 + /usr/share/kde4/services + /usr/share/doc + + + + + 2015-02-23 + 0.8.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon + http://phonon.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.phonon + Cross platform multimedia API for KDE4 using QT5 + Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. + mirrors://kde/stable/phonon/4.8.3/src/phonon-4.8.3.tar.xz + + qt5-base-devel + qt5-designer-devel + qt5-quick1-devel + alsa-lib-devel + gst-plugins-base-devel + pulseaudio-libs-devel + gstreamer-devel + cmake + mesa-devel + + + qt-5.4.2.patch + + desktop/kde/phonon/qt5-phonon/pspec.xml + + + qt5-phonon + + libgcc + qt5-base + qt5-designer + qt5-quick1 + pulseaudio-libs + + + /usr/lib/libphonon* + /usr/lib/qt5 + /usr/share/dbus-1 + + + + qt5-phonon-devel + Development files for phonon-qt5 + + qt5-phonon + qt5-base-devel + qt5-designer-devel + pulseaudio-libs-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/share/phonon4qt5 + + + + + 2015-08-13 + 4.8.3 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon-backend-gstreamer + http://phonon.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.kde.phonon + GStreamer qt5-phonon backend + Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. + mirrors://kde/stable/phonon/phonon-backend-gstreamer/4.8.2/src/phonon-backend-gstreamer-4.8.2.tar.xz + + qt5-base-devel + qt5-phonon-devel + gstreamer-devel + gstreamer-next-devel + gst-plugins-base-devel + gst-plugins-base-next-devel + mesa-devel + libxml2-devel + cmake + + desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml + + + qt5-phonon-backend-gstreamer + + qt5-base + qt5-phonon + mesa + glib2 + libgcc + gstreamer-next + gst-plugins-base-next + + + /usr/lib + /usr/lib/qt5 + /usr/share + + + + + 2015-08-18 + 4.8.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + milou + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDedicated search application built on top of Baloo + Dedicated search application built on top of Baloo + mirrors://kde/stable/plasma/5.5.1/milou-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative + kdoctools-devel + kdeclarative-devel + ki18n-devel + krunner-devel + plasma-framework-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/plasma/milou/pspec.xml + + + milou + + qt5-base + qt5-declarative + krunner + libgcc + kconfig + kservice + kcoreaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kgamma5 + https://projects.kde.org/kgamma5 + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Adjust your monitor's gamma settings. + Adjust your monitor's gamma settings. + mirrors://kde/stable/plasma/5.5.1/kgamma5-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + qt5-x11extras-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libXxf86vm-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kgamma5/pspec.xml + + + kgamma5 + + qt5-base + kconfig + libgcc + libX11 + ki18n + kcoreaddons + kconfigwidgets + kdelibs4-support + libXxf86vm + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kwayland + http://www.kde.org + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Qt-style Client and Server library wrapper for the Wayland libraries + Qt-style Client and Server library wrapper for the Wayland libraries + mirrors://kde/stable/plasma/5.5.1/kwayland-5.5.1.tar.xz + + qt5-base-devel + wayland-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/kwayland/pspec.xml + + + kwayland + + libgcc + qt5-base + mesa + wayland-client + wayland-server + + + /etc/xdg + /usr/lib + /usr/share/config + /usr/share/doc + + + + kwayland-devel + + qt5-base-devel + wayland-devel + mesa-devel + kwayland + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sddm-kcm + https://projects.kde.org/projects/kde/workspace/sddm-kcm + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + KDE5 Config Module for SDDM + KDE5 Config Module for SDDM + mirrors://kde/stable/plasma/5.5.1/sddm-kcm-5.5.1.tar.xz + + kcoreaddons-devel + kdoctools-devel + kconfigwidgets-devel + kauth-devel + libX11-devel + kxmlgui-devel + ki18n-devel + qt5-base-devel + kio-devel + qt5-declarative-devel + qt5-x11extras-devel + kconfig-devel + mesa-devel + docutils + libXcursor-devel + xcb-util-image-devel + extra-cmake-modules + + desktop/kde/plasma/sddm-kcm/pspec.xml + + + sddm-kcm + + kcoreaddons + sddm + libgcc + libX11 + kconfigwidgets + kauth + ki18n + qt5-base + kio + libXcursor + kconfig + qt5-x11extras + qt5-declarative + + + /etc/dbus-1/system.d + /usr/share/dbus-1/system-services + /usr/share/kservices5 + /usr/share/ + /usr/share/polkit-1/actions + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5/plugins + /usr/lib/libexec/kauth + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-16 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-desktop + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 plasma workspace + This package contains the basic packages for a Plasma workspace. + mirrors://kde/stable/plasma/5.5.1/plasma-desktop-5.5.1.tar.xz + + qt5-base-devel + boost-devel + kdoctools-devel + kio-devel + kcmutils-devel + knewstuff-devel + kpeople-devel + kdbusaddons-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kwin-devel + libX11-devel + libXft-devel + libxkbfile-devel + kded-devel + libxcb-devel + freetype-devel + libusb-compat-devel + xorg-server-devel + xorg-input-evdev-devel + xorg-input-synaptics-devel + pulseaudio-libs-devel + fontconfig-devel + plasma-workspace-devel + system-settings-devel + xorg-app-devel + xkeyboard-config + baloo-devel + libcanberra-devel + docbook-xsl + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-odbc + kdesignerplugin + extra-cmake-modules + + desktop/kde/plasma/plasma-desktop/pspec.xml + + + plasma-desktop + + baloo + fontconfig + freetype + kactivities + karchive + kauth + kbookmarks + kcmutils + kcodecs + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kdelibs4-support + kemoticons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemmodels + kitemviews + kjobwidgets + knewstuff + knotifications + knotifyconfig + kparts + kpeople + krunner + kservice + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libusb-compat + libX11 + libxcb + libXcursor + libXfixes + libXft + libXi + libxkbfile + plasma-framework + plasma-workspace + libcanberra + pulseaudio-libs + xkeyboard-config + qt5-base + qt5-declarative + qt5-phonon + qt5-svg + qt5-x11extras + solid + sonnet + qt5-sql-sqlite + system-settings + xcb-util-image + oxygen-icons + oxygen-fonts + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-31 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + khotkeys + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.5.1/khotkeys-5.5.1.tar.xz + + libX11-devel + qt5-base-devel + qt5-x11extras-devel + kdoctools-devel + kconfig-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kauth-devel + kpackage-devel + kdbusaddons-devel + kdelibs4-support-devel + kglobalaccel-devel + ki18n-devel + kio-devel + kxmlgui-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + plasma-framework-devel + plasma-workspace-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/khotkeys/pspec.xml + + + khotkeys + + qt5-base + kconfig + libgcc + libX11 + kservice + qt5-x11extras + kcompletion + kcoreaddons + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kdbusaddons + kdelibs4-support + kglobalaccel + ki18n + kio + kxmlgui + plasma-workspace + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-15 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-workspace + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE5 Plasma Workspace Components + The KDE5 Plasma Workspace Components + mirrors://kde/stable/plasma/5.5.1/plasma-workspace-5.5.1.tar.xz + + baloo-devel + kactivities-devel + kde-cli-tools + kdelibs4-support-devel + kdesignerplugin + kdesu-devel + kded-devel + kdewebkit-devel + kdoctools-devel + kemoticons-devel + kio-devel + kitemmodels-devel + kjs-devel + kjsembed-devel + knotifyconfig-devel + krunner-devel + ktexteditor-devel + kunitconversion-devel + kscreenlocker-devel + kwayland-devel + kwin-devel + kxmlrpcclient-devel + libdbusmenu-qt-devel + libkscreen-devel + libksysguard-devel + libqalculate-devel + libX11-devel + libXau-devel + libxcb-devel + libXcursor-devel + libXi-devel + libXrender-devel + NetworkManager-devel + networkmanager-qt-devel + pam-devel + prison-qt5-devel + qt5-base-devel + xorg-app-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-location-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-renderutil-devel + xorg-util + zlib-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/plasma-workspace/pspec.xml + + + plasma-workspace + + baloo + cln + kactivities + kauth + kbookmarks + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdbusaddons + kdeclarative + kde-cli-tools + kdelibs4-support + kdesu + kdewebkit + kglobalaccel + kguiaddons + ki18n + kiconthemes + kidletime + kio + kitemviews + kjobwidgets + kjs + kjsembed + knewstuff + knotifyconfig + kpackage + knotifications + krunner + kservice + ktexteditor + ktextwidgets + kwallet + kwayland + kwidgetsaddons + kwindowsystem + kxmlgui + kxmlrpcclient + libdbusmenu-qt + libgcc + libICE + libkscreen + libksysguard + libqalculate + libSM + libX11 + libXau + libxcb + libXfixes + libXi + libXrender + networkmanager-qt + pam + prison-qt5 + plasma-framework + qt5-base + qt5-declarative + qt5-phonon + qt5-script + qt5-webkit + qt5-x11extras + qt5-location + solid + wayland-client + wayland-server + xcb-util-keysyms + xcb-util + kscreenlocker + xcb-util-image + xorg-app + zlib + + + /etc/pam.d + /etc/env.d + /etc/xdg + /usr/share + /usr/share/applications + /usr/share/locale + /usr/bin + /usr/lib/qt5/plugins + /usr/lib/qt5/qml + /usr/lib + /usr/share/doc + + + kde.pam + kde-np.pam + kde-env.sh + + + + plasma-workspace-devel + Development files for kde5 plasma-workspace + + plasma-workspace + baloo-devel + cln-devel + kactivities-devel + kauth-devel + kbookmarks-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kde-cli-tools + kdelibs4-support-devel + kdesu-devel + kdewebkit + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kidletime-devel + kio-devel + kitemviews-devel + kjobwidgets-devel + kjs-devel + kjsembed-devel + knewstuff + knotifications-devel + knotifyconfig-devel + kpackage-devel + krunner-devel + kservice-devel + ktexteditor-devel + ktextwidgets-devel + kwallet-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kxmlrpcclient-devel + kscreenlocker-devel + libdbusmenu-qt-devel + libICE-devel + libkscreen-devel + libksysguard-devel + libqalculate-devel + libSM-devel + libX11-devel + libXau-devel + libxcb-devel + libXfixes-devel + libXi-devel + libXrender-devel + networkmanager-qt-devel + pam-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-phonon-devel + qt5-script-devel + qt5-webkit-devel + qt5-x11extras-devel + qt5-location-devel + solid-devel + wayland-devel + xcb-util-keysyms-devel + zlib-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + drkonqi + KDE crash handler + + kdewebkit + kxmlrpcclient + plasma-workspace + + + /usr/lib/libexec + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwayland-integration + http://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Provides integration plugins for various KDE frameworks for the wayland windowing system + Provides integration plugins for various KDE frameworks for the wayland windowing system + mirrors://kde/stable/plasma/5.5.1/kwayland-integration-5.5.1.tar.xz + + kwayland-devel + qt5-base-devel + kwindowsystem-devel + kidletime-devel + extra-cmake-modules + + desktop/kde/plasma/kwayland-integration/pspec.xml + + + kwayland-integration + + kwayland + kidletime + kwindowsystem + libgcc + qt5-base + + + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + First Release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + oxygen + https://projects.kde.org/projects/kde/workspace/oxygen + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL + desktop.kde.plasma + KDE Oxygen style + KDE Oxygen style + mirrors://kde/stable/plasma/5.5.1/oxygen-5.5.1.tar.xz + + kcmutils-devel + frameworkintegration-devel + kdoctools-devel + cairo-devel + libxcb-devel + gtk3-devel + kdoctools-devel + kdecorations-devel + plasma-workspace-devel + extra-cmake-modules + + desktop/kde/plasma/oxygen/pspec.xml + + + oxygen + + ki18n + libgcc + libxcb + kconfig + qt5-base + kguiaddons + kcompletion + kcoreaddons + kdecorations + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + frameworkintegration + kcmutils + + + /usr/bin/ + /usr/lib + /usr/share/sounds + /usr/share/icons + /usr/share/locale + /usr/share/plasma + /usr/share/kstyle + /usr/share/kservices5 + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-29 + 5.3.2 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + discover + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.plasma + KDE and Plasma resources management GUI + KDE and Plasma resources management GUI + mirrors://kde/stable/plasma/5.5.1/discover-5.5.1.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + kio-devel + kdeclarative-devel + plasma-framework-devel + knewstuff-devel + extra-cmake-modules + + desktop/kde/plasma/discover/pspec.xml + + + discover + + qt5-base + libgcc + kio + attica + kconfig + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kconfigwidgets + knotifications + kwidgetsaddons + ki18n + kxmlgui + qt5-declarative + knewstuff + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-10 + 5.5.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmal.com + + + + + + user-manager + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.plasma + KDE 5 User Manager + User Manager within KDE workspace and applications + mirrors://kde/stable/plasma/5.5.1/user-manager-5.5.1.tar.xz + + qt5-base-devel + accountsservice-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libpwquality-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/user-manager/pspec.xml + + + user-manager + + qt5-base + accountsservice + libgcc + kio + ki18n + kconfig + libpwquality + kcoreaddons + kiconthemes + kconfigwidgets + kdelibs4-support + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Verison bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-27 + 5.4.0 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + oxygen-icons + http://www.oxygen-icons.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPL + desktop.kde.plasma + KDE Oxygen icons + "The Oxygen Icon Theme + mirrors://kde/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz + + cmake + extra-cmake-modules + + desktop/kde/plasma/oxygen-icons/pspec.xml + + + oxygen-icons + + /usr/share/icons + + + + + 2015-08-01 + 15.04.3 + First Release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kwrited + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 daemon listening for wall and write messages + KDE5 daemon listening for wall and write messages + mirrors://kde/stable/plasma/5.5.1/kwrited-5.5.1.tar.xz + + qt5-base-devel + ki18n-devel + kdoctools-devel + kcoreaddons-devel + knotifications-devel + kpty-devel + kdelibs4-support-devel + kdbusaddons-devel + extra-cmake-modules + + desktop/kde/plasma/kwrited/pspec.xml + + + kwrited + + qt5-base + kpty + libgcc + kcoreaddons + knotifications + kdbusaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ksshaskpass + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + ssh-add helper that uses kwallet and kpassworddialog + ssh-add helper that uses kwallet and kpassworddialog + mirrors://kde/stable/plasma/5.5.1/ksshaskpass-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + kcoreaddons-devel + ki18n-devel + kwallet-devel + libxslt + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/ksshaskpass/pspec.xml + + + ksshaskpass + + qt5-base + libgcc + kcoreaddons + kwidgetsaddons + ki18n + kwallet + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + ksshaskpass.sh + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-18 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kmenuedit + http://www.kde.org + + Pisi Linux admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Provides the interface and basic tools for the KDE workspace + Provides the interface and basic tools for the KDE workspace + mirrors://kde/stable/plasma/5.5.1/kmenuedit-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + kconfig-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + ki18n-devel + kiconthemes-devel + kio-devel + kxmlgui-devel + sonnet-devel + kdesignerplugin + kitemmodels-devel + kinit-devel + kunitconversion-devel + kemoticons-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kmenuedit/pspec.xml + + + kmenuedit + + qt5-base + libgcc + kconfig + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + kdbusaddons + kdelibs4-support + ki18n + kiconthemes + kio + kxmlgui + sonnet + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-15 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kwallet-pam + https://projects.kde.org/kwallet-pam + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KWallet PAM integration. + KWallet PAM integration. + mirrors://kde/stable/plasma/5.5.1/kwallet-pam-5.5.1.tar.xz + + pam-devel + libgcrypt-devel + extra-cmake-modules + + desktop/kde/plasma/kwallet-pam/pspec.xml + + + kwallet-pam + + pam + libgcrypt + + + /lib + /usr/lib/security + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kdeplasma-addons + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Additional client tools for KDE applications + Additional client tools for KDE applications + mirrors://kde/stable/plasma/5.5.1/kdeplasma-addons-5.5.1.tar.xz + + qt5-base-devel + libxcb-devel + xcb-util-image-devel + glib2-devel + scim-devel + ibus-devel + kdoctools-devel + knewstuff-devel + kemoticons-devel + kitemmodels-devel + kross-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kdesignerplugin + krunner-devel + kdelibs4-support-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/kdeplasma-addons/pspec.xml + + + kdeplasma-addons + + qt5-base + plasma-framework + libgcc + libxcb + xcb-util-image + glib2 + knewstuff + krunner + kio + ki18n + kross + sonnet + kconfig + kxmlgui + karchive + kpackage + kservice + qt5-x11extras + qt5-declarative + kcompletion + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kunitconversion + kdelibs4-support + ibus + scim-libs + xcb-util-keysyms + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + breeze + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 Plasma artwork + Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + mirrors://kde/stable/plasma/5.5.1/breeze-5.5.1.tar.xz + + qt5-base-devel + libxcb-devel + qt5-x11extras-devel + frameworkintegration-devel + kdecorations-devel + kcoreaddons-devel + ki18n-devel + kcmutils-devel + kwindowsystem-devel + kconfig-devel + kguiaddons-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/plasma/breeze/pspec.xml + + + breeze-style + + qt5-base + libgcc + kconfig + kguiaddons + kcoreaddons + kconfigwidgets + kwidgetsaddons + qt5-x11extras + libxcb + frameworkintegration + kcmutils + kcoreaddons + ki18n + kwindowsystem + kdecorations + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + breeze-icons + + breeze-style + + + /usr/share/icons + + + + breeze-cursors + + breeze-style + + + /usr/share/icons/breeze_cursors + + + + breeze-wallpapers + + /usr/share/wallpapers + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kde-gtk-config + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + GTK2 and GTK3 Configurator for KDE + Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. + mirrors://kde/stable/plasma/5.5.1/kde-gtk-config-5.5.1.tar.xz + + qt5-base-devel + kio-devel + glib2-devel + ki18n-devel + kcoreaddons-devel + kiconthemes-devel + kwidgetsaddons-devel + kcmutils-devel + karchive-devel + kauth-devel + kconfigwidgets-devel + knewstuff-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + extra-cmake-modules + + desktop/kde/plasma/kde-gtk-config/pspec.xml + + + kde-gtk-config + + qt5-base + libgcc + glib2 + kio + ki18n + kcoreaddons + kiconthemes + kwidgetsaddons + karchive + knewstuff + kconfigwidgets + gtk2 + gtk3 + + + /usr/share + /etc/xdg/cgc* + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-mediacenter + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.plasma + A mediacenter user interface based on KDE Plasma components + A mediacenter user interface based on KDE Plasma components + mirrors://kde/stable/plasma/5.5.1/plasma-mediacenter-5.5.1.tar.xz + + qt5-base-devel + qt5-multimedia-devel + qt5-multimedia + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + kfilemetadata-devel + kdeclarative-devel + plasma-framework-devel + baloo-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-mediacenter/pspec.xml + + + plasma-mediacenter + + qt5-base + baloo + libgcc + kfilemetadata + kcoreaddons + kactivities + qt5-declarative + kguiaddons + kservice + kconfig + ki18n + kio + taglib + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-18 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kde-cli-tools + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Additional client tools for KDE applications + Tools based on KDE Frameworks 5 to better interact with the system + mirrors://kde/stable/plasma/5.5.1/kde-cli-tools-5.5.1.tar.xz + + qt5-base-devel + qt5-x11extras-devel + qt5-svg-devel + libX11-devel + kdoctools-devel + kio-devel + kdesu-devel + ki18n-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kconfig-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kde-cli-tools/pspec.xml + + + kde-cli-tools + + qt5-base + qt5-svg + libX11 + libgcc + kio + kdesu + ki18n + kservice + qt5-x11extras + kcompletion + kcoreaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + kcmutils + kconfig + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Package + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kscreen + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Provides the interface and basic tools for the KDE workspace + Provides the interface and basic tools for the KDE workspace + mirrors://kde/stable/plasma/5.5.1/kscreen-5.5.1.tar.xz + + qt5-base-devel + qt5-graphicaleffects + qt5-declarative-devel + kglobalaccel-devel + libkscreen-devel + kconfig-devel + kdoctools-devel + kxmlgui-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/kscreen/pspec.xml + + + kscreen + + qt5-base + libgcc + libkscreen + qt5-declarative + kconfig + kcoreaddons + kglobalaccel + kconfigwidgets + kwidgetsaddons + kdbusaddons + ki18n + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kscreenlocker + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Library and components for secure lock screen architecture. + Library and components for secure lock screen architecture. + mirrors://kde/stable/plasma/5.5.1/kscreenlocker-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + kglobalaccel-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + kidletime-devel + kdeclarative-devel + kcmutils-devel + kwayland-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/kscreenlocker/pspec.xml + + + kscreenlocker + + qt5-base + libgcc + ki18n + kcrash + libX11 + libxcb + kconfig + kxmlgui + kpackage + kwayland + kidletime + kcoreaddons + kdeclarative + kglobalaccel + kwindowsystem + qt5-x11extras + kconfigwidgets + knotifications + wayland-client + wayland-server + qt5-declarative + kdelibs4-support + xcb-util-keysyms + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kscreenlocker-devel + Development files for kscreenlocker + + qt5-base-devel + qt5-declarative-devel + kglobalaccel-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + kidletime-devel + kdeclarative-devel + kcmutils-devel + kwayland-devel + plasma-framework-devel + kscreenlocker + + + /usr/include + /usr/lib/cmake + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-10 + 5.5.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + plasma-workspace-wallpapers + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE Plasma Workspace Components + The KDE Plasma Workspace Components + mirrors://kde/stable/plasma/5.5.1/plasma-workspace-wallpapers-5.5.1.tar.xz + + qt5-base + extra-cmake-modules + + desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml + + + plasma-workspace-wallpapers + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-25 + 5.3.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kinfocenter + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 info center + KDE5 Utility that provides information about a computer system. + mirrors://kde/stable/plasma/5.5.1/kinfocenter-5.5.1.tar.xz + + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libraw1394-devel + libX11-devel + mesa-glu-devel + pciutils-devel + plasma-framework-devel + qt5-base-devel + solid-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kwayland-devel + kdesignerplugin + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kinfocenter/pspec.xml + + + kinfocenter + + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kdelibs4-support + ki18n + kiconthemes + kio + kservice + kwayland + kwidgetsaddons + kxmlgui + libgcc + libraw1394 + libX11 + mesa-glu + mesa + pciutils + qt5-base + qt5-declarative + solid + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/about-distro + + + kcm-about-distrorc + pisilinux.svg + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-11 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sddm + https://github.com/sddm/sddm + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + QML based X11 display manager + KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings + https://github.com/sddm/sddm/releases/download/v0.13.0/sddm-0.13.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-declarative-devel + libxcb-devel + libxkbfile-devel + pam-devel + extra-cmake-modules + docutils + + + sddm-0.11.0-consolekit.patch + sddm-respect-user-flags.patch + + desktop/kde/plasma/sddm/pspec.xml + + + sddm + + qt5-base + qt5-declarative + pam + libgcc + libxcb + + + /etc + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + sddm.conf + sddm + + + + + 2015-11-18 + 0.13.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-07 + 0.12 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 0.11 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-20 + 0.11 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + polkit-kde-authentication-agent-1 + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE Plasma Workspace Components + The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. + mirrors://kde/stable/plasma/5.5.1/polkit-kde-agent-1-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + knotifications-devel + polkit-qt-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml + + + polkit-kde-authentication-agent-1 + + qt5-base + libgcc + kcrash + kcoreaddons + polkit-qt + ki18n + kdbusaddons + kiconthemes + kwindowsystem + knotifications + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-31 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-pa + https://projects.kde.org/plasma-pa + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Plasma applet for audio volume management using PulseAudio. + Plasma applet for audio volume management using PulseAudio. + mirrors://kde/stable/plasma/5.5.1/plasma-pa-5.5.1.tar.xz + + qt5-base-devel + qt5-quick1-devel + qt5-declarative-devel + kconfigwidgets-devel + kcoreaddons-devel + kdeclarative-devel + plasma-framework-devel + kdoctools-devel + glib2-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/plasma-pa/pspec.xml + + + plasma-pa + + qt5-base + kdeclarative + libgcc + ki18n + kcoreaddons + kglobalaccel + qt5-declarative + pulseaudio-libs + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kwin + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 window manager + KWin is the window manager of the K desktop environment. + mirrors://kde/stable/plasma/5.5.1/kwin-5.5.1.tar.xz + + kactivities-devel + kauth-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdeclarative-devel + kdecorations-devel + kdoctools-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kservice-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kidletime-devel + kscreenlocker-devel + libepoxy-devel + libICE-devel + libSM-devel + libX11-devel + libxcb-devel + libXcursor-devel + libXext-devel + libxkbcommon-devel + libXxf86vm-devel + mesa-devel + fontconfig-devel + freetype-devel + xcb-util-wm-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-multimedia-devel + qt5-script-devel + qt5-x11extras-devel + wayland-client + wayland-cursor + wayland-devel + xcb-util-image-devel + xcb-util-keysyms-devel + eudev-devel + libinput-devel + xcb-util-cursor-devel + qt5-multimedia-devel + qt5-multimedia + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kwin/pspec.xml + + + kwin + + kactivities + kauth + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + kdeclarative + kdecorations + kglobalaccel + ki18n + kiconthemes + kio + knewstuff + knotifications + kservice + kwayland + kwidgetsaddons + kwindowsystem + kxmlgui + kscreenlocker + kidletime + libepoxy + libgcc + libICE + libSM + libX11 + libxcb + libxkbcommon + mesa + plasma-framework + qt5-base + qt5-declarative + qt5-script + qt5-x11extras + wayland-cursor + wayland-client + xcb-util-image + xcb-util-keysyms + eudev + kpackage + libdrm + libinput + xcb-util-cursor + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kwin-devel + Development files for kwin + + kwin + kactivities-devel + kauth-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdeclarative-devel + kdecorations-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kservice-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libepoxy-devel + libICE-devel + libSM-devel + libX11-devel + libxcb-devel + libXcursor-devel + libXext-devel + libxkbcommon-devel + libXxf86vm-devel + mesa-devel + fontconfig-devel + freetype-devel + xcb-util-wm-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-script-devel + qt5-x11extras-devel + wayland-devel + xcb-util-image-devel + xcb-util-keysyms-devel + eudev-devel + libinput-devel + xcb-util-cursor-devel + qt5-multimedia-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kdecorations + https://projects.kde.org/projects/kde/workspace/kdecoration + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Plugin based library to create window decorations + Plugin based library to create window decorations + mirrors://kde/stable/plasma/5.5.1/kdecoration-5.5.1.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/plasma/kdecorations/pspec.xml + + + kdecorations + + qt5-base + libgcc + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdecorations-devel + Development files for kdecorations + + qt5-base-devel + kdecorations + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + khelpcenter + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE Help Center + KDE help center utility to read help documentation about various KDE applications. + mirrors://kde/stable/plasma/5.5.1/khelpcenter-5.5.1.tar.xz + + qt5-base-devel + libdbusmenu-qt-devel + kinit-devel + kcmutils-devel + khtml-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + kdesignerplugin + kdelibs4-support-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/khelpcenter/pspec.xml + + + khelpcenter + + qt5-base + kio + libgcc + khtml + ki18n + kparts + kcodecs + kconfig + kxmlgui + kcmutils + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-11 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-nm + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Plasma applet written in QML for managing network connections + Plasma applet written in QML for managing network connections + mirrors://kde/stable/plasma/5.5.1/plasma-nm-5.5.1.tar.xz + + qt5-base-devel + libgcc + networkmanager-qt-devel + modemmanager-qt-devel + ModemManager-devel + kdelibs4-support-devel + openconnect-devel + kdoctools-devel + NetworkManager-devel + mobile-broadband-provider-info + extra-cmake-modules + qt5-quick1-devel + qt5-declarative-devel + plasma-framework-devel + kdelibs4-support-devel + kdesignerplugin + kinit-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + qca2-qt5-devel + + desktop/kde/plasma/plasma-nm/pspec.xml + + + plasma-nm + + qt5-base + qca2-qt5 + libgcc + openconnect + kio + networkmanager-qt + modemmanager-qt + ki18n + solid + kconfig + kwallet + kxmlgui + kservice + kitemviews + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + system-settings + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 system settings manager + System-settings is a control panel for KDE5 Plasma + mirrors://kde/stable/plasma/5.5.1/systemsettings-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + kio-devel + kauth-devel + khtml-devel + kcmutils-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/system-settings/pspec.xml + + + system-settings + + qt5-base + kauth + libgcc + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + kcmutils + kconfig + kdbusaddons + khtml + ki18n + kiconthemes + kio + kitemviews + kservice + kwindowsystem + kxmlgui + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + system-settings-devel + Development files for system-settings + + qt5-base-devel + kauth-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kconfig-devel + kdbusaddons-devel + khtml-devel + ki18n-devel + kiconthemes + kio-devel + kitemviews-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + system-settings + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libksysguard + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Task management and system monitoring library + Task management and system monitoring library + mirrors://kde/stable/plasma/5.5.1/libksysguard-5.5.1.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-webkit-devel + kdoctools-devel + libX11-devel + libXres-devel + zlib-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/plasma/libksysguard/pspec.xml + + + libksysguard + + qt5-base + libX11 + libgcc + zlib + libXres + qt5-webkit + qt5-x11extras + kwindowsystem + kconfigwidgets + kwidgetsaddons + kconfig + kauth + kcoreaddons + ki18n + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libksysguard-devel + Development files for libksysguard + + libksysguard + qt5-base-devel + libX11-devel + zlib-devel + libXres-devel + qt5-webkit-devel + qt5-x11extras-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kconfig-devel + kauth-devel + kcoreaddons-devel + ki18n-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-28 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ksysguard + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE system monitor + KDE5 system monitor daemon and service. + mirrors://kde/stable/plasma/5.5.1/ksysguard-5.5.1.tar.xz + + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knewstuff-devel + knotifications-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libksysguard-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + lm_sensors-devel + plasma-framework-devel + qt5-base-devel + docbook-xsl + extra-cmake-modules + qt5-location-devel + qt5-webkit-devel + + desktop/kde/plasma/ksysguard/pspec.xml + + + ksysguard + + icon-theme-hicolor + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdelibs4-support + ki18n + kiconthemes + kio + kitemviews + knewstuff + knotifications + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libksysguard + lm_sensors + qt5-base + xdg-utils + qt5-location + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-03 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-12 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libkscreen + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 screen management library + Dynamic display management library for KDE + mirrors://kde/stable/plasma/5.5.1/libkscreen-5.5.1.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libxcb-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + libXcursor-devel + libXrandr-devel + extra-cmake-modules + cmake + + desktop/kde/plasma/libkscreen/pspec.xml + + + libkscreen + + qt5-base + libxcb + libgcc + qt5-x11extras + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + + + + libkscreen-devel + Development files for libkscreen + + libxcb-devel + qt5-base-devel + qt5-x11extras-devel + libkscreen + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-02 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + bluedevil + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE 5 Bluetooth Stack + Integrate the Bluetooth technology within KDE workspace and applications + mirrors://kde/stable/plasma/5.5.1/bluedevil-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative + kded-devel + plasma-framework-devel + bluez-qt-devel + kded-devel + kio-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwindowsystem-devel + knotifications-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/plasma/bluedevil/pspec.xml + + + bluedevil + + qt5-base + libgcc + bluez-qt + kded + kio + ki18n + kconfig + qt5-declarative + kcoreaddons + kdbusaddons + kiconthemes + kconfigwidgets + knotifications + kwindowsystem + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-01 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-06 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + powerdevil + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.5.1/powerdevil-5.5.1.tar.xz + + qt5-base-devel + kdoctools-devel + kidletime-devel + libxcb-devel + eudev-devel + kdesignerplugin + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + docbook-xsl + plasma-workspace-devel + extra-cmake-modules + + desktop/kde/plasma/powerdevil/pspec.xml + + + powerdevil + + qt5-base + kidletime + libgcc + libxcb + eudev + plasma-workspace + kio + kauth + ki18n + solid + kconfig + kxmlgui + kservice + qt5-x11extras + libkscreen + kactivities + kcompletion + kcoreaddons + kdbusaddons + kglobalaccel + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-29 + 5.3.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plasma-sdk + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + Applications useful for Plasma development + Applications useful for Plasma development + mirrors://kde/stable/plasma/5.5.1/plasma-sdk-5.5.1.tar.xz + + qt5-base-devel + qt5-webkit-devel + qt5-svg-devel + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdeclarative-devel + ki18n-devel + kiconthemes-devel + kio-devel + knewstuff-devel + kparts-devel + plasma-framework-devel + kservice-devel + ktexteditor-devel + kwidgetsaddons-devel + kxmlgui-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-sdk/pspec.xml + + + plasma-sdk + + qt5-base + ktexteditor + plasma-framework + kio + libgcc + ki18n + kconfig + karchive + kpackage + kservice + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2015-12-16 + 5.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-12-09 + 5.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-10-07 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-12 + 5.4.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-25 + 5.4.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 5.3.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-14 + 5.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + librsvg + http://librsvg.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome2 + Scalable Vector Graphics (SVG) rendering library + Scalable Vector Graphics (SVG) kitaplığı + librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG. + librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics. + Scalable Vector Graphics (SVG) kitaplığı + mirrors://gnome/librsvg/2.40/librsvg-2.40.9.tar.xz + + libcroco-devel + gtk2-devel + pango-devel + vala-devel + python-devel + gdk-pixbuf-devel + gtk-doc + gobject-introspection-devel + + desktop/gnome2/librsvg/pspec.xml + + + librsvg + + glib2 + libxml2 + cairo + pango + libcroco + gdk-pixbuf + + + /etc/gtk-2.0 + /usr/bin + /usr/lib + /usr/share/man/man1 + /usr/share/pixmaps + /usr/share/themes + /usr/share/vala + /usr/share/gtk-doc + /usr/share/gir-1.0/Rsvg-2.0.gir + /usr/share/doc + + + + librsvg-devel + Development files for librsvg + librsvg için geliştirme dosyaları + + librsvg + gdk-pixbuf-devel + cairo-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + librsvg-32bit + 32-bit shared libraries for librsvg + emul32 + emul32 + + atk-32bit + gtk2-32bit + glib2-32bit + cairo-32bit + pango-32bit + libpng-32bit + libxml2-32bit + freetype-32bit + libcroco-32bit + gdk-pixbuf-32bit + fontconfig-32bit + + + librsvg + glibc-32bit + glib2-32bit + cairo-32bit + pango-32bit + libxml2-32bit + libcroco-32bit + gdk-pixbuf-32bit + + + /usr/lib32 + + + + + 2015-08-10 + 2.40.9 + Version bump. + PisiLinux Community + ayhanyalcinsoy@pisilinux.org + + + 2014-05-17 + 2.40.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 2.39.0 + Rebuild icu4c. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-10 + 2.39.0 + Rebuild and install using correct loaders. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-23 + 2.39.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-31 + 2.36.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-17 + 2.36.4 + Rebuild with new pisi release + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-23 + 2.36.4 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-23 + 2.36.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-06 + 2.36.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + orbit2 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + desktop.gnome2 + High-performance CORBA ORB + Yüksek performanslı CORBA ORB + Orbit2 allows to communication between two programs objects. + Orbit2 iki program nesneleri arasındaki iletişimi sağlar. + mirrors://gnome/ORBit2/2.14/ORBit2-2.14.19.tar.bz2 + + libIDL-devel + grep + glib2-devel + gtk-doc + + + fedora/ORBit2-allow-deprecated.patch + + desktop/gnome2/orbit2/pspec.xml + + + orbit2 + + libIDL + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/idl + + + + orbit2-devel + Development files for orbit2 + orbit2 için geliştirme dosyaları + + orbit2 + libIDL-devel + glib2-devel + + + /usr/bin/orbit2-config + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/share/aclocal + + + + orbit2-docs + ORBit2 reference documents + Orbit2 referans dökümanları + data:doc + + /usr/share/gtk-doc + + + + + 2014-05-21 + 2.14.19 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-10-29 + 2.14.19 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 2.14.19 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-12-22 + 2.14.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + glibmm + http://gtkmm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome2 + C++ interface for glib2 + glib2 kitaplığı için C++ programlama dili arayüzü + Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. + Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. + mirrors://gnome/glibmm/2.44/glibmm-2.44.0.tar.xz + + libsigc++-devel + glib2-devel + pkgconfig + + desktop/gnome2/glibmm/pspec.xml + + + glibmm + + glib2 + libgcc + libsigc++ + + + /usr/lib + /usr/share/doc + + + + glibmm-devel + Development files for glibmm + glibmm için geliştirme dosyaları + + glibmm + glib2-devel + libsigc++-devel + + + /usr/include + /usr/lib/glibmm-* + /usr/lib/giomm-* + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/glibmm-* + + + + + 2015-07-21 + 2.44.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-18 + 2.40.0 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-12-23 + 2.38.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-10-29 + 2.36.2 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-14 + 2.36.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-22 + 2.34.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + fontforge + http://fontforge.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + app:gui + desktop.font + Font editor and converter + Postscript yazı tipi düzenleyici ve çevirici + FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. + FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. + fontforge + https://github.com/fontforge/fontforge/releases/download/20150824/fontforge-20150824.tar.gz + http://fontforge.org/cidmaps.tgz + + libjpeg-turbo-devel + tiff-devel + cairo-devel + pango-devel + libpng-devel + libXft-devel + libXi-devel + giflib-devel + libspiro-devel + xdg-utils + fontconfig-devel + python-devel + libxml2-devel + readline-devel + libtool-ltdl + + desktop/font/fontforge/pspec.xml + + + fontforge + + zlib + glib2 + libX11 + libpng + python + libxml2 + freetype + readline + libtool-ltdl + tiff + cairo + libXi + pango + libXft + giflib + libspiro + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/pixmaps + /usr/share/fontforge + /usr/share/applications + /usr/share/locale + + + + fontforge-devel + Development files for fontforge + fontforge için geliştirme dosyaları + + tiff-devel + pango-devel + cairo-devel + fontforge + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-28 + 2.0.20150824 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-01 + 2.0.20140101 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-01 + 2.0.20140101 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-02 + 20120731 + Rebuild for RC. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-25 + 20120731 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + oxygen-fonts + https://projects.kde.org/projects/playground/artwork/oxygen-fonts + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + OFL + data:font + desktop.font + Oxygen font family + Oxygen yazı tipi ailesi + Oxygen font family is a desktop / GUI font family for integrated use with KDE. + Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. + http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz + + cmake + extra-cmake-modules + fontconfig-devel + qt5-base-devel + fontforge + + desktop/font/oxygen-fonts/pspec.xml + + + oxygen-fonts + + /usr/share/fonts + /usr/share/doc + /usr/lib + + + + + 2015-11-11 + 5.4.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-06 + 5.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-12 + 5.4.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-27 + 5.4.0 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2014-03-02 + 0.4 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + harfbuzz + http://www.freedesktop.org/software/harfbuzz + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.font + OpenType text shaping engine + The Harfbuzz package contains an OpenType text shaping engine. + http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.40.tar.bz2 + + cairo-devel + glib2-devel + icu4c-devel + graphite2-devel + freetype-devel + expat-devel + + desktop/font/harfbuzz/pspec.xml + + + harfbuzz + + cairo + glib2 + icu4c + libgcc + freetype + graphite2 + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/gir-1.0 + /usr/share/gtk-doc + + + + harfbuzz-devel + + glib2-devel + icu4c-devel + harfbuzz + + + /usr/include/harfbuzz + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + harfbuzz-32bit + 32-bit shared libraries for harfbuzz + emul32 + emul32 + + icu4c-32bit + freetype-32bit + fontconfig-32bit + glibc-32bit + cairo-32bit + + + cairo-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + freetype-32bit + + + /usr/lib32 + + + + + 2015-04-06 + 0.9.40 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-24 + 0.9.38 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-12 + 0.9.37 + Version Bump + rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-15 + 0.9.35 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-07-11 + 0.9.30 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-09 + 0.9.26 + Better harfbuz with icu, cairo. Fix configure option format. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-17 + 0.9.26 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-26 + 0.9.26 + Delete Unused Deps. + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-25 + 0.9.26 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-22 + 0.9.26 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 0.9.19 + Rebuild for icu4c + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 0.9.19 + Version bump. Fix build emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-30 + 0.9.18 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-01-22 + 0.9.9 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-24 + 0.9.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gnu-gs-fonts-std + http://www.ghostscript.com + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + GPLv2 + data + desktop.font + Ghostscript standard fonts + Ghostscript standard yazıtipleri + Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. + gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. + Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. + mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz + desktop/font/gnu-gs-fonts-std/pspec.xml + + + gnu-gs-fonts-std + + /usr/share/fonts/default/ghostscript + /usr/share/doc + + + + + 2014-02-23 + 8.11 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2012-09-20 + 8.11 + First release + Sezai Yeniay + sezaiyeniay@pisilinux.org + + + + + + fontconfig + http://fontconfig.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + desktop.font + A library for configuring and customizing font access + Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık + Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych + Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. + Fontconfig is a library designed to provide system-wide font configuration, customization and application access. + Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. + Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. + http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.bz2 + + freetype-devel + expat-devel + + + prefer_dejavu.patch + anymetrics_urw.patch + use_legacy_lcdfilter_on_small_monospace.patch + add_hinting_and_antialiasing_to_proper_fonts.patch + fontconfig-2.8.0-sleep-less.patch + deprecated-user-conf.patch + + desktop/font/fontconfig/pspec.xml + + + fontconfig + + freetype + expat + + + /etc/fonts + /usr/bin + /usr/lib + /usr/share/doc + /var/cache/fontconfig + /usr/share + + + System.Package + System.PackageHandler + + + + fontconfig-devel + Development files for fontconfig + fontconfig için geliştirme dosyaları + Pliki nagłówkowe fontconfig + + fontconfig + freetype-devel + expat-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/fontconfig/fontconfig-devel.txt + /usr/share/man + + + + fontconfig-32bit + 32-bit shared libraries for fontconfig + fontconfig için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + expat-32bit + freetype-32bit + glibc-32bit + + + fontconfig + expat-32bit + freetype-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-17 + 2.11.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-29 + 2.11.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-01 + 2.11.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 2.10.93 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 2.10.93 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-06 + 2.10.92 + First release + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-06 + 2.10.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + unicode-ucd + http://www.unicode.org/ucd + + PisiLinux Community + admins@pisilinux.org + + MIT + desktop.font + Unicode Character Database + Unicode Karakter Veritabanı + The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. + Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. + http://www.unicode.org/Public/zipped/6.3.0/UCD.zip + desktop/font/unicode-ucd/pspec.xml + + + unicode-ucd + + /usr/share/unicode/ucd + /usr/share/doc + + + copyright.html + + + + + 2014-01-27 + 6.3.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + wxGTK + http://www.wxwidgets.org/ + + PisiLinux Community + admins@pisilinux.org + + wxWinLL-3 + GPLv2 + LGPLv2 + wxWinFDL-3 + library + desktop.toolkit + GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit + Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü + wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. + wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. + wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. + wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. + mirrors://sourceforge/wxwindows/wxWidgets-3.0.2.tar.bz2 + + zlib-devel + tiff-devel + gtk2-devel + expat-devel + libSM-devel + libpng-devel + mesa-glu-devel + webkit-gtk2-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + + make-abicheck-non-fatal.patch + + desktop/toolkit/wxGTK/pspec.xml + + + wxGTK + + gtk2 + mesa + tiff + zlib + cairo + expat + glib2 + pango + libSM + libX11 + libgcc + libpng + gstreamer + gdk-pixbuf + libXxf86vm + webkit-gtk2 + libjpeg-turbo + gst-plugins-base + + + /usr/lib/ + /usr/bin + /usr/share/doc/ + /usr/share/aclocal/ + /usr/share/bakefile/ + /usr/lib/wx/config + /usr/share/locale/ + + + + wxGTK-devel + wxGTK-devel is the development files for wxGTK + wxGTK araç seti için geliştirme dosyaları + + wxGTK + + + /usr/include + + + + + 2015-08-29 + 3.0.2 + Version bump, fix install. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-01-05 + 2.8.12 + use symlink not rename. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-18 + 2.8.12 + Rebuild. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2014-05-28 + 2.8.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-17 + 2.8.12 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-05-06 + 2.8.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + qtermwidget5 + https://github.com/qterminal/qtermwidget + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + app:gui + desktop.toolkit + Terminal widget for Qt5 + Qt tabanlı uygulamalar için basit bir terminal modulü + A simple terminal widget for using with Qt5 based applications + https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz + + cmake + libgcc + qt5-base-devel + + desktop/toolkit/qtermwidget5/pspec.xml + + + qtermwidget5 + Development files for qtermwidget5 + + libgcc + qt5-base + + + /usr/bin/consoleq + /usr/lib + /usr/share + /usr/share/doc + + + + qtermwidget5-devel + Development files for qtermwidget5 + qtermwidget5 için geliştirme dosyaları + + qt5-base-devel + qtermwidget5 + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-13 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + newt + https://fedorahosted.org/newt/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + desktop.toolkit + A windowing toolkit for text mode + Metin tabanlı bir pencere araç seti. + newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. + Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. + https://fedorahosted.org/releases/n/e/newt/newt-0.52.17.tar.gz + + tcl-devel + slang-devel + popt-devel + + desktop/toolkit/newt/pspec.xml + + + newt + + tcl + slang + popt + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + newt-devel + Development files for newt + newt için geliştirme dosyaları + + newt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-07-05 + 0.52.17 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-05 + 0.52.16 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.52.14 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-01-30 + 0.52.14 + Build with new relaese Tcl + Erdinç Gültekin + admins@pisilinux.org + + + 2012-09-17 + 0.52.14 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + cairomm + http://cairographics.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + Bindings (liens) C++ pour Cairo. + C++ binding for Cairo + Cairo için C++ bağlayıcı + cairomm package is the C++ binding for Cairo (it makes possible using Cairo in C++). + http://cairographics.org/releases/cairomm-1.10.0.tar.gz + + grep + perl + doxygen + cairo-devel + libsigc++-devel + + desktop/toolkit/gtk/cairomm/pspec.xml + + + cairomm + + cairo + libsigc++ + libgcc + + + /usr/share/doc + /usr/lib + + + + cairomm-devel + Development files for cairomm + cairomm için geliştirme dosyaları + + cairomm + cairo-devel + libsigc++-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cairomm-1.0/include + + + + cairomm-docs + Development documents for cairomm + cairomm için geliştirme belgeleri + + /usr/share/doc/cairomm/html + + + + + 2014-05-18 + 1.10.0 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-21 + 1.10.0 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2012-08-25 + 1.10.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libglade + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + Glade interface builder + Glade arayüz oluşturucu + Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. + Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. + Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. + mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 + + glib2-devel + libxml2-devel + atk-devel + pango-devel + gtk2-devel + + + Makefile.in.am-2.4.2-xmlcatalog.patch + libglade-2.6.3-fix_tests-page_size.patch + + desktop/toolkit/gtk/libglade/pspec.xml + + + libglade + + glib2 + libxml2 + atk + pango + gtk2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/xml + + + System.Package + + + + libglade-docs + Libglade reference documents + Libglade referans belgeleri + data:doc + + libglade + + + /usr/share/gtk-doc + + + + libglade-devel + Development files for libglade + libglade için geliştirme dosyaları + + libglade + gtk2-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-18 + 2.6.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 2.6.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 2.6.4 + Release bump + Pisi Linux Admins + admins@pisilinux.org + + + 2010-10-12 + 2.6.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + atkmm + http://www.gtkmm.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.toolkit.gtk + C++ interface for the ATK library + ATK kitaplığı için C++ arayüzü + atkmm provides a C++ interface for the ATK library. + atkmm, ATK kitaplığı için bir C++ arayüzü sunar. + mirrors://gnome/atkmm/2.22/atkmm-2.22.7.tar.xz + + atk-devel + glibmm-devel + libtool + perl + doxygen + pkgconfig + glib2-devel + libsigc++-devel + + desktop/toolkit/gtk/atkmm/pspec.xml + + + atkmm + + atk + libgcc + glib2 + glibmm + libsigc++ + + + /usr/lib + /usr/share/doc + + + + atkmm-devel + Development files for atkmm + atkmm için geliştirme dosyaları + + atkmm + atk-devel + glibmm-devel + + + /usr/include + /usr/lib/atkmm-1.6/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/gtk-doc + + + + + 2015-11-27 + 2.22.7 + Rebuild and check. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-05-18 + 2.22.7 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.22.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 2.22.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gdk-pixbuf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + GDK pixbuf library + GDK pixbuf kitaplığı + gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications + gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. + mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.4.tar.xz + + gtk-doc + glib2-devel + libX11-devel + tiff-devel + libjpeg-turbo-devel + libpng-devel + jasper-devel + gobject-introspection-devel + + desktop/toolkit/gtk/gdk-pixbuf/pspec.xml + + + gdk-pixbuf + + glib2 + libpng + libX11 + tiff + jasper + libjpeg-turbo + + + /etc + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + System.PackageHandler + + + + gdk-pixbuf-devel + Development files for gdk-pixbuf + gdk-pixbuf için geliştirme dosyaları + + gdk-pixbuf + glib2 + + + /usr/bin/gdk-pixbuf-csource + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/gir-1.0 + + + + gdk-pixbuf-docs + Reference documents for gdk-pixbuf + gdk-pixbuf için başvuru belgeleri + + /usr/share/gtk-doc + + + + gdk-pixbuf-32bit + 32-bit shared libraries for gdk-pixbuf + gdk-pixbuf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + glibc-32bit + glib2-32bit + libX11-32bit + libpng-32bit + jasper-32bit + libX11-32bit + + + gdk-pixbuf + glibc-32bit + tiff-32bit + glib2-32bit + libpng-32bit + libX11-32bit + jasper-32bit + libjpeg-turbo-32bit + + + /usr/bin/gdk-pixbuf-query-loaders-32 + /usr/lib32 + + + System.PackageHandler + + + + + 2015-07-05 + 2.31.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-27 + 2.31.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.30.7 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.30.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.30.0 + Add missing method and fix pakhandler.py + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-05 + 2.28.2 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-20 + 2.28.2 + Fix build emul32. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-11 + 2.28.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.28.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.27.1 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-11-25 + 2.26.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + cairo + http://cairographics.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + MPL-1.1 + library + desktop.toolkit.gtk + Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. + 2D graphics library with bindings of many programming languages + Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı + Cairo is a 2D graphics library with support for multiple output devices (and fileformats). + http://cairographics.org/releases/cairo-1.14.2.tar.xz + + lzo-devel + zlib-devel + glib2-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel + pixman-devel + xcb-util-devel + libXext-devel + mesa-devel + DirectFB-devel + valgrind + + desktop/toolkit/gtk/cairo/pspec.xml + + + cairo + + lzo + zlib + glib2 + libX11 + libpng + libxcb + freetype + fontconfig + libXrender + pixman + libXext + mesa + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/gtk-doc + /usr/share/info + /usr/lib + + + + cairo-devel + Development files for cairo + cairo için geliştirme dosyaları + + cairo + mesa-devel + glib2-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + pixman-devel + libXext-devel + fontconfig-devel + libXrender-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + cairo-32bit + 32-bit shared libraries for cairo + cairo için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + zlib-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + + + cairo + mesa-32bit + zlib-32bit + glibc-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + + + /usr/lib32/lib* + /usr/lib32/cairo + + + + + 2015-04-18 + 1.14.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-01-28 + 1.14.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-05-17 + 1.12.16 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-09 + 1.12.16 + Version bump, fixes. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 1.12.14 + Fix dependencies. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-23 + 1.12.14 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-24 + 1.12.14 + Version bump, missing dep. + Ertan Güven + ertan@pisilinux.org + + + 2013-01-22 + 1.12.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-23 + 1.12.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + pango + http://www.pango.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + FTL + library + desktop.toolkit.gtk + Outil de positionnement et de rendu de texte. + Text rendering and layout library + Metin görüntüleme kitaplığı + Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. + Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. + mirrors://gnome/pango/1.36/pango-1.36.8.tar.xz + + gtk-doc + glib2-devel + libX11-devel + freetype-devel + cairo-devel + libXft-devel + harfbuzz-devel + fontconfig-devel + libXrender-devel + gobject-introspection-devel + + + pango-1.32.1-lib64.patch + + desktop/toolkit/gtk/pango/pspec.xml + + + pango + + glib2 + libX11 + freetype + cairo + libXft + harfbuzz + fontconfig + libXrender + + + /etc/pango + /usr/bin + /usr/lib/libpango* + /usr/lib/girepository-1.0 + /usr/lib/pango + /usr/share/gir-1.0 + /usr/share/man + /usr/share/doc + + + System.Package + + + + pango-devel + Development files for pango + pango için geliştirme dosyaları + + pango + cairo-devel + libXft-devel + harfbuzz-devel + fontconfig-devel + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + pango-docs + Pango reference documents + Pango referans dokümanları + data:doc + + /usr/share/gtk-doc + + + + pango-32bit + 32-bit shared libraries for pango + pango için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + glibc-32bit + + + pango + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + glibc-32bit + + + /usr/bin/pango-querymodules-32 + /usr/lib32/libpango* + /usr/lib32/girepository-1.0 + /usr/lib32/pango + + + + + 2015-03-18 + 1.36.8 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-07 + 1.36.5 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-17 + 1.36.3 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 1.36.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-05 + 1.36.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 1.36.0 + Version bump, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 1.34.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-20 + 1.34.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 1.32.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 1.32.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-07-07 + 1.30.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gtk-doc + http://www.gtk.org/gtk-doc + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + FDL-1.1 + app:console + desktop.toolkit.gtk + GTK+ API documentation generator + GTK+ API belge oluşturucusu + Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. + gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. + mirrors://gnome/gtk-doc/1.21/gtk-doc-1.21.tar.xz + + itstool + openjade + sgml-common + docbook-xml + docbook-xsl + libxslt-devel + + desktop/toolkit/gtk/gtk-doc/pspec.xml + + + gtk-doc + + docbook-xml + sgml-common + + + /usr/bin + /usr/share + /usr/share/doc + /usr/share/omf + /var/lib + + + + + 2015-04-06 + 1.21 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-18 + 1.20 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-30 + 1.20 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-26 + 1.18 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-26 + 1.18 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gtk3 + http://www.gtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + desktop.toolkit.gtk + The GIMP Toolkit version 3 + GTK grafik arayüz kitaplığı versiyon 3 + GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. + GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. + GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. + Wersja 3 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. + mirrors://gnome/gtk+/3.16/gtk+-3.16.4.tar.xz + + atk-devel + cups-devel + at-spi2-atk-devel + pango-devel + json-glib-devel + libXi-devel + cairo-devel + gobject-introspection-devel + libXext-devel + libXrandr-devel + libXfixes-devel + gdk-pixbuf-devel + fontconfig-devel + libXcursor-devel + libXdamage-devel + libXinerama-devel + libXcomposite-devel + at-spi2-core-devel + libepoxy-devel + gtk-doc + + + 071_fix-installation-of-HTML-images.patch + + desktop/toolkit/gtk/gtk3/pspec.xml + + + gtk3 + + glib2 + libX11 + libepoxy + atk + cups + pango + libXi + cairo + libXext + libXrandr + libXfixes + gdk-pixbuf + fontconfig + libXcursor + libXdamage + libXinerama + at-spi2-atk + libXcomposite + dejavu-fonts + + + /etc + /usr/bin + /usr/share/themes + /usr/share/gtk-3.0 + /usr/share/ + /usr/share/man + /usr/share/doc + /usr/lib + /usr/share/locale + + + System.PackageHandler + + + settings.ini + + + + gtk3-demo + GTK demo application + GTK demo uyulaması + app:gui + + gtk3 + glib2 + libepoxy + cairo + pango + gdk-pixbuf + + + /usr/bin/gtk3-demo + /usr/bin/gtk3-demo-application + + + + gtk3-docs + GTK reference documents + GTK referans dökümanları + data:doc + + /usr/share/doc/gtk3 + + + + gtk3-devel + Development files for gtk3 + gtk3 için geliştirme dosyaları + Pliki nagłówkowe do gtk3 + + gtk3 + atk-devel + pango-devel + libX11-devel + libXi-devel + cairo-devel + glib2-devel + libXext-devel + libepoxy-devel + libXfixes-devel + libXrandr-devel + gdk-pixbuf-devel + fontconfig-devel + libXdamage-devel + libXcursor-devel + libXinerama-devel + at-spi2-atk-devel + libXcomposite-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/gir-1.0 + + + + + 2015-07-07 + 3.16.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-18 + 3.14.9 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-04-12 + 3.12.2 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2014-04-06 + 3.10.7 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-05 + 3.10.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-21 + 3.10.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-11 + 3.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 3.8.2 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 3.8.2 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-14 + 3.8.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-24 + 3.6.4 + First release + Ertan Güven + ertan@pisilinux.org + + + + + + gtkmm + http://gtkmm.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + C++ binding for GTK+ + GTK+ için C++ bağlamı + gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. + gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. + mirrors://gnome/gtkmm/2.24/gtkmm-2.24.4.tar.xz + + gtk2-devel + atkmm-devel + glibmm-devel + cairomm-devel + pangomm-devel + libsigc++-devel + + desktop/toolkit/gtk/gtkmm/pspec.xml + + + gtkmm + + gtk2 + atkmm + glibmm + cairomm + pangomm + libsigc++ + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share + + + + gtkmm-devel + Development files for gtkmm + gtkmm için geliştirme dosyaları + + gtkmm + atkmm-devel + pangomm-devel + glibmm-devel + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-18 + 2.24.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.24.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-03 + 2.24.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gtkspell + http://gtkspell.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + Spell checking widget for GTK+ + GTK+ için yazım denetimi eklentisi + GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. + GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. + mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz + + gtk2-devel + enchant-devel + intltool + + desktop/toolkit/gtk/gtkspell/pspec.xml + + + gtkspell + + atk + gtk2 + cairo + glib2 + pango + enchant + freetype + fontconfig + gdk-pixbuf + + + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + + + + gtkspell-devel + Development files for gtkspell + gtkspell için geliştirme dosyaları + + gtkspell + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-20 + 2.0.16 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-18 + 2.0.16 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-25 + 2.0.16 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-17 + 2.0.16 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-12 + 2.0.16 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pangomm + http://www.gtkmm.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + desktop.toolkit.gtk + C++ interface for Pango + Pango için C++ arayüzü + Pangomm is a library that provides pango based C++ interface for object-oriented gtkmm applications. + Pangomm, nesne tabanlı gtkmm uygulamaları için C++ tabanlı pango arayüzü sağlayan bir kitaplıktır. + mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz + + grep + libtool + doxygen + boost-devel + glib2-devel + pango-devel + glibmm-devel + cairomm-devel + libsigc++-devel + + desktop/toolkit/gtk/pangomm/pspec.xml + + + pangomm + + pango + glibmm + libgcc + glib2 + cairomm + libsigc++ + + + /usr/lib + /usr/share/doc + + + + pangomm-devel + Development files for pangomm + pangomm için geliştirme dosyaları + + pangomm + cairomm-devel + glibmm-devel + pango-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/pangomm-1.4 + + + + + 2014-05-18 + 2.34.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-14 + 2.34.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 2.28.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gtk2 + http://www.gtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + desktop.toolkit.gtk + The GIMP Toolkit version 2 + GTK grafik arayüz kitaplığı versiyon 2 + GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. + GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. + GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. + mirrors://gnome/gtk+/2.24/gtk+-2.24.28.tar.xz + + cups-devel + libXi-devel + cairo-devel + libXext-devel + libXrandr-devel + libXfixes-devel + libXrender-devel + libXdamage-devel + libXcursor-devel + fontconfig-devel + libXinerama-devel + libXcomposite-devel + atk-devel + pango-devel + gdk-pixbuf-devel + gtk-doc + gobject-introspection-devel + + + xid-collision-debug.patch + fedora/system-python.patch + fedora/icon-padding.patch + fedora/tooltip-positioning.patch + fedora/window-dragging.patch + + desktop/toolkit/gtk/gtk2/pspec.xml + + + gtk2 + + cups + libXi + cairo + libXext + libXrandr + libXfixes + libXrender + libXdamage + libXcursor + fontconfig + libXinerama + libXcomposite + glib2 + libX11 + atk + pango + gdk-pixbuf + dejavu-fonts + + + /etc + /usr/bin + /usr/share/themes + /usr/share/gtk-2.0 + /usr/share/man + /usr/share/doc + /usr/lib + /usr/share/locale + + + System.PackageHandler + + + gtkrc + + + + gtk2-demo + GTK demo application + GTK demo uyulaması + app:gui + + gtk2 + cairo + pango + gdk-pixbuf + glib2 + + + /usr/bin/gtk-demo + /usr/share/gtk-2.0/demo + + + + gtk2-docs + GTK reference documents + GTK referans dökümanları + data:doc + + /usr/share/gtk-doc + + + + gtk2-devel + Development files for gtk2 + gtk2 için geliştirme dosyaları + + gtk2 + atk-devel + pango-devel + cairo-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/gir-1.0 + + + + gtk2-32bit + 32-bit shared libraries for gtk2 + gtk2 için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glibc-32bit + cairo-32bit + cups-32bit + fontconfig-32bit + pango-32bit + glib2-32bit + atk-32bit + libX11-32bit + gdk-pixbuf-32bit + libXcomposite-32bit + libXcursor-32bit + libXdamage-32bit + libXext-32bit + libXfixes-32bit + libXi-32bit + libXinerama-32bit + libXrandr-32bit + libXrender-32bit + + + gtk2 + glibc-32bit + cairo-32bit + pango-32bit + glib2-32bit + atk-32bit + libX11-32bit + cups-32bit + fontconfig-32bit + gdk-pixbuf-32bit + libXcomposite-32bit + libXcursor-32bit + libXdamage-32bit + libXext-32bit + libXfixes-32bit + libXi-32bit + libXinerama-32bit + libXrandr-32bit + libXrender-32bit + + + /usr/bin/*-32bit + /usr/lib32 + + + + + 2015-07-05 + 2.24.28 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-17 + 2.24.23 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-06 + 2.24.22 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-06 + 2.24.22 + Set proper settings to gtkrc, change location of gtkrc. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-21 + 2.24.22 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 2.24.21 + Minor version bump, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-05 + 2.24.20 + Add missing method and fix pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 2.24.20 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-20 + 2.24.17 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-23 + 2.24.16 + Version bump, add new cppflags, enhancements. + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-23 + 2.24.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 2.24.13 + First release + Erdem Artan + admins@pisilinux.org + + + + + + atk + http://developer.gnome.org/atk + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + GTK+ and GNOME Accessibility Toolkit + GTK+ ve GNOME erişilebilirlik kitaplığı + Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. + These libraries provide tools for making software for people with disabilities. + Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. + mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz + + gobject-introspection-devel + glib2-devel + gtk-doc + + desktop/toolkit/gtk/atk/pspec.xml + + + atk + + glib2 + + + /usr/lib/libatk* + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/doc + + + + atk-devel + Development files for atk + atk için geliştirme dosyaları + + atk + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + atk-32bit + 32-bit shared libraries for atk + atk için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + glibc-32bit + + + atk + glib2-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-17 + 2.12.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.12.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-21 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-07 + 2.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-24 + 2.7.91 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qt5-websockets + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebsockets-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-websockets/pspec.xml + + + qt5-websockets + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + + + + qt5-websockets-devel + qt5-websockets için geliştirme dosyaları + + qt5-websockets + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-gstreamer + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.toolkit.qt5 + Qt5 bindings for GStreamer + QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. + http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + glib2-devel + gobject-introspection-devel + cmake + boost-devel + doxygen + gst-plugins-good + gstreamer-next-devel + gst-plugins-base-next-devel + mesa-devel + + desktop/toolkit/qt5/qt5-gstreamer/pspec.xml + + + qt5-gstreamer + + qt5-base + qt5-declarative + qt5-quick1 + gstreamer-next + gst-plugins-base-next + mesa + glib2 + libgcc + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-gstreamer-devel + Development files for qt5-gstreamer + + qt5-gstreamer + glib2-devel + qt5-base-devel + gstreamer-next-devel + qt5-declarative-devel + gst-plugins-base-next-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2015-10-11 + 1.2.0 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + qt5-svg + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsvg-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + zlib-devel + + desktop/toolkit/qt5/qt5-svg/pspec.xml + + + qt5-svg + + libgcc + qt5-base + zlib + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-svg-devel + Development files for qt5-svg + qt5-svg için geliştirme dosyaları + + qt5-base-devel + qt5-svg + + + /usr/include/qt5/ + /usr/lib/pkgconfig + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quickcontrols + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquickcontrols-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quick1-devel + mesa-devel + + desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml + + + qt5-quickcontrols + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-serialport + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtserialport-opensource-src-5.5.1.tar.xz + + qt5-base-devel + eudev-devel + + desktop/toolkit/qt5/qt5-serialport/pspec.xml + + + qt5-serialport + + qt5-base + eudev + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-serialport-devel + qt5-serialport için geliştirme dosyaları + + qt5-base-devel + qt5-serialport + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-multimedia + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtmultimedia-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + pulseaudio-libs-devel + gstreamer-devel + gst-plugins-base-devel + openal-devel + mesa-devel + + desktop/toolkit/qt5/qt5-multimedia/pspec.xml + + + qt5-multimedia + + libgcc + mesa + openal + alsa-lib + qt5-base + gstreamer + pulseaudio-libs + qt5-declarative + gst-plugins-base + glib2 + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-multimedia-devel + qt5-multimedia için geliştirme dosyaları + + qt5-multimedia + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-imageformats + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtimageformats-opensource-src-5.5.1.tar.xz + + qt5-base-devel + jasper-devel + libmng-devel + libjpeg-turbo-devel + zlib-devel + tiff-devel + webp-devel + + desktop/toolkit/qt5/qt5-imageformats/pspec.xml + + + qt5-imageformats + + qt5-base + libgcc + libmng + tiff + webp + jasper + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + + 2015-10-16 + 5.5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-location + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + Provides access to position, satellite and area monitoring classes + Konum, uydu ve alan izleme sınıflarına erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtlocation-opensource-src-5.5.1.tar.xz + + geoclue-devel + glib2-devel + mesa-devel + qt5-base-devel + qt5-webkit-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-location/pspec.xml + + + qt5-location + + qt5-base + glib2 + libgcc + geoclue + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-location-devel + qt5-location için geliştirme dosyaları + + qt5-location + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + polkit-qt + http://www.kde.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.toolkit.qt5 + A library that allows developers to access PolicyKit API with a nice Qt-style API + A library that allows developers to access PolicyKit API with a nice Qt-style API + http://download.kde.org/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2 + + qt5-base-devel + glib2-devel + polkit-devel + mesa-devel + cmake + + + systembus-usage.patch + + desktop/toolkit/qt5/polkit-qt/pspec.xml + + + polkit-qt + + qt5-base + glib2 + polkit + libgcc + + + /usr/share/doc + /usr/lib + + + + polkit-qt-devel + + polkit-qt + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/polkit-qt5-1 + + + + + 2015-10-16 + 0.112 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-01 + 0.112 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-enginio + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtenginio-opensource-src-5.5.1.tar.xz + + libgcc + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-enginio/pspec.xml + + + qt5-enginio + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5/ + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin/ + + + + qt5-enginio-devel + qt5-enginio için geliştirme dosyaları + + qt5-base-devel + qt5-enginio + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-graphicaleffects + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtgraphicaleffects-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-assistant + qt5-sql-sqlite + + desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml + + + qt5-graphicaleffects + + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-tools + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttools-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-tools/pspec.xml + + + qt5-assistant + + libgcc + qt5-base + + + /usr/lib/qt5/bin/assistant + /usr/lib/qt5/bin/qhelpconverter + /usr/lib/qt5/bin/qhelpgenerator + /usr/bin/assistant-qt5 + /usr/bin/qhelpgenerator-qt5 + /usr/bin/qhelpconverter-qt5 + /usr/lib/cmake/Qt5Help + /usr/lib/libQt5Help* + /usr/lib/libQt5CLucene* + /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri + /usr/lib/qt5/mkspecs/modules/qt_lib_help* + /usr/share/applications/assistant5.desktop + /usr/share/qt5/translations/assistant_tr.qm + /usr/share/icons/hicolor/128x128/apps/assistant.png + /usr/share/icons/hicolor/32x32/apps/assistant.png + /usr/share/pixmaps/assistant5.png + /usr/lib/qt5/bin/qcollectiongenerator + /usr/bin/qcollectiongenerator-qt5 + + + qt5-tools + + + qt5-tools + + + assistant_tr.qm + assistant.desktop + assistant.png + + + + qt5-assistant-devel + + qt5-base-devel + qt5-assistant + + + /usr/include/qt5/QtHelp + /usr/include/qt5/QtCLucene + /usr/lib/pkgconfig/Qt5Help.pc + /usr/lib/pkgconfig/Qt5CLucene.pc + + + qt5-tools-devel + + + qt5-tools-devel + + + + qt5-designer + + libgcc + qt5-base + qt5-declarative + + + /usr/lib/qt5/bin/designer + /usr/lib/qt5/bin/qtdiag + /usr/lib/qt5/bin/qtpaths + /usr/lib/qt5/bin/pixeltool + /usr/bin/designer-qt5 + /usr/bin/qtdiag-qt5 + /usr/bin/qtpaths* + /usr/bin/pixeltool-qt5 + /usr/lib/qt5/bin/qtplugininfo + /usr/bin/qtplugininfo-qt5 + /usr/lib/cmake/Qt5Designer + /usr/lib/cmake/Qt5UiTools + /usr/lib/cmake/Qt5UiPlugin + /usr/lib/qt5/plugins/designer + /usr/share/applications/designer5.desktop + /usr/share/qt5/translations/designer_tr.qm + /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png + /usr/share/pixmaps/designer5.png + /usr/lib/libQt5Designer* + /usr/lib/libQt5UiTools* + /usr/lib/qt5/mkspecs/modules/qt_lib_designer* + /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* + /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri + + + qt5-tools + + + qt5-tools + + + designer.desktop + designer_tr.qm + designer.png + + + + qt5-designer-devel + + qt5-base-devel + qt5-designer + + + /usr/include/qt5/QtDesigner* + /usr/include/qt5/QtUiTools + /usr/include/qt5/QtUiPlugin + /usr/lib/pkgconfig/Qt5Designer* + /usr/lib/pkgconfig/Qt5UiTools.pc + + + qt5-tools-devel + + + qt5-tools-devel + + + + qt5-linguist + + libgcc + qt5-base + + + /usr/lib/qt5/bin/linguist + /usr/lib/qt5/bin/lconvert + /usr/lib/qt5/bin/lrelease + /usr/lib/qt5/bin/lupdate + /usr/bin/lrelease-qt5 + /usr/bin/linguist-qt5 + /usr/bin/lconvert-qt5 + /usr/bin/lupdate-qt5 + /usr/lib/cmake/Qt5LinguistTools + /usr/share/applications/linguist5.desktop + /usr/share/icons/hicolor/128x128/apps/linguist.png + /usr/share/icons/hicolor/16x16/apps/linguist.png + /usr/share/icons/hicolor/32x32/apps/linguist.png + /usr/share/icons/hicolor/48x48/apps/linguist.png + /usr/share/icons/hicolor/64x64/apps/linguist.png + /usr/share/pixmaps/linguist5.png + /usr/share/qt5/phrasebooks + /usr/share/qt5/translations/linguist_tr.qm + + + qt5-tools + qt5-tools-devel + + + qt5-tools + qt5-tools-devel + + + linguist.desktop + linguist.png + linguist_tr.qm + + + + qt5-qdbusviewer + + libgcc + qt5-base + + + /usr/lib/qt5/bin/qdbusviewer + /usr/lib/qt5/bin/qdbus + /usr/bin/qdbusviewer-qt5 + /usr/bin/qdbus-qt5 + /usr/bin/qdbus + /usr/share/applications/qdbusviewer5.desktop + /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png + /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png + /usr/share/pixmaps/qdbusviewer5.png + + + qt5-tools + qt5-tools-devel + + + qt5-tools + qt5-tools-devel + + + qdbusviewer.desktop + assistant.png + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-base + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Cross platform application and UI framework + Qt5 araç takımı, sürüm 5 + Qt est une boîte à outils graphique multi-plateforme. + Cross platform application and UI development framework + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır. + Qt es un toolkit para GUI multiplataforma. + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtbase-opensource-src-5.5.1.tar.xz + + at-spi2-core-devel + cups-devel + dbus-devel + zlib-devel + glib2-devel + libpcre-devel + desktop-file-utils + fontconfig-devel + gperf + gtk2-devel + harfbuzz-devel + icon-theme-hicolor + leveldb-devel + firebird-superserver + libjpeg-turbo-devel + mariadb-lib + libxcb-devel + libXcomposite-devel + libxkbcommon-devel + libxslt + mesa-devel + libmtdev-devel + nss-devel + pciutils-devel + postgresql-server + python-devel + DirectFB-devel + sqlite-devel + unixODBC-devel + xcb-proto + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-wm-devel + tiff-devel + libdrm-devel + libpng-devel + eudev-devel + libSM-devel + libICE-devel + libX11-devel + libXext-devel + firebird-devel + unixODBC-devel + libXrandr-devel + libXrender-devel + libXi-devel + xcb-util-renderutil-devel + openssl-devel + freetype-devel + pulseaudio-libs-devel + + + mkspecs.patch + + desktop/toolkit/qt5/qt5-base/pspec.xml + + + qt5-base + + libpcre + libgcc + cups + dbus + gtk2 + mesa + zlib + glib2 + icu4c + libSM + libXi + pango + libICE + libX11 + libdrm + libpng + libxcb + eudev + DirectFB + openssl + freetype + harfbuzz + libmtdev + fontconfig + libXrender + xcb-util-wm + libxkbcommon + libjpeg-turbo + xcb-util-image + xcb-util-keysyms + xcb-util-renderutil + + + /usr/lib + /usr/lib/qt5/imports + /usr/lib/qt5/qml + /usr/lib/qt5/plugins + /usr/share/qt5/translations + /usr/lib/qt5/bin + /usr/bin + /usr/share/doc + + + + qt5-base-devel + Development files for Qt 5 + Qt5 için geliştirme dosyaları + Development files for Qt 5 + + qt5-base + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/qt5/mkspecs + /usr/lib/*.prl + + + + qt5-sql-mysql + Qt5'in SQL sınıfları için MySQL sürücüsü + + qt5-base + libgcc + mariadb-lib + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so + + + + qt5-sql-postgresql + Qt5'in SQL sınıfları için PostgreSQL sürücüsü + + qt5-base + libgcc + postgresql-lib + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so + + + + qt5-sql-sqlite + Qt5'in SQL sınıfları için SQLite sürücüsü + + qt5-base + libgcc + sqlite + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlite.so + + + + qt5-sql-odbc + Qt5'in SQL sınıfları için ODBC sürücüsü + + qt5-base + libgcc + unixODBC + + + /usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so + + + + qt5-base-32bit + 32-bit shared libraries for qt5 + emul32 + emul32 + + cups-32bit + dbus-32bit + gtk2-32bit + mesa-32bit + zlib-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + pango-32bit + libX11-32bit + libdrm-32bit + libpng-32bit + sqlite-32bit + eudev-32bit + openssl-32bit + freetype-32bit + harfbuzz-32bit + libmtdev-32bit + fontconfig-32bit + libXrender-32bit + libjpeg-turbo-32bit + + + libgcc + libpcre + qt5-base-devel + cups-32bit + dbus-32bit + gtk2-32bit + mesa-32bit + zlib-32bit + glib2-32bit + glibc-32bit + icu4c-32bit + pango-32bit + libX11-32bit + libdrm-32bit + libpng-32bit + sqlite-32bit + eudev-32bit + openssl-32bit + freetype-32bit + harfbuzz-32bit + libmtdev-32bit + fontconfig-32bit + libXrender-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2015-10-16 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-07-19 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-23 + 5.4.1 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-configuration + https://github.com/hawaii-desktop/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz + + glib2-devel + dconf-devel + qt5-declarative-devel + cmake + qt5-base-devel + + desktop/toolkit/qt5/qt5-configuration/pspec.xml + + + qt5-configuration + + libgcc + qt5-declarative + glib2 + dconf + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-configuration-devel + + qt5-configuration + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-10-16 + 0.3.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-11 + 0.3.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-11 + 0.2.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-declarative + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdeclarative-opensource-src-5.5.1.tar.xz + + qt5-base-devel + libxkbcommon-devel + mesa-devel + qt5-xmlpatterns-devel + + desktop/toolkit/qt5/qt5-declarative/pspec.xml + + + qt5-declarative + + libgcc + qt5-base + mesa + qt5-xmlpatterns + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin/ + + + + qt5-declarative-devel + qt5-declarative için geliştirme dosyaları + + qt5-base-devel + qt5-declarative + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-translations + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttranslations-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-linguist + + desktop/toolkit/qt5/qt5-translations/pspec.xml + + + qt5-translations + + qt5-base + + + /usr/share/qt5 + /usr/share/licenses/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-connectivity + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtconnectivity-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + bluez-libs-devel + + desktop/toolkit/qt5/qt5-connectivity/pspec.xml + + + qt5-connectivity + + qt5-base + qt5-declarative + bluez-libs + libgcc + + + /usr/bin + /usr/lib + /usr/share/licenses + /usr/lib/qt5 + /usr/lib/qt5/bin/ + + + + qt5-connectivity-devel + qt5-connectivity için geliştirme dosyaları + + qt5-connectivity + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webkit + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebkit-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-sensors-devel + qt5-location-devel + qt5-declarative-devel + qt5-multimedia-devel + mesa-devel + libXtst-devel + gst-plugins-base-devel + libXcomposite-devel + icu4c-devel + libjpeg-turbo-devel + fontconfig-devel + glib2-devel + dbus-devel + ruby-devel + gstreamer-devel + gstreamer-next-devel + libpng-devel + libpcre-devel + eudev-devel + webp-devel + zlib-devel + libxslt-devel + libxml2-devel + libXcomposite-devel + libX11-devel + libXrender-devel + sqlite-devel + perl-Digest-MD5 + perl-Text-ParseWords + gperf + bison + flex + qt5-phonon-devel + + desktop/toolkit/qt5/qt5-webkit/pspec.xml + + + qt5-webkit + + qt5-base + mesa + webp + zlib + glib2 + icu4c + libX11 + libgcc + libpng + sqlite + libxml2 + libxslt + libXrender + qt5-sensors + libXcomposite + libjpeg-turbo + gstreamer + gst-plugins-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5/plugins + /usr/lib/qt5/ + /usr/lib/qt5/bin/ + /usr/bin + /usr/share/doc + + + + qt5-webkit-devel + qt5-webkit için geliştirme dosyaları + + qt5-webkit + qt5-base-devel + mesa-devel + webp-devel + zlib-devel + glib2-devel + icu4c-devel + libX11-devel + libpng-devel + sqlite-devel + libxml2-devel + libxslt-devel + libXrender-devel + qt5-sensors-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-devel + gst-plugins-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-28 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webchannel + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebchannel-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-webchannel/pspec.xml + + + qt5-webchannel + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-webchannel-devel + qt5-webchannel için geliştirme dosyaları + + qt5-webchannel + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quick1 + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. + Qt4 uyumluluğu için Qt Declarative sunar + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. + Qt4 uyumluluğu için Qt Declarative sunar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + qt5-script-devel + + desktop/toolkit/qt5/qt5-quick1/pspec.xml + + + qt5-quick1 + + mesa + qt5-base + qt5-xmlpatterns + qt5-script + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-quick1-devel + Development file for qt5-quick1 + Development file for qt5-quick1 + + qt5-base-devel + qt5-script-devel + qt5-quick1 + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-xmlpatterns + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtxmlpatterns-opensource-src-5.5.1.tar.xz + + qt5-base-devel + + desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml + + + qt5-xmlpatterns + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-xmlpatterns-devel + qt5-xmlpatterns için geliştirme dosyaları + + qt5-xmlpatterns + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-script + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtscript-opensource-src-5.5.1.tar.xz + + qt5-base-devel + mesa-devel + libgcc + + desktop/toolkit/qt5/qt5-script/pspec.xml + + + qt5-script + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-script-devel + qt5-script için geliştirme dosyaları + + qt5-base-devel + qt5-script + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-x11extras + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtx11extras-opensource-src-5.5.1.tar.xz + + qt5-base-devel + mesa-devel + + desktop/toolkit/qt5/qt5-x11extras/pspec.xml + + + qt5-x11extras + + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-x11extras-devel + qt5-x11extras için geliştirme dosyaları + + qt5-x11extras + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-doc + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + assistant5 + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdoc-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-sql-sqlite + qt5-assistant + + desktop/toolkit/qt5/qt5-doc/pspec.xml + + + qt5-doc + + qt5-base + qt5-script + qt5-svg + qt5-xmlpatterns + qt5-assistant + qt5-declarative + + + /usr/share/licenses + /usr/share/doc/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-02 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-sensors + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to sensor hardware and motion gesture recognition + Donanım ve hareket algılama sensörüne erişim sağlar + Provides access to sensor hardware and motion gesture recognition + Donanım ve hareket algılama sensörüne erişim sağlar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsensors-opensource-src-5.5.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-sensors/pspec.xml + + + qt5-sensors + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-sensors-devel + qt5-sensors için geliştirme dosyaları + + qt5-sensors + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2015-10-16 + 5.5.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-accountsservice + https://github.com/hawaii-desktop/qt-accountsservice-addon + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt5 - AccountService addon + Qt5 - AccountService addon + https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.6.0.tar.gz + + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/toolkit/qt5/qt5-accountsservice/pspec.xml + + + qt5-accountsservice + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-accountsservice-devel + + qt5-base + qt5-accountsservice + + + /usr/include + + + + + 2015-09-11 + 0.6.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-11 + 0.1.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + openmotif + http://www.motifzone.org/ + + PisiLinux Community + admins@pisilinux.org + + MOTIF + library + app + desktop.toolkit.motif + Open Motif implementation + Özgür Motif kitaplığı + Freely available version of the well known Motif user interface toolkit for Open Source operating systems. + Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. + mirrors://sourceforge/motif/motif-2.3.4-src.tgz + + libXmu-devel + libXft-devel + xbitmaps + fontconfig-devel + libXt-devel + libXext-devel + libjpeg-turbo-devel + libX11-devel + libpng-devel + + + openmotif-2.3.2-sanitise-paths.patch + 0003_fix_ftbfs_binutils-gold.patch + openmotif-uil.patch + openmotif-unaligned.patch + sentinel.patch + strcmp.patch + warn.patch + openMotif-2.3.0-no_X11R6.patch + motif-2.3.4-bindings.patch + motif-2.3.4-mwmrc_dir.patch + wmluiltok_fake_lex_main.patch + + desktop/toolkit/motif/openmotif/pspec.xml + + + openmotif + + libXmu + libXft + libXp + libSM + libICE + fontconfig + libXt + libXext + libjpeg-turbo + libX11 + libpng + + + /etc + /usr/bin + /usr/lib + /usr/share/X11/app-defaults + /usr/share/X11/bindings + /usr/share/doc + /usr/share/man + + + Mwm.defaults + + + + openmotif-devel + Development files for openmotif + openmotif için geliştirme dosyaları + + openmotif + libXft-devel + libXt-devel + libXmu-devel + libXext-devel + + + /usr/include + /usr/share/man/man3 + + + + openmotif-32bit + 32-bit shared libraries for openmotif + emul32 + emul32 + + libSM-32bit + glibc-32bit + libXt-32bit + libXp-32bit + libXmu-32bit + libpng-32bit + libX11-32bit + libICE-32bit + libXft-32bit + libXext-32bit + fontconfig-32bit + libjpeg-turbo-32bit + + + openmotif + libSM-32bit + libXt-32bit + libXp-32bit + libXmu-32bit + libpng-32bit + libX11-32bit + libICE-32bit + libXft-32bit + libXext-32bit + fontconfig-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2013-08-17 + 2.3.4 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-23 + 2.3.4 + Fix dep, we have no libXp-devel pack. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-10 + 2.3.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + qtcreator + http://qt-project.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + app:gui + programming.environment + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + http://download.qt.io/official_releases/qtcreator/3.5/3.5.1/qt-creator-opensource-src-3.5.1.tar.gz + + libgcc + libX11-devel + cmake + git + mesa-devel + openssh + qt5-base-devel + qt5-declarative-devel + qt5-linguist + qt5-quick1-devel + qt5-quickcontrols + qt5-svg-devel + qt5-xmlpatterns + qt5-webkit-devel + qt5-x11extras-devel + qt5-assistant-devel + qt5-designer-devel + qt5-script-devel + valgrind + llvm-clang-devel + llvm + + + qt-creator_rpath.patch + + desktop/toolkit/qtcreator/pspec.xml + + + qtcreator + Lightweight, cross-platform integrated development environment + + libX11 + libgcc + qt5-svg + qt5-base + qt5-quick1 + qt5-script + qt5-webkit + qt5-designer + qt5-assistant + qt5-x11extras + qt5-declarative + + + /usr/bin + /usr/lib/qtcreator + /usr/share/applications/qtcreator.desktop + /usr/share/licenses + /usr/share/qtcreator + /usr/share/doc + /usr/share/icons + + + qtcreator.desktop + qtcreator.sh + + + + + 2015-11-27 + 3.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-09-06 + 3.4.2 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + fltk + http://www.fltk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit + FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit + FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı + FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. + FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. + FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. + FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. + ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/fltk-1.3.3-source.tar.gz + + zlib-devel + libX11-devel + libgcc + libpng-devel + mesa-devel + libXft-devel + libXext-devel + mesa-glu-devel + libXfixes-devel + libXcursor-devel + fontconfig-devel + libXinerama-devel + libjpeg-turbo-devel + + + tigervnc.patch + fltk-config-dynlibs.patch + + desktop/toolkit/fltk/pspec.xml + + + fltk + + zlib + libX11 + libgcc + libpng + mesa + libXft + libXext + mesa-glu + libXfixes + libXcursor + fontconfig + libXinerama + libjpeg-turbo + + + /usr/lib + /usr/share/doc + + + + fltk-devel + Development files and utilities for FLTK + FLTK için geliştirme dosyaları ve yardımcı uygulamalar + app:console + app:gui + + fltk + libX11 + libgcc + libpng + + + /etc/env.d + /usr/share/man + /usr/bin + /usr/include + /usr/share/icons + /usr/share/mimelnk + /usr/share/doc/*/html + /usr/share/applications + + + 99fltk + + + + + 2015-07-24 + 1.3.3 + emul32bit build disabled. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-26 + 1.3.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-26 + 1.3.2 + Rebuild for gcc 4.9 + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-29 + 1.3.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-03 + 1.3.2 + Version bump. + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-08-26 + 1.3.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-11 + 1.3.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + qscintilla2 + http://www.riverbankcomputing.co.uk/qscintilla/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + desktop.toolkit + Qt port of Scintilla + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + mirrors://sourceforge/pyqt/QScintilla2/QScintilla-2.9.1/QScintilla-gpl-2.9.1.tar.gz + + python-qt5-devel + python3-qt5-devel + python-devel + python3-devel + python3-sip + python-sip + qt5-base-devel + qt5-designer-devel + chrpath + qt5-script-devel + qt5-xmlpatterns-devel + mesa-devel + + + configure.py.patch + libname.patch + + desktop/toolkit/qscintilla2/pspec.xml + + + qscintilla2 + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5/plugins + /usr/share/doc + /usr/share/qt5/mkspecs + /usr/share/qt5/translations + + + + qscintilla2-python-common + Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 + + qscintilla2 + + + /usr/share/qt5/qsci + /usr/share/sip + + + + qscintilla2-python + Python 2.x bindings for qscintilla2 + qscintilla2 için Python bağlayıcıları + + qscintilla2 + qscintilla2-python-common + qt5-base + + + /usr/lib/python2* + + + + qscintilla2-python3 + Python 3.x bindings for qscintilla2 + + python3 + qscintilla2 + qscintilla2-python-common + qt5-base + libgcc + + + /usr/lib/python3* + + + + qscintilla2-doc + HTML documentation for qscintilla2 + qscintilla2 için HTML belgeleri + + /usr/share/doc/qscintilla2/Scintilla + /usr/share/doc/qscintilla2/html + + + + qscintilla2-devel + Development files for qscintilla2 + qscintilla2 için geliştirme dosyaları + Pliki nagłówkowe dla QScintilla + + qscintilla2 + + + /usr/include/qt5/Qsci + + + + + 2015-10-24 + 2.9.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-27 + 2.6.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-21 + 2.6.2 + Fix runtime deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 2.6.2 + Release bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-11 + 2.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gtk-theme-mediterranean + http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Great themes for GTK2 and GTK3 + GTK2 ve GTK3 için güzel temalar + Themes for GTK2 and GTK3. + GTK2 ve GTK3 için yazılmış tema paketleri. + https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz + desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml + + + gtk-theme-mediterranean + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes/MediterraneanDark + /usr/share/themes/MediterraneanWhite + /usr/share/themes/MediterraneanLightDarkest + + + + gtk-theme-mediterranean-others + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes + + + + + 2014-02-06 + 2.03 + Add MediterraneanLightDarkest to main package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-26 + 2.03 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-10-05 + 2.0.3 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gtk2-engines-murrine + http://cimitan.com/murrine/project/murrine + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.lookandfeel + GTK+ Murrine theme engine + GTK+ Murrine tema motoru + The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. + Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. + mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz + + gtk2-devel + glib2-devel + cairo-devel + pango-devel + pixman-devel + gdk-pixbuf-devel + intltool + + desktop/lookandfeel/gtk2-engines-murrine/pspec.xml + + + gtk2-engines-murrine + + gtk2 + glib2 + cairo + pango + pixman + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/gtk-engines + + + + + 2014-02-07 + 0.98.2 + Remove gtk2 runtime dep to avoid cyclic deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-17 + 0.98.2 + Release bump + Erdinç Gültekin + erdinc@pisilinux.org + + + 2012-06-10 + 0.98.2 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + iconcan + http://www.pisilinux.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + app:gui + desktop.lookandfeel + Icon etiketi için görseller + Icon etiketi için görseller + Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. + Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. + lang-tr + http://source.pisilinux.org/1.0/iconcan-1.0.1.tar.xz + desktop/lookandfeel/iconcan/pspec.xml + + + iconcan + + /usr/share/pixmaps + + + + + 2015-02-04 + 1.0.1 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-02-04 + 1.0.0 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + icon-theme-hicolor + http://icon-theme.freedesktop.org/wiki/HicolorTheme + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Default icon theme + Temel simge teması + Hicolor icon theme contains the basic directories and files needed for icon theme support. + Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. + http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz + desktop/lookandfeel/icon-theme-hicolor/pspec.xml + + + icon-theme-hicolor + + /usr/share/doc + /usr/share/icons + + + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-24 + 0.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + artwork-pisilinux-release + http://www.pisilinux.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + public-domain + CCPL-Attribution-ShareAlike-3.0 + CCPL-Attribution-3.0 + data + desktop.lookandfeel + Artwork for Pisi Linux releases + Pisi Linux sürümleri için sanatsal içerik + This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. + Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. + http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz + http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz + desktop/lookandfeel/artwork-pisilinux-release/pspec.xml + + + artwork-pisilinux-release + + /usr/share/wallpapers + + + + example-content + Example files for Pisi Linux + Pisi Linux ile beraber dağıtılan örnek dosyalar + + /usr/share/example-content + /etc/X11/Xsession.d + + + 35-example-content.sh + + + + + 2015-03-04 + 1.2 + Add new wallpapers. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-04 + 0.2 + Add new wallpapers. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-07 + 0.2 + Add new wallpapers, example contents. + Serdar Soytetir + kaptann@pisilinux.org + + + 2013-09-18 + 1.0 + add more izmir themes. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-09-18 + 1.0 + add izmir theme. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-27 + 1.0 + Gönüllü çalışmalar eklendi. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 1.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-22 + 1.0 + bump for pisi Linux + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-01-31 + 2013.1 + First release + Demiray Muhterem + bilgi@bilgegunluk.com + + + + + + xdg-utils + http://portland.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + desktop.misc + Utilitaires de bureaux communs. + Common desktop utilities + Ortak masaüstü komutları + Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. + http://source.pisilinux.org/1.0/xdg-utils.tar.xz + + xmlto + docbook-xsl + util-linux + lynx + + + enable-other-xdg.patch + xfce-detection.patch + drop-xmlto-stuff.patch + + desktop/misc/xdg-utils/pspec.xml + + + xdg-utils + + /usr/bin + /usr/share/man + + + + + 2014-02-16 + 1.1.0_20140207 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-23 + 20131006 + Release bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 1.1.0_rc1 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-05 + 1.1.0_rc1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + startup-notification + http://www.freedesktop.org/software/startup-notification/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.misc + Application startup notification and feedback library + Uygulama başlangıç duyurusu ve geribildirim sistemi + startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). + startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). + startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. + http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz + + libX11-devel + libxcb-devel + xcb-util-devel + + desktop/misc/startup-notification/pspec.xml + + + startup-notification + + libX11 + libxcb + xcb-util + + + /usr/lib + /usr/share/doc + + + + startup-notification-devel + Development files for startup-notification + startup-notification için geliştirme dosyaları + + startup-notification + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/*/*.txt + + + + + 2014-05-18 + 0.12 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-13 + 0.12 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xdg-user-dirs + http://freedesktop.org/wiki/Software/xdg-user-dirs + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + desktop.misc + Utilities to handle user data directories + Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar + xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. + xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. + http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.15.tar.gz + + docbook-xsl + libxml2-devel + libxslt-devel + + + defaults.patch + tr.patch + xdg-user-dirs-0.15-libiconv.patch + + desktop/misc/xdg-user-dirs/pspec.xml + + + xdg-user-dirs + + /etc/X11 + /etc/xdg + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + xdg-user-dirs.sh + + + + + 2014-05-01 + 0.15 + Fix Downloads-İndirilenler direcory name. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-17 + 0.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-26 + 0.12 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-01-19 + 0.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + at-spi2-atk + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + mirrors://gnome/at-spi2-atk/2.16/at-spi2-atk-2.16.0.tar.xz + + at-spi2-core-devel + glib2-devel + atk-devel + libX11-devel + dbus-devel + libXtst-devel + + desktop/misc/at-spi2-atk/pspec.xml + + + at-spi2-atk + + atk + dbus + glib2 + at-spi2-core + + + /usr/lib + /usr/share/doc + + + + at-spi2-atk-32bit + 32-bit shared libraries for at-spi2-atk + emul32 + emul32 + + glibc-32bit + at-spi2-core-32bit + atk-32bit + dbus-32bit + glib2-32bit + + + glibc-32bit + atk-32bit + dbus-32bit + glib2-32bit + at-spi2-core-32bit + + + /usr/lib32 + + + + at-spi2-atk-devel + at-spi2-atk için geliştirme dosyaları + at-spi2-atk için geliştirme dosyaları + + at-spi2-atk + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-15 + 2.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-27 + 2.8.1 + Move pc files to devel pack, rebuild + split packages + PisiLinux Community + admins@pisilinux.org + + + 2013-06-01 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 2.8.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-17 + 2.8.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + at-spi2-core + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + D-Bus at-spi için protokol tanımları ve hizmetleri + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. + mirrors://gnome/at-spi2-core/2.16/at-spi2-core-2.16.0.tar.xz + + libXtst-devel + libXi-devel + gettext-devel + dbus-devel + glib2-devel + intltool + + desktop/misc/at-spi2-core/pspec.xml + + + at-spi2-core + + libXtst + libX11 + dbus + glib2 + + + /etc + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/libexec + /usr/share/gir-1.0 + /usr/share/locale + + + + at-spi2-core-32bit + 32-bit shared libraries for at-spi2-core + emul32 + emul32 + + dbus-32bit + glib2-32bit + libXi-32bit + libX11-32bit + libXtst-32bit + glibc-32bit + + + dbus-32bit + glib2-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + at-spi2-core-devel + at-spi2-core için geliştirme dosyaları + at-spi2-core için geliştirme dosyaları + + at-spi2-core + dbus-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2015-04-17 + 2.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-14 + 2.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-10 + 2.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-07 + 2.8.0 + Fix build. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-30 + 2.8.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 2.8.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-17 + 2.8.0 + Rebuild with new pisi release + PisiLinux Community + admins@pisilinux.org + + + 2013-06-17 + 2.8.0 + Rebuild with new pisi release + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-23 + 2.8.0 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-17 + 2.8.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-22 + 2.7.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + desktop-file-utils + http://www.freedesktop.org/software/desktop-file-utils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.misc + Command line utilities to work with desktop menu entries + Masaüstü menü girdilerini yönetmek için komut satırı araçları + desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. + http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.21.tar.xz + + glib2-devel + + desktop/misc/desktop-file-utils/pspec.xml + + + desktop-file-utils + + glib2 + + + /usr/bin + /usr/share/doc + /usr/share/man/man1/ + + + System.PackageHandler + + + + + 2013-09-07 + 0.21 + Add comar script. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-26 + 0.21 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-21 + 0.21 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + shared-mime-info + http://freedesktop.org/wiki/Software/shared-mime-info + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + data + desktop.misc + The shared MIME info database + Paylaşımlı MIME veritabanı tanımlamaları + shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. + shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. + Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. + http://freedesktop.org/~hadess/shared-mime-info-1.5.tar.xz + + libxml2-devel + glib2-devel + intltool + + + shared-mime-info-xz.patch + + desktop/misc/shared-mime-info/pspec.xml + + + shared-mime-info + + libxml2 + glib2 + + + /etc/X11/xinit + /usr/bin + /usr/share/applications + /usr/share/mime + /usr/share/pkgconfig + /usr/share/locale/ + /usr/share/doc + /usr/share/man + + + System.PackageHandler + System.Package + + + update-mime-database.sh + defaults.list + mimeapps.list + mimetypefixes.xml + + + + + 2015-11-05 + 1.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-16 + 1.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-11-07 + 1.3 + Fix ISO images appearing as .txt files in Dolphin + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 1.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 1.1 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-11 + 1.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-13 + 1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + dconf + http://live.gnome.org/dconf + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:console + desktop.gnome.base + Simple low-level configuration system + Düşük seviyeli yapılandırma sistemi + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + FIXME + http://ftp.gnome.org/pub/gnome/sources/dconf/0.24/dconf-0.24.0.tar.xz + + dbus-devel + glib2-devel + docbook-xsl + libxslt + intltool + gtk-doc + + desktop/gnome/base/dconf/pspec.xml + + + dconf + + dbus + glib2 + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/libexec + + + + dconf-devel + Development files for dconf + + dconf + dbus-devel + glib2-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + + + + dconf-docs + Reference files for dconf + data:doc + + dconf + + + /usr/share/gtk-doc + + + + + 2015-08-12 + 0.24.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-14 + 0.20 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-29 + 0.18 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-07-31 + 0.16.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-21 + 0.15.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + accountsservice + http://www.freedesktop.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + library + desktop.gnome.base + D-Bus Service to Manipulate User Account Information + accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. + http://www.freedesktop.org/software/accountsservice/accountsservice-0.6.40.tar.xz + + intltool + glib2-devel + polkit-devel + + desktop/gnome/base/accountsservice/pspec.xml + + + accountsservice + + polkit + glib2 + + + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/gtk-doc + /usr/share/polkit-1 + /usr/share/vala/vapi + /etc/dbus-1/system.d + /usr/share/locale + /var/lib/AccountsService/ + + + + accountsservice-devel + accountsservice için geliştirme dosyaları + accountsservice için geliştirme dosyaları + + accountsservice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-11 + 0.6.40 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-07-15 + 0.6.35 + Rebuild for gcc. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-08 + 0.6.35 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-30 + 0.6.34 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libgnome-keyring + http://live.gnome.org/GnomeKeyring + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + Compatibility library for accessing gnome-keyring3 + gnome-keyring'e ulaşmak için uyumluluk kütüphanesidir. + libgnome-keyring is a library that used by applications to integrate with the gnome-keyring system. + libgnome-keyring, gnome-keyring sistemine uyumlu olmak için programlar tarafından kullanılan bir kütüphanedir. + http://ftp.acc.umu.se/mirror/gnome.org/sources/libgnome-keyring/3.12/libgnome-keyring-3.12.0.tar.xz + + intltool + glib2-devel + dbus-devel + libgcrypt-devel + + desktop/gnome/base/libgnome-keyring/pspec.xml + + + libgnome-keyring + + libgcrypt + glib2 + dbus + + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libgnome-keyring-devel + Development files for libgnome-keyring + libgnome-keyring için geliştirme dosyaları + + libgnome-keyring + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libgnome-keyring-docs + Referance documents for libgnome-keyring + libgnome-keyring için başvuru belgeleri + data:doc + + /usr/share/gtk-doc + + + + + 2015-08-25 + 3.12 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + + + + libcroco + http://www.freespiders.org/projects/libcroco/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Boîte à outils générique d'analyse et de manipulation de Cascading Style Sheet (CSS - feuilles de style). + Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit + CSS ayıklama kitaplığı + libcroco is an effort to build a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit that can be used by GNOME applications in need of CSS support. + libcroco GNOME uygulamaları tarafından CSS desteği için kullanılan genel bir CSS ayıklama kitaplığıdır. + mirrors://gnome/libcroco/0.6/libcroco-0.6.8.tar.xz + + libxml2-devel + glib2-devel + + + multilib.patch + + desktop/gnome/base/libcroco/pspec.xml + + + libcroco + + glib2 + libxml2 + + + /usr/share + /usr/lib + /usr/bin + + + + libcroco-devel + Development files for libcroco + libcroco için geliştirme dosyaları + + libcroco + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/bin/croco-*-config + + + + libcroco-32bit + 32-bit shared libraries for libcroco + emul32 + emul32 + + glib2-32bit + libxml2-32bit + + + glib2-32bit + glibc-32bit + libxml2-32bit + libcroco + + + /usr/lib32 + + + + + 2014-08-11 + 0.6.8 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-26 + 0.6.8 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-12-22 + 0.6.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libsecret + http://projects.gnome.org/libsecret + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.base + The libsecret package contains a GObject based library + The libsecret package contains a GObject based library for accessing the Secret Service API. + mirrors://gnome/libsecret/0.18/libsecret-0.18.tar.xz + + gtk-doc + vala-devel + libxslt-devel + libgcrypt-devel + glib2-devel + xmlto + + desktop/gnome/base/libsecret/pspec.xml + + + libsecret + + libxslt + libgcrypt + glib2 + xmlto + + + /usr/share + /usr/lib + /usr/bin + + + + libsecret-devel + Development files for libsecret + libsecret için geliştirme dosyaları + + libsecret + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-14 + 0.18 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-04-23 + 0.18 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-05 + 0.16 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-20 + 0.16 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-09-05 + 0.16 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-26 + 0.15 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-30 + 0.15 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-21 + 0.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libbonobo + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + desktop.gnome.base + GNOME CORBA framework + GNOME CORBA geliştirme ortamı + Bonobo is a component system based on CORBA, used by the GNOME desktop. + mirrors://gnome/libbonobo/2.32/libbonobo-2.32.1.tar.bz2 + + orbit2-devel + glib2-devel + libxml2-devel + flex + grep + popt-devel + intltool + perl + gettext-devel + gtk-doc + + + libbonobo-2.32.1-srcdir-macro.patch + libbonobo-multishlib.patch + + desktop/gnome/base/libbonobo/pspec.xml + + + libbonobo + + orbit2 + glib2 + libxml2 + + + /etc + /usr/bin + /usr/sbin + /usr/libexec + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/doc + /usr/share/idl + + + + libbonobo-devel + Development files for libbonobo + libbonobo için geliştirme dosyaları + + libbonobo + orbit2-devel + glib2-devel + + + /usr/lib/pkgconfig + /usr/include + + + + libbonobo-docs + Bonobo referance documents + data:doc + + /usr/share/gtk-doc + + + + + 2014-05-24 + 2.32.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 2.32.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-02 + 2.32.1 + Rebuild for RC. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-30 + 2.32.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-18 + 2.32.0 + First release + Burak Çalışkan + admins@pisilinux.org + + + + + + dconf-editor + http://live.gnome.org/dconf + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.base + Gui editor for dconf; simple low-level configuration system + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + ftp://ftp.gnome.org/pub/gnome/sources/dconf-editor/3.16/dconf-editor-3.16.1.tar.xz + + dconf-devel + libxml2-devel + gtk3-devel + pango-devel + docbook-xsl + libepoxy-devel + at-spi2-core-devel + vala-devel + libxslt + intltool + gtk-doc + + desktop/gnome/base/dconf-editor/pspec.xml + + + dconf-editor + + dconf + glib2 + libxml2 + gtk3 + pango + + + /etc + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/libexec + + + + + 2015-08-12 + 3.16.1 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gnome-common + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + Common files for development of GNOME packages + GNOME uygulamalarının geliştirmede kullandığı yaygın dosyalar + gnome-common package contains aclocal macros, makefile headers and documents tools in order to build GNOME sources. + mirrors://gnome/gnome-common/3.10/gnome-common-3.10.0.tar.xz + desktop/gnome/base/gnome-common/pspec.xml + + + gnome-common + + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/share/gnome-common + + + + + 2014-06-14 + 3.10.0 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-05-21 + 3.12.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-27 + 3.10.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-08-26 + 2.34.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-12-22 + 2.34.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + eigen3 + http://eigen.tuxfamily.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2-with-exceptions + library + science.misc + Lightweight C++ template library for linear algebra + Lineer cebir için hafif bir C++ şablon kitaplığı + eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. + Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. + http://bitbucket.org/eigen/eigen/get/3.2.5.tar.bz2 + + cmake + freeglut-devel + fftw3-devel + gmp-devel + mpfr-devel + mesa-devel + + science/misc/eigen3/pspec.xml + + + eigen3 + + /usr/include + /usr/share + + + + + 2015-07-23 + 3.2.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-29 + 3.2.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-07-07 + 3.2.1 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-14 + 3.2.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-09 + 3.2.0 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + wcslib + http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + science.misc + A C library that implements the 'World Coordinate System' (WCS) standard in FITS + The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. + ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-5.12.tar.bz2 + + gcc + flex + libgfortran + cfitsio-devel + + science/misc/wcslib/pspec.xml + + + wcslib + + cfitsio + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + wcslib-devel + Development files for wcslib + + wcslib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-18 + 5.12 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ilmbase + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.misc + Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR + ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar + IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). + IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. + http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz + + ilmbase-2.0.1-no_undefined.patch + ilmbase-IexMath.patch + ilmbase-1.0.3-pkgconfig.patch + + science/misc/ilmbase/pspec.xml + + + ilmbase + + libgcc + + + /usr/lib + /usr/share/doc + + + + ilmbase-devel + Development files for ilmbase + ilmbase için geliştirme dosyaları + + ilmbase + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 2.0.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.0.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-13 + 1.0.2 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + libnova + http://libnova.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + science.misc + Celestial Mechanics and Astronomical Calculation Library + Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi + libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. + libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. + mirrors://sourceforge/libnova/libnova/v%200.14.0/libnova-0.14.0.tar.gz + science/misc/libnova/pspec.xml + + + libnova + + /usr/bin + /usr/lib + /usr/share/doc + + + + libnova-devel + Development files for libnova + libnova için geliştirme dosyaları + + libnova + + + /usr/include + /usr/bin/libnovaconfig + + + + + 2014-06-14 + 0.14.0 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-01 + 0.14.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-02-13 + 0.14.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libindi + http://www.indilib.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + science.misc + Astronomical control protocol library + indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. + http://www.indilib.org/jdownloads/Source/libindi_1.1.0.tar.gz + + libnova-devel + cfitsio-devel + gsl-devel + curl-devel + libjpeg-turbo-devel + libusb-devel + boost-devel + zlib-devel + pkgconfig + cmake + + science/misc/libindi/pspec.xml + + + libindi + + libnova + cfitsio + gsl + curl + libjpeg-turbo + libusb + gsl + libgcc + zlib + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/indi + /usr/share/doc + + + + libindi-devel + Development files for libindi + + libindi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-18 + 1.1.0 + Version Bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-06-14 + 0.9.7 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-26 + 0.9.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-28 + 0.9.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + cfitsio + http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html + + PisiLinux Community + admins@pisilinux.org + + as-is + library + app:console + science.misc + C and Fortran library for manipulating FITS files + FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi + CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. + CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. + http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz + science/misc/cfitsio/pspec.xml + + + cfitsio + + /usr/lib + /usr/bin + /usr/share/doc + + + + cfitsio-devel + Development files for cfitsio + cfitsio için geliştirme dosyaları + + cfitsio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-18 + 3.370 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-31 + 3.360 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-20 + 3.360 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-13 + 3.310 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xplanet + http://xplanet.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.astronomy + Render a planetary image into an X window + Gezegen görüntülerini bir X penceresine çizdirir + Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. + Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. + mirrors://sourceforge/project/xplanet/xplanet/1.3.0/xplanet-1.3.0.tar.gz + + pango-devel + netpbm-devel + libXScrnSaver-devel + giflib-devel + libjpeg-turbo-devel + tiff-devel + + + giflib6.patch + xplanet-1.2.1-fix-gcc44.patch + + science/astronomy/xplanet/pspec.xml + + + xplanet + + pango + netpbm + libXScrnSaver + giflib + libjpeg-turbo + tiff + + + /usr/bin + /usr/share/doc + /usr/share + /usr/share/man + + + + + 2014-06-14 + 1.3.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-29 + 1.3.0 + add giflib patch + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-17 + 1.3.0 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org + + + 2012-10-28 + 1.3.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + opencv + http://opencv.willowgarage.com/wiki + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.robotics + Computer vision library + Bilgisayarla görme kütüphanesi + Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym + opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics. + opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. + OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. + https://github.com/Itseez/opencv/archive/2.4.11.tar.gz + + cmake + gtk2-devel + libv4l-devel + openexr-libs + jasper-devel + lapack-devel + ilmbase-devel + openexr-devel + lapack-devel + xine-lib-devel + libdc1394-devel + gstreamer-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + science/robotics/opencv/pspec.xml + + + opencv + + gtk2 + zlib + glib2 + jasper + libgcc + libpng + libv4l + ilmbase + openexr-libs + xine-lib + libdc1394 + gstreamer + gst-plugins-base + libjpeg-turbo + + + /usr/lib + /usr/bin + /usr/share/OpenCV + /usr/share/opencv + + + + opencv-docs + Computer vision library documents and examples + + /usr/share/doc/opencv + /usr/share/doc/opencv/samples + + + + opencv-devel + Development files for opencv + opencv için geliştirme dosyaları + Pliki naglowkowe do opencv + + opencv + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-15 + 2.4.11 + Version bump,rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-15 + 2.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-20 + 2.4.7 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-08-20 + 2.4.6.1 + ignore xine-lib + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-13 + 2.4.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-08 + 2.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gsl + http://www.gnu.org/software/gsl/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + science.mathematics + GNU scientific library + GNU bilimsel kütüphane + La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. + The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. + C ve C++ programcıları tarafından kullanılan nümerik kütüphane + GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. + http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz + science/mathematics/gsl/pspec.xml + + + gsl + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + gsl-devel + Development files for gsl + gsl için geliştirme dosyaları + + gsl + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2014-05-30 + 1.16 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libspiro + http://libspiro.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + Library to simplify the drawing of beautiful curves + Eğri çizimi kütüphanesi + libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. + libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. + mirrors://sourceforge/libspiro/libspiro_src-20071029.tar.bz2 + science/mathematics/libspiro/pspec.xml + + + libspiro + + /usr/lib + /usr/share/doc + + + + libspiro-devel + Development files for libspiro + libspiro için geliştirme dosyaları + + libspiro + + + /usr/include + /usr/share/man/man3 + + + + + 2014-06-14 + 20071029 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-01 + 20071029 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 20071029 + First release + Gökcen Eraslan + admins@pisilinux.org + + + + + + fftw3 + http://www.fftw.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + A library for computing the discrete Fourier transform (DFT) + Ayrık Fourier dönüşümü hesaplamak için bir kütüphane + FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). + fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). + fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. + FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). + http://www.fftw.org/fftw-3.3.4.tar.gz + + libgfortran + libquadmath + gettext + + science/mathematics/fftw3/pspec.xml + + + fftw3 + + libquadmath + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + + + + fftw3-devel + Development files for fftw3 + fftw3 için geliştirme dosyaları + + fftw3 + + + /usr/lib/pkgconfig + /usr/include + /usr/share/doc/fftw3/html + + + + + 2014-05-25 + 3.3.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-24 + 3.3.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-01-07 + 3.3.3 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + cln + http://www.ginac.de/CLN/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + CLN, une librairie de classes (C++) pour les nombres. + A class library (C++) for numbers + Sayılar için bir C++ sınıf kütüphanesi + cln is a library for efficient computations with all kinds of numbers in arbitrary precision. + cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. + http://www.ginac.de/CLN/cln-1.3.4.tar.bz2 + + gmp-devel + + science/mathematics/cln/pspec.xml + + + cln + + gmp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + cln-devel + Development files for cln + cln için geliştirme dosyaları + + cln + gmp-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-29 + 1.3.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-14 + 1.3.3 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2013-10-30 + 1.3.3 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-25 + 1.3.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plotutils + http://www.gnu.org/software/plotutils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + 2D vector graphics library + 2B vektörel grafik araçları + PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. + 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar + ftp://aeneas.mit.edu/pub/gnu/plotutils/plotutils-2.6.tar.gz + + libXaw-devel + libXext-devel + libXt-devel + + + plotutils-2.6-png15.patch + + science/mathematics/plotutils/pspec.xml + + + plotutils + + libSM + libICE + libXmu + libXaw + libXext + libXt + libX11 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/libplot + /usr/share/ode + /usr/share/pic2plot + /usr/share/tek2plot + + + + plotutils-devel + Development files for plotutils + plotutils için geliştirme dosyaları + + plotutils + + + /usr/include + + + + + 2014-06-14 + 2.6 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-10 + 2.6 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 2.6 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-11 + 2.6 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libqalculate + http://qalculate.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. + Multi-purpose calculator library + Genel amaçlı hesap makinesi kütüphanesi + libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. + libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. + mirrors://sourceforge/qalculate/libqalculate-0.9.7.tar.gz + + cln-devel + gmp-devel + libxml2-devel + glib2-devel + gettext-devel + intltool + + + libqalculate-0.9.6-check-fix.patch + libqalculate-0.9.6-gcc4.3.patch + + science/mathematics/libqalculate/pspec.xml + + + libqalculate + + cln + libxml2 + glib2 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/qalculate + + + + libqalculate-devel + Development files for libqalculate + libqalculate için geliştirme dosyaları + + libqalculate + cln-devel + libxml2-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-14 + 0.9.7 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-02-01 + 0.9.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-07-14 + 0.9.7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lapack + http://www.netlib.org/lapack + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.mathematics + Linear Algebra PACKage + Doğrusal cebir paketi + LAPACK is a standard library for numerical linear algebra. LAPACK provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. + LAPACK, nümerik doğrusal cebir için yazılmış standart bir kütüphanedir. Eşanlı doğrusal denklemler sistemini, doğrusal denklemler sistemindeki en küçük kareler tekniğini, özdeğer ve tekil değer problemlerini çözmek için pekçok yordamlar içerir. + http://www.netlib.org/lapack/lapack-3.5.0.tgz + + libgfortran + cmake + + + lapack-sharedlib.patch + + science/mathematics/lapack/pspec.xml + + + blas + Basic Linear Algebra Subprograms + Temel lineer cebir yordamları + Blas is a standard library which provides a number of basic algorithms for numerical algebra. + + libgfortran + + + /usr/lib/libblas.so* + + + + blas-devel + Development files for blas + blas için geliştirme dosyaları + static + + blas + + + /usr/lib/libblas.a + /usr/lib/pkgconfig/blas.pc + + + + lapack + + libgcc + libgfortran + blas + + + /usr/share/doc + /usr/lib/liblapack.so* + + + + lapack-devel + Development files for lapack + lapack için geliştirme dosyaları + static + + lapack + blas-devel + + + /usr/lib/cmake + /usr/lib/liblapack.a + /usr/lib/pkgconfig/lapack.pc + + + + + 2014-12-23 + 3.5.0 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2014-05-26 + 3.5.0 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2013-11-18 + 3.5.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-10-03 + 3.4.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + SuiteSparse + http://www.cise.ufl.edu/research/sparse + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + science.mathematics + Sparse matrix library + Sparse matrix kütüphanesi + Librairie de matrices Sparse. + SuiteSparse is a single archive that contains sparse matrix libraries. + Sparse matrix kütüphanesi. + http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.4.tar.gz + + lapack-devel + blas-devel + libgcc + + science/mathematics/SuiteSparse/pspec.xml + + + SuiteSparse + + lapack + blas + libgcc + + + /usr/lib + /usr/share/doc + + + + SuiteSparse-devel + Development files for SuiteSparse + SuiteSparse için geliştirme dosyaları + + SuiteSparse + + + /usr/include + + + + + 2015-08-11 + 4.4.4 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-31 + 4.2.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-17 + 4.2.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-12-08 + 4.0.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + djbfft + http://cr.yp.to/djbfft.html + + PisiLinux Community + admins@pisilinux.org + + public-domain + library + science.mathematics + Fast float library + Hızlı küsürlü sayı kitaplığı + An extremely fast library for floating-point convolution. + djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. + http://cr.yp.to/djbfft/djbfft-0.76.tar.gz + + gcc3.patch + shared.patch + headers.patch + + science/mathematics/djbfft/pspec.xml + + + djbfft + + /usr/lib + /usr/share/doc + + + + djbfft-devel + Development files for djbfft + djbfft için geliştirme dosyaları + + djbfft + + + /usr/include + + + + + 2014-05-20 + 0.76 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-22 + 0.76 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 0.76 + First release + Pisi Linux Admins + admins@pisilinux.org + + + perf @@ -3574,186 +57544,6 @@ - - - module-nvidia340 - http://www.nvidia.com - - Pisi Linux Community - admins@pisilinux.org - - NVIDIA - kernel.drivers - NVIDIA drivers for GeForce 6xxx and newer GPUs - NVIDIA graphics drivers provide optimized 2D/3D performance. - http://http.download.nvidia.com/XFree86/Linux-x86/340.96/NVIDIA-Linux-x86-340.96.run - http://http.download.nvidia.com/XFree86/Linux-x86_64/340.96/NVIDIA-Linux-x86_64-340.96.run - - kernel-module-headers - - kernel/drivers/module-nvidia340/pspec.xml - - - module-nvidia340 - Kernel module for NVIDIA driver 340.xx releases - driver - - noDelta - - - kernel - - - /lib/modules - - - - xorg-video-nvidia340 - driver - x11.driver - - noDelta - - - libXext - xorg-server - module-nvidia340 - libX11 - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - xorg-video-nvidia-current - xorg-video-nvidia304 - - - System.Package - - - - xorg-video-nvidia340-32bit - 32-bit shared libraries for xorg-video-nvidia340 - emul32 - - noDelta - - emul32 - - libvdpau-32bit - glibc-32bit - - - zlib-32bit - libX11-32bit - libXext-32bit - glibc-32bit - xorg-video-nvidia340 - - - /usr/lib32 - /usr/share/nvidia-current/32bit-ld.so.conf - - - xorg-video-nvidia-current-32bit - xorg-video-nvidia304-32bit - - - System.Package - - - - - 2015-12-13 - 340.96 - Version bump for kernel 4.3.2 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-22 - 340.76 - Rebuild for kernel 3.19.8 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-05 - 340.76 - Rebuild for kernel 3.19.6 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-24 - 340.76 - Rebuild for kernel 3.19.5 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-16 - 340.76 - Rebuild for kernel 3.19.4 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-02 - 340.76 - Rebuid for kernel 3.19.3 - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-08 - 340.76 - Rebuild for kernel 3.19.1 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-01 - 340.76 - Version bump, Rebuild for kernel 3.19.0 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-31 - 340.76 - Version bump, Rebuild for kernel 3.18.3 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-13 - 340.65 - version bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-12-08 - 340.58 - Rebuild for kernel 3.17.4 - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-11-13 - 340.58 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - module-nvidia304 @@ -4494,24728 +58284,181 @@ - wcslib - http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - science.misc - A C library that implements the 'World Coordinate System' (WCS) standard in FITS - The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. - ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-5.12.tar.bz2 - - gcc - flex - libgfortran - cfitsio-devel - - science/misc/wcslib/pspec.xml - - - wcslib - - cfitsio - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - wcslib-devel - Development files for wcslib - - wcslib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-18 - 5.12 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - cfitsio - http://heasarc.gsfc.nasa.gov/docs/software/fitsio/fitsio.html - - PisiLinux Community - admins@pisilinux.org - - as-is - library - app:console - science.misc - C and Fortran library for manipulating FITS files - FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi - CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. - CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. - http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3370.tar.gz - science/misc/cfitsio/pspec.xml - - - cfitsio - - /usr/lib - /usr/bin - /usr/share/doc - - - - cfitsio-devel - Development files for cfitsio - cfitsio için geliştirme dosyaları - - cfitsio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-18 - 3.370 - Version Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2014-05-31 - 3.360 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-20 - 3.360 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-13 - 3.310 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libnova - http://libnova.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - science.misc - Celestial Mechanics and Astronomical Calculation Library - Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi - libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. - libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. - mirrors://sourceforge/libnova/libnova/v%200.14.0/libnova-0.14.0.tar.gz - science/misc/libnova/pspec.xml - - - libnova - - /usr/bin - /usr/lib - /usr/share/doc - - - - libnova-devel - Development files for libnova - libnova için geliştirme dosyaları - - libnova - - - /usr/include - /usr/bin/libnovaconfig - - - - - 2014-06-14 - 0.14.0 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-01 - 0.14.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-02-13 - 0.14.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libindi - http://www.indilib.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - science.misc - Astronomical control protocol library - indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. - http://www.indilib.org/jdownloads/Source/libindi_1.1.0.tar.gz - - libnova-devel - cfitsio-devel - gsl-devel - curl-devel - libjpeg-turbo-devel - libusb-devel - boost-devel - zlib-devel - pkgconfig - cmake - - science/misc/libindi/pspec.xml - - - libindi - - libnova - cfitsio - gsl - curl - libjpeg-turbo - libusb - gsl - libgcc - zlib - - - /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/indi - /usr/share/doc - - - - libindi-devel - Development files for libindi - - libindi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-18 - 1.1.0 - Version Bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-06-14 - 0.9.7 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-26 - 0.9.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-28 - 0.9.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - eigen3 - http://eigen.tuxfamily.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2-with-exceptions - library - science.misc - Lightweight C++ template library for linear algebra - Lineer cebir için hafif bir C++ şablon kitaplığı - eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. - Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. - http://bitbucket.org/eigen/eigen/get/3.2.5.tar.bz2 - - cmake - freeglut-devel - fftw3-devel - gmp-devel - mpfr-devel - mesa-devel - - science/misc/eigen3/pspec.xml - - - eigen3 - - /usr/include - /usr/share - - - - - 2015-07-23 - 3.2.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-29 - 3.2.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-07-07 - 3.2.1 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-14 - 3.2.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-09 - 3.2.0 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - ilmbase - http://www.openexr.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.misc - Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR - ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar - IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). - IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. - http://download.savannah.nongnu.org/releases/openexr/ilmbase-2.0.1.tar.gz - - ilmbase-2.0.1-no_undefined.patch - ilmbase-IexMath.patch - ilmbase-1.0.3-pkgconfig.patch - - science/misc/ilmbase/pspec.xml - - - ilmbase - - libgcc - - - /usr/lib - /usr/share/doc - - - - ilmbase-devel - Development files for ilmbase - ilmbase için geliştirme dosyaları - - ilmbase - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 2.0.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-16 - 2.0.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-13 - 1.0.2 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - xplanet - http://xplanet.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - science.astronomy - Render a planetary image into an X window - Gezegen görüntülerini bir X penceresine çizdirir - Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. - Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. - mirrors://sourceforge/project/xplanet/xplanet/1.3.0/xplanet-1.3.0.tar.gz - - pango-devel - netpbm-devel - libXScrnSaver-devel - giflib-devel - libjpeg-turbo-devel - tiff-devel - - - giflib6.patch - xplanet-1.2.1-fix-gcc44.patch - - science/astronomy/xplanet/pspec.xml - - - xplanet - - pango - netpbm - libXScrnSaver - giflib - libjpeg-turbo - tiff - - - /usr/bin - /usr/share/doc - /usr/share - /usr/share/man - - - - - 2014-06-14 - 1.3.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-29 - 1.3.0 - add giflib patch - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-17 - 1.3.0 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2012-10-28 - 1.3.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gsl - http://www.gnu.org/software/gsl/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - science.mathematics - GNU scientific library - GNU bilimsel kütüphane - La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. - The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. - C ve C++ programcıları tarafından kullanılan nümerik kütüphane - GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. - http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz - science/mathematics/gsl/pspec.xml - - - gsl - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - gsl-devel - Development files for gsl - gsl için geliştirme dosyaları - - gsl - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2014-05-30 - 1.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - fftw3 - http://www.fftw.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - A library for computing the discrete Fourier transform (DFT) - Ayrık Fourier dönüşümü hesaplamak için bir kütüphane - FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). - fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). - fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. - FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). - http://www.fftw.org/fftw-3.3.4.tar.gz - - libgfortran - libquadmath - gettext - - science/mathematics/fftw3/pspec.xml - - - fftw3 - - libquadmath - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - fftw3-devel - Development files for fftw3 - fftw3 için geliştirme dosyaları - - fftw3 - - - /usr/lib/pkgconfig - /usr/include - /usr/share/doc/fftw3/html - - - - - 2014-05-25 - 3.3.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-24 - 3.3.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-07 - 3.3.3 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libqalculate - http://qalculate.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. - Multi-purpose calculator library - Genel amaçlı hesap makinesi kütüphanesi - libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. - libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. - mirrors://sourceforge/qalculate/libqalculate-0.9.7.tar.gz - - cln-devel - gmp-devel - libxml2-devel - glib2-devel - gettext-devel - intltool - - - libqalculate-0.9.6-check-fix.patch - libqalculate-0.9.6-gcc4.3.patch - - science/mathematics/libqalculate/pspec.xml - - - libqalculate - - cln - libxml2 - glib2 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/qalculate - - - - libqalculate-devel - Development files for libqalculate - libqalculate için geliştirme dosyaları - - libqalculate - cln-devel - libxml2-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-14 - 0.9.7 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-02-01 - 0.9.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-07-14 - 0.9.7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libspiro - http://libspiro.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - Library to simplify the drawing of beautiful curves - Eğri çizimi kütüphanesi - libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. - libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. - mirrors://sourceforge/libspiro/libspiro_src-20071029.tar.bz2 - science/mathematics/libspiro/pspec.xml - - - libspiro - - /usr/lib - /usr/share/doc - - - - libspiro-devel - Development files for libspiro - libspiro için geliştirme dosyaları - - libspiro - - - /usr/include - /usr/share/man/man3 - - - - - 2014-06-14 - 20071029 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-01 - 20071029 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 20071029 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - djbfft - http://cr.yp.to/djbfft.html - - PisiLinux Community - admins@pisilinux.org - - public-domain - library - science.mathematics - Fast float library - Hızlı küsürlü sayı kitaplığı - An extremely fast library for floating-point convolution. - djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. - http://cr.yp.to/djbfft/djbfft-0.76.tar.gz - - gcc3.patch - shared.patch - headers.patch - - science/mathematics/djbfft/pspec.xml - - - djbfft - - /usr/lib - /usr/share/doc - - - - djbfft-devel - Development files for djbfft - djbfft için geliştirme dosyaları - - djbfft - - - /usr/include - - - - - 2014-05-20 - 0.76 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-22 - 0.76 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.76 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - plotutils - http://www.gnu.org/software/plotutils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - 2D vector graphics library - 2B vektörel grafik araçları - PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. - 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar - ftp://aeneas.mit.edu/pub/gnu/plotutils/plotutils-2.6.tar.gz - - libXaw-devel - libXext-devel - libXt-devel - - - plotutils-2.6-png15.patch - - science/mathematics/plotutils/pspec.xml - - - plotutils - - libSM - libICE - libXmu - libXaw - libXext - libXt - libX11 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/libplot - /usr/share/ode - /usr/share/pic2plot - /usr/share/tek2plot - - - - plotutils-devel - Development files for plotutils - plotutils için geliştirme dosyaları - - plotutils - - - /usr/include - - - - - 2014-06-14 - 2.6 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-10 - 2.6 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 2.6 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-11 - 2.6 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lapack - http://www.netlib.org/lapack - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.mathematics - Linear Algebra PACKage - Doğrusal cebir paketi - LAPACK is a standard library for numerical linear algebra. LAPACK provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. - LAPACK, nümerik doğrusal cebir için yazılmış standart bir kütüphanedir. Eşanlı doğrusal denklemler sistemini, doğrusal denklemler sistemindeki en küçük kareler tekniğini, özdeğer ve tekil değer problemlerini çözmek için pekçok yordamlar içerir. - http://www.netlib.org/lapack/lapack-3.5.0.tgz - - libgfortran - cmake - - - lapack-sharedlib.patch - - science/mathematics/lapack/pspec.xml - - - blas - Basic Linear Algebra Subprograms - Temel lineer cebir yordamları - Blas is a standard library which provides a number of basic algorithms for numerical algebra. - - libgfortran - - - /usr/lib/libblas.so* - - - - blas-devel - Development files for blas - blas için geliştirme dosyaları - static - - blas - - - /usr/lib/libblas.a - /usr/lib/pkgconfig/blas.pc - - - - lapack - - libgcc - libgfortran - blas - - - /usr/share/doc - /usr/lib/liblapack.so* - - - - lapack-devel - Development files for lapack - lapack için geliştirme dosyaları - static - - lapack - blas-devel - - - /usr/lib/cmake - /usr/lib/liblapack.a - /usr/lib/pkgconfig/lapack.pc - - - - - 2014-12-23 - 3.5.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2014-05-26 - 3.5.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2013-11-18 - 3.5.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-10-03 - 3.4.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - SuiteSparse - http://www.cise.ufl.edu/research/sparse - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - science.mathematics - Sparse matrix library - Sparse matrix kütüphanesi - Librairie de matrices Sparse. - SuiteSparse is a single archive that contains sparse matrix libraries. - Sparse matrix kütüphanesi. - http://faculty.cse.tamu.edu/davis/SuiteSparse/SuiteSparse-4.4.4.tar.gz - - lapack-devel - blas-devel - libgcc - - science/mathematics/SuiteSparse/pspec.xml - - - SuiteSparse - - lapack - blas - libgcc - - - /usr/lib - /usr/share/doc - - - - SuiteSparse-devel - Development files for SuiteSparse - SuiteSparse için geliştirme dosyaları - - SuiteSparse - - - /usr/include - - - - - 2015-08-11 - 4.4.4 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-31 - 4.2.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-17 - 4.2.1 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-12-08 - 4.0.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - cln - http://www.ginac.de/CLN/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - CLN, une librairie de classes (C++) pour les nombres. - A class library (C++) for numbers - Sayılar için bir C++ sınıf kütüphanesi - cln is a library for efficient computations with all kinds of numbers in arbitrary precision. - cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. - http://www.ginac.de/CLN/cln-1.3.4.tar.bz2 - - gmp-devel - - science/mathematics/cln/pspec.xml - - - cln - - gmp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - cln-devel - Development files for cln - cln için geliştirme dosyaları - - cln - gmp-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-29 - 1.3.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-14 - 1.3.3 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2013-10-30 - 1.3.3 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-25 - 1.3.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - opencv - http://opencv.willowgarage.com/wiki - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.robotics - Computer vision library - Bilgisayarla görme kütüphanesi - Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym - opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics. - opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. - OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. - https://github.com/Itseez/opencv/archive/2.4.11.tar.gz - - cmake - gtk2-devel - libv4l-devel - openexr-libs - jasper-devel - lapack-devel - ilmbase-devel - openexr-devel - lapack-devel - xine-lib-devel - libdc1394-devel - gstreamer-devel - libjpeg-turbo-devel - gst-plugins-base-devel - - science/robotics/opencv/pspec.xml - - - opencv - - gtk2 - zlib - glib2 - jasper - libgcc - libpng - libv4l - ilmbase - openexr-libs - xine-lib - libdc1394 - gstreamer - gst-plugins-base - libjpeg-turbo - - - /usr/lib - /usr/bin - /usr/share/OpenCV - /usr/share/opencv - - - - opencv-docs - Computer vision library documents and examples - - /usr/share/doc/opencv - /usr/share/doc/opencv/samples - - - - opencv-devel - Development files for opencv - opencv için geliştirme dosyaları - Pliki naglowkowe do opencv - - opencv - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-09-15 - 2.4.11 - Version bump,rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-15 - 2.4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-11-20 - 2.4.7 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-08-20 - 2.4.6.1 - ignore xine-lib - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-13 - 2.4.6.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-08 - 2.4.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - rrdtool - http://oss.oetiker.ch/rrdtool/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - network.analyzer - A system to store and display time-series data - Zaman serisi verilerini saklamak ve göstermek için bir araç - RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). - RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. - http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.5.3.tar.gz - - lua-devel - tcl-devel - ruby-devel - cairo-devel - pango-devel - libart_lgpl-devel - dejavu-fonts - perl - glib2-devel - python-devel - libxml2-devel - tcp-wrappers-devel - groff - - network/analyzer/rrdtool/pspec.xml - - - rrdtool - - lua - tcl - ruby - cairo - pango - libart_lgpl - dejavu-fonts - perl - glib2 - python - libxml2 - tcp-wrappers - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/rrdtool - - - - rrdtool-devel - - rrdtool - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-30 - 1.5.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-25 - 1.5.2 - Rebuild for ruby, ver. bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-20 - 1.4.7 - Rebuild for lua. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-28 - 1.4.7 - Rebuild, rm unused deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-12-01 - 1.4.7 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2013-05-29 - 1.4.7 - Build for ruby 2.0 - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-01 - 1.4.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - avahi - http://avahi.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - network.analyzer - Local network service discovery - Yerel ağ hizmeti bulma sistemi - avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. - avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. - http://avahi.org/download/avahi-0.6.31.tar.gz - - gtk2-devel - gtk3-devel - libcap-devel - libdaemon-devel - gobject-introspection-devel - libepoxy-devel - at-spi2-core-devel - gdbm-devel - intltool - - - avahi-0.6.31-no-deprecations.patch - - network/analyzer/avahi/pspec.xml - - - avahi-glib - Libraries for easy use of avahi from glib applications - Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar - - glib2 - avahi - avahi-libs - - - /usr/lib/libavahi-glib.* - /usr/lib/libavahi-gobject.* - - - - avahi-glib-devel - Development files for avahi-glib - avahi-glib için geliştirme dosyaları - - avahi-glib - avahi-devel - - - /usr/include/avahi-glib - /usr/include/avahi-gobject - /usr/lib/pkgconfig/avahi-glib.pc - /usr/lib/pkgconfig/avahi-gobject.pc - - - - avahi-ui - Gtk user interface library for Avahi - avahi için geliştirme dosyaları - - gdbm - gtk2 - glib2 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib/libavahi-ui.so* - - - - avahi-ui-devel - Development files for avahi-ui - avahi-ui için geliştirme dosyaları - - gtk2-devel - avahi-ui - avahi-devel - avahi-glib-devel - - - /usr/include/avahi-ui - /usr/lib/pkgconfig/avahi-ui.pc - - - - avahi-ui-gtk3 - Gtk3 user interface library for Avahi - avahi-gtk3, Gtk3 user interface library for Avahi - - gdbm - glib2 - gtk3 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - - - /usr/lib/libavahi-ui-gtk3.so* - - - - avahi-ui-gtk3-devel - Development files for avahi-ui-gtk3 - avahi-ui-gtk3 için geliştirme dosyaları - - gtk2-devel - avahi-ui-gtk3 - avahi-devel - avahi-glib-devel - gtk3-devel - - - /usr/lib/pkgconfig/avahi-ui-gtk3.pc - - - - avahi-ui-tools - UI tools for mDNS browsing - Grafiksel mDNS tarama araçları - - gtk3 - glib2 - avahi - avahi-ui - avahi-glib - avahi-ui-gtk3 - avahi-libs - gtk3 - - - /usr/lib/python*/site-packages - /usr/bin/b* - /usr/bin/avahi-discover* - /usr/bin/avahi-bookmarks - /usr/share/man/man1/b* - /usr/share/man/man1/avahi-discover* - /usr/share/man/man1/avahi-bookmarks* - /usr/share/avahi/interfaces - /usr/share/applications/b* - /usr/share/applications/avahi-discover.desktop - - - - avahi-compat-howl - Libraries for howl compatibility - howl uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libhowl.so* - - - - avahi-compat-howl-devel - Development files for avahi-compat-howl - avahi-compat-howl için geliştirme dosyaları - - avahi-compat-howl - - - /usr/include/avahi-compat-howl - /usr/lib/pkgconfig/avahi-compat-howl.pc - /usr/lib/pkgconfig/howl.pc - - - - avahi-compat-libdns_sd - Libraries for Apple Bonjour mDNSResponder compatibility - libdns_sd uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libdns_sd.so* - - - - avahi-compat-libdns_sd-devel - Development files for avahi-compat-libdns_sd - avahi-compat-libdns_sd için geliştirme dosyaları - - avahi-compat-libdns_sd - - - /usr/include/avahi-compat-libdns_sd - /usr/include/dns_sd.h - /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc - /usr/lib/pkgconfig/libdns_sd.pc - - - - avahi-libs - Libraries needed to run programs that use avahi - Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar - - dbus - - - /usr/lib/libavahi-common.so* - /usr/lib/libavahi-client.so* - - - - avahi - - dbus - expat - libcap - libdaemon - avahi-libs - - - /usr/sbin/avahi-daemon - /usr/lib/libavahi-core.so* - /etc/avahi/avahi-daemon.conf - /etc/avahi/hosts - /etc/avahi/services/ssh.service - /etc/dbus-1/system.d/avahi-dbus.conf - /usr/share/avahi - /usr/share/dbus-1/interfaces/*.xml - /usr/share/dbus-1/system-services - /usr/lib/avahi/service* - /lib/systemd/system - /usr/share/locale - /usr/share/doc - /usr/share/man/man5/* - /usr/share/man/man8/avahi-daemon.* - /run/avahi-daemon - /usr/lib/tmpfiles.d/avahi.conf - - - System.Service - System.Package - - - avahi.conf - - - - avahi-autoipd - Link-local IPv4 address automatic configuration daemon (IPv4LL) - Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) - - libdaemon - - - /etc/avahi/avahi-autoipd.action - /usr/sbin/avahi-autoipd - /usr/share/man/man8/avahi-autoipd.* - /var/lib/avahi-autoipd - - - - avahi-dnsconfd - Configure local unicast DNS settings based on information published in mDNS - Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti - - libdaemon - avahi - avahi-libs - - - /etc/avahi/avahi-dnsconfd.action - /usr/sbin/avahi-dnsconfd - /usr/share/man/man8/avahi-dnsconfd.* - - - System.Service - - - - avahi-tools - Command line tools for mDNS browsing and publishing - mDNS taramak ve yayınlamak için komut satırı araçları - - gdbm - avahi - avahi-libs - - - /usr/bin - /usr/share/man/man1 - - - - avahi-devel - Development files for avahi - avahi için geliştirme dosyaları - - avahi-libs - - - /usr/lib/pkgconfig/avahi-core.pc - /usr/lib/pkgconfig/avahi-client.pc - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/include/avahi-client - /usr/include/avahi-common - /usr/include/avahi-core - - - - - 2014-05-20 - 0.6.31 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-24 - 0.6.31 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-08 - 0.6.31 - Add avahi.conf, fix build - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-17 - 0.6.31 - Fix deps - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-06-27 - 0.6.31 - Fix avahi-daemon.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-03 - 0.6.31 - Avahi-ui-gtk3 added - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 0.6.31 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-05 - 0.6.31 - First release - Erdem Artan - admins@pisilinux.org - - - - - - glib-networking - http://git.gnome.org/browse/glib-networking/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.library - Network-related giomodules for glib - Moduły GIO dotyczące sieci do glib - This package contains various network related extensions for the GIO library. - Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. - mirrors://gnome/glib-networking/2.38/glib-networking-2.38.2.tar.xz - - gnutls-devel - p11-kit-devel - ca-certificates - intltool - glib2-devel - - network/library/glib-networking/pspec.xml - - - glib-networking - - gnutls - p11-kit - glib2 - ca-certificates - - - /usr/lib/gio/modules - /usr/libexec - /usr/share - /usr/share/doc/glib-networking - - - - - 2014-03-30 - 2.38.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-27 - 2.34.2 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - libqmi - http://www.freedesktop.org/wiki/Software/libqmi/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - network.library - QMI modem protocol helper library - libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. - http://www.freedesktop.org/software/libqmi/libqmi-1.8.0.tar.xz - - glib2-devel - gobject-introspection-devel - - network/library/libqmi/pspec.xml - - - libqmi - - glib2 - gobject-introspection - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/gtk-doc - /usr/share/doc/libqmi/ - - - - libqmi-devel - Development files for libqmi - - libqmi - - - /usr/include - /usr/lib/pkgconfig/qmi-glib.pc - - - - - 2014-01-19 - 1.8.0 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libmbim - http://www.freedesktop.org/wiki/Software/libmbim/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.library - MBIM modem protocol helper library. - libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. - http://www.freedesktop.org/software/libmbim/libmbim-1.12.2.tar.xz - - gtk-doc - glib2-devel - eudev-devel - - network/library/libmbim/pspec.xml - - - libmbim - - glib2 - eudev - - - /usr/lib - /usr/share/man - /usr/bin/ - /usr/share/gtk-doc/ - /usr/libexec - /usr/share/doc/libmbim - - - - libmbim-devel - libmbim için geliştirme dosyaları - libmbim için geliştirme dosyaları - - libmbim - - - /usr/lib/pkgconfig - /usr/include/libmbim-glib/ - - - - - 2015-07-15 - 1.12.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-01-20 - 1.6.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - serf - https://code.google.com/p/serf/ - - Osman Erkan - osman.erkan@pisilinux.org - - Apachev2 - library - network.library - High-performance asynchronous HTTP client library. - The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. - http://serf.googlecode.com/svn/src_releases/serf-1.3.8.tar.bz2 - - db-devel - zlib-devel - expat-devel - openssl-devel - apr-devel - apr-util-devel - scons - - network/library/serf/pspec.xml - - - serf - - db - zlib - expat - openssl - apr - apr-util - openldap-client - - - /usr/lib - /usr/share/doc - - - - serf-devel - Development files for serf - serf için geliştirme dosyaları - - serf - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-09-02 - 1.3.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 1.3.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-12-24 - 1.3.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - nodejs - http://nodejs.org/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - MIT - app:console - network.library - is a platform built on Chrome's JavaScript runtime for easily building fast, scalable network applications - Olay bazlı V8 Javascript motoru - Evented I/O for V8 javascript - Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. - http://nodejs.org/dist/v4.1.2/node-v4.1.2.tar.gz - - openssl-devel - - network/library/nodejs/pspec.xml - - - nodejs - - openssl - libgcc - - - /usr/bin - /usr/include - /usr/lib/node_modules - /usr/share/doc - /usr/share/man - /usr/share/systemtap - - - - - 2015-10-10 - 4.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 0.12.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-02-07 - 0.10.36 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-10-31 - 0.10.33 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ModemManager - http://projects.gnome.org/NetworkManager - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - service - network.connection - A manager framework for mobile broadband modems - Mobil modemler için yönetim katmanı - ModemManager provides a unified high level API for communicating with mobile broadband modems. - ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. - http://www.freedesktop.org/software/ModemManager/ModemManager-1.2.0.tar.xz - - ppp-devel - libqmi-devel - libmbim-devel - intltool - - network/connection/ModemManager/pspec.xml - - - ModemManager - - ppp - glib2 - libqmi - libmbim - eudev - libmm-glib - - - /usr/share/doc - /usr/sbin - /usr/share/icons - /usr/share/locale - /usr/share/dbus-1 - /usr/share/gir-1.0/ModemManager-1.0.gir - /lib/udev/rules.d/ - /etc/dbus-1/system.d/ - /usr/lib/ModemManager - /usr/lib/girepository-1.0/ModemManager-1.0.typelib - /usr/share/man/man8/ModemManager.8 - - - - ModemManager-devel - Development files for ModemManager - ModemManager için geliştirme dosyaları - - ModemManager - - - /usr/include/ModemManager/ - /usr/lib/pkgconfig/ModemManager.pc - - - - libmm-glib - D-Bus service for managing modems - shared libraries - - glib2 - - - /usr/bin - /usr/share/vala/vapi/libmm-glib.vapi - /usr/share/vala/vapi/libmm-glib.deps - /usr/lib/libmm-glib.so* - /usr/share/man/man8/mmcli.8 - - - - libmm-glib-devel - Development files for libmm-glib - libmm-glib için geliştirme dosyaları - - libmm-glib - glib2-devel - ModemManager-devel - - - /usr/include/libmm-glib/ - /usr/lib/pkgconfig/mm-glib.pc - - - - - 2014-02-17 - 1.2.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-20 - 1.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-08-28 - 5.3.96 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - linux-atm - http://linux-atm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - network.connection - Tools to support ATM networking under Liunx - ATM ağ bağlantısı desteği için araçlar - linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. - linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. - mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz - - flex - - - man-pages.patch - - network/connection/linux-atm/pspec.xml - - - linux-atm - - flex - - - /lib/firmware - /usr/sbin - /usr/bin - /etc - /usr/lib - /usr/share/man - /usr/share/doc - - - - linux-atm-devel - Development files for linux-atm - linux-atm için geliştirme dosyaları - - linux-atm - - - /usr/include - - - - - 2015-04-13 - 2.5.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2010-10-13 - 2.5.1 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - bridge-utils - http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.connection - Linux network bridging utilities - Linux için ağ köprüleme yardımcı uygulamaları - Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. - Linux için ağ köprüleme yardımcı uygulamaları. - http://downloads.sourceforge.net/project/bridge/bridge/bridge-utils-1.5.tar.gz - - bridge-utils-1.0.4-inc.patch - bridge-utils-1.2-params.patch - bridge-utils-1.5-linux_3.8.x.patch - - network/connection/bridge-utils/pspec.xml - - - bridge-utils - - /usr/include - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2014-01-19 - 1.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-28 - 1.5 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - NetworkManager - http://projects.gnome.org/NetworkManager - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2+ - app:console - network.connection - Network connection manager powered by D-Bus and UDEV - D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı - NetworkManager attempts to keep an active network connection available at all times. - NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. - https://download.gnome.org/sources/NetworkManager/1.0/NetworkManager-1.0.4.tar.xz - - tr.po - - - intltool - ppp-devel - nss-devel - newt-devel - nspr-devel - libnl-devel - libsoup-devel - bluez-libs-devel - iptables-devel - wpa_supplicant - dbus-glib-devel - gobject-introspection - libndp-devel - libmm-glib-devel - dbus-devel - glib2-devel - polkit-devel - readline-devel - eudev-devel - libutil-linux-devel - ConsoleKit-devel - - - disable_set_hostname.patch - - network/connection/NetworkManager/pspec.xml - - - NetworkManager - - dbus - nspr - glib2 - polkit - readline - dbus-glib - libutil-linux - eudev - nss - newt - ppp - libnl - libsoup - bluez-libs - iproute2 - iptables - libmm-glib - ModemManager - wpa_supplicant - libndp - ConsoleKit - mobile-broadband-provider-info - - - /etc - /usr/share - /etc/dbus-1 - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /lib/udev - /usr/sbin - /lib/udev/rules.d - /usr/libexec - /run/NetworkManager - /lib/systemd/system - /usr/share/locale - /var/lib/NetworkManager - /etc/NetworkManager/system-connections - /usr/lib/tmpfiles.d/NetworkManager.conf - /etc/polkit-1/localauthority/10-vendor.d - - - System.Service - - - NetworkManager.confd - tmpfiles.conf - NetworkManager.conf - migrate-comar-network-profiles - gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla - 01-org.freedesktop.ModemManager1.rules - 01-org.freedesktop.NetworkManager.settings.modify.system.rules - - - - NetworkManager-devel - Development files for NetworkManager - NetworkManager için geliştirme dosyaları - - glib2-devel - dbus-glib-devel - NetworkManager - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2015-07-22 - 1.0.4 - fixed missing dep and added rules files - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2015-06-14 - 1.0.2 - fixed missing dep and added rules files - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2015-05-14 - 1.0.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - systemRestart - - - - 2015-01-07 - 1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - 2014-05-17 - 0.9.8.10 - Version bump. - Vedat Demir - vedat@pisilinux.org - - systemRestart - - - - 2014-01-10 - 0.9.8.8 - Version bump. Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - systemRestart - - - - 2013-09-08 - 0.9.8.2 - /var/run => /run - Marcin Bojara - marcin@pisilinux.org - - systemRestart - - - - 2013-07-27 - 0.9.8.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-02-21 - 0.9.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-23 - 0.9.7.995 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-13 - 0.9.6.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - network-manager-applet - http://projects.gnome.org/NetworkManager - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - network.connection - Network connection manager GUI interface - NetworkManager için güçlü bir grafik arayüzü - network-manager-applet is a powerful graphical frontend to NetworkManager. - network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. - http://ftp.gnome.org/mirror/gnome.org/sources/network-manager-applet/1.0/network-manager-applet-1.0.4.tar.xz - - gtk2-devel - gtk3-devel - libsecret-devel - cairo-devel - pango-devel - libnotify-devel - libmm-glib-devel - gdk-pixbuf-devel - at-spi2-core-devel - NetworkManager-devel - iso-codes - dbus-devel - glib2-devel - dbus-glib-devel - atk-devel - eudev-devel - intltool - - network/connection/network-manager-applet/pspec.xml - - - network-manager-applet - - gtk3 - atk - cairo - pango - libsecret - libnotify - libmm-glib - gdk-pixbuf - NetworkManager - at-spi2-core - dbus - glib2 - dbus-glib - eudev - - - /usr/bin - /usr/share/libnm-gtk - /usr/lib/ - /usr/share/icons - /usr/share/applications - /usr/share/nm-applet - /etc/dbus-1 - /usr/share - /usr/libexec - /etc/gconf/schemas - /etc/xdg/autostart - /usr/share/man - /usr/share/doc - /usr/share/locale - - - - network-manager-applet-devel - network-manager-applet için geliştirme dosyaları - network-manager-applet için geliştirme dosyaları - - network-manager-applet - NetworkManager-devel - dbus-glib-devel - gtk3-devel - - - /usr/include/libnm-gtk - /usr/lib/pkgconfig - - - - - 2015-07-22 - 1.0.4 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-13 - 1.0.2 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-11 - 1.0.2 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2015-01-13 - 1.0.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-21 - 0.9.8.10 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2014-02-19 - 0.9.8.8 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-17 - 0.9.8.8 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-27 - 0.9.8.2 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-04 - 0.9.8.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-21 - 0.9.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-26 - 0.9.7.995 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 0.9.6.4 - New version - Ertan Güven - ertan@pisilinux.org - - - 2012-08-28 - 0.9.6.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mobile-broadband-provider-info - http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders - - PisiLinux Community - admins@pisilinux.org - - public-domain - data - network.connection - Service provider specific settings of mobile broadband providers in different countries - Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı - The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. - mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. - ftp://ftp.gnome.org/pub/gnome/sources/mobile-broadband-provider-info/20120614/mobile-broadband-provider-info-20120614.tar.xz - network/connection/mobile-broadband-provider-info/pspec.xml - - - mobile-broadband-provider-info - - /usr/share - - - - - 2012-08-28 - 20120614 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openconnect - http://www.infradead.org/openconnect.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - network.connection - A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols - Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci - openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. - openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. - ftp://ftp.infradead.org/pub/openconnect/openconnect-7.06.tar.gz - - intltool - python-devel - openssl-devel - libxml2-devel - zlib-devel - - network/connection/openconnect/pspec.xml - - - openconnect - - zlib - libxml2 - openssl - - - /usr/bin/openconnect - /usr/share/man/man8 - /usr/share/doc - /usr/share/locale - /usr/sbin - /usr/lib - - - - openconnect-devel - Development files and headers for openconnect - openconnect için geliştirme dosyaları ve başlıkları - - openconnect - zlib-devel - openssl-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-15 - 7.06 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-03-09 - 5.01 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-29 - 5.01 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-05 - 5.01 - fix remove dep. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-07-04 - 5.01 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-08-28 - 4.06 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ppp - http://samba.org/ppp - - PisiLinux Community - admins@pisilinux.org - - BSD - GPLv2 - service - network.connection - Point-to-point protocol - patched for PPPOE - Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü - The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. - PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. - http://samba.org/ftp/ppp/ppp-2.4.6.tar.gz - http://www.netservers.net.uk/gpl/ppp-dhcpc.tgz - - libpcap-devel - openssl-devel - pam-devel - - - gentoo/02_all_make-vars.patch - gentoo/04_all_mpls.patch - gentoo/06_all_killaddr-smarter.patch - gentoo/08_all_wait-children.patch - gentoo/10_all_defaultgateway.patch - gentoo/12_all_linkpidfile.patch - gentoo/16_all_auth-fail.patch - gentoo/18_all_defaultmetric.patch - gentoo/20_all_dev-ppp.patch - gentoo/24_all_passwordfd-read-early.patch - gentoo/26_all_pppd-usepeerwins.patch - gentoo/28_all_connect-errors.patch - gentoo/30_all_Makefile.patch - gentoo/32_all_pado-timeout.patch - gentoo/34_all_lcp-echo-adaptive.patch - ppp-2.3.6-sample.patch - ppp-2.4.3-fix64.patch - ppp-2.4.2-change_resolv_conf.patch - nostrip.patch - ppp-2.4.3-local.patch - ppp-2.4.3-ipv6-accept-remote.patch - ppp-2.4.5-ppp_resolv.patch - ppp-2.4.5-var_run_ppp.patch - ppp-2.4.6-eaptls-mppe-0.99.patch - - network/connection/ppp/pspec.xml - - - ppp - - libpcap - pam - openssl - - - /etc - /usr/lib/tmpfiles.d/ppp.conf - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man - /run/ppp - - - tmpfiles.conf - options-pptp - options-pppoe - chat-default - ip-up - ip-down - confd.ppp0 - ppp.pamd - ppp.logrotate - - - - ppp-devel - Development files for ppp - ppp için geliştirme dosyaları - - ppp - - - /usr/include - - - - - 2014-04-03 - 2.4.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-10 - 2.4.5 - Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-12 - 2.4.5 - service.py no longer needed. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-23 - 2.4.5 - Add service.py - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-13 - 2.4.5 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - wpa_supplicant - http://hostap.epitest.fi/wpa_supplicant/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - service - network.connection - IEEE 802.1X/WPA supplicant for secure wireless transfers - Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı - wpa_supplicant is a WPA supplicant with support for WPA and WPA2. - WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. - http://hostap.epitest.fi/releases/wpa_supplicant-2.4.tar.gz - - wpa_supplicant.config - - - libnl-devel - openssl-devel - dbus-devel - readline-devel - - - ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch - wpa_supplicant-1.0-dbus-path-fix.patch - wpa_supplicant-1.0-do-not-call-dbus-functions-with-NULL-path.patch - mandriva/wpa_supplicant-0.6.3-WEP232.patch - fedora/wpa_supplicant-openssl-more-algs.patch - fedora/wpa_supplicant-flush-debug-output.patch - fedora/wpa_supplicant-assoc-timeout.patch - suse/wpa_supplicant-errormsg.patch - - network/connection/wpa_supplicant/pspec.xml - - - wpa_supplicant - - libnl - dbus - openssl - readline - - - /etc - /etc/dbus-1 - /usr/sbin - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/dbus-1/system-services - /run - - - System.Service - - - wpa_supplicant.conf - wpa_supplicant.confd - wpa_supplicant.logrotate - wpa_supplicant.py - - - - - 2015-07-15 - 2.4 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-06-02 - 2.1 - Version Bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-03-02 - 2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-14 - 1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - telepathy-salut - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Link-local XMPP Telepathy connection manager - XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. - telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. - telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz - - libxslt-devel - glib2-devel - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - avahi-devel - avahi-glib-devel - libsoup-devel - openssl-devel - python-devel - sqlite-devel - cyrus-sasl-devel - - - fix_bork_in_tr_locale.patch - - network/chat/telepathy-salut/pspec.xml - - - telepathy-salut - - dbus - glib2 - sqlite - libsoup - libxml2 - openssl - dbus-glib - avahi-glib - avahi-libs - telepathy-glib - - - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - /usr/share/man - - - - - 2015-11-22 - 0.8.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 0.8.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.8.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.8.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-haze - http://developer.pidgin.im/wiki/Telepathy - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - A multi-protocol Libpurple connection manager for Telepathy - Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi - telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. - Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. - http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz - - glib2-devel - dbus-devel - dbus-glib-devel - libpurple-devel - telepathy-glib-devel - libxslt-devel - - network/chat/telepathy-haze/pspec.xml - - - telepathy-haze - - dbus - glib2 - dbus-glib - libpurple - telepathy-glib - - - /usr/libexec - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-11-21 - 0.8.0 - version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2013-09-19 - 0.5.0 - Fix dep, we have no kdenetwork package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 0.5.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.5.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-logger-qt - https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - network.chat - Qt bindings for telepathy logger - Qt Wrapper around TpLogger client library. - http://download.kde.org/stable/telepathy-logger-qt/15.04/src/telepathy-logger-qt-15.04.0.tar.xz - - extra-cmake-modules - qt5-base-devel - doxygen - telepathy-qt5-devel - glib2-devel - dbus-devel - dbus-glib-devel - libxml2-devel - telepathy-logger-devel - - network/chat/telepathy-logger-qt/pspec.xml - - - telepathy-logger-qt - Qt bindings for telepathy logger - - glib2 - libgcc - qt5-base - telepathy-qt5 - telepathy-glib - telepathy-logger - - - /usr/lib/libtelepathy-logger-qt.so.* - /usr/share/doc - - - - telepathy-logger-qt-devel - Development files for telepathy-logger-qt - - telepathy-logger-qt - telepathy-glib-devel - - - /usr/include - /usr/lib/libtelepathy-logger-qt.so - /usr/lib/cmake/TelepathyLoggerQt - - - - - 2015-11-22 - 15.04.0 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-qt5 - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - Qt based classes for Telepathy communication framework - Telepathy iletişim çatısı için Qt tabanlı sınıflar - The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. - Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. - http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.6.tar.gz - - cmake - qt5-base-devel - gobject-introspection-devel - dbus-glib-devel - libxml2-devel - farstream-devel - telepathy-farstream-devel - doxygen - - - glibc-2.20.patch - - network/chat/telepathy-qt5/pspec.xml - - - telepathy-qt5 - - glib2 - libgcc - qt5-base - telepathy-glib - telepathy-farstream - doxygen - - - /usr/lib - /usr/share/doc - - - - telepathy-qt5-devel - Development files for telepathy-qt5 - telepathy-qt5 için geliştirme dosyaları - - telepathy-qt5 - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 0.9.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.9.3 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.9.3 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-19 - 0.9.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pidgin - http://www.pidgin.im - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - network.chat - Instant messaging application previously known as gaim - Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı - Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. - Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. - pidgin - mirrors://sourceforge/pidgin/pidgin-2.10.11.tar.bz2 - - intltool - glib2-devel - gtk2-devel - libXScrnSaver-devel - libSM-devel - gtkspell-devel - sqlite-devel - libxml2-devel - gstreamer-devel - farstream-devel - gst-plugins-base-devel - libidn-devel - avahi-glib-devel - dbus-glib-devel - NetworkManager-devel - nss-devel - tcl-devel - tcltk-devel - cyrus-sasl-devel - doxygen - libxslt-devel - gnutls-devel - atk-devel - cairo-devel - gdk-pixbuf-devel - ncurses-devel - python-devel - - - suse/ pidgin-2.10.11-send-video-enum.patch - suse/pidgin-2.10.11-add-dtmf-support.patch - suse/pidgin-2.10.11-fix-sound-play-fd-leak.patch - suse/pidgin-2.10.11-gst-references.patch - suse/pidgin-2.10.11-init-media-optional.patch - suse/pidgin-2.10.11-private-media.patch - suse/pidgin-ncurses-6.0-accessors.patch - - network/chat/pidgin/pspec.xml - - - pidgin - app:gui - - atk - dbus - gtk2 - cairo - glib2 - libSM - pango - libICE - sqlite - freetype - gtkspell - dbus-glib - gstreamer - fontconfig - gdk-pixbuf - libXScrnSaver - libpurple - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/sounds - /usr/share/dbus-1 - /usr/share/purple - /usr/share/pixmaps - /usr/lib/pidgin - /etc/gconf/schemas - /usr/share/appdata/ - /usr/share/locale - /usr/share/applications - - - - pidgin-devel - Development files of pidgin - pidgin paketine ait geliştirme dosyaları - library - - pidgin - libpurple-devel - gtk2-devel - - - /usr/include/pidgin - /usr/bin/dh_pidgin - /usr/share/man/man3/Pidgin* - /usr/lib/pkgconfig/pidgin.pc - - - - finch - Console based instant messaging application - Konsol tabanlı anında mesajlaşma istemcisi - app:console - - glib2 - libX11 - python - libxml2 - ncurses - gstreamer - libpurple - - - /usr/lib/gnt - /usr/lib/finch - /usr/lib/libgnt* - /usr/bin/finch - /usr/share/man/man1/finch* - - - - finch-devel - Development files of finch - finch paketine ait geliştirme dosyaları - library - - finch - libpurple-devel - - - /usr/include/gnt - /usr/include/finch - /usr/lib/pkgconfig/gnt* - /usr/lib/pkgconfig/finch* - - - - libpurple - The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. - Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı - library - - nss - tcl - dbus - nspr - perl - glib2 - tcltk - gnutls - libidn - libxml2 - dbus-glib - gstreamer - avahi-glib - avahi-libs - cyrus-sasl - gst-plugins-base - - - /usr/lib/purple-2 - /usr/bin/purple* - /usr/lib/libpurple* - - - - libpurple-devel - Development files of libpurple - libpurple paketine ait geliştirme dosyaları - library - - libpurple - - - /usr/share/aclocal - /usr/include/libpurple - /usr/share/man/man3/Purple* - /usr/lib/pkgconfig/purple.pc - - - - - 2015-11-20 - 2.10.11 - rebuild and add pisi-2.0. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-17 - 2.10.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-17 - 2.10.9 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-04 - 2.10.9 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-11 - 2.10.7 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-29 - 2.10.7 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-22 - 2.10.7 - fixing some errors - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-16 - 2.10.7 - Updated - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-07-25 - 2.10.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - telepathy-glib - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - GLib bindings for the Telepathy D-Bus protocol - Telepathy D-Bus protokolü için GLib bağlayıcıları - Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. - Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. - http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - libxslt-devel - vala-devel - - network/chat/telepathy-glib/pspec.xml - - - telepathy-glib - GLib bindings for the Telepathy D-Bus protocol - library - - dbus - glib2 - dbus-glib - - - /usr/lib - /usr/share/gir-1.0 - /usr/share/doc - - - - telepathy-glib-docs - Help files and API documents of telepathy-glib library - telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-glib - - - /usr/share/gtk-doc - - - - telepathy-glib-devel - Development files for telepathy-glib - telepathy-glib için geliştirme dosyaları - - telepathy-glib - - - /usr/include - /usr/lib/pkgconfig - /usr/share/vala/vapi - - - - - 2015-11-20 - 0.24.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 0.24.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2013-11-26 - 0.23.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-07-09 - 0.20.2 - Enable vala bindings - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-12 - 0.20.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-22 - 0.20.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - telepathy-farstream - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Telepathy client to handle media streaming channels - Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi - Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. - Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. - http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - farstream-devel - gstreamer-next-devel - - network/chat/telepathy-farstream/pspec.xml - - - telepathy-farstream - library - - dbus - glib2 - dbus-glib - farstream - gstreamer-next - telepathy-glib - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - - - - telepathy-farstream-docs - Help files and API documents of telepathy-farstream library - telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-farstream - - - /usr/share/gtk-doc - - - - telepathy-farstream-devel - Development files for telepathy-farstream - telepathy-farstream için geliştirme dosyaları - - telepathy-farstream - farstream-devel - gstreamer-next-devel - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-20 - 0.6.2 - Version bump and fix name - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 0.0.17 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.0.17 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.0.17 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-logger - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - Logging utility Telepathy - Telepathy için kayıt tutma aracı. - telepathy-logger is a logging utility for Telepathy communication framework. - telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. - http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 - - glib2-devel - intltool - libxslt-devel - dbus-devel - dbus-glib-devel - gobject-introspection-devel - libxml2-devel - sqlite-devel - telepathy-glib-devel - - network/chat/telepathy-logger/pspec.xml - - - telepathy-logger - - dbus - glib2 - sqlite - libxml2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/gir-1.0/ - /usr/share/telepathy - /usr/share/glib-2.0/ - /usr/libexec - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/share/doc - - - - telepathy-logger-devel - Development files for telepathy-logger - telepathy-logger için geliştirme dosyaları - - telepathy-logger - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-22 - 0.8.2 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.8.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-04-12 - 0.8.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.1.7 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-idle - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - IRC connection manager for Telepathy - Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi - telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. - telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz - - telepathy-glib-devel - libxslt-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - - network/chat/telepathy-idle/pspec.xml - - - telepathy-idle - - glib2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/dbus-1 - /usr/share/doc - /usr/share/man - /usr/share/telepathy - - - - - 2015-11-22 - 0.2.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.1.12 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 0.1.12 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-mission-control - http://telepathy.freedesktop.org/wiki/Mission_Control - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - network.chat - Telepathy component managing connection managers - Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni - telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. - telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. - http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.3.tar.gz - - libxslt-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - gtk-doc - NetworkManager-devel - docbook-xsl - - network/chat/telepathy-mission-control/pspec.xml - - - telepathy-mission-control - - dbus - glib2 - dbus-glib - NetworkManager - telepathy-glib - - - /usr/bin - /usr/lib/libmission-control-plugins.so.0* - /usr/lib/telepathy/mission-control-5 - /usr/share/man - /usr/share/doc - /usr/share/dbus-1 - /usr/share/glib-2.0 - - - - telepathy-mission-control-devel - Development files for telepathy-mission-control - telepathy-mission-control için geliştirme dosyaları - - telepathy-mission-control - telepathy-glib-devel - - - /usr/include/mission-control-5.5 - /usr/lib/libmission-control-plugins.so - /usr/lib/pkgconfig/mission-control-plugins.pc - /usr/share/gtk-doc/html/mission-control-plugins - - - - - 2015-11-22 - 5.16.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-10 - 5.16.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-19 - 5.16.0 - Version bump for upower. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 5.14.0 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-15 - 5.14.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-01 - 5.12.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-gabble - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - A Jabber/XMPP connection manager for Telepathy - Telepathy için Jabber/XMPP bağlantı yöneticisi - telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. - telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.3.tar.gz - - libnice-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - libxslt-devel - gnutls-devel - sqlite-devel - libsoup-devel - libnice-devel - cyrus-sasl-devel - - network/chat/telepathy-gabble/pspec.xml - - - telepathy-gabble - - dbus - glib2 - gnutls - sqlite - libnice - libsoup - libxml2 - dbus-glib - telepathy-glib - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-11-21 - 0.18.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.15.3 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 0.15.3 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-03 - 0.15.3 - Dep added - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.15.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-butterfly - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - MSN connection manager for Telepathy - Telepathy için MSN bağlantı yöneticisi - telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. - telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. - http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-butterfly/pspec.xml - - - telepathy-butterfly - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2015-11-22 - 0.5.15 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.5.15 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 0.5.15 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libotr - http://www.cypherpunks.ca/otr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.chat - Portable OTR (Off The Record) messaging library - Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı - OTR messaging allows you to have private conversations over instant messaging. - OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. - https://otr.cypherpunks.ca/libotr-4.1.0.tar.gz - - libgcrypt-devel - - network/chat/libotr/pspec.xml - - - libotr - - libgcrypt - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libotr-devel - Development files for libotr - libotr için geliştirme dosyaları - - libotr - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libotr/html - - - - - 2015-11-22 - 4.1.0 - Rebuild, add dep - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-17 - 4.1.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-04-07 - 4.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 4.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-01 - 3.2.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - telepathy-sunshine - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - network.chat - Gadu-Gadu connection manager for telepathy - Telepathy için Gadu Gadu bağlantı yöneticisi - Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. - Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-sunshine/pspec.xml - - - telepathy-sunshine - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/man - /usr/share/doc - - - - - 2015-11-22 - 2.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 2.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-01 - 2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - rsync - http://rsync.samba.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - app:console - network.share - File transfer program to keep local copies in sync with remote files - Dosya yedekleme ve eşleme uygulaması - rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). - rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. - http://rsync.samba.org/ftp/rsync/rsync-3.1.1.tar.gz - - acl-devel - attr-devel - popt-devel - zlib-devel - - network/share/rsync/pspec.xml - - - rsync - - acl - attr - popt - zlib - - - /usr/bin - /usr/share/doc - /usr/share/man - /etc - - - System.Service - - - rsyncd.conf - rsyncd.conf.d - - - - - 2015-03-24 - 3.1.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-02-11 - 3.1.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-10 - 3.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-05 - 3.0.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - librsync - http://librsync.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - network.share - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı - librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. - librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. - mirrors://sourceforge/librsync/librsync-0.9.7.tar.gz - - popt-devel - - - librsync-0.9.7-largefiles.patch - librsync-link.patch - - network/share/librsync/pspec.xml - - - librsync - - popt - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/librsync - - - - librsync-devel - Development files for librsync - librsync için geliştirme dosyaları - - librsync - - - /usr/include - /usr/lib/librsync.so - /usr/share/man/man3 - - - - - 2014-02-01 - 0.9.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.9.7 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - libnfnetlink - http://www.netfilter.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - Low level library for netfilter related kernel/userspace communication - Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık - Niskopoziomowa biblioteka do netfilter - libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. - libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. - libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. - http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 - network/misc/libnfnetlink/pspec.xml - - - libnfnetlink - - /usr/lib - - - - libnfnetlink-devel - Development files for libnfnetlink - libnfnetlink için geliştirme dosyaları - Pliki nagłówkowe do bibliioteki libnfnetlink - - libnfnetlink - - - /usr/include - /usr/lib/pkgconfig/libnfnetlink.pc - - - - - 2014-03-13 - 1.0.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-04 - 1.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libssh - http://www.libssh.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - Full C library functions for manipulating a client-side SSH connection - SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı - libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). - libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. - https://git.libssh.org/projects/libssh.git/snapshot/libssh-0.6.4.tar.gz - - zlib-devel - openssl-devel - doxygen - cmake - - network/misc/libssh/pspec.xml - - - libssh - - zlib - openssl - - - /usr/lib - /usr/share/doc - - - - libssh-devel - Development files for libssh - libssh için geliştirme dosyaları - - libssh - - - /usr/include - /usr/lib/pkgconfig - - - - libssh-docs - Development documentation for libssh - - /usr/share/doc/libssh/html - /usr/share/man - - - - - 2014-07-30 - 0.6.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-08 - 0.6.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-09 - 5.4 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-27 - 5.4 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-05-04 - 5.4 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-09-01 - 0.5.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libndp - http://libndp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - library - network.misc - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - http://libndp.org/files/libndp-1.4.tar.gz - - glibc-devel - - network/misc/libndp/pspec.xml - - - libndp - libndp için geliştirme dosyaları - - /etc - /usr/share - /etc/dbus-1 - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libndp-devel - Development files for NetworkManager - - libndp - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2015-01-07 - 1.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libasyncns - http://0pointer.de/lennart/projects/libasyncns - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - A C library for asynchronous name service queries - Asenkron isim servisi sorguları için C kitaplığı - libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. - libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz - network/misc/libasyncns/pspec.xml - - - libasyncns - - /usr/lib - /usr/share/doc - - - - libasyncns-devel - Development files for libasyncns - libasyncns için geliştirme dosyaları - - libasyncns - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-01-29 - 0.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.8 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - neon - http://www.webdav.org/neon/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - Librairie cliente HTTP et WebDAV. - HTTP and WebDAV client library - C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı - neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. - neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. - http://www.webdav.org/neon/neon-0.30.0.tar.gz - - openssl-devel - expat-devel - zlib-devel - mit-kerberos - - - fixdocdir.patch - multilib.patch - - network/misc/neon/pspec.xml - - - neon - - zlib - expat - openssl - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - neon-devel - Development files for neon - neon için geliştirme dosyaları - - neon - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 0.30.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-30 - 0.30.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-03 - 0.29.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libcddb - http://libcddb.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - Une librairie pour accéder aux serveurs CDDB. - A library for accessing a CDDB server - CDDB sunucularına ulaşmak için bir kitaplık - Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). - libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. - mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 - network/misc/libcddb/pspec.xml - - - libcddb - - /usr/bin - /usr/lib - /usr/share/doc - - - - libcddb-devel - Development files for libcddb - libcddb için geliştirme dosyaları - - libcddb - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.3.2 - rebuild for libcdio - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 1.3.2 - rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 1.3.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.3.2 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - iputils - https://github.com/iputils/iputils - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - network.misc - Network monitoring tools including ping and ping6 - ping ve ping6 uygulamalarını da içeren ağ izleme araçları - Iputils contient les outils de surveillance réseau incluant ping et ping6. - iputils contains network monitoring tools including ping and ping6. - Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. - https://github.com/iputils/iputils/archive/s20150815.tar.gz - - openssl-devel - libidn-devel - libcap-devel - - network/misc/iputils/pspec.xml - - - iputils - - libcap - libidn - - - /etc - /usr/bin - /usr/sbin - /sbin - /lib/systemd/system - /etc/conf.d/rdisc - /usr/share/doc - /usr/share/man - - - man/arping.8 - man/clockdiff.8 - man/ping.8 - man/rarpd.8 - man/rdisc.8 - man/tracepath.8 - man/traceroute6.8 - fedora/tftp.xinetd - - - - - 2015-10-01 - 20150815 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 20121221 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-26 - 20121221 - Fix dep, release bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-01-14 - 20121221 - New release - PisiLinux Community - admins@pisilinux.org - - - 2012-08-23 - 20101006 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libnl - http://people.suug.ch/~tgr/libnl - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - A library for applications dealing with netlink sockets - Netlink soketleri erişimi için bir kitaplığı - libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. - libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. - http://www.infradead.org/~tgr/libnl/files/libnl-3.2.25.tar.gz - - glibc - flex - bison - pkgconfig - libtool - check - - network/misc/libnl/pspec.xml - - - libnl - - /usr/lib - /usr/share/doc - /usr/share/man - /etc/libnl - /usr/sbin - - - - libnl-devel - Development files for libnl - libnl için geliştirme dosyaları - - libnl - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-15 - 3.2.25 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-04-03 - 3.2.24 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-13 - 3.2.23 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-19 - 3.2.23 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-10-14 - 3.2.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - geoclue - http://www.freedesktop.org/wiki/Software/GeoClue - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - network.misc - The Geoinformation Service. - Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. - http://people.freedesktop.org/~hadess/geoclue-0.12.99.tar.gz - - dbus-devel - glib2-devel - dbus-glib-devel - libxml2-devel - libxslt - NetworkManager-devel - - network/misc/geoclue/pspec.xml - - - geoclue - - glib2 - libxml2 - dbus-glib - NetworkManager - - - /usr/lib/ - /usr/share/ - /usr/libexec/ - - - - geoclue-devel - geoclue için geliştirme dosyaları - geoclue için geliştirme dosyaları - - geoclue - dbus-glib-devel - libxml2-devel - - - /usr/include/geoclue - /usr/lib/pkgconfig - - - - - 2015-07-22 - 0.12.99 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-07-18 - 0.12.99 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-23 - 0.12.99 - rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 0.12.99 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-26 - 0.12.99 - Release no bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-03 - 0.12.99 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - webkit-gtk2 - http://webkitgtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - LGPLv2.1 - BSD - library - network.misc - An opensource web browser engine for GTK+ applications - The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. - http://www.webkitgtk.org/releases/webkitgtk-2.4.9.tar.xz - - mesa-devel - gtk-doc - glib2-devel - gtk2-devel - ruby-devel - webp-devel - cairo-devel - icu4c-devel - libXt-devel - enchant-devel - sqlite-devel - geoclue-devel - libsoup-devel - fontconfig-devel - libxslt-devel - harfbuzz-devel - libsecret-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-next-devel - gobject-introspection-devel - gst-plugins-base-next-devel - which - icon-theme-hicolor - gperf - libSM-devel - - network/misc/webkit-gtk2/pspec.xml - - - webkit-gtk2 - - atk - zlib - glib2 - gtk2 - mesa - webp - cairo - icu4c - libXt - libX11 - libgcc - libpng - libxml2 - pango - sqlite - enchant - geoclue - libsoup - libxslt - harfbuzz - freetype - libsecret - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/share - /usr/share/doc - - - - webkit-gtk2-devel - Development files for GTK+ port of WebKit - library - data:doc - - libgcc - gtk2-devel - glib2-devel - webkit-gtk2 - libsoup-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/webkit-gtk/Web* - /usr/share/doc/webkit-gtk2/html - /usr/share/doc/webkit-gtk/JavaScriptCore - - - - - 2015-08-05 - 2.4.9 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-07 - 2.4.8 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-16 - 2.4.8 - Version Bump + Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-24 - 2.4.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-21 - 2.4.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-14 - 1.10.2 - Rebuild for icu4c - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 1.10.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-25 - 1.10.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-23 - 1.10.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libconfig - http://www.hyperrealm.com/libconfig/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - C/C++ Configuration File Library - C/C++ Yapılandırma Dosyası Kitaplığı - Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. - Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. - http://www.hyperrealm.com/libconfig/libconfig-1.4.9.tar.gz - network/misc/libconfig/pspec.xml - - - libconfig - - /usr/lib - /usr/share/doc - - - - libconfig-devel - Development files for libconfig - libconfig için geliştirme dosyaları - - libconfig - - - /usr/include - /usr/lib/pkgconfig - /usr/share/info - - - - - 2013-03-04 - 1.4.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 1.4.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - freerdp - http://www.freerdp.com - - Aydın Demirel - aydin.demirel@pisilinux.org - - ASF - app:console - network.misc - A Remote Desktop Implementation - Bir uzak masaüstü protokol uygulaması - FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. - FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. - http://pub.freerdp.com/releases/freerdp-1.0.2.tar.gz - - cups-devel - ffmpeg-devel - alsa-lib-devel - libXinerama-devel - xmlto - libXcursor-devel - libxkbfile-devel - libXv-devel - - - ffmpeg2.0.patch - patch_numblock.patch - - network/misc/freerdp/pspec.xml - - - freerdp - - cups - libX11 - openssl - libXv - ffmpeg - libXext - alsa-lib - libXcursor - libxkbfile - libXinerama - - - /usr/bin - /usr/lib - /usr/share/freerdp - /usr/share/doc - /usr/share/man - - - - freerdp-devel - - /usr/include - - - - - 2015-01-01 - 1.0.2 - Rebuild, fix build dep. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-31 - 1.0.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-29 - 1.0.2 - rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2013-09-28 - 1.0.2 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - thunderbird - http://www.mozilla.org/projects/thunderbird/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - NPL-1.1 - GPLv2+ - app:gui - network.mail - The Stand-Alone Mozilla Mail Component - Thunderbird eposta istemcisi - Klient pocztowy Thunderbird - Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. - Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. - Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. - thunderbird - http://ftp.mozilla.org/pub/mozilla.org/thunderbird/releases/38.2.0/source/thunderbird-38.2.0.source.tar.bz2 - - pisilinux/mozconfig - - - wget - yasm - nss-devel - gtk2-devel - zlib-devel - libXt-devel - libSM-devel - libpng-devel - sqlite-devel - libXcomposite-devel - alsa-lib-devel - libjpeg-turbo-devel - - - thunderbird-install-dir.patch - - network/mail/thunderbird/pspec.xml - - - thunderbird - - atk - nss - gtk2 - nspr - zlib - cairo - glib2 - libXt - pango - libX11 - libgcc - libpng - sqlite - iconcan - libXext - alsa-lib - freetype - libXfixes - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - - - /usr/share/doc - /usr/bin - /usr/share/pixmaps - /usr/lib/thunderbird - /usr/share/applications - /usr/share/icons/hicolor - - - vendor.js - thunderbird.desktop - pisilinux/sound.wav - - - - thunderbird-lang-be - Беларуская мова пакет для Thunderbird - Беларуская мова пакет для Thunderbird - locale:be - system.locale - lang-be - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org - - - - thunderbird-lang-ca - Arxiu d'idioma català del Thunderbird - Arxiu d'idioma català del Thunderbird - locale:ca - system.locale - lang-ca - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org - - - - thunderbird-lang-da - Dansk sprogpakke til Thunderbird - Dansk sprogpakke til Thunderbird - locale:da - system.locale - lang-da - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org - - - - thunderbird-lang-de - Deutsch Sprachdatei für Thunderbird - Deutsch Sprachdatei für Thunderbird - locale:de - system.locale - lang-de - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org - - - - thunderbird-lang-el - Ελληνική γλώσσα pack για τον Thunderbird - Ελληνική γλώσσα pack για τον Thunderbird - locale:el - system.locale - lang-el - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org - - - - thunderbird-lang-en-US - English language pack for Thunderbird - English language pack for Thunderbird - locale:en_US - system.locale - lang-en-US - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org - - - - thunderbird-lang-es-AR - Paquete de idioma español para Thunderbird - Paquete de idioma español para Thunderbird - locale:es_AR - system.locale - lang-es-AR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org - - - - thunderbird-lang-es-ES - Paquete de idioma español para Thunderbird - Paquete de idioma español para Thunderbird - locale:es - system.locale - lang-es-ES - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org - - - - thunderbird-lang-fi - Suomen kielen pack for Thunderbird - Suomen kielen pack for Thunderbird - locale:fi - system.locale - lang-fi - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org - - - - thunderbird-lang-fr - Paquet de langue française pour Thunderbird - Paquet de langue française pour Thunderbird - locale:fr - system.locale - lang-fr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org - - - - thunderbird-lang-hr - Hrvatski jezični paket za Thunderbird - Hrvatski jezični paket za Thunderbird - locale:hr - system.locale - lang-hr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org - - - - thunderbird-lang-hu - Magyar nyelvű pack for Thunderbird - Magyar nyelvű pack for Thunderbird - locale:hu - system.locale - lang-hu - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org - - - - thunderbird-lang-it - Language Pack italiano per Thunderbird - Language Pack italiano per Thunderbird - locale:it - system.locale - lang-it - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org - - - - thunderbird-lang-lt - Lietuvių kalbos paketas Thunderbird - Lietuvių kalbos paketas Thunderbird - locale:lt - system.locale - lang-lt - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org - - - - thunderbird-lang-nl - Nederlands taalpakket voor Thunderbird - Nederlands taalpakket voor Thunderbird - locale:nl - system.locale - lang-nl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org - - - - thunderbird-lang-pl - Polski pakiet językowy dla programu Thunderbird - Polski pakiet językowy dla programu Thunderbird - locale:pl - system.locale - lang-pl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org - - - - thunderbird-lang-pt-BR - Pacote de idioma português para o Thunderbird - Pacote de idioma português para o Thunderbird - locale:pt_BR - system.locale - lang-pt-BR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org - - - - thunderbird-lang-pt-PT - Pacote de idioma português para o Thunderbird - Pacote de idioma português para o Thunderbird - locale:pt - system.locale - lang-pt-PT - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org - - - - thunderbird-lang-ro - Pachet de limba română pentru Thunderbird - Pachet de limba română pentru Thunderbird - locale:ro - system.locale - lang-ro - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org - - - - thunderbird-lang-ru - Русский языковый пакет для Thunderbird - Русский языковый пакет для Thunderbird - locale:ru - system.locale - lang-ru - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org - - - - thunderbird-lang-sr - Паковање српски језик за Фирефок - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org - - - - thunderbird-lang-sv-SE - Svenska språkpaket för Thunderbird - Svenska språkpaket för Thunderbird - locale:sv_SE - system.locale - lang-sv-SE - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org - - - - thunderbird-lang-tr - Thunderbird için Türkçe dil dosyası - Thunderbird için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org - - - - thunderbird-lang-uk - Український мовний пакет для Thunderbird - Український мовний пакет для Thunderbird - lang-uk - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org - - - - - 2015-09-01 - 38.2.0 - Version Bumps, https://www.mozilla.org/en-US/thunderbird/38.2.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-07 - 38.1.0 - Version Bumps, https://www.mozilla.org/en-US/thunderbird/38.1.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-06-10 - 31.7.0 - https://www.mozilla.org/en-US/thunderbird/31.7.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-04-25 - 31.6.0 - https://www.mozilla.org/en-US/thunderbird/31.6.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-30 - 31.4.0 - https://www.mozilla.org/en-US/thunderbird/31.4.0/releasenotes/ - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-11-10 - 31.2.0 - https://www.mozilla.org/en-US/thunderbird/31.2.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-30 - 31.1.2 - https://www.mozilla.org/en-US/thunderbird/31.1.2/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-21 - 31.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-07 - 24.5.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-01 - 24.5.0 - https://www.mozilla.org/en-US/thunderbird/24.5.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-11 - 24.4.0 - https://www.mozilla.org/en-US/thunderbird/24.4.0/releasenotes/ - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-15 - 24.3.0 - https://www.mozilla.org/en-US/thunderbird/24.3.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-19 - 24.2.0 - https://www.mozilla.org/en-US/thunderbird/24.2.0/releasenotes/ - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-19 - 24.1.1 - https://www.mozilla.org/en-US/thunderbird/24.1.1/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-11-13 - 24.1.0 - https://www.mozilla.org/en-US/thunderbird/24.1.0/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-09 - 24.0 - https://www.mozilla.org/en-US/thunderbird/24.0/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-09 - 17.0.8 - https://www.mozilla.org/en-US/thunderbird/17.0.8/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-19 - 17.0.7 - rebuild for nspr - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-13 - 17.0.7 - https://www.mozilla.org/en-US/thunderbird/17.0.7/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-05-20 - 17.0.6 - https://www.mozilla.org/en-US/thunderbird/17.0.6/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-03 - 17.0.5 - https://www.mozilla.org/en-US/thunderbird/17.0.5/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-11 - 17.0.4 - https://www.mozilla.org/en-US/thunderbird/17.0.4/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-19 - 17.0.3 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-11-26 - 17.0.2 - First release - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - - - - farstream - http://www.freedesktop.org/wiki/Software/Farstream - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - library - network.voip - Farstream (formerly Farsight) - Audio/Video Communications Framework - Ses/Video İletişim Çatısı - Farstream (formerly Farsight) - Audio/Video Communications Framework - Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. - http://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.7.tar.gz - - libnice-devel - gstreamer-next-devel - gstreamer-devel - gst-plugins-base-next-devel - - network/voip/farstream/pspec.xml - - - farstream - - glib2 - libnice - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/lib/farstream-0.2 - /usr/lib/gstreamer-0.1 - /usr/lib/libfarstream-0.2* - /usr/share/doc - /usr/share/farstream - /usr/share/gir-1.0 - /usr/share - - - - farstream-devel - Development files for farstream - farstream için geliştirme dosyaları - - farstream - gstreamer-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-27 - 0.2.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - lynx - http://lynx.isc.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL - app:gui - network.web - Lynx is the text web browser. - This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. - http://lynx.isc.org/lynx2.8.8/lynx2.8.8.tar.bz2 - - ncurses-devel - openssl-devel - gettext-devel - - - lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch - lynx2-8-6-fix-ugly-color.patch - lynx2-8-7-adapt-to-modern-file-localizations.patch - lynx2-8-7-tmp_dir.patch - - network/web/lynx/pspec.xml - - - lynx - - ncurses - openssl - gettext - - - /usr/bin - /etc - /usr/share - /usr/share/man - - - - - 2014-05-29 - 2.8.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-09 - 2.8.7 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2012-07-26 - 2.8.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - firefox - http://www.mozilla.org/projects/firefox/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - NPL-1.1 - GPLv2 - app:gui - network.web - Firefox Web Browser - Firefox Web Browser - Firefox Web-Browser - Firefox Web Tarayıcı - Przeglądarka WWW Firefox - Firefox Navegador Web - It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. - Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. - Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. - Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. - 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/mozilla.org/firefox/releases/42.0/source/firefox-42.0.source.tar.xz - - mozconfig - pisilinux/browserconfig.properties - - - wget - yasm - zlib-devel - gtk2-devel - libXt-devel - libSM-devel - libpng-devel - libffi-devel - gnutls-devel - hunspell-devel - alsa-lib-devel - dbus-glib-devel - libXcomposite-devel - libXScrnSaver-devel - libjpeg-turbo-devel - pulseaudio-libs-devel - gst-plugins-base-next-devel - nss-devel - nspr-devel - - - firefox-install-dir.patch - - network/web/firefox/pspec.xml - - - firefox - - atk - nss - dbus - gtk2 - nspr - zlib - cairo - glib2 - libXt - pango - libX11 - libffi - libgcc - libpng - pixman - sqlite - iconcan - libXext - alsa-lib - freetype - hunspell - dbus-glib - libXfixes - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - - - /etc/ - /usr/share/doc - /usr/bin - /usr/share/mime - /usr/libexec - /usr/lib/pkgconfig - /usr/share/pixmaps - /usr/lib/firefox - /usr/share/applications - - - System.Package - - - pisilinux/mozillafirefox.desktop - pisilinux/firefox-l10n.js - pisilinux/default-prefs.js - pisilinux/pisilinux_bookmark-tr.html - pisilinux/pisilinux_bookmark-en.html - pisilinux/pisilinux_bookmark-nl.html - pisilinux/pisilinux_bookmark-de.html - - - - firefox-lang-az - Firefox üçün Türkçe dil faylı - Firefox üçün Türkçe dil faylı - locale:az - system.locale - lang-az - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org - - - - firefox-lang-be - Беларуская мова пакет для Firefox - Беларуская мова пакет для Firefox - locale:be - system.locale - lang-be - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-be@firefox.mozilla.org - - - - firefox-lang-bs - Engleskom jeziku paket za Firefox - Engleskom jeziku paket za Firefox - locale:bs - system.locale - lang-bs - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org - - - - firefox-lang-ca - Arxiu d'idioma català del Firefox - Arxiu d'idioma català del Firefox - locale:ca - system.locale - lang-ca - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org - - - - firefox-lang-da - Dansk sprogpakke til Firefox - Dansk sprogpakke til Firefox - locale:da - system.locale - lang-da - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org - - - - firefox-lang-de - Deutsch Sprachdatei für Firefox - Deutsch Sprachdatei für Firefox - locale:de - system.locale - lang-de - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org - - - - firefox-lang-el - Ελληνική γλώσσα pack για τον Firefox - Ελληνική γλώσσα pack για τον Firefox - locale:el - system.locale - lang-el - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org - - - - firefox-lang-en-US - English language pack for Firefox - English language pack for Firefox - locale:en-US - system.locale - lang-en-US - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org - - - - firefox-lang-en-ZA - South African English language pack for Firefox - South African English language pack for Firefox - locale:en-ZA - system.locale - lang-en-ZA - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-ZA@firefox.mozilla.org - - - - firefox-lang-en-GB - British English language pack for Firefox - British English language pack for Firefox - locale:en-GB - system.locale - lang-en-GB - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org - - - - firefox-lang-es-AR - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-AR - system.locale - lang-es-AR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org - - - - firefox-lang-es-CL - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-CL - system.locale - lang-es-CL - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org - - - - firefox-lang-es-ES - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-ES - system.locale - lang-es-ES - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org - - - - firefox-lang-fi - Suomen kielen pack for Firefox - Suomen kielen pack for Firefox - locale:fi - system.locale - lang-fi - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org - - - - firefox-lang-fr - Paquet de langue française pour Firefox - Paquet de langue française pour Firefox - locale:fr - system.locale - lang-fr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org - - - - firefox-lang-hr - Hrvatski jezični paket za Firefox - Hrvatski jezični paket za Firefox - locale:hr - system.locale - lang-hr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org - - - - firefox-lang-hu - Magyar nyelvű pack for Firefox - Magyar nyelvű pack for Firefox - locale:hu - system.locale - lang-hu - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org - - - - firefox-lang-it - Language Pack italiano per Firefox - Language Pack italiano per Firefox - locale:it - system.locale - lang-it - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org - - - - firefox-lang-lt - Lietuvių kalbos paketas Firefox - Lietuvių kalbos paketas Firefox - locale:lt - system.locale - lang-lt - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org - - - - firefox-lang-nl - Nederlands taalpakket voor Firefox - Nederlands taalpakket voor Firefox - locale:nl - system.locale - lang-nl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org - - - - firefox-lang-pl - Polski pakiet językowy dla programu Firefox - Polski pakiet językowy dla programu Firefox - locale:pl - system.locale - lang-pl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org - - - - firefox-lang-pt-BR - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-BR - system.locale - lang-pt-BR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org - - - - firefox-lang-pt-PT - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-PT - system.locale - lang-pt-PT - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org - - - - firefox-lang-ro - Pachet de limba română pentru Firefox - Pachet de limba română pentru Firefox - locale:ro - system.locale - lang-ro - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org - - - - firefox-lang-ru - Русский языковый пакет для Firefox - Русский языковый пакет для Firefox - locale:ru - system.locale - lang-ru - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org - - - - firefox-lang-sr - Паковање српски језик за Фирефок - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org - - - - firefox-lang-sv-SE - Svenska språkpaket för Firefox - Svenska språkpaket för Firefox - locale:sv-SE - system.locale - lang-sv-SE - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org - - - - firefox-lang-tr - Firefox için Türkçe dil dosyası - Firefox için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org - - - - firefox-lang-uk - Український мовний пакет для Firefox - Український мовний пакет для Firefox - locale:uk - system.locale - lang-uk - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org - - - - - 2015-11-08 - 42.0 - Version bump, http://www.mozilla.org/en-US/firefox/42.0/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-09-01 - 40.0.3 - Version bump, http://www.mozilla.org/en-US/firefox/40.0.3/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-20 - 40.0.2 - Version bump, http://www.mozilla.org/en-US/firefox/40.0.2/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-11 - 39.0.3 - Version bump, http://www.mozilla.org/en-US/firefox/39.0.3/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-05 - 39.0 - Version bump, http://www.mozilla.org/en-US/firefox/39.0/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-06-08 - 38.0.5 - Version bump, http://www.mozilla.org/en-US/firefox/38.0.5/releasenotes - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-04-25 - 37.0.2 - Version bump, http://www.mozilla.org/en-US/firefox/37.0.2/releasenotes - PisiLinux Community - admins@pisilinux.org - - - 2015-04-04 - 37.0.1 - Version bump, http://www.mozilla.org/en-US/firefox/37.0.1/releasenotes - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-27 - 36.0.4 - Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-02-28 - 36.0 - Version bump, http://www.mozilla.org/en-US/firefox/36.0/releasenotes - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-02-04 - 35.0.1 - Version bump, http://www.mozilla.org/en-US/firefox/35.0.1/releasenotes - PisiLinux Community - admins@pisilinux.org - - - 2014-12-19 - 34.0.5 - Version bump, http://www.mozilla.org/en-US/firefox/34.0.5/releasenotes - PisiLinux Community - admins@pisilinux.org - - - 2014-11-30 - 33.1.1 - Version bump, http://www.mozilla.org/en-US/firefox/33.1.1/releasenotes - PisiLinux Community - admins@pisilinux.org - - - 2014-09-29 - 32.0.3 - Version bump, http://www.mozilla.org/en-US/firefox/32.0.3/releasenotes - PisiLinux Community - admins@pisilinux.org - - - 2014-09-04 - 32.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-08-18 - 31.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-07-05 - 30.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-29 - 29.0.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-01 - 29.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-29 - 28.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-03-03 - 27.0.1 - Rebuild for openjdk - PisiLinux Community - admins@pisilinux.org - - - 2014-02-15 - 27.0.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-02-09 - 27.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-12-16 - 26.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-12-01 - 25.0.1 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-18 - 25.0.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-11-12 - 25.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-10-14 - 24.0 - Rebuild for icu4c - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-10-07 - 24.0 - * fix en-us searchplugins - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-09-17 - 24.0 - * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-24 - 23.0.1 - * http://www.mozilla.org/en-US/firefox/23.0.1/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-08 - 23.0 - * http://www.mozilla.org/en-US/firefox/23.0/releasenotes/ - * fixing bug 809055: Moving Firefox to background while playing a flash video in full screen mode and bring it back to view will freeze the app - Erdinç Gültekin-Marcin Bojara - erdincgultekin@pisilinux.org - - - 2013-06-27 - 22.0 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-15 - 21.0 - http://www.mozilla.org/en-US/firefox/21.0/releasenotes/ - Erdinç Gültekin-Marcin Bojara - erdincgultekin@pisilinux.org - - - 2013-05-10 - 20.0.1 - http://www.mozilla.org/en-US/firefox/20.0.1/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-03 - 20.0 - http://www.mozilla.org/en-US/firefox/20.0/releasenotes/ - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-11 - 19.0.2 - http://www.mozilla.org/en-US/firefox/19.0.2/releasenotes/ - Erdinç Gültekin - admins@pisilinux.org - - - 2013-02-19 - 19.0 - * Built-in PDF viewer - * CSS @page is now supported - * security fixes - Erdinç Gültekin - admins@pisilinux.org - - - 2013-02-08 - 18.0.2 - * 18.0.2: Fix JavaScript related stability issues - * Support for W3C touch events implemented, taking the place of MozTouch events - * security fixes - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-21 - 18.0.1 - bump - Erdinç Gültekin - admins@pisilinux.org - - - 2012-12-02 - 17.0.1 - First release - Demiray Muhterem - bilgi@bilgegunluk.com - - - - - - iptables - http://www.iptables.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.filter - Firewall, NAT and packet mangling tools - Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı - Contains iptables firewall, NAT and packet mangling tools. - Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. - ftp://ftp.netfilter.org/pub/iptables/iptables-1.4.21.tar.bz2 - - libnfnetlink-devel - - network/filter/iptables/pspec.xml - - - iptables - - libnfnetlink - - - /usr/bin - /sbin - /lib - /usr/lib - /usr/share/man - /etc - /var - /usr/share/xtables - - - System.Service - Network.Firewall - - - - iptables-devel - Development files for iptables - iptables için geliştirme dosyaları - - iptables - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2013-11-23 - 1.4.21 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-04 - 1.4.17 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-21 - 1.4.16.3 - First release - PisiLinux Community - admins@pisilinux.org - - reverseDependencyUpdate - - - - - - - iproute2 - http://linux-net.osdl.org/index.php/Iproute2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.filter - Kernel routing and traffic control utilities - Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. - Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. - Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. - https://www.kernel.org/pub/linux/utils/net/iproute2/iproute2-4.3.0.tar.xz - - iptables-devel - linux-atm-devel - db-devel - elfutils - - network/filter/iproute2/pspec.xml - - - iproute2 - - linux-atm - iptables - db - elfutils - - - /etc - /sbin - /usr/sbin - /lib - /usr/lib - /usr/share/man - /usr/share/doc - /var/lib - - - - - 2015-12-02 - 4.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-20 - 4.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-13 - 4.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-23 - 3.12.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-01 - 3.5.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - flashplugin - http://labs.adobe.com/technologies/flashplayer10 - - PisiLinux Community - admins@pisilinux.org - - Macromedia - library - network.plugin - Adobe Flash Player - Adobe Flash Oynatıcı - Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. - Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. - flash-player-properties - http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.i386.tar.gz - http://fpdownload.macromedia.com/get/flashplayer/pdc/11.2.202.540/install_flash_player_11_linux.x86_64.tar.gz - - nss - gtk2 - libXt - libX11 - libXext - libXpm - - network/plugin/flashplugin/pspec.xml - - - flashplugin - - noDelta - - - atk - nss - gtk2 - nspr - cairo - glib2 - libXt - pango - libX11 - libXext - freetype - fontconfig - gdk-pixbuf - libXcursor - libXrender - - - /usr/share - /usr/lib - /usr/bin - - - - - 2015-11-02 - 11.2.202.540 - security update - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-07-17 - 11.2.202.491 - security update - Vedat Demir - vedat@pisilinux.org - - - 2015-07-01 - 11.2.202.468 - security update - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-21 - 11.2.202.460 - security update - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-02-09 - 11.2.202.442 - security update - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-04 - 11.2.202.440 - security update - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-12-14 - 11.2.202.425 - security update - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-11-30 - 11.2.202.424 - security update - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-10-16 - 11.2.202.411 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-09-22 - 11.2.202.406 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-07-09 - 11.2.202.394 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-06-18 - 11.2.202.378 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-06-07 - 11.2.202.359 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-05-01 - 11.2.202.356 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-03-14 - 11.2.202.346 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-02-22 - 11.2.202.341 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-02-06 - 11.2.202.336 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-02-02 - 11.2.202.335 - Split package - PisiLinux Community - admins@pisilinux.org - - - 2014-01-24 - 11.2.202.335 - security update - PisiLinux Community - admins@pisilinux.org - - - 2014-01-21 - 11.2.202.332 - security update - PisiLinux Community - admins@pisilinux.org - - - 2013-11-17 - 11.2.202.327 - security update - Richard de Bruin - richdb@pisilinux.org - - - 2013-09-18 - 11.2.202.310 - fix dep - Kamil Atlı - suvarice@gmail.com - - - 2013-09-11 - 11.2.202.310 - security update - Mathias Freire - mathiasfreire45@gmail.com - - - 2013-07-14 - 11.2.202.297 - security update - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-13 - 11.2.202.291 - security update - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 11.2.202.280 - security update - Erdinç Gültekin - admins@pisilinux.org - - - 2013-03-21 - 11.2.202.275 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-03-06 - 11.2.202.273 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-02-12 - 11.2.202.270 - security update - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-09 - 11.2.202.261 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - freshplayerplugin - https://github.com/i-rinat/freshplayerplugin - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - app:gui - network.plugin - ppapi2npapi compatibility layer - PPAPI-host NPAPI-plugin adapter. - https://github.com/i-rinat/freshplayerplugin/archive/v0.3.3.tar.gz - - cmake - ragel - gtk2-devel - libva-devel - libv4l-devel - ffmpeg-devel - openssl-devel - libvdpau-devel - alsa-lib-devel - libevent-devel - libXrandr-devel - libXcursor-devel - pulseaudio-libs-devel - - network/plugin/freshplayerplugin/pspec.xml - - - freshplayerplugin - - mesa - libva - ffmpeg - libv4l - alsa-lib - libevent - libvdpau - libXrandr - pepperflash - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/freshplayerplugin/ - - - - - 2015-11-04 - 0.3.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pepperflash - http://www.google.com - - Osman Erkan - osman.erkan@pisilinux.org - - custom:chrome - library - network.plugin - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. - Google Chrome's Pepper Flash plugin for Chromium. - Google Chrome's Pepper Flash plugin for Chromium (stable version) - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) - http://sourceforge.net/projects/pisilinux/files/source/PepperFlash-19.0.0.226.tar.xz - network/plugin/pepperflash/pspec.xml - - - pepperflash - - libgcc - - - /etc/chromium-browser - /usr/lib/chromium-browser/PepperFlash - - - pepperflash-plugin.conf - - - - - 2015-11-02 - 19.0.0.226 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-08-15 - 18.0.0.233 - Version bump - Vedat Demir - vedat@pisilinux.org - - - - - - net-snmp - http://net-snmp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - network.monitor - A collection of SNMP protocol tools and libraries - SNMP protokol araçları ve kitaplıkları - Kolekcja narzędzi do obsługi protokołu SNMP - Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. - net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. - SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. - mirrors://sourceforge/net-snmp/net-snmp-5.7.3.tar.gz - - libnl-devel - python-setuptools - openssl-devel - python-devel - perl - pciutils-devel - tcp-wrappers-devel - - - locale.patch - - network/monitor/net-snmp/pspec.xml - - - net-snmp - - libnl - openssl - python - perl - pciutils - tcp-wrappers - - - /etc/snmp - /usr/bin - /usr/sbin/snmpd - /etc/conf.d/snmpd - /usr/lib - /usr/share/snmp - /var/lib - /usr/share/man - /usr/share/doc - - - System.Service - - - confd-snmpd.conf - net-snmpd.conf - - - - net-snmptrap - - net-snmp - tcp-wrappers - - - /etc/conf.d/snmptrapd - /etc/snmp/snmptrapd.conf - /usr/sbin/snmptrapd - - - System.Service - - - confd-snmptrapd.conf - net-snmptrapd.conf - - - - net-snmp-devel - Development files for net-snmp - net-snmp için geliştirme dosyaları - Pliki naglowkowe do net-snmp - - net-snmp - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-02 - 5.7.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-13 - 5.7.2.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-19 - 5.7.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-01 - 5.7.2 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 5.7.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-09 - 5.7.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dustrac - http://dustrac.sourceforge.net/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - app:gui - game.arcade - Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game - The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. - https://github.com/juzzlin/DustRacing2D/archive/1.11.0.tar.gz - - qt5-base-devel - qt5-linguist - openal-devel - cmake - pkgconfig - libvorbis-devel - mesa-devel - mesa-glu-devel - - game/arcade/dustrac/pspec.xml - - - dustrac - - qt5-base - openal - libvorbis - libgcc - mesa - - - /usr/bin - /usr/share/games - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/doc - - - - - 2015-11-20 - 1.11.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - alienarena - http://red.planetarena.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - COR-Entertainment-LLC - app:gui - game.fps - A standalone 3D first person shooter game - 3 Boyutlu ilkgözden nişancılık oyunu - Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. - Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. - alienarena - http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz - - libjpeg-turbo-devel - libXxf86dga-devel - libXxf86vm-devel - libX11-devel - mesa-devel - openal-devel - ode-devel - curl-devel - freetype-devel - libvorbis-devel - - - use_home_dir.patch - - game/fps/alienarena/pspec.xml - - - alienarena - - libjpeg-turbo - libXxf86vm - curl - zlib - libX11 - libvorbis - libgcc - freetype - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - alienarena.png - alienarena.desktop - - - - - 2015-11-11 - 7.66 - Rebuild for 2.0. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-09-27 - 7.66 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2013-01-12 - 7.60.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - ode - http://www.ode.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - game.misc - High performance library for simulating rigid body dynamics - Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık - ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej - SDK (kit de développement) du moteur Open Dynamics. - ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. - ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. - Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. - mirrors://sourceforge/opende/ode-0.13.tar.bz2 - game/misc/ode/pspec.xml - - - ode - - /usr/lib - /usr/share/doc - - - - ode-devel - Development files for ode - ode için geliştirme dosyaları - Pliki nagłówkowe ode - - ode - - - /usr/bin/ode-config - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-26 - 0.13 - Version Bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-03-09 - 0.12 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-05-18 - 0.12 - Enable double precision - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-08 - 0.12 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - hugin - http://hugin.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - multimedia.graphics - A panoramic photo stitcher - Panoramik görüntü birleştirici - hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. - hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. - hugin - mirrors://sourceforge/hugin/hugin/hugin-2015.0/hugin-2015.0.0.tar.bz2 - - swig - cmake - glew-devel - tiff-devel - zlib-devel - vigra-devel - boost-devel - wxGTK-devel - exiv2-devel - fftw3-devel - flann-devel - libXmu-devel - libpng-devel - python-devel - lapack-devel - sqlite-devel - openexr-devel - freeglut-devel - libpano13-devel - libjpeg-turbo-devel - - multimedia/graphics/hugin/pspec.xml - - - hugin - - blas - glew - mesa - tiff - boost - fftw3 - vigra - wxGTK - lapack - libgcc - python - sqlite - enblend - ilmbase - libgomp - freeglut - mesa-glu - libpano13 - exiv2-libs - openexr-libs - perl-Image-ExifTool - - - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/hugin - /usr/share/pixmaps - /usr/share/appdata - /usr/share/applications - /usr/share/locale - - - hugin-libs - hugin-tools - - - - hugin-docs - Help documents for hugin - hugin için yardım belgeleri - - /usr/share/hugin/xrc/data/help* - - - - - 2015-11-06 - 2015.0.0 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-12-29 - 2014.0.0 - rebuild for boost 1.57.0 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-10 - 2014.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 2013.0.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-11 - 201300 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 201300_beta1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-08 - 201300_beta1 - Error Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-08 - 201300_beta1 - vbump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-28 - 2012.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libmng - http://www.libmng.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Multiple Image Networkgraphics lib (animated png's) - Çoklu resim Networkgraphics (Animasyonlu png) - Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. - Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. - Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. - Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. - http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.2/libmng-2.0.2.tar.gz - - zlib-devel - lcms2-devel - libjpeg-turbo-devel - - multimedia/graphics/libmng/pspec.xml - - - libmng - - zlib - libjpeg-turbo - lcms2 - - - /usr/lib - - - - libmng-devel - - libmng - - - /usr/share/doc - /usr/share/man - /usr/include/ - - - - libmng-32bit - 32-bit shared libraries for libmng - emul32 - emul32 - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - glibc-32bit - - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - glibc-32bit - libmng - - - /usr/lib32 - - - - - 2014-05-19 - 2.0.2 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 2.0.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-12-16 - 1.0.10 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - tiff - http://www.remotesensing.org/libtiff/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Library for manipulation of TIFF (Tag Image File Format) images - TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane - Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. - This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. - Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. - Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. - Biblioteka do manipulacji plikami w formacie TIFF. - ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz - - libjpeg-turbo-devel - jbigkit-devel - - multimedia/graphics/tiff/pspec.xml - - - tiff - - libjpeg-turbo - jbigkit - - - /usr/bin - /usr/lib - - - - tiff-devel - Developement files for tiff - tiff için geliştirme dosyaları - - tiff - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - tiff-docs - Documentation for tiff - tiff için belgelendirme dosyaları - - tiff - - - /usr/share/doc - /usr/share/man - - - - tiff-32bit - 32-bit shared libraries for tiff - tiff için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libjpeg-turbo-32bit - - - tiff - libjpeg-turbo-32bit - glibc-32bit - libgcc - - - /usr/lib32 - - - - - 2014-05-19 - 4.0.3 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-08 - 4.0.3 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-26 - 4.0.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-29 - 4.0.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - enblend - http://enblend.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.graphics - Image blending with multiresolution splines - Resim harmanlama aracı - enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. - enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. - mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.3.tar.gz - - cmake - gsl-devel - zlib-devel - tiff-devel - vigra-devel - boost-devel - lcms2-devel - libpng-devel - openexr-devel - imagemagick-devel - - - gentoo_prepare.patch - - multimedia/graphics/enblend/pspec.xml - - - enblend - - gsl - tiff - boost - lcms2 - vigra - libgcc - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/info - - - - - 2014-12-27 - 4.1.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-27 - 4.1.3 - Rebuild for boost. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 4.1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-23 - 4.1.2 - rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-11 - 4.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 4.1.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-08 - 4.1.1 - add missing builddep gsl-devel - Ertuğrul Erata - ertugrullerata@gmail.com - - - 2013-04-26 - 4.1.1 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-21 - 4.1.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-02-08 - 4.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - webp - http://code.google.com/p/webp/downloads/list - - PisiLinux Community - admins@pisilinux.org - - Copyright (c) 2010, Google Inc. All rights reserved. - application - multimedia.graphics - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz - - mesa-devel - mesa-glu-devel - libpng-devel - tiff-devel - giflib-devel - freeglut-devel - libjpeg-turbo-devel - - multimedia/graphics/webp/pspec.xml - - - webp - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - - tiff - mesa - giflib - libpng - freeglut - libjpeg-turbo - - - /usr/lib/libwebp* - /usr/bin - /usr/share/man - /usr/share/doc/webp - - - - webp-devel - webp için geliştirme dosyaları - - webp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-06 - 0.4.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-21 - 0.4.0 - rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-21 - 0.4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 0.3.1 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-19 - 0.3.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-11 - 0.2.1 - First release - can - qazsew@mynet.com - - - - - - gimp-layer-effects - http://registry.gimp.org/node/186 - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - multimedia.graphics.gimp.addon - Layer effects for GIMP - GIMP için katman efektleri - Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. - Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. - gimp - http://ozbekanil.googlepages.com/layer-effects.tar.gz - multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml - - - gimp-layer-effects - - gimp - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2014-06-19 - 2.6.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.6.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-30 - 2.6.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-refocus-it-plugin - http://sourceforge.net/projects/refocus-it - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. - mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz - - intltool - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml - - - gimp-refocus-it-plugin - - gimp - glib2 - gtk2 - - - /usr/bin - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc/gimp-refocus-it-plugin - /usr/share/help - /usr/share/locale - - - - - 2014-06-19 - 2.0.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-03-28 - 2.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-gmic-plugin - http://gmic.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - CeCILL-2 - app:console - library - multimedia.graphics.gimp.addon - Image procession framework. - G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. - http://gmic.eu/files/source/gmic_1.6.5.1.tar.gz - - ffmpeg-devel - fftw3-devel - gimp-devel - libjpeg-turbo-devel - lapack-devel - opencv-devel - openexr-devel - tiff-devel - curl-devel - - multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml - - - gmic - - curl - tiff - zlib - fftw3 - libX11 - libgcc - libpng - libgomp - libjpeg-turbo - - - /etc/bash_completion.d - /usr/bin - /usr/lib - /usr/share/doc/gmic - /usr/share/man - - - - gmic-devel - Development files for gmic - - gmic - - - /usr/include - - - - gimp-gmic-plugin - Gimp plugin for the GMIC image procession framework. - - atk - curl - gtk2 - zlib - gimp - cairo - pango - libX11 - libgcc - libpng - libgomp - freetype - fftw3 - glib2 - fontconfig - gdk-pixbuf - - - /usr/lib/gimp - /usr/share/doc/gimp-gmic-plugin - - - - - 2015-08-10 - 1.6.5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-25 - 1.6.0.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-06-19 - 1.5.5.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-01 - 1.5.5.0 - Rebuild for ffmpeg. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-27 - 1.5.5.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-13 - 1.5.1.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimp-save-for-web - http://registry.gimp.org/node/33 - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - GIMP Save for Web - GIMP Save for Web - GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. - GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. - http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2 - - intltool - gimp-devel - gtk2-devel - gdk-pixbuf-devel - - multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml - - - gimp-save-for-web - - gimp - glib2 - gtk2 - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp-save-for-web - /usr/share/locale - /usr/share/doc - - - - - 2014-06-19 - 0.29.3 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-30 - 0.29.3 - V.bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-01-30 - 0.29.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-focusblur-plugin - http://registry.gimp.org/node/1444 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Makes out of focus with luminosity and depth. - Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. - http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2 - - fftw3-devel - gimp-devel - intltool - - multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml - - - gimp-focusblur-plugin - - fftw3 - gdk-pixbuf - gimp - gtk2 - glib2 - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - /usr/share/locale - - - - - 2014-06-19 - 3.2.6 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 3.2.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-10 - 3.2.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - colorize-gimp - http://zenthought.org/content/project/colorize - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - Colorization plugin for GIMP - GIMP için renklendirme eklentisi - colorize-gimp is an implementation of colorization using optimization for GIMP. - colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. - gimp - http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz - - gimp-devel - gtk2-devel - SuiteSparse-devel - - multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml - - - colorize-gimp - - gimp - gtk2 - SuiteSparse - atk - cairo - glib2 - pango - freetype - gdk-pixbuf - fontconfig - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2014-06-19 - 2.6.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 2.6.0 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2011-01-30 - 2.6.0 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-dds-plugin - http://code.google.com/p/gimp-dds/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - DirectDraw Surface (DDS) format plugin for Gimp - This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. - http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2 - - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml - - - gimp-dds-plugin - - atk - cairo - glib2 - fontconfig - gdk-pixbuf - gimp - gtk2 - pango - libgomp - freetype - - - /usr/lib/gimp/2.0/plug-ins/dds - /usr/share/doc/gimp-dds-plugin - - - - - 2014-06-19 - 3.0.1 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 3.0.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-07-07 - 2.2.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimpfx-foundry - http://gimpfx-foundry.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - public-domain - data - multimedia.graphics.gimp.addon - A scripts collection for GIMP - GIMP için zengin bir betik paketi - FX-Foundry project is constantly updating custom scripts for each major GIMP release. - FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. - mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz - multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml - - - gimpfx-foundry - - gimp - - - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2014-06-19 - 2.6.1 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.6.1 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2009-07-24 - 2.6.1 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - gimp-data-extras - http//www.gimp.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - multimedia.graphics.gimp.addon - Gimp extras - Gimp ekleri - Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. - Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. - gimp - http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2 - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml - - - gimp-data-extras - - gimp - - - /usr/share/gimp - /usr/share/doc - - - - - 2014-06-19 - 2.0.2 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 2.0.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2009-09-07 - 2.0.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gimp-lqr-plugin - http://liquidrescale.wikidot.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Plugin for The GIMP providing Liquid Rescale. - Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. - http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 - - intltool - gimp-devel - liblqr-devel - - multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml - - - gimp-lqr-plugin - - gdk-pixbuf - gimp - gtk2 - glib2 - liblqr - - - /usr/lib/gimp/2.0/plug-ins/* - /usr/share/doc/gimp-lqr-plugin/* - /usr/share/gimp-lqr-plugin/* - /usr/share/gimp/2.0/scripts/* - /usr/share/locale/* - - - - - 2014-06-19 - 0.7.2 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-25 - 0.7.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-14 - 0.7.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimp-resynthesizer - http://www.logarithmic.net/pfh/resynthesizer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - addon - multimedia.graphics.gimp.addon - Resynthesizer is a Gimp plug-in for texture synthesis - Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. - http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml - - - gimp-resynthesizer - - gimp - atk - gtk2 - cairo - glib2 - pango - libgcc - freetype - fontconfig - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2014-06-19 - 0.16 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 0.16 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2011-02-20 - 0.16 - First release - Erdem Artan - erdem.artan@linux.org.tr - - - - - - gimp - http://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - multimedia.graphics.gimp - GNU Image Manipulation Program - Bir resim işleme programı - Programme de Manipulation d'Image GNU. - GIMP is a mature image editor with many advanced features and plugin support. - Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı - http://download.gimp.org/pub/gimp/v2.8/gimp-2.8.14.tar.bz2 - - gtk-doc - atk-devel - xdg-utils - tiff-devel - zlib-devel - lcms-devel - gegl-devel - babl-devel - dbus-devel - gtk2-devel - aalib-devel - bzip2 - pango-devel - cairo-devel - glib2-devel - libwmf-devel - jasper-devel - libX11-devel - libmng-devel - libpng-devel - libXpm-devel - libXmu-devel - libXext-devel - librsvg-devel - libexif-devel - alsa-lib-devel - freetype-devel - dbus-glib-devel - libXfixes-devel - eudev-devel - libXcursor-devel - fontconfig-devel - python-gtk-devel - gdk-pixbuf-devel - ghostscript-devel - webkit-gtk2-devel - poppler-glib-devel - libjpeg-turbo-devel - intltool - python-devel - - - single_window.patch - - multimedia/graphics/gimp/gimp/pspec.xml - - - gimp-devel - Documents et entêtes de développement pour GIMP. - Development header and documents for GIMP - GIMP için geliştirme belgeleri ve başlık dosyaları - data - data:doc - - gtk2-devel - cairo-devel - gdk-pixbuf-devel - gimp - - - /usr/include - /usr/share/gtk-doc - /usr/lib/pkgconfig - /usr/share/aclocal - - - - gimp - app:gui - - gegl - babl - dbus - gtk2 - tiff - zlib - aalib - bzip2 - pango - cairo - glib2 - libwmf - libXpm - libmng - libpng - libXmu - jasper - libX11 - libXext - librsvg - libexif - alsa-lib - freetype - dbus-glib - libXfixes - eudev - libXcursor - fontconfig - gdk-pixbuf - ghostscript - webkit-gtk2 - poppler-glib - libjpeg-turbo - - - /etc - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/gimp - /usr/share/icons - /usr/share/appdata - /usr/share/mime-info - /usr/share/applications - /usr/share/application-registry - - - gimp-splash-pencils.png - - - - gimp-i18n-tr - Gimp translation files for Turkish - Türkçe için GIMP yerelleştirme dosyaları - locale:tr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/tr - - - - gimp-i18n-ast - Gimp translation files for Asturian - Asturya dili için GIMP yerelleştirme dosyaları - locale:ast - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ast - - - - gimp-i18n-my - Gimp translation files for Burmese - Burmese dili için GIMP yerelleştirme dosyaları - locale:my - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/my - - - - gimp-i18n-nds - Gimp translation files for Low Saxon - Aşağı Saxon dili için GIMP yerelleştirme dosyaları - locale:nds - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nds - - - - gimp-i18n-el - Gimp translation files for Greek - Yunanca için GIMP yerelleştirme dosyaları - locale:el - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/el - - - - gimp-i18n-gu - Gimp translation files for Gujarati - Gujarati dili için GIMP yerelleştirme dosyaları - locale:gu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gu - - - - gimp-i18n-be - Gimp translation files for Belarusian - Belarusça için GIMP yerelleştirme dosyaları - locale:be - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/be - - - - gimp-i18n-vi - Gimp translation files for Vietnamese - Viyetnamca için GIMP yerelleştirme dosyaları - locale:vi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/vi - - - - gimp-i18n-ca - Gimp translation files for Catalan - Katalanca için GIMP yerelleştirme dosyaları - locale:ca - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca - - - - gimp-i18n-eo - Gimp translation files for Esperanto - Esperanto için GIMP yerelleştirme dosyaları - locale:eo - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eo - - - - gimp-i18n-cs - Gimp translation files for Czech - Çekçe için GIMP yerelleştirme dosyaları - locale:cs - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/cs - - - - gimp-i18n-ca_valencia - Gimp translation files for Catalan (Valencia) - Valensiya Katalancası için GIMP yerelleştirme dosyaları - locale:ca@valencia - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca@valencia - - - - gimp-i18n-ar - Gimp translation files for Arabic - Arapça için GIMP yerelleştirme dosyaları - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ar - - - - gimp-i18n-km - Gimp translation files for Khmer - Khmer dili için GIMP yerelleştirme dosyaları - locale:km - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/km - - - - gimp-i18n-ga - Gimp translation files for Irish Gaelic - Gaelik İrlandacası için GIMP yerelleştirme dosyaları - locale:ga - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ga - - - - gimp-i18n-fi - Gimp translation files for Finnish - Fince için GIMP yerelleştirme dosyaları - locale:fi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fi - - - - gimp-i18n-eu - Gimp translation files for Basque - Baskça için GIMP yerelleştirme dosyaları - locale:eu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eu - - - - gimp-i18n-et - Gimp translation files for Estonian - Estonyaca için GIMP yerelleştirme dosyaları - locale:et - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/et - - - - gimp-i18n-xh - Gimp translation files for Xhosa - Xhosa dili için GIMP yerelleştirme dosyaları - locale:xh - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/xh - - - - gimp-i18n-gl - Gimp translation files for Galician - Galiçya dili için GIMP yerelleştirme dosyaları - locale:gl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gl - - - - gimp-i18n-id - Gimp translation files for Indonesian - Endonezyaca için GIMP yerelleştirme dosyaları - locale:id - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/id - - - - gimp-i18n-es - Gimp translation files for Spanish - İspanyolca için GIMP yerelleştirme dosyaları - locale:es - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/es - - - - gimp-i18n-ru - Gimp translation files for Russian - Rusça için GIMP yerelleştirme dosyaları - locale:ru - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ru - - - - gimp-i18n-rw - Gimp translation files for Kinyarwanda - Kinyarwanda dili için GIMP yerelleştirme dosyaları - locale:rw - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/rw - - - - gimp-i18n-nl - Gimp translation files for Dutch - Hollandaca için GIMP yerelleştirme dosyaları - locale:nl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nl - - - - gimp-i18n-nn - Gimp translation files for Norwegian Nynorsk - Norveç Nynorsk dili için GIMP yerelleştirme dosyaları - locale:nn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nn - - - - gimp-i18n-nb - Gimp translation files for Norwegian Bookmal - Norveç Bookmal dili için GIMP yerelleştirme dosyaları - locale:nb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nb - - - - gimp-i18n-ne - Gimp translation files for Nepali - Nepali dili için GIMP yerelleştirme dosyaları - locale:ne - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ne - - - - gimp-i18n-lt - Gimp translation files for Lithuanian - Litvanyaca için GIMP yerelleştirme dosyaları - locale:lt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lt - - - - gimp-i18n-pa - Gimp translation files for Punjabi - Punjabi dili için GIMP yerelleştirme dosyaları - locale:pa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pa - - - - gimp-i18n-ro - Gimp translation files for Romanian - Rumence için GIMP yerelleştirme dosyaları - locale:ro - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ro - - - - gimp-i18n-en_GB - Gimp translation files for British English - İngiliz İngilizcesi için GIMP yerelleştirme dosyaları - locale:en_GB - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_GB - - - - gimp-i18n-yi - Gimp translation files for Yi - Yi dili için GIMP yerelleştirme dosyaları - locale:yi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/yi - - - - gimp-i18n-en_CA - Gimp translation files for Catalan (en) - Katalanca için GIMP yerelleştirme dosyaları - locale:en_CA - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_CA - - - - gimp-i18n-fr - Gimp translation files for French - Fransızca için GIMP yerelleştirme dosyaları - locale:fr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fr - - - - gimp-i18n-bg - Gimp translation files for Bulgarian - Bulgarca için GIMP yerelleştirme dosyaları - locale:bg - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/bg - - - - gimp-i18n-ms - Gimp translation files for Malay - Malay dili için GIMP yerelleştirme dosyaları - locale:ms - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ms - - - - gimp-i18n-pt_BR - Gimp translation files for Brazilian Portuguese - Brezilya Portekizcesi için GIMP yerelleştirme dosyaları - locale:pt_BR - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt_BR - - - - gimp-i18n-hr - Gimp translation files for Croatian (Hrvatski) - Hırvatça için GIMP yerelleştirme dosyaları - locale:hr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hr - - - - gimp-i18n-zh_TW - Gimp translation files for Chinese Traditional - Geleneksel Çince için GIMP yerelleştirme dosyaları - locale:zh_TW - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_TW - - - - gimp-i18n-ko - Gimp translation files for Korean - Korece için GIMP yerelleştirme dosyaları - locale:ko - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ko - - - - gimp-i18n-it - Gimp translation files for Italian - İtalyanca için GIMP yerelleştirme dosyaları - locale:it - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/it - - - - gimp-i18n-fa - Gimp translation files for Farsi (Persian) - Farsça için GIMP yerelleştirme dosyaları - locale:fa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fa - - - - gimp-i18n-dz - Gimp translation files for Dzongkha - Dzongkha dili için GIMP yerelleştirme dosyaları - locale:dz - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/dz - - - - gimp-i18n-sr_Latn - Gimp translation files for Serbian Latin - Latin sırpça için GIMP yerelleştirme dosyaları - locale:sr@Latn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr@latin - - - - gimp-i18n-da - Gimp translation files for Danish - Danimarkaca için GIMP yerelleştirme dosyaları - locale:da - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/da - - - - gimp-i18n-ja - Gimp translation files for Japanese - Japonca için GIMP yerelleştirme dosyaları - locale:ja - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ja - - - - gimp-i18n-he - Gimp translation files for Hebrew - İbranice için GIMP yerelleştirme dosyaları - locale:he - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/he - - - - gimp-i18n-pt - Gimp translation files for Portuguese - Portekizce için GIMP yerelleştirme dosyaları - locale:pt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt - - - - gimp-i18n-zh_CN - Gimp translation files for Chinese Simplified - Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları - locale:zh_CN - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_CN - - - - gimp-i18n-sr - Gimp translation files for Serbian - Sırpça için GIMP yerelleştirme dosyaları - locale:sr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr - - - - gimp-i18n-oc - Gimp translation files for Occitan - Occitan dili için GIMP yerelleştirme dosyaları - locale:oc - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/oc - - - - gimp-i18n-sv - Gimp translation files for Swedish - İsveççe için GIMP yerelleştirme dosyaları - locale:sv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sv - - - - gimp-i18n-mk - Gimp translation files for Macedonian - Makedonyaca için GIMP yerelleştirme dosyaları - locale:mk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/mk - - - - gimp-i18n-sk - Gimp translation files for Slovak - Slovakça için GIMP yerelleştirme dosyaları - locale:sk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sk - - - - gimp-i18n-de - Gimp translation files for German - Almanca için GIMP yerelleştirme dosyaları - locale:de - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/de - - - - gimp-i18n-pl - Gimp translation files for Polish - Lehçe için GIMP yerelleştirme dosyaları - locale:pl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pl - - - - gimp-i18n-uk - Gimp translation files for Ukrainian - Ukraynaca için GIMP yerelleştirme dosyaları - locale:uk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/uk - - - - gimp-i18n-sl - Gimp translation files for Slovenian - Slovence için GIMP yerelleştirme dosyaları - locale:sl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sl - - - - gimp-i18n-hu - Gimp translation files for Hungarian - Macarca için GIMP yerelleştirme dosyaları - locale:hu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hu - - - - gimp-i18n-tt - Gimp translation files for Tatarish - Tatarca için GIMP yerelleştirme dosyaları - locale:tt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/tt - - - - gimp-i18n-az - Gimp translation files for Azerbaijani - Azerice için GIMP yerelleştirme dosyaları - locale:az - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/az - - - - gimp-i18n-am - Gimp translation files for Amharic - Amharic dili için GIMP yerelleştirme dosyaları - locale:am - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/am - - - - gimp-i18n-is - Gimp translation files for Icelandic - İzlanda dili için GIMP yerelleştirme dosyaları - locale:is - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/is - - - - gimp-i18n-lv - Gimp translation files for Latvia - Latvia dili için GIMP yerelleştirme dosyaları - locale:lv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lv - - - - gimp-i18n-th - Gimp translation files for Thai - Thai dili için GIMP yerelleştirme dosyaları - locale:th - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/th - - - - gimp-i18n-ka - Gimp translation files for Georgian - Gürcüce için GIMP yerelleştirme dosyaları - locale:ka - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ka - - - - gimp-i18n-hi - Gimp translation files for Hindi - Hindi dili için GIMP yerelleştirme dosyaları - locale:hi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hi - - - - gimp-i18n-zh_HK - Gimp translation files for Chinese Hong Kong - Hong Kong Çincesi için GIMP yerelleştirme dosyaları - locale:zh_HK - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_HK - - - - gimp-i18n-ml - Gimp translation files for Malayalam - Malayalam dili için GIMP yerelleştirme dosyaları - locale:ml - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ml - - - - gimp-i18n-ta - Gimp translation files for Tamil - Tamil dili için GIMP yerelleştirme dosyaları - locale:ta - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ta - - - - gimp-i18n-kn - Gimp translation files for Kannada - Kannada dili için GIMP yerelleştirme dosyaları - locale:kn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kn - - - - gimp-i18n-si - Gimp translation files for Sinhala - Sinhala dili için GIMP yerelleştirme dosyaları - locale:si - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/si - - - - gimp-i18n-kk - Gimp translation files for Kazakh - Kazakça için GIMP yerelleştirme dosyaları - locale:kk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kk - - - - gimp-i18n-br - Gimp translation files for Breton - Breton dili için GIMP yerelleştirme dosyaları - locale:br - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/br - - - - gimp-i18n-te - Gimp translation files for Telugu - locale:te - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/te - - - - gimp-i18n-csb - Gimp translation files for Kashubian - locale:csb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/csb - - - - gimp-i18n-gd - Gimp translation files for Scottish Gaelic - locale:gd - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gd - - - - - 2015-02-21 - 2.8.14 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-19 - 2.8.10 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-27 - 2.8.10 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-13 - 2.8.10 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-17 - 2.8.6 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-23 - 2.8.6 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-16 - 2.8.4 - Updated - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-25 - 2.8.2 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - libdmtx - http://www.libdmtx.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.graphics - A Library for working with Data Matrix 2D bar-codes - Data Matrix 2D barkodlarıyla çalışmak için kitaplık - libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. - libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. - http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz - - imagemagick-devel - - multimedia/graphics/libdmtx/pspec.xml - - - libdmtx - - imagemagick - - - /usr/lib - /usr/share/doc - - - - libdmtx-devel - Development files for libdmtx - libdmtx için geliştirme dosyaları - - libdmtx - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-06-05 - 0.7.4 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-08-09 - 0.7.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - inkscape - http://www.inkscape.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:gui - multimedia.graphics - SVG vector graphics application - Vektörel çizim programı - Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. - SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. - https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2 - - gtk2-devel - gtkmm-devel - atkmm-devel - cairo-devel - lcms2-devel - boost-devel - atk-devel - gc-devel - perl-XML-Parser - pango-devel - popt-devel - poppler-glib-devel - poppler-devel - aspell-devel - glibc-devel - gsl-devel - libwpg-devel - libwpd-devel - imagemagick-devel - glibmm-devel - libXft-devel - aalib-devel - libart_lgpl-devel - fontconfig-devel - libsigc++-devel - liblqr-devel - cairomm-devel - gdk-pixbuf-devel - libxslt-devel - pangomm-devel - libcdr-devel - libvisio-devel - librevenge-devel - libjpeg-turbo-devel - gtkspell-devel - dbus-glib-devel - zlib-devel - glib2-devel - libX11-devel - libgcc - libpng-devel - libxml2-devel - freetype - libgomp - libxslt-devel - intltool - gettext-devel - pkgconfig - libX11-devel - - multimedia/graphics/inkscape/pspec.xml - - - inkscape - - freetype - libxml2 - libpng - libgcc - libX11 - glib2 - zlib - dbus-glib - popt - gtk2 - pango - lcms2 - cairo - poppler-glib - gsl - aspell - libwpg - imagemagick - glibmm - gtkmm - fontconfig - libsigc++ - gtkspell - cairomm - gdk-pixbuf - libxslt - pangomm - libwpd - atkmm - poppler - libcdr - libvisio - librevenge - libjpeg-turbo - gc - libgomp - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/dbus-1 - /usr/share/inkscape - /usr/share/applications - - - - inkscape-devel - Development files for Inkscape - Inkscape için geliştirme dosyaları - - inkscape - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-29 - 0.91 - Rebuild for 2.0. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-04-09 - 0.91 - fixed problems. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-07 - 0.91 - rebuild for poppler. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-09 - 0.91 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-25 - 0.48.5 - Rebuild. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-14 - 0.48.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-30 - 0.48.4 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.48.4 - New patch and some fixes - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-10 - 0.48.4 - Rebuil for new poppler. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-01 - 0.48.4 - Rebuild for poppler-0.22.5 - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-26 - 0.48.4 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-11-14 - 0.48.3.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - lcms - http://www.littlecms.com/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.graphics - Moteur de gestion de couleurs léger et optimisé pour la vitesse. - A lightweight, speed optimized color management engine - Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru - LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. - mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz - - swig - tiff-devel - libjpeg-turbo-devel - - - CVE-2009-0793.patch - - multimedia/graphics/lcms/pspec.xml - - - lcms - - tiff - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/lcms - /usr/share/doc - /usr/share/man - - - - lcms-devel - lcms için geliştirme dosyaları - - lcms - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms-32bit - 32-bit shared libraries for lcms - lcms için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-19 - 1.19 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2011-05-04 - 1.19 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jasper - http://www.ece.uvic.ca/~mdadams/jasper - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.graphics - Software implementation of JPEG-2000 Part 1 - JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım - JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). - http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip - - libjpeg-turbo-devel - - - jasper-1.900.1-fixes-20081208.patch.bz2 - - multimedia/graphics/jasper/pspec.xml - - - jasper - - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/man - - - - jasper-docs - - jasper - - - /usr/share/doc - - - - jasper-devel - Development files for jasper - jasper için geliştirme dosyaları - - jasper - - - /usr/include - - - - jasper-32bit - 32-bit shared libraries for jasper - jasper için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libjpeg-turbo-32bit - - - jasper - libjpeg-turbo-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-06-26 - 1.900.1 - Rebuild, fixed - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-21 - 1.900.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-20 - 1.900.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 1.900.1 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2011-07-07 - 1.900.1 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - libwmf - http://wvware.sourceforge.net/libwmf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - Library for reading and converting WMF files - WMF (Windows metafile) okuma ve dönüştürme kitaplığı - Librairie pour convertir les fichiers WMF. - A library for reading and converting Windows MetaFile vector graphics (WMF). - Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. - mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz - - libjpeg-turbo-devel - harfbuzz-devel - freetype-devel - libX11-devel - libxml2-devel - gettext-devel - gdk-pixbuf-devel - - multimedia/graphics/libwmf/pspec.xml - - - libwmf - - zlib - libX11 - libpng - libxml2 - freetype - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/libwmf - - - - libwmf-devel - Development files for libwmf - libwmf için geliştirme dosyaları - - libwmf - - - /usr/bin/libwmf-config - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.2.8.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.2.8.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.2.8.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jbigkit - http://www.cl.cam.ac.uk/~mgk25/jbigkit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.graphics - A portable library of compression and decompression functions - Taşınabilir bir sıkıştırma kitaplığı - JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. - jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. - http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-2.0.tar.gz - - jbigkit-2.0-shared.diff - - multimedia/graphics/jbigkit/pspec.xml - - - jbigkit - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/lib - - - - jbigkit-devel - Development files for jbigkit - jbigkit için geliştirme dosyaları - - jbigkit - - - /usr/include - - - - - 2014-05-19 - 2.0 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-27 - 2.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - babl - http://gegl.org/babl - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.graphics - A dynamic, any to any, pixel format translation library - Dinamik piksel biçimi dönüştürme kütüphanesi - babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. - babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. - http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2 - - gobject-introspection-devel - - multimedia/graphics/babl/pspec.xml - - - babl - - /usr/lib - /usr/share/doc - - - - babl-devel - Development files for babl - babl için geliştirme dosyaları - - babl - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2015-02-07 - 0.1.12 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-19 - 0.1.10 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-18 - 0.1.10 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-28 - 0.1.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lcms2 - http://www.littlecms.com - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.graphics - A color management library. - Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. - http://sourceforge.net/projects/lcms/files/lcms/2.6/lcms2-2.6.tar.gz - - libjpeg-turbo-devel - tiff-devel - - multimedia/graphics/lcms2/pspec.xml - - - lcms2 - - libjpeg-turbo - tiff - - - /usr/bin - /usr/lib - /usr/share/lcms/ - /usr/share/man - /usr/share/doc - - - - lcms2-devel - Development files for lcms2 - - lcms2 - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms2-32bit - 32-bit shared libraries for lcms2 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms2 - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-15 - 2.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-29 - 2.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-02 - 2.5 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-31 - 2.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - openimageio - https://sites.google.com/site/openimageio/home - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics - Library for reading and writing images - Görüntüleri okuma ve yazma için bir kütüphane - OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. - https://github.com/OpenImageIO/oiio/archive/Release-1.5.20.tar.gz - - cmake - boost-devel - openexr-devel - ilmbase-devel - glew-devel - python-devel - txt2man - libpng-devel - tiff-devel - webp-devel - ffmpeg-devel - opencv-devel - freetype-devel - giflib-devel - zlib-devel - jasper-devel - libraw-devel - openjpeg-devel - libjpeg-turbo-devel - - multimedia/graphics/openimageio/pspec.xml - - - openimageio - - tiff - webp - boost - opencv - giflib - ilmbase - openjpeg - openexr-libs - libjpeg-turbo - libraw - zlib - ffmpeg - libpng - python - freetype - libgcc - - - /usr/lib - /usr/bin - /usr/share - - - - openimageio-devel - Development files for openimageio - openimageio için geliştirme başlıkları - - openimageio - tiff-devel - webp-devel - boost-devel - opencv-devel - giflib-devel - ilmbase-devel - openjpeg-devel - openexr-devel - libjpeg-turbo-devel - libraw-devel - zlib-devel - ffmpeg-devel - libpng-devel - python-devel - freetype-devel - - - /usr/include - - - - - 2015-11-06 - 1.5.20 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-14 - 1.5.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-30 - 1.4.15 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.4.8 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 1.3.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-20 - 1.3.11 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-11 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 1.1.20130123 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-25 - 1.1.20130123 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - aalib - http://aa-project.sourceforge.net/aalib/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - An ASCII-graphics Library - Bir ASCII-grafik Kitaplığı - Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. - Aalib is an ASCII-graphics library generating ASCII character outputs. - AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. - Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. - mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz - - gpm - ncurses-devel - - - m4.patch - - multimedia/graphics/aalib/pspec.xml - - - aalib - - gpm - ncurses - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - aalib-devel - Development files for aalib - aalib için geliştirme dosyaları - - aalib - - - /usr/share/aclocal - /usr/include - /usr/share/man/man3 - - - - - 2014-05-20 - 1.4_rc5 - Rebuild, cleanup, fix gpm linking. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-16 - 1.4_rc5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-12-20 - 1.4_rc5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcaca - http://caca.zoy.org/ - - PisiLinux Community - admins@pisilinux.org - - WTFPL-2 - LGPLv2.1 - GPLv2 - library - multimedia.graphics - A library that creates colored ASCII-art graphics - Renkli ASCII-sanat grafikleri oluşturan bir kütüphane - libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. - libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals - libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. - libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto - http://caca.zoy.org/raw-attachment/wiki/libcaca/libcaca-0.99.beta19.tar.gz - - imlib2-devel - - multimedia/graphics/libcaca/pspec.xml - - - libcaca - - imlib2 - zlib - slang - ncurses - libX11 - - - /usr/bin - /usr/lib - /usr/share/libcaca - /usr/share/man - /usr/share/doc - - - - libcaca-devel - Development files for libcaca - libcaca için geliştirme dosyaları - - libcaca - - - /usr/bin/caca-config - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-21 - 0.99_beta19 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 0.99_beta18 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 0.99_beta18 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 0.99_beta17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - GraphicsMagick - http://www.graphicsmagick.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.graphics - GraphicsMagick Image Processing System - GraphicsMagick Resim İşleme Sistemi - GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. - GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. - mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz - - tiff-devel - webp-devel - lcms2-devel - libSM-devel - libwmf-devel - libICE-devel - jasper-devel - jbigkit-devel - libXext-devel - libjpeg-turbo-devel - ghostscript-devel - - - GraphicsMagick-1.3.14-perl_linkage.patch - GraphicsMagick-1.3.16-multilib.patch - - multimedia/graphics/GraphicsMagick/pspec.xml - - - GraphicsMagick - app:console - - tiff - webp - lcms2 - libwmf - jasper - libXext - jbigkit - libgomp - ghostscript - libjpeg-turbo - - - /etc - /usr/bin/gm - /usr/lib/GraphicsMagick-* - /usr/lib/lib* - /usr/share/GraphicsMagick-* - /usr/share/doc - /usr/share/man - - - - GraphicsMagick-devel - Development files for GraphicsMagick - - GraphicsMagick - - - /usr/bin/*-config - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/GraphicsMagick/www - /usr/share/man/man1/*-config.* - - - - PerlMagick - GraphicsMagick perl bindings - - GraphicsMagick - - - /usr/lib/perl5 - /usr/share/doc/PerlMagick - - - - - 2014-09-13 - 1.3.20 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-19 - 1.3.19 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-23 - 1.3.19 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-07 - 1.3.19 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-04 - 1.3.19 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-29 - 1.3.17 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2012-11-22 - 1.3.17 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - imlib2 - http://enlightenment.org/Libraries/Imlib2 - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.graphics - Second version of the general image loading and rendering library - Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu - Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. - Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. - Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. - Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. - http://sourceforge.net/projects/enlightenment/files/imlib2-src/1.4.6/imlib2-1.4.6.tar.gz - - giflib-devel - libid3tag-devel - libXext-devel - libjpeg-turbo-devel - tiff-devel - freetype-devel - - - imlib2-1.4.5-no-my-libs.patch - imlib2-giflib5.patch - - multimedia/graphics/imlib2/pspec.xml - - - imlib2 - - giflib - libid3tag - libXext - libjpeg-turbo - tiff - zlib - bzip2 - libX11 - libpng - freetype - - - /usr/bin - /usr/lib - /usr/share/imlib2 - /usr/share/doc - - - - imlib2-devel - Development files for imlib2 - imlib2 için geliştirme dosyaları - - imlib2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.4.6 - Fix build. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-21 - 1.4.6 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-26 - 1.4.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.4.5 - First release - PisiLinux Community - namsp-01@hotmail.it - - - - - - netpbm - http://netpbm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.graphics - A set of utilities to convert to/from the netpbm (and related) formats - Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi - Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. - http://source.pisilinux.org/1.0/netpbm-10.61.02.tar.gz - - config.mk - - - jasper-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - zlib-devel - libX11-devel - libxml2-devel - - - netpbm-CAN-2005-2471.patch - netpbm-security-code.patch - netpbm-security-scripts.patch - library-link.patch - - multimedia/graphics/netpbm/pspec.xml - - - netpbm - - jasper - tiff - libpng - libjpeg-turbo - zlib - libX11 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/netpbm - /usr/share/man - /usr/share/doc - - - - netpbm-devel - Development files for netpbm - netpbm için geliştirme dosyaları - - netpbm - - - /usr/include - /usr/share/man/man3 - - - - - 2015-02-21 - 10.61.02 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-05-17 - 10.61.02 - Library link fixed - Ertan Güven - ertan@pisilinux.org - - - 2013-05-15 - 10.61.02 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-08-29 - 10.57.06 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - giflib - http://sourceforge.net/projects/giflib - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.graphics - Library to handle, display and manipulate GIF images - GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık - libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. - The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. - libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. - mirrors://sourceforge/giflib/giflib-5.0.6.tar.bz2 - multimedia/graphics/giflib/pspec.xml - - - giflib - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - giflib-devel - - giflib - - - /usr/include - /usr/share/doc/giflib/html - - - - giflib-32bit - 32-bit shared libraries for giflib - emul32 - emul32 - - glibc-32bit - - - giflib - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 5.0.6 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 5.0.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-31 - 4.1.6 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2011-05-03 - 4.1.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - mjpegtools - http://mjpeg.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - Tools for MJPEG video - MJPEG video dosyaları için kullanılabilecek araçlar - mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. - Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. - http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download - - gtk2-devel - libdv-devel - libsdl-devel - libXxf86dga-devel - libjpeg-turbo-devel - libpng-devel - - multimedia/graphics/mjpegtools/pspec.xml - - - mjpegtools - - gtk2 - glib2 - libdv - libgcc - libsdl - libjpeg-turbo - libpng - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - mjpegtools-devel - Development files for mjpegtools - mjpegtools için geliştirme dosyaları - - mjpegtools - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-06-10 - 2.1.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-26 - 2.1.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 2.1.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2012-10-07 - 2.0.1_rc1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gegl - http://gegl.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - LGPLv3+ - library - app:console - multimedia.graphics - A graph based image processing framework - Graf tabanlı resim işleme altyapısı - gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. - gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. - http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 - - libspiro-devel - openexr-devel - ffmpeg-devel - libsdl-devel - libv4l-devel - jasper-devel - cairo-devel - pango-devel - exiv2-devel - babl-devel - libjpeg-turbo-devel - gtk2-devel - lua-devel - asciidoc - intltool - ruby - ilmbase-devel - - - gegl-0.2.0-cve-2012-4433-1e92e523.patch - gegl-0.2.0-cve-2012-4433-4757cdf7.patch - gegl-0.2.0-ffmpeg-0.11.patch - - multimedia/graphics/gegl/pspec.xml - - - gegl - - glib2 - gdk-pixbuf - libspiro - jasper - libpng - libsdl - cairo - pango - babl - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale/ - - - - gegl-devel - Development files for gegl - gegl için geliştirme dosyaları - - gegl - glib2-devel - babl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc/html - - - - - 2014-12-20 - 0.2.0 - Rebuild for lua - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-19 - 0.2.0 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-31 - 0.2.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-29 - 0.2.0 - rebuild for ffmpeg - Kamil Atlı - suvarice@gmail.com - - - 2013-08-23 - 0.2.0 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-20 - 0.2.0 - Configure parameter fixed - Ertan Güven - ertan@pisilinux.org - - - 2012-12-08 - 0.2.0 - First release - marcin bojara - marcin@pisilinux.org - - - - - - libraw - http://www.libraw.org/ - - Yücel KILIÇ - yucel.kilic@linux.org.tr - - LGPLv2.1 - CDDL - library - multimedia.graphics - Raw image decoder - LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). - http://www.libraw.org/data/LibRaw-0.16.2.tar.gz - - libgomp - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - multimedia/graphics/libraw/pspec.xml - - - libraw - - libgomp - libgcc - lcms2 - jasper - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libraw-devel - Development files for libraw - libraw için geliştirme dosyaları - - libraw - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-13 - 0.16.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-16 - 0.16.1 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 0.16.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-08 - 0.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 0.15.2 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 0.15.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 0.14.7 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-31 - 0.14.7 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libjpeg-turbo - http://www.libjpeg-turbo.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - multimedia.graphics - MMX, SSE, and SSE2 SIMD accelerated JPEG library - libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which -uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. - mirrors://sourceforge/libjpeg-turbo/1.3.1/libjpeg-turbo-1.3.1.tar.gz - - fix_doc.patch - - multimedia/graphics/libjpeg-turbo/pspec.xml - - - libjpeg-turbo - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - jpeg - - - - libjpeg-turbo-devel - Development files for libjpeg-turbo - libjpeg-turbo için geliştirme dosyaları - - libjpeg-turbo - - - /usr/include/ - - - jpeg-devel - - - - libjpeg-turbo-32bit - 32-bit shared libraries for jpeg - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libjpeg-turbo - - - /usr/lib32 - - - jpeg-32bit - - - - - 2014-05-15 - 1.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-05-15 - 1.2.1 - Switching from jpeg to libjpeg-turbo - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-12 - 1.2.1 - Source url write mirrors - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-21 - 1.2.1 - Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-07-31 - 1.2.1 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - libart_lgpl - http://www.levien.com/libart - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.graphics - A LGPL version of libart - libart'ın bir LGPL sürümü - Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. - Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. - Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. -  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. - http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 - - noartconfig.patch - libart_lgpl-2.3.21-crosscompile.patch - libart_lgpl-2.3.21-no-test-build.patch - - multimedia/graphics/libart_lgpl/pspec.xml - - - libart_lgpl - - /usr/lib - /usr/share/doc - - - - libart_lgpl-devel - Development files for libart_lgpl - libart_lgpl için geliştirme dosyaları - - libart_lgpl - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 2.3.21 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-29 - 2.3.21 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.3.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - imagemagick - http://www.imagemagick.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - A collection of tools and libraries for many image file formats - Resimleri işlemek ve göstermek için bir X uygulaması - Narzędzie do wyświetlania, konwersji i manipulacji grafikami - ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.9.2-0.tar.xz - - ghostscript-devel - fontconfig-devel - librsvg-devel - openexr-devel - libXext-devel - libwmf-devel - liblqr-devel - jasper-devel - cairo-devel - fftw3-devel - lcms2-devel - tiff-devel - webp-devel - libjpeg-turbo-devel - libpng-devel - - - perlmagick.rpath.patch - - multimedia/graphics/imagemagick/pspec.xml - - - imagemagick - - perl - tiff - webp - zlib - bzip2 - fftw3 - lcms2 - libX11 - libgcc - liblqr - libpng - libwmf - libXext - libgomp - freetype - fontconfig - ghostscript - libtool-ltdl - openexr-libs - libjpeg-turbo - - - /usr/bin - /etc/ImageMagick-6/ - /usr/lib - /usr/share/ImageMagick-* - /usr/share/man - /usr/share/doc - - - - imagemagick-docs - HTML documentation for imagemagick - Imagemagick için API belgeleri - - /usr/share/doc/imagemagick/html - - - - imagemagick-devel - Development files for imagemagick - imagemagick için geliştirme dosyaları - Pliki nagłówkowe imagemagick - - imagemagick - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/man/man1/*-config* - /usr/bin/*-config - - - - - 2014-09-14 - 6.9.2.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - openjpeg - http://www.openjpeg.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.graphics - JPEG2000 decoding library - JPEG2000 çözme kütüphanesi - Biblioteka implementująca kodek formatu JPEG 2000 - openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). - http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz - - tiff-devel - doxygen - libpng-devel - - - openjpeg-20070717svn-mqc-optimize.patch - - multimedia/graphics/openjpeg/pspec.xml - - - openjpeg - - libpng - tiff - - - /usr/bin - /usr/share/pkgconfig/ - /usr/share/openjpeg-1.5 - /usr/share/man/man1 - /usr/lib - /usr/share/doc - - - - openjpeg-devel - Development files for openjpeg - openjpeg için geliştirme dosyaları - Pliki nagłówkowe do openjpeg - - openjpeg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - openjpeg-32bit - 32-bit shared libraries for openjpeg - emul32 - - glibc-32bit - libpng-32bit - - - openjpeg - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-22 - 1.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-09 - 1.5.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-28 - 1.5.1 - Fix pc file for emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-18 - 1.5.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - x264 - http://developers.videolan.org/x264.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.video - Open source H264/AVC encoder - Açık kaynak kodlu H264/AVC çözücü - x264 is a free library for encoding H264/AVC video streams. - x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane - ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20141201-2245.tar.bz2 - - yasm-devel - - multimedia/video/x264/pspec.xml - - - x264 - - /usr/bin - /usr/lib - - - - x264-devel - Development files for x264 - x264 için geliştirme dosyaları - - x264 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-02 - 2245 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 2245 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-05 - 0.0_20140404 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-17 - 0.0_20130705 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-06 - 0.0_20130705 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-30 - 0.0_20120929 - First release - Erdem Artan - admins@pisilinux.org - - - - - - gstreamermm - http://gstreamer.freedesktop.org/bindings/cplusplus.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - GStreamer C++ bindings - Gstreamer C++ arayüzü - The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. - Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. - http://ftp.gnome.org/pub/gnome/sources/gstreamermm/0.10/gstreamermm-0.10.11.tar.xz - - glib2-devel - gstreamer-devel - libxml2-devel - gst-plugins-base-devel - glibmm-devel - libxmlpp-devel - libsigc++ - libgcc - - multimedia/video/gstreamermm/pspec.xml - - - gstreamermm - - glib2 - libgcc - libxml2 - gstreamer - gst-plugins-base - glibmm - libxmlpp - libsigc++ - - - /usr/lib - /usr/share/devhelp/books/gstreamermm-0.10 - /usr/share/doc - - - - gstreamermm-devel - gstreamermm için geliştirme dosyaları - gstreamermm için geliştirme dosyaları - - glibmm-devel - libxmlpp-devel - gstreamer-devel - gst-plugins-base-devel - gstreamermm - - - /usr/include/gstreamermm-0.10 - /usr/lib/pkgconfig - - - - - 2014-05-28 - 0.10.11 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.11 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-26 - 0.10.11 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-08-08 - 0.10.11 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - x265 - http://x265.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.video - Open source H265/EVC encoder - Açık kaynak kodlu H265/EVC çözücü - x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. - x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane - https://bitbucket.org/multicoreware/x265/get/1.7.tar.bz2 - - yasm-devel - cmake - - multimedia/video/x265/pspec.xml - - - x265 - - libgcc - - - /usr/bin - /usr/lib - - - - x265-devel - Development files for x265 - x265 için geliştirme dosyaları - - x265 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-23 - 1.7 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-02 - 1.4 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-05 - 0.9 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - opencore-amr - http://opencore-amr.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - multimedia.video - AMR speech codec implementation - AMR ses kodek sistemi - Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. - Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. - http://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.3.tar.gz - multimedia/video/opencore-amr/pspec.xml - - - opencore-amr - - /usr/lib - /usr/share/doc/opencore-amr - - - - opencore-amr-devel - Development files for opencore-amr - opencore-amr için geliştirme dosyaları - - opencore-amr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 0.1.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-29 - 0.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libtheora - http://www.theora.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.video - Le codec (compresseur / décompresseur) de compression vidéo Theora. - The Theora Video Compression Codec - Theora video sıkıştırma kodlaması - Der Theora Video Kompressions-Codec - libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. - libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. - http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 - - libogg-devel - libvorbis-devel - - - flags.patch - libtheora-1.1.1-libpng16.patch - - multimedia/video/libtheora/pspec.xml - - - libtheora - - libogg - libvorbis - - - /usr/lib - /usr/share/doc - - - - libtheora-32bit - 32-bit shared libraries for libtheora - emul32 - emul32 - - libogg-32bit - glibc-32bit - - - libtheora - libogg-32bit - glibc-32bit - - - /usr/lib32 - - - - libtheora-devel - Development files for libtheora - libtheora için geliştirme dosyaları - - libtheora - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2014-05-20 - 1.1.1 - Rebuild, add libpng16 patch. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-14 - 1.1.1 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 1.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gst-libav-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Gstreamer plugin for the libav codec - Gstreamer plugin for the libav codec. - http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.4.5.tar.xz - - gst-plugins-base-next-devel - gstreamer-next-devel - liboil-devel - orc-devel - ffmpeg-devel - - multimedia/video/gst-libav-next/pspec.xml - - - gst-libav-next - - gst-plugins-base-next - gstreamer-next - bzip2 - glib2 - ffmpeg - liboil - - - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-23 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-29 - 1.2.1 - Version bump + rebuild for ffmpeg - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libmatroska - http://www.matroska.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Format de conteneur multimédia extensible basé sur EBML. - Extensible multimedia container format based on EBML - EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı - Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). - http://dl.matroska.org/downloads/libmatroska/libmatroska-1.4.2.tar.bz2 - - libebml-devel - - multimedia/video/libmatroska/pspec.xml - - - libmatroska - - libebml - libgcc - - - /usr/lib - /usr/share/doc - - - - libmatroska-devel - Development files for libmatroska - libmatroska için geliştirme dosyaları - - libmatroska - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-20 - 1.4.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.4.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-16 - 1.4.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-08-29 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gst-plugins-bad-next - http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - A set of GStreamer plug-ins that aren't up to par compared to the rest - GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. - http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.4.5.tar.xz - - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - libdvdnav-devel - soundtouch-devel - faac-devel - valgrind - jasper-devel - libdca-devel - gsm-devel - mjpegtools-devel - libdvdnav-devel - libsndfile-devel - DirectFB-devel - libSM-devel - libICE-devel - celt-devel - libdc1394-devel - alsa-lib-devel - libsdl-devel - soundtouch-devel - libtheora-devel - libmodplug-devel - xvid-devel - libdvdread-devel - libvdpau-devel - rtmpdump-devel - schroedinger-devel - gdk-pixbuf-devel - libvo-aacenc-devel - libvo-amrwbenc-devel - - - 02_no-Werror.patch - remove_external_symbols.patch - gst-plugins-bad-0.10.7-wildmidi-timidity.cfg.patch - - multimedia/video/gst-plugins-bad-next/pspec.xml - - - gst-plugins-bad-next - - DirectFB - libdca - libgcc - libxml2 - faac - bzip2 - glib2 - libX11 - gsm - libmodplug - mjpegtools - soundtouch - libdvdnav - libsndfile - libdvdread - libvdpau - schroedinger - gstreamer-next - orc - libvo-aacenc - libvo-amrwbenc - wayland-client - gst-plugins-base-next - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gstreamer-1.0 - /usr/share/gst-plugins-bad/1.0/ - /usr/share/gtk-doc - /usr/share/gir-1.0/ - /usr/share/doc - - - - gst-plugins-bad-next-devel - Development files for gst-plugins-bad - - gst-plugins-bad-next - gstreamer-next-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-23 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.2.3 - Rebuild for webp. - Kamil Atlı - suvarice@gmail.com - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - bump - Osman Erkan - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libdvbpsi - http://www.videolan.org/libdvbpsi/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. - Library for MPEG TS/DVB PSI tables decoding and generation - MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık - libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. - libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. - http://download.videolan.org/pub/libdvbpsi/1.1.2/libdvbpsi-1.1.2.tar.bz2 - multimedia/video/libdvbpsi/pspec.xml - - - libdvbpsi - - /usr/lib - /usr/share/doc - - - - libdvbpsi-devel - Development files for libdvbpsi - libdvbpsi için geliştirme dosyaları - - libdvbpsi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-31 - 1.1.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-20 - 1.1.2 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-08-29 - 0.2.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vo-amrwbenc - http://sourceforge.net/projects/opencore-amr/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:cli - multimedia.video - VisualOn AMR-WB encoder library - VisualOn AMR-WB encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz - multimedia/video/vo-amrwbenc/pspec.xml - - - vo-amrwbenc - - libvo-amrwbenc - - - /usr/bin/amrwb-enc - - - - libvo-amrwbenc - - /usr/lib - /usr/share/doc - - - - libvo-amrwbenc-devel - - libvo-amrwbenc - - - /usr/include - /usr/lib/pkgconfig/vo-amrwbenc.pc - - - - - 2014-05-27 - 1.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-28 - 1.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-30 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - smpeg - http://www.lokigames.com/development/smpeg.php3 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:gui - multimedia.video - SDL MPEG kitaplığı - SDL MPEG - SDL MPEG library - SMPEG is a SDL MPEG decoding library. - SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. - http://source.pisilinux.org/1.0/smpeg-0.4.5.tar.xz - - libsdl-devel - freeglut-devel - mesa-devel - mesa-glu-devel - - - smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff - smpeg-0.4.5-fix-header.patch - smpeg-0.4.5-libsupc++.patch - smpeg-0.4.5-link.patch - - multimedia/video/smpeg/pspec.xml - - - smpeg - - libsdl - mesa - mesa-glu - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - smpeg-devel - Development files for smpeg - smpeg için geliştirme dosyaları - - smpeg - - - /usr/bin/smpeg-config - /usr/include - /usr/share/aclocal - - - - smpeg-32bit - 32-bit shared libraries for smpeg - smpeg için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freeglut-32bit - mesa-32bit - libsdl-32bit - mesa-glu-32bit - - - smpeg - libsdl-32bit - - - /usr/lib32 - - - - - 2014-06-01 - 0.4.5 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.4.5 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 0.4.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 0.4.4 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-12-30 - 0.4.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xvid - http://www.xvid.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - High performance MPEG-4 video de-/encoding solution - Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü - Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. - Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. - Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. - http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz - multimedia/video/xvid/pspec.xml - - - xvid - - /usr/lib - /usr/share/doc/xvid - - - - xvid-devel - - xvid - - - /usr/share/doc/xvid/examples - /usr/include - - - - - 2014-12-14 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-22 - 1.3.2 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-17 - 1.3.2 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2012-08-29 - 1.3.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gstreamer-vaapi - http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ - - Osman Erkan - osman.erkan@pisilinux.org - - LGPLv2.1 - library - multimedia.video - GStreamer Multimedia Framework VA Plugins - gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - http://freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.6.0.tar.bz2 - - mesa-devel - libva-devel - libdrm-devel - wayland-devel - gstreamer-devel - libXrandr-devel - libXrender-devel - gstreamer-next-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gst-plugins-bad-next-devel - gst-plugins-base-next-devel - - multimedia/video/gstreamer-vaapi/pspec.xml - - - gstreamer-vaapi - - mesa - libva - libdrm - gstreamer - libXrandr - libXrender - wayland-client - gst-plugins-bad - gst-plugins-base - - - /usr/share/doc - /usr/lib/gstreamer-0.10/ - /usr/lib/libgstvaapi*0.10* - - - - gstreamer-vaapi-next - GStreamer-next Multimedia Framework VA Plugins. - - mesa - libva - libdrm - libXrandr - libXrender - gstreamer-next - wayland-client - gst-plugins-bad-next - gst-plugins-base-next - - - /usr/lib/gstreamer-1.0/ - /usr/lib/libgstcodecparsers_vpx* - /usr/lib/libgstvaapi*1.4* - - - - gstreamer-vaapi-devel - Development files for gstreamer-vaapi - gstreamer için geliştirme dosyaları - - libva-devel - gstreamer-devel - gstreamer-vaapi - - - /usr/include/gstreamer-1.0/gst/vaapi/ - /usr/lib/pkgconfig/gstreamer-*0.10* - - - - gstreamer-vaapi-next-devel - Development files for gstreamer-vaapi-next - - libva-devel - gstreamer-next-devel - gstreamer-vaapi-next - - - /usr/include/gstreamer-1.4/ - /usr/lib/pkgconfig/gstreamer-vaapi-wayland-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-x11-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-1.0.pc - /usr/lib/pkgconfig/gstreamer-vaapi-glx-1.0.pc - - - - - 2015-07-23 - 0.6.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-28 - 0.5.8 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-24 - 0.5.8 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gst-plugins-ugly-next - http://gstreamer.net/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - Other plugins for gstreamer - GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. - http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.4.5.tar.xz - - gst-plugins-base-next-devel - gstreamer-next-devel - x264-devel - lame-devel - opencore-amr-devel - a52dec-devel - libmad-devel - libcdio-devel - libmpeg2-devel - libdvdcss-devel - libid3tag-devel - libdvdread-devel - orc-devel - - multimedia/video/gst-plugins-ugly-next/pspec.xml - - - gst-plugins-ugly-next - - gst-plugins-base-next - gstreamer-next - x264 - glib2 - lame - opencore-amr - a52dec - libmad - libcdio - libmpeg2 - libdvdread - orc - - - /usr/lib/gstreamer-1.0 - /usr/share/doc/ - /usr/share/gtk-doc/html/gst-plugins-ugly-plugins-1.0 - /usr/share/gstreamer-1.0 - /usr/share/locale - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-07 - 1.2.3 - Rebuild for x264. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-23 - 1.2.1 - version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - vokoscreen - http://www.kohaupt-online.de/hp/ - - Pisilinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.video - New desktop recording program - Yeni masaüstü kayıt programı - Vokoscreen is a new application you to record your desktop. It’s very simple and it uses a minimalistic GUI - Vokoscreen masaüstü kaydetmek için yeni bir uygulamadır.Çok basit kullanışlı bir arayüz sunar. - vokoscreen - https://github.com/vkohaupt/vokoscreen/archive/2.4.3-beta.tar.gz - - qt5-base-devel - qt5-x11extras-devel - qt5-linguist - qt5-qdbusviewer - libv4l-devel - ffmpeg-devel - opencv-devel - alsa-lib-devel - libX11-devel - opencv-devel - pkgconfig - - - qtlocalpeer.patch - datastream.patch - - multimedia/video/vokoscreen/pspec.xml - - - vokoscreen - - libX11 - libgcc - libv4l - qt5-base - qt5-x11extras - alsa-lib - - - /usr/bin - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/pixmaps - - - - - 2015-11-15 - 2.4.6 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-08-13 - 2.4.3 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libmpeg2 - http://libmpeg2.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams - mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane - libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. - libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. - libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. - http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz - - libmpeg2-0.4.1-use-readelf-for-test.patch - - multimedia/video/libmpeg2/pspec.xml - - - libmpeg2 - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libmpeg2-devel - Development files for libmpeg2 - libmpeg2 için geliştirme dosyaları - - libmpeg2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 0.5.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-31 - 0.5.1 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.5.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libv4l - http://freecode.com/projects/libv4l - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - multimedia.video - V4L wrapper for V4L2 - V4L kitaplığı - Warstwa abstrakcji dla urządzeń video4linux2 - A library to access V4L2 API with V4L1 alike calls. - V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. - libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. - http://linuxtv.org/downloads/v4l-utils/v4l-utils-1.0.1.tar.bz2 - - qt5-base-devel - libjpeg-turbo-devel - glibc-devel - libgcc - - multimedia/video/libv4l/pspec.xml - - - libv4l - - libjpeg-turbo - - - /lib/udev/rules.d - /lib/udev/rc_keymaps - /usr/lib - /usr/share/doc - - - - v4l-utils - Utilities for libv4l - Zbiór narzędzi do urządzeń Video4Linux - - libgcc - libv4l - - - /etc - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/applications - /usr/share/icons - - - - libv4l-devel - Development files for libv4l - libv4l için geliştirme dosyaları - Pliki nagłówkowe bibliotek libv4l - - libv4l - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libv4l/contrib - - - - libv4l-32bit - 32-bit shared libraries for libv4l - libv4l için 32-bit paylaşımlı kitaplıklar - 32-bitowe biblioteki libv4l - emul32 - emul32 - - libjpeg-turbo-32bit - - - libjpeg-turbo-32bit - glibc-32bit - libv4l - - - /usr/lib32 - - - - - 2014-05-20 - 1.0.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-20 - 23042013 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-17 - 23042013 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-17 - 23042013 - Release Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 23042013 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-23 - 23042013 - bump frome gitsnapshot - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-17 - 0.9.3 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-12-03 - 0.8.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libquicktime - http://libquicktime.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.video - A library based on quicktime4linux with extensions - quicktime4linux ve eklentileri tabanlı bir kütüphane - Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. - Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. - Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. - Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. - mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz - - mesa-devel - lame-devel - zlib-devel - glib2-devel - libX11-devel - libpng-devel - faac-devel - gtk2-devel - libdv - faad2-devel - libXt-devel - libXv-devel - ffmpeg-devel - libXaw-devel - libXext-devel - alsa-lib-devel - libvorbis-devel - libavc1394-devel - libraw1394-devel - schroedinger-devel - libjpeg-turbo-devel - x264-devel - - - libquicktime-1.2.4+libav-9.patch - libquicktime-1.2.4-ffmpeg2.patch - - multimedia/video/libquicktime/pspec.xml - - - libquicktime - - mesa - lame - zlib - glib2 - libX11 - libpng - faac - gtk2 - libdv - faad2 - libXt - libXv - ffmpeg - libXaw - libXext - alsa-lib - libvorbis - libavc1394 - libraw1394 - schroedinger - libjpeg-turbo - x264 - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - libquicktime-devel - Development files for libquicktime - libquicktime için geliştirme dosyaları - - libquicktime - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-11-13 - 1.2.4 - Rebuild version for Pisi 2.0 - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-18 - 1.2.4 - Rebuild version - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-12-16 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 1.2.4 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-29 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2013-11-26 - 1.2.4 - Rebuild for ffmpeg - PisiLinux Community - admins@pisilinux.org - - - 2013-07-08 - 1.2.4 - rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.2.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gst-plugins-base - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Basepack of plugins for gstreamer - Gstreamer için temel eklentiler paketi - Les plug-ins (greffons) de base GStreamer est une collection bien peaufinée et bien maintenues de plug-ins et d'éléments GStreamer, couvrant l'éventail des types d'éléments que quelqu'un pourrait vouloir écrire pour GStreamer. Il contient également des librairies d'aide ainsi que les classes de bases utiles pour l'écriture d'éléments. Un grand nombre de décodeurs, d'encodeurs et de filtres audio et vidéos sont également inclus. - GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. - Bu paket, Gstreamer'ın rahatlıkla genişleyebilmesini sağlayan ve bakımları sürekli yapılan temel eklentileri içerir. Program parçacığı yazmak için yardımcı kütüphaneler ve temel sınıflar da bulunur. - http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/0.10/gst-plugins-base-0.10.36.tar.xz - - gstreamer-devel - gstreamer-next-devel - pango-devel - libXv-devel - libogg-devel - alsa-lib-devel - libvorbis-devel - libtheora-devel - libvisual-devel - gobject-introspection-devel - orc-devel - libxml2-devel - - multimedia/video/gst-plugins-base/pspec.xml - - - gst-plugins-base - - zlib - glib2 - libX11 - libxml2 - gstreamer - pango - cairo - libXv - libogg - libXext - alsa-lib - libvorbis - libvisual - libtheora - orc - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/gstreamer-0.10 - /usr/lib/libgst* - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/gst-plugins-base - /usr/share/man - /usr/share/locale - - - - gst-plugins-base-32bit - 32-bit shared libraries for gst-plugins-base - emul32 - emul32 - - orc-32bit - zlib-32bit - glib2-32bit - libXv-32bit - cairo-32bit - pango-32bit - libSM-32bit - libogg-32bit - libICE-32bit - libX11-32bit - libxml2-32bit - libXext-32bit - alsa-lib-32bit - gstreamer-32bit - libvorbis-32bit - - - gst-plugins-base - orc-32bit - zlib-32bit - glibc-32bit - glib2-32bit - libXv-32bit - cairo-32bit - pango-32bit - libogg-32bit - libX11-32bit - libxml2-32bit - libXext-32bit - alsa-lib-32bit - gstreamer-32bit - libvorbis-32bit - - - /usr/lib32/gstreamer-0.10 - /usr/lib32/libgst* - - - - gst-plugins-base-devel - Development files for gst-plugins-base - gst-plugins-base için geliştirme dosyaları - - gst-plugins-base - glib2-devel - gstreamer-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/gstreamer*.pc - /usr/share/man/man3 - - - - - 2014-05-20 - 0.10.36 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.36 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-01 - 0.10.36 - Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 0.10.36 - Move pc files to devel pack, rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.10.36 - Rebuild for libcdio-0.90 - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-25 - 0.10.36 - configure fix. - PisiLinux Community - admins@pisilinux.org - - - 2013-02-14 - 0.10.36 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-09 - 0.10.36 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ffmpeg - http://ffmpeg.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - LGPLv2 - LGPLv3 - app:console - multimedia.video - A command-line tool to record, convert and stream audio and video - FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu - FFmpeg is a complete solution to record, convert and stream audio and video. - FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. - http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2 - - freetype-devel - faac-devel - lame-devel - x264-devel - x265-devel - libva-devel - libsdl-devel - libvpx-devel - libass-devel - libopus-devel - alsa-lib-devel - libvdpau-devel - libtheora-devel - libvorbis-devel - gnutls-devel - celt-devel - gsm-devel - libbluray-devel - opencore-amr-devel - libmodplug-devel - pulseaudio-libs-devel - openjpeg-devel - frei0r-plugins-devel - rtmpdump-devel - schroedinger-devel - speex-devel - libv4l-devel - libvo-amrwbenc-devel - libvo-aacenc-devel - xvid-devel - libdc1394-devel - libnut-devel - libcdio-paranoia-devel - libXv-devel - - multimedia/video/ffmpeg/pspec.xml - - - ffmpeg - - gsm - celt - faac - lame - x264 - x265 - xvid - zlib - bzip2 - speex - libva - libXv - gnutls - libX11 - libnut - libsdl - libv4l - libvpx - libxcb - libass - libopus - libXext - alsa-lib - freetype - libvdpau - openjpeg - rtmpdump - libbluray - libdc1394 - libtheora - libvorbis - fontconfig - libmodplug - libvo-aacenc - opencore-amr - schroedinger - libvo-amrwbenc - pulseaudio-libs - libcdio-paranoia - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/ffmpeg - - - - ffmpeg-devel - Development files for ffmpeg - ffmpeg için geliştirme dosyaları - Pliki nagłówkowe ffmpeg - - ffmpeg - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-29 - 2.7.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-13 - 2.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-05 - 2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-24 - 2.2.4 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-04 - 2.2.3 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-21 - 2.2.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-05 - 2.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-27 - 2.1.1 - fix dep - Kamil Atlı - suvarice@gmail.com - - - 2013-11-24 - 2.1.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-28 - 1.2.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-06 - 1.2.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-25 - 1.1.1 - Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-01-26 - 1.1.1 - Version bump to 1.1.1 - Idris Kalp - admins@pisilinux.org - - - 2012-09-29 - 1.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xine-lib - http://xine.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Librairies centrales pour le lecteur vidéo Xine. - Core libraries for Xine movie player - Xine çokluortam oynatıcısının çekirdek kitaplıkları - This package contains the Xine library. It can be used to play back various media, decode multimedia files from local disk drives, and display multimedia streamed over the Internet. It interprets many of the most common multimedia formats available - and some uncommon formats, too. - xine-lib çeşitli medyaları oynatmak, farklı medya yapılarını birbirine dönüştürmek, Internet üzerinden yayınları işleyip göstermek gibi işlevleri olan bir çokluortam kitaplığıdır. Yaygın çokluortam yapılarının çoğunu desteklediği gibi fazla yaygın olmayan yapıları da desteklemektedir. - http://sourceforge.net/projects/xine/files/xine-lib/1.2.6/xine-lib-1.2.6.tar.xz - - accel_vaapi.h - - - libXext-devel - fontconfig-devel - freetype-devel - zlib-devel - libXinerama-devel - libXv-devel - libXvMC-devel - libogg-devel - libvorbis-devel - mesa-devel - libdvdcss-devel - DirectFB-devel - flac-devel - libsdl-devel - alsa-lib-devel - aalib-devel - libtheora-devel - libvpx-devel - samba-devel - libmad-devel - speex-devel - libmodplug-devel - ffmpeg-devel - a52dec-devel - libv4l-devel - pulseaudio-libs-devel - libdca-devel - libbluray-devel - libmng-devel - libSM-devel - libICE-devel - libcdio-devel - mesa-glu-devel - libvdpau-devel - - - list.patch - multilib.patch - no_autopoint.patch - dmo.patch - tr_segfault_fix.patch - deepbind.patch - lpthread.patch - - multimedia/video/xine-lib/pspec.xml - - - xine-lib - - mesa - zlib - flac - speex - aalib - libXv - libmad - a52dec - libdca - libsdl - libogg - libv4l - ffmpeg - libX11 - libXvMC - libXext - libvpx - libxcb - alsa-lib - freetype - DirectFB - libvdpau - mesa-glu - libtheora - libbluray - libvorbis - fontconfig - libmodplug - pulseaudio-libs - - - /usr/bin - /usr/lib - /usr/share/xine - /usr/share/xine-lib/fonts - /usr/share/man - /usr/share/doc/xine-lib - - - - xine-lib-devel - Development files for xine-lib - xine-lib için geliştirme dosyaları - xine-lib için geliştirme dosyaları - - xine-lib - - - /usr/bin/xine-config - /usr/lib/pkgconfig - /usr/include - /usr/share/aclocal - - - - - 2014-07-07 - 1.2.6 - Rebuild for ffmpeg - Kamil Atlı - suvari@pisilinux.org - - - 2014-07-07 - 1.2.6 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-20 - 1.2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-20 - 1.2.3 - Fix unneeded dependencies, remove DirectBD-devel from runtime deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 1.2.3 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-14 - 1.2.3 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 1.2.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-30 - 1.2.2 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gst-plugins-base-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Basepack of plugins for gstreamer - GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. - http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.4.5.tar.xz - - gstreamer-next-devel - cdparanoia - pango-devel - cairo-devel - libXv-devel - libogg-devel - libXext-devel - alsa-lib-devel - libvorbis-devel - libtheora-devel - libvisual-devel - gobject-introspection-devel - orc-devel - - multimedia/video/gst-plugins-base-next/pspec.xml - - - gst-plugins-base-next - - zlib - glib2 - libX11 - gstreamer-next - cdparanoia - pango - cairo - libXv - libogg - libXext - alsa-lib - libvorbis - libvisual - libtheora - orc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - /usr/share/gir-1.0 - /usr/share/man - /usr/share/locale - /usr/share/gst-plugins-base/1.0 - - - - gst-plugins-base-next-devel - Development files for gst-plugins-base - - gst-plugins-base-next - gstreamer-next-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libvpx - http://www.webmproject.org - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - multimedia.video - WebM VP8 Codec SDK - WebM VP8 geliştirme altyapısı - libvpx is the VP8 development library usually used in WebM and similiar formats. - libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. - http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2 - - libgcc - - multimedia/video/libvpx/pspec.xml - - - libvpx - - /usr/bin - /usr/lib - /usr/share/doc/libvpx - - - - libvpx-devel - libvpx header files - libvpx için başlık dosyaları - - libvpx - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-07-15 - 1.4.0 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-22 - 1.3.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-29 - 1.3.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-09 - 1.2.0 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-06 - 1.2.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gstreamer - http://gstreamer.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.video - GStreamer streaming media framework runtime - GStreamer ses yayın altyapısı - GStreamer est la librairies principale. Elle contient les entêtes, les fichiers et les éléments centraux. - GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. - gstreamer bir ses yayın altyapısı kütüphanesidir. Bu kütüphaneyi kullanan uygulamalar, gerçek zamanlı ses işleme, görüntü oynatma gibi çokluortam ile ilgili birçok işlem gerçekleştirebilirler. - http://ftp.gnome.org/pub/gnome/sources/gstreamer/0.10/gstreamer-0.10.36.tar.xz - - glib2-devel - gobject-introspection-devel - libxml2-devel - - - wrapper-plugins.patch - bison3.patch - - multimedia/video/gstreamer/pspec.xml - - - gstreamer - - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/gir-1.0 - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - gstreamer-devel - Development files for gstreamer - gstreamer için geliştirme dosyaları - - gstreamer - glib2-devel - gobject-introspection-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - gstreamer-32bit - 32-bit shared libraries for gstreamer - gstreamer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - glibc-32bit - libxml2-32bit - - - gstreamer - glib2-32bit - glibc-32bit - libxml2-32bit - - - /usr/lib32 - - - - - 2015-06-26 - 0.10.36 - Rebuild, fixed. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-19 - 0.10.36 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 0.10.36 - Rebuild for webp - Kamil Atlı - suvarice@gmail.com - - - 2014-02-27 - 0.10.36 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-26 - 0.10.36 - Release Bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-08-20 - 0.10.36 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - crystalhd - http://www.broadcom.com/support/crystal_hd/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - multimedia.video - Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD - Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri - Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD - Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri - http://source.pisilinux.org/1.0/crystalhd.tar.xz - multimedia/video/crystalhd/pspec.xml - - - libcrystalhd - Broadcom Crystal HD için kütüphane - - /usr/lib/libcrystalhd.so - /usr/lib/libcrystalhd.so.3 - /usr/lib/libcrystalhd.so.3.6 - /usr/share/doc - - - - libcrystalhd-devel - Broadcom Crystal HD için geliştirici dosyaları - - libcrystalhd - - - /usr/include/libcrystalhd/bc_dts_defs.h - /usr/include/libcrystalhd/bc_dts_types.h - /usr/include/libcrystalhd/libcrystalhd_if.h - /usr/include/libcrystalhd/libcrystalhd_version.h - - - - crystalhd-firmware - Broadcom Crystal HD firmware dosyaları - - /lib/firmware - - - - - 2014-05-20 - 20100703 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-21 - 20100703 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-10-24 - 20100703 - First release - Erdem Artan - erdem.artan@linux.org.tr - - - - - - libdv - http://libdv.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.video - Software codec for dv-format video (camcorders etc) - Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı - Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. - The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. - Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. - El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. - mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz - - libsdl-devel - popt-devel - - - libdv-0.99-2.6.patch - libdv-1.0.0-pic.patch - libdv-1.0.0-dso-linking.patch - libdv-mmxdetect-athlon.patch - - multimedia/video/libdv/pspec.xml - - - libdv - - popt - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdv-devel - Development files for libdv - libdv için geliştirme dosyaları - - libdv - - - /usr/include/libdv - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.0.0 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 1.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.0.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gst-plugins-good - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. - A set of good-quality plugins for GStreamer - Gstreamer için temel eklentiler paketi - gst-plugins-good contains a set of mature plugins and elements for GStreamer. - http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.31.tar.bz2 - - gst-plugins-base-devel - gstreamer-devel - cairo-devel - flac-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - libpng-devel - libsoup-devel - libvpx-devel - aalib-devel - libraw1394-devel - pulseaudio-libs-devel - libv4l-devel - libsoup-gnome - speex-devel - gtk2-devel - orc-devel - libXext-devel - valgrind - libXdamage-devel - libXfixes-devel - libXv-devel - libvorbis-devel - libtheora-devel - libogg-devel - libICE-devel - libSM-devel - - - 0001-fix-v4l2_munmap.patch - 0002-clear_DISCONT_flag.patch - 0003-v4l2src-fix.patch - 0004-v4l2object-Don-t-probe-UVC-devices-for-being-interla.patch - 0001-sys-v4l2-Some-blind-compilation-fixes.patch - - multimedia/video/gst-plugins-good/pspec.xml - - - gst-plugins-good - - orc - flac - zlib - speex - libX11 - libpng - libXv - cairo - glib2 - aalib - bzip2 - libv4l - libsoup - libxml2 - libXext - gstreamer - libXfixes - gdk-pixbuf - libXdamage - libjpeg-turbo - libsoup-gnome - pulseaudio-libs - gst-plugins-base - - - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-0.10/presets - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - - 2014-05-28 - 0.10.31 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-27 - 0.10.31 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-0-26 - 0.10.31 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2013-07-28 - 0.10.31 - missing dep. - Erdinç Gültekin - admins@pisilinux.org - - - 2013-05-09 - 0.10.31 - rebuild for libv4l - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-09 - 0.10.31 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gst-plugins-bad - http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - A set of GStreamer plug-ins that aren't up to par compared to the rest - Diğer eklentilerle karşılaştırıldığında çok iyi durumda olmayan gstreamer eklentileri - GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. - gst-plugins-bad, iyiye yakın kalitede olan ancak gerçek bir geliştirici, belgelendirme, test seti gibi eksikleri bulunan eklentilerdir. - http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.bz2 - - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - libdvdnav-devel - soundtouch-devel - faac-devel - valgrind - jasper-devel - libdca-devel - gsm-devel - mjpegtools-devel - libdvdnav-devel - libsndfile-devel - DirectFB-devel - libSM-devel - libICE-devel - celt-devel - libdc1394-devel - alsa-lib-devel - libsdl-devel - soundtouch-devel - libtheora-devel - libmodplug-devel - xvid-devel - libdvdread-devel - libvdpau-devel - rtmpdump-devel - schroedinger-devel - gdk-pixbuf-devel - libvo-aacenc-devel - libvo-amrwbenc-devel - - - directfb.patch - - multimedia/video/gst-plugins-bad/pspec.xml - - - gst-plugins-bad - - gst-plugins-base - gstreamer - DirectFB - celt - libdc1394 - libdca - libgcc - libpng - faac - bzip2 - glib2 - jasper - libX11 - gsm - libmodplug - mjpegtools - libsdl - soundtouch - libdvdnav - libsndfile - xvid - libdvdread - libvdpau - schroedinger - orc - libvo-aacenc - libvo-amrwbenc - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gstreamer-0.10 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/glib-2.0/schemas - - - - gst-plugins-bad-devel - Development files for gst-plugins-bad - gst-plugins-bad için geliştirme dosyaları - - gst-plugins-bad - gstreamer-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2014-05-26 - 0.10.23 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 0.10.23 - Rebuild for mjpegtools - Kamil Atlı - suvarice@gmail.com - - - 2013-10-19 - 0.10.23 - Fix build dependency's. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-14 - 0.10.23 - clean build. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-10-14 - 0.10.23 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 0.10.23 - Dep Fixed. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-05-25 - 0.10.23 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-09 - 0.10.23 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - vo-aacenc - http://sourceforge.net/projects/opencore-amr/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:cli - multimedia.video - VisualOn AAC encoder library - VisualOn AAC encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download - multimedia/video/vo-aacenc/pspec.xml - - - libvo-aacenc - - /usr/lib - /usr/share/doc - - - - libvo-aacenc-devel - - libvo-aacenc - - - /usr/include - /usr/lib/pkgconfig/vo-aacenc.pc - - - - - 2014-06-18 - 1.3 - Rebuild, remove vo-aacenc binary package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 1.3 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-30 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - gstreamer-next - http://gstreamer.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.video - GStreamer streaming media framework runtime - GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. - http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.5.tar.xz - - check - valgrind - gobject-introspection-devel - libxml2-devel - ghostscript-devel - - multimedia/video/gstreamer-next/pspec.xml - - - gstreamer-next - - glib2 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/gir-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/locale - /usr/share/man - - - - gstreamer-next-32bit - 32-bit shared libraries for gstreamer - emul32 - emul32 - - glib2-32bit - - - glib2-32bit - glibc-32bit - gstreamer-next - - - /usr/lib32 - - - - gstreamer-next-devel - Development files for gstreamer - - gstreamer-next - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-13 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-20 - 1.2.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-11 - 1.2.0 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vlc - http://www.videolan.org/vlc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:gui - multimedia.video - VLC media player - VLC çoklu ortam oynatıcısı - Odtwarzacz plików multimedialnych i serwer strumieni - VLC reproductor multimedia - VLC is a famous video player and streamer. - Media oynatıcısı ve yayın dinleyici - VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. - VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia - vlc - http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz - - libcdio - eudev-devel - lua-devel - libgcrypt - xcb-proto - zlib-devel - gtk2-devel - zvbi-devel - faac-devel - flac-devel - lirc-devel - mesa-devel - x265-devel - dbus-devel - avahi-devel - samba-devel - aalib-devel - faad2-devel - speex-devel - libva-devel - libXt-devel - libXv-devel - cairo-devel - util-macros - libxcb-devel - libXau-devel - libtar-devel - libvpx-devel - ffmpeg-devel - libass-devel - libXpm-devel - gnutls-devel - libv4l-devel - libdca-devel - libmtp-devel - libmad-devel - libogg-devel - libsdl-devel - taglib-devel - a52dec-devel - libebml-devel - libxml2-devel - libcddb-devel - libcaca-devel - libXext-devel - librsvg-devel - libcdio-devel - fribidi-devel - libupnp-devel - libkate-devel - freerdp-devel - twolame-devel - minizip-devel - live555-devel - libopus-devel - freetype-devel - libXdmcp-devel - kernel-headers - xcb-util-devel - libmpeg2-devel - alsa-lib-devel - libshout-devel - libdvbpsi-devel - libtheora-devel - libbluray-devel - libgcrypt-devel - libnotify-devel - libssh2-devel - openssl-devel - libvorbis-devel - libdc1394-devel - libid3tag-devel - sdl-image-devel - libmpcdec-devel - libdvdcss-devel - libdvdnav-devel - vcdimager-devel - libraw1394-devel - fluidsynth-devel - libdvdread-devel - fontconfig-devel - libavc1394-devel - libmodplug-devel - libXxf86vm-devel - gdk-pixbuf-devel - libmatroska-devel - libXinerama-devel - schroedinger-devel - crystalhd-firmware - libgpg-error-devel - libvncserver-devel - libsamplerate-devel - libjpeg-turbo-devel - qt5-base-devel - qt5-x11extras-devel - libchromaprint-devel - gstreamer-next-devel - pulseaudio-libs-devel - xcb-util-keysyms-devel - gst-plugins-base-next-devel - - - qt4-select.patch - lc-2.2.0-fix-xcb.patch - vlc-2.2.0-rdp-1.2.0.patch - vlc-2.1.1-desktop.patch - vlc-2.0.4-fix-definition.patch - vlc-2.1.0-TomWij-bisected-PA-broken-underflow.patch - - multimedia/video/vlc/pspec.xml - - - vlc - - qt5-base - qt5-x11extras - libtar - libXpm - fribidi - libXext - minizip - zlib - libX11 - libgcc - freetype - vlc-libs - libXinerama - dejavu-fonts - - - /usr/bin - /usr/lib/vlc/plugins/gui - /usr/share/vlc - /usr/share/applications - /usr/share/icons - /usr/share/kde4/apps/solid/actions - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Package - - - - vlc-lua - Lua scripting for VLC - - lua - vlc-libs - - - /usr/lib/vlc/lua - /usr/lib/vlc/plugins/lua/liblua_plugin.so - - - - vlc-libs - Codec and plugin library files for VLC - vlc için codec ve eklenti kitaplık dosyaları - - libX11 - libgcc - freetype - dbus - zlib - gtk2 - lirc - flac - zvbi - x265 - mesa - libva - faad2 - samba - speex - aalib - cairo - glib2 - eudev - libpng - libxcb - libidn - libmad - libass - gnutls - libdca - libsdl - ffmpeg - a52dec - libmtp - taglib - libogg - libvpx - libxml2 - libssh2 - libcddb - freerdp - libopus - libcaca - twolame - libebml - libcdio - librsvg - live555 - minizip - fribidi - libkate - libupnp - libshout - alsa-lib - libvdpau - libmpeg2 - libdvbpsi - libdc1394 - sdl-image - vcdimager - libbluray - libnotify - libdvdnav - libmpcdec - libtheora - libvorbis - libgcrypt - fontconfig - libraw1394 - fluidsynth - libmodplug - libdvdread - gdk-pixbuf - libavc1394 - libmatroska - schroedinger - libvncserver - libgpg-error - libsamplerate - libjpeg-turbo - gstreamer-next - libchromaprint - pulseaudio-libs - xcb-util-keysyms - crystalhd-firmware - gst-plugins-base-next - - - /usr/lib/libvlc* - /usr/lib/vlc - - - - vlc-devel - Development files for vlc - vlc için geliştirme dosyaları - Pliki nagłówkowe vlc - - vlc-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-01 - 2.2.1 - Version Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-12-15 - 2.1.5 - Release Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-08-18 - 2.1.5 - Release Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-07-07 - 2.1.5 - Version Bump. - Vedat Demir - vedati@pisilinux.org - - - 2014-06-19 - 2.1.4 - Rebuild for libtar. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-31 - 2.1.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-07 - 2.1.4 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-23 - 2.1.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-05 - 2.1.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-26 - 2.1.1 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-11-16 - 2.1.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-11-10 - 2.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-05 - 2.0.8a - V.bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-01 - 2.0.8 - V.bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 2.0.7 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-21 - 2.0.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-01 - 2.0.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-06-01 - 2.0.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-11 - 2.0.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-15 - 2.0.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-plugins-ugly - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Other plugins for gstreamer - Gstreamer için diğer eklentiler - les Plug-ins (greffons) Ugly (horribles) de GStreamer est un ensemble de plug-ins de bonne qualité et fonctionnant correctement, mais dont la distribution pose problème. La licence du plug-in ou de librairies nécessaires au plug-in n'est pas forcément tel que l'on aimerait qu'elle soit. Le code peut également être notoirement connu pour présenter un problème patent. - GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. - GStreamer Ugly Plug-in'leri kaliteli ve güzel çalışan eklentiler içerir. Fakat bu eklentilerin lisanslarla ilgili sorunları bulunabilir. - http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.19.tar.bz2 - - glib2-devel - gstreamer-devel - gstreamermm-devel - gst-plugins-base-devel - libdvdread-devel - x264-devel - orc-devel - lame-devel - opencore-amr-devel - a52dec-devel - libmad-devel - libcdio-devel - libmpeg2-devel - - - cdio-cd-text-api.patch - opencore-amr.patch - - multimedia/video/gst-plugins-ugly/pspec.xml - - - gst-plugins-ugly - - orc - glib2 - gst-plugins-base - gstreamer - x264 - lame - opencore-amr - a52dec - libmad - libcdio - libmpeg2 - libdvdread - - - /usr/lib/gstreamer-0.10 - /usr/share/doc/gst-plugins-ugly - /usr/share/gstreamer-0.10 - /usr/share/locale - - - - - 2014-05-28 - 0.10.19 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-05 - 0.10.19 - Rebuild for x264 - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-27 - 0.10.19 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-26 - 0.10.19 - Rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 0.10.19 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 0.10.19 - Rebuild for libcdio and x264 - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-10 - 0.10.19 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - schroedinger - http://www.diracvideo.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Dirac codec library - Dirac kodek kitaplığı - C-based libraries and GStreamer plugins for the Dirac video codec. - C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri - http://www.diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz - - orc-devel - - - ltmain_as-needed.patch - - multimedia/video/schroedinger/pspec.xml - - - schroedinger - - orc - - - /usr/lib - /usr/share/doc - - - - schroedinger-devel - Development files for schroedinger - schroedinger için geliştirme dosyaları - - schroedinger - orc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.0.11 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 1.0.11 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-29 - 1.0.11 - Rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-07 - 1.0.11 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 1.0.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmp4v2 - http://code.google.com/p/mp4v2 - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - library - app:console - multimedia.video - MPEG4 library - MPEG4 kütüphanesi - Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. - MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. - Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. - Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. - http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 - - libgcc - - multimedia/video/libmp4v2/pspec.xml - - - libmp4v2 - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc/libmp4v2 - /usr/share/man - - - - libmp4v2-devel - Development files for libmp4v2 - libmp4v2 için geliştirme dosyaları - - libmp4v2 - - - /usr/include - - - - - 2014-05-20 - 2.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 2.0.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-14 - 2.0.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-plugins-good-next - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - A set of good-quality plugins for GStreamer - gst-plugins-good contains a set of mature plugins and elements for GStreamer. - http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.4.5.tar.xz - - gst-plugins-base-next-devel - pulseaudio-libs-devel - gstreamer-next-devel - libjpeg-turbo-devel - gdk-pixbuf-devel - libraw1394-devel - libXdamage-devel - libXfixes-devel - libsoup-devel - libXext-devel - libv4l-devel - libXv-devel - cairo-devel - aalib-devel - speex-devel - gtk2-devel - flac-devel - orc-devel - - multimedia/video/gst-plugins-good-next/pspec.xml - - - gst-plugins-good-next - - orc - flac - zlib - speex - libX11 - libpng - cairo - glib2 - aalib - bzip2 - libv4l - libXext - libsoup - libXfixes - gdk-pixbuf - libXdamage - libjpeg-turbo - gstreamer-next - pulseaudio-libs - gst-plugins-base-next - - - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-1.0/presets - /usr/share/doc - /usr/share/gtk-doc - /usr/share/man - /usr/share/locale - - - - - 2015-04-18 - 1.4.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-22 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-28 - 1.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-14 - 1.2.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-23 - 1.2.1 - version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-14 - 1.2.0 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-30 - 1.1.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mlt - http://www.mltframework.org/twiki/bin/view/MLT/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.tv - A multimedia framework, designed and developed for television broadcasting - Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı - MLT is an open source multimedia framework, designed and developed for television broadcasting. - MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. - http://sourceforge.net/projects/mlt/files/mlt/mlt-0.9.8.tar.gz - - alsa-lib-devel - swig - python-devel - glib2-devel - frei0r-plugins-devel - fftw3-devel - jack-audio-connection-kit-devel - qt5-base-devel - qt5-svg-devel - perl - libxml2-devel - libsamplerate-devel - ladspa-sdk-devel - libexif-devel - ffmpeg-devel - sox-devel - - multimedia/tv/mlt/pspec.xml - - - perl-mlt - Perl bindings for MLT - MLT için Perl bağlayıcıları - programming.language.perl - - libgcc - perl - mlt - - - /usr/lib/perl* - - - - python-mlt - Python bindings for MLT - MLT için Python bağlayıcıları - programming.language.python - - libgcc - python - mlt - - - /usr/lib/python* - - - - mlt - - sox - fftw3 - glib2 - ffmpeg - libX11 - libgcc - libexif - libxml2 - qt5-svg - alsa-lib - qt5-base - libsamplerate - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/mlt - /usr/share/mlt/modules - /usr/share/mlt/modules/lumas/PAL - - - - mlt-devel - Development files for mlt - mlt için geliştirme dosyaları - - mlt - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-11-16 - 0.9.8 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-12-30 - 0.9.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-28 - 0.9.0 - fix build and ver. bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.8.8 - missing dep.. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-29 - 0.8.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-18 - 0.8.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xawtv - http://linuxtv.org/downloads/xawtv/ - - Erdinc Gultekin - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.tv - TV application - TV uygulaması - xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. - xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. - xawtv - http://linuxtv.org/downloads/xawtv/xawtv-3.103.tar.bz2 - - alsa-lib-devel - aalib-devel - libquicktime-devel - openmotif-devel - zvbi-devel - lirc-devel - libv4l-devel - xorg-font - libXxf86dga-devel - libdv - libXpm-devel - libXrender-devel - libXv-devel - mesa-devel - libXext-devel - libXrandr-devel - libXxf86vm-devel - libXmu-devel - libFS-devel - fontconfig-devel - libXt-devel - libXft-devel - libXaw-devel - zvbi-devel - libXinerama-devel - libSM-devel - libICE-devel - libexplain-devel - libjpeg-turbo-devel - gpm - zlib-devel - libX11-devel - libpng-devel - ncurses-devel - freetype-devel - - - v4l-conf_non-position-independent-executable_fix.patch - xawtv-3.95.patch - - multimedia/tv/xawtv/pspec.xml - - - xawtv - - zvbi - lirc - mesa - aalib - libSM - libdv - libXt - libXv - libXmu - libXaw - libICE - libv4l - libXpm - libXft - libXext - alsa-lib - libXrandr - libXrender - libXxf86vm - fontconfig - libexplain - libXxf86dga - libXinerama - libquicktime - libjpeg-turbo - gpm - zlib - libX11 - libpng - ncurses - freetype - - - /etc - /usr/bin - /usr/lib/xawtv - /usr/share/doc - /usr/share/man - /usr/share/xawtv - /usr/share/applications - /usr/share/pixmaps - - - xawtv.desktop - - - - - 2014-02-17 - 3.103 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 3.103 - version bump - Erdinc Gultekin - admins@pisilinux.org - - - 2013-07-28 - 3.102_201207 - First release - Erdinc Gultekin - admins@pisilinux.org - - - 2012-11-12 - 3.102_201207 - First release - Erdinc Gultekin - admins@pisilinux.org - - - - - - zvbi - http://zapping.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.tv - VBI Decoding Library for Zapping - Zapping uygulaması için VBI çözücü kütüphanesi - Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. - Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. - Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. - Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. - mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 - - libpng-devel - libX11-devel - - - zvbi-0.2.31-linkage_fix.diff - zvbi-0.2.7-fix-build.patch - - multimedia/tv/zvbi/pspec.xml - - - zvbi - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc/zvbi - /usr/share/man - /usr/share/locale - - - - zvbi-devel - Development files for zvbi - zvbi için geliştirme dosyaları - - zvbi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/zvbi/html - - - - - 2014-05-27 - 0.2.35 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-16 - 0.2.35 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-11-12 - 0.2.33 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libnut - http://www.nut-container.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - multimedia.converter - NUT container tools and library - NUT dosya biçemi kitaplığı ve araçları - Library and tools to work with NUT multimedia files. - libnut NUT çokluortam sistemini kullanmak ve düzenlemek için gerekli olan kitaplıkları ve araçları içerir. - http://source.pisilinux.org/1.0/libnut-661.tar.bz2 - - shared.patch - - multimedia/converter/libnut/pspec.xml - - - libnut - - /usr/bin - /usr/lib - /usr/share/doc - - - - libnut-devel - Development files for libnut - libnut için geliştirme dosyaları - - libnut - - - /usr/include - - - - - 2014-05-22 - 0.0_661 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-01 - 0.0_661 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.0_661 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - vcdimager - http://www.vcdimager.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.converter - VCD and SVCD image file maker and converter - VCD ve SVDC görüntü dosyası oluşturucu ve çevirici - VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. - VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. - http://ftp.gnu.org/gnu/vcdimager/vcdimager-0.7.24.tar.gz - - libcdio-devel - popt - - multimedia/converter/vcdimager/pspec.xml - - - vcdimager - - libcdio - popt - libxml2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - vcdimager-devel - Development files for vcdimager - vcdimager için geliştirme dosyaları - - vcdimager - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.7.24 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-17 - 0.7.24 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.7.24 - Dep fixed - Fatih Turgel - hitaf@pisilinux.org - - - 2013-07-08 - 0.7.24 - rebuild - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-27 - 0.7.24 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mkvtoolnix - http://www.bunkus.org/videotools/mkvtoolnix/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - multimedia.converter - A set of tools to create, alter and inspect Matroska files - Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar - MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. - mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. - mmg - https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-8.5.2.tar.xz - - qt5-base-devel - zlib-devel - ruby-devel - flac-devel - boost-devel - libogg-devel - libebml-devel - libvorbis-devel - libmatroska-devel - file - imagemagick-devel - - multimedia/converter/mkvtoolnix/pspec.xml - - - mkvtoolnix - - flac - boost - libogg - file - libvorbis - zlib - qt5-base - libgcc - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/pixmaps - /usr/share/mkvtoolnix - /usr/share/applications - /usr/share/locale - - - - - 2015-11-08 - 8.5.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-21 - 7.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-19 - 7.4.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-29 - 7.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-05 - 7.2.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-28 - 6.9.1 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 6.7.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-14 - 6.5.0 - v. bump rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 6.2.0 - add missing dep. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-09 - 6.2.0 - V.bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-08-27 - 5.7.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - liblqr - http://liblqr.wikidot.com - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.misc - An easy to use C/C++ seam carving library - Görüntü boyutlandırma kütüphanesi - liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. - liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. - http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 - - glib2-devel - - multimedia/misc/liblqr/pspec.xml - - - liblqr - - glib2 - - - /usr/lib - /usr/share/doc - - - - liblqr-devel - Development files for liblqr - liblqr için geliştirme dosyaları - - liblqr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.4.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 0.4.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libpano13 - http://sourceforge.net/projects/panotools - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Library for manipulating panoramic images - Panoramik görüntü kitaplığı - libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. - libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. - mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz - - zlib-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - - multimedia/misc/libpano13/pspec.xml - - - libpano13 - - tiff - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - libpano13-devel - Development files for libpano13 - libpano13 için geliştirme dosyaları - - libpano13 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-11-10 - 2.9.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 2.9.18 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-22 - 2.9.18 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 2.9.18 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-06-13 - 2.9.18 - First release - Ertuğrul Erata - admins@pisilinux.org - - - - - - orc - http://code.entropywave.com/projects/orc/ - - PisiLinux Community - admins@pisilinux.org - - BSD - BSD-2 - app:console - multimedia.misc - The Oil Runtime Compiler - Optimized Inner Loop Runtime Compiler - http://gstreamer.freedesktop.org/src/orc/orc-0.4.19.tar.gz - multimedia/misc/orc/pspec.xml - - - orc - - /usr/bin/ - /usr/lib/ - /usr/share/ - - - - orc-32bit - 32-bit shared libraries for orc - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - orc - - - /usr/lib32 - - - - orc-devel - orc için geliştirme dosyaları - orc için geliştirme dosyaları - - orc - - - /usr/include/ - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2014-05-20 - 0.4.19 - Version bump, fix version. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-24 - 4.18 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-02-14 - 4.16 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 4.16 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - frei0r-plugins - http://www.piksel.org/frei0r - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A plugin API for video sources and filters - Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü - frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. - frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. - http://distfiles.macports.org/frei0r-plugins/frei0r-plugins-1.4.tar.gz - - libgcc - - - explicitly-link-with-lm.patch - - multimedia/misc/frei0r-plugins/pspec.xml - - - frei0r-plugins - - libgcc - - - /usr/lib - /usr/share/doc - - - - frei0r-plugins-devel - Development files for frei0r-plugins - frei0r-plugins için geliştirme dosyaları - - frei0r-plugins - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 1.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-01 - 1.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-30 - 1.4 - Rebuild for ffmpeg. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-31 - 1.4 - missing dep. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-28 - 1.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-09-13 - 1.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - DirectFB - http://www.directfb.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Thin library on top of the Linux framebuffer devices - Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane - DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. - DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. - http://www.directfb.org/downloads/Core/DirectFB-1.7/DirectFB-1.7.1.tar.gz - - libgcc - giflib-devel - libX11-devel - zlib-devel - tiff-devel - jasper-devel - freetype-devel - libpng-devel - libXext-devel - mesa-devel - webp-devel - mesa-glu-devel - libdrm-devel - libjpeg-turbo-devel - libmng-devel - lcms2-devel - libvdpau-devel - libmad-devel - libvorbis-devel - - multimedia/misc/DirectFB/pspec.xml - - - DirectFB-docs - - DirectFB - - - /usr/share/doc - - - - DirectFB - - zlib - libgcc - libpng - freetype - libX11 - libXext - mesa - libdrm - libjpeg-turbo - libvdpau - webp - tiff - jasper - libkms - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share - - - - DirectFB-devel - Development files for DirectFB - DirectFB için geliştirme dosyaları - - DirectFB - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-21 - 1.7.1 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-23 - 1.7.1 - Rebuild for webp - Kamil Atlı - suvarice@gmail.com - - - 2014-01-28 - 1.7.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 1.7.1 - version bump - Erdinç >Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.5.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libid3tag - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - La librairie id3tag MAD. - The MAD id3tag library - MAD id3tag kütüphanesi - Die MAD id3tag Bibliothek - libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. - mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz - - zlib-devel - - - libid3tag-0.15.1b-fix_overflow.patch - libid3tag-0.15.1b-unknown-encoding.patch - libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch - - multimedia/misc/libid3tag/pspec.xml - - - libid3tag - - zlib - - - /usr/lib - /usr/share/doc - - - - libid3tag-devel - - libid3tag - - - /usr/include - /usr/lib/pkgconfig - - - id3tag.pc - - - - - 2014-05-20 - 0.15.1b - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.15.1b - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.15.1b - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - fribidi - http://fribidi.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.misc - A free implementation of the unicode bidirectional algorithm - Çift yönlü unikod algoritmanın özgür bir uyarlaması - GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. - GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. - GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. - GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. - http://fribidi.org/download/fribidi-0.19.6.tar.bz2 - multimedia/misc/fribidi/pspec.xml - - - fribidi - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fribidi-devel - Development files for fribidi - fribidi için geliştirme dosyaları - - fribidi - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2014-02-23 - 0.19.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-06 - 0.19.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-29 - 0.19.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libshout - http://www.icecast.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.misc - A library for communicating with and sending data to an icecast server - Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane - Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. - Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. - http://downloads.us.xiph.org/releases/libshout/libshout-2.3.1.tar.gz - - libvorbis-devel - libogg-devel - libtheora-devel - speex-devel - - - pthread_flag.patch - - multimedia/misc/libshout/pspec.xml - - - libshout - - libvorbis - libogg - libtheora - speex - - - /usr/lib - /usr/share/doc - - - - libshout-devel - Development files for libshout - libshout için geliştirme dosyaları - - libshout - libtheora-devel - libvorbis-devel - libogg-devel - speex-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/*.c - - - - - 2014-05-25 - 2.3.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-20 - 2.3.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 2.3.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 2.3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libass - http://code.google.com/p/libass/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Subtitle rendering library - Altyazı çizim kitaplığı - libass is a portable subtitle rendering library for the ASS/SSA. - libass ASS/SSA altyazı çizim kitaplığıdır. - https://github.com/libass/libass/releases/download/0.11.2/libass-0.11.2.tar.xz - - fontconfig-devel - freetype-devel - fribidi-devel - - multimedia/misc/libass/pspec.xml - - - libass - - fontconfig - freetype - fribidi - - - /usr/lib - /usr/share/doc/libass - - - - libass-devel - Development files for libass - libass için geliştirme dosyaları - - libass - harfbuzz-devel - fontconfig-devel - freetype-devel - fribidi-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-22 - 0.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 0.10.1 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-07-07 - 0.10.1 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-25 - 0.10.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libcdr - http://www.freedesktop.org/wiki/Software/libcdr - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - MPLv1.1 - library - multimedia.misc - Library parsing the Corel cdr documents - Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. - http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2 - - doxygen - zlib-devel - lcms2-devel - icu4c-devel - libwpd-devel - boost-devel - librevenge-devel - - multimedia/misc/libcdr/pspec.xml - - - libcdr - - lcms2 - icu4c - zlib - libgcc - librevenge - - - /usr/lib - /usr/bin - /usr/share/doc/libcdr - - - - libcdr-devel - Development files for libcdr - libcdr için geliştirme dosyaları - - icu4c-devel - zlib-devel - lcms2-devel - librevenge-devel - libcdr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-02 - 0.1.1 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2014-09-26 - 0.1.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.0.16 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-25 - 0.0.11 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 0.0.11 - Rebuild for icu4c - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-31 - 0.0.11 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-14 - 0.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 0.0.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-20 - 0.0.9 - First Release. - PisiLinux Community - admins@pisilinux.org - - - - - - libdvdread - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Provides a simple foundation for reading DVD-Video images - DVD videolarını okumak için basit bir kütüphane - Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. - A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. - GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. - DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. - http://download.videolan.org/pub/videolan/libdvdread/5.0.2/libdvdread-5.0.2.tar.bz2 - - libdvdcss-devel - git - - multimedia/misc/libdvdread/pspec.xml - - - libdvdread - - libdvdcss - glibc - - - /usr/lib - /usr/share/doc/libdvdread - - - - libdvdread-devel - Development files for libdvdread - libdvdread için geliştirme dosyaları - - libdvdread - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2015-01-31 - 5.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-28 - 5.0.1 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-29 - 5.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-24 - 4.9.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-03-08 - 4.2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 0.0_20100819 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gd - http://www.libgd.org - - PisiLinux Community - admins@pisilinux.org - - as-is - BSD - library - multimedia.misc - Une librairie rapide pour créer des graphiques en images. - A fast library for creating graphic images - Hızlı bir şekilde resim oluşturmak için bir kütüphane - The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. - https://github.com/libgd/libgd/archive/gd-2.1.1.tar.gz - - fontconfig-devel - zlib-devel - freetype-devel - libpng-devel - libjpeg-turbo-devel - tiff-devel - libvpx-devel - - - gd-2.1.1-libvpx-1.4.0.patch - - multimedia/misc/gd/pspec.xml - - - gd - - fontconfig - tiff - libvpx - libjpeg-turbo - zlib - freetype - libpng - - - /usr/bin - /usr/lib - /usr/share/doc/gd - - - - gd-devel - Development files for gd - gd için geliştirme dosyaları - - gd - - - /usr/include - /usr/lib/pkgconfig - /usr/bin/gdlib-config - - - - gd-docs - Documents for gd - gd için geliştirme belgeleri - - /usr/share/doc/gd/html - - - - - 2014-08-02 - 2.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 2.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-25 - 2.0.35 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.0.35 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libsdl - http://www.libsdl.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Simple Direct Media Layer (Couche Média Simple et Directe). - Simple Direct Media Layer - Basit bir direk ortam erişim katmanı - Einfachee direkte Medien-Schicht - libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. - libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - http://www.libsdl.org/release/SDL-1.2.15.tar.gz - - DirectFB-devel - alsa-lib-devel - aalib-devel - - - sdl-1.2.14-disable-mmx.patch - sdl_x11sym.patch - SDL-1.2.14-dont-propagate-lpthread.patch - SDL-1.2.14-noproc.patch - SDL-1.2.13-rh484362.patch - libsdl-1.2.15-sdl-config.patch - libsdl-1.2.15-resizing.patch - libsdl-1.2.15-joystick.patch - - multimedia/misc/libsdl/pspec.xml - - - libsdl-docs - libsdl reference documents - libsdl başvuru belgeleri - - libsdl - - - /usr/share/man - /usr/share/doc - - - - libsdl - - DirectFB - aalib - - - /usr/lib - - - - libsdl-devel - Development files for libsdl - libsdl için geliştirme dosyaları - - libsdl - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/libSDLmain.a - /usr/share/aclocal - - - - libsdl-32bit - 32-bit shared libraries for libsdl - libsdl için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - libsdl - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 1.2.15 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-14 - 1.2.15 - rebuild for DirectFB. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 1.2.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdvdnav - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - libdvdnav is a library for developers of multimedia applications - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane - libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. - libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz - libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. - http://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2 - - libdvdread-devel - - multimedia/misc/libdvdnav/pspec.xml - - - libdvdnav - - libdvdread - - - /usr/lib - /usr/share/doc/libdvdnav - - - - libdvdnav-devel - Development files for libdvdnav - libdvdnav için geliştirme dosyaları - - libdvdnav - libdvdread-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-01-31 - 5.0.3 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-28 - 5.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-29 - 5.0.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-24 - 4.2.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-08 - 4.2.0 - Rebuild. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-31 - 4.2.0 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-03-08 - 4.2.0 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 0.0_20100819 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libopus - http://www.opus-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.misc - Opus is a totally open, royalty-free, highly versatile audio codec - Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir - Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. - Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. -Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. - http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz - multimedia/misc/libopus/pspec.xml - - - libopus - - /usr/bin - /usr/lib - /usr/share - - - - libopus-devel - Development files for libopus - Libopus için geliştirme dosyaları - - libopus - - - /usr/include - /usr/lib/pkgconfig - - - - libopus-docs - document files for libopus - - libopus - - - /usr/share/doc/ - - - - - 2014-05-22 - 1.1 - enable-custom-modes. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 1.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-09 - 1.0.4 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-28 - 1.0.2 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-12 - 1.0.2 - First release - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - - - - libdvdcss - http://www.videolan.org/libdvdcss/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A portable abstraction library for DVD decryption - DVD çözmek için soyutlanmış taşınabilir bir kütüphane - libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. - libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. - Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. - libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. - http://download.videolan.org/pub/libdvdcss/1.3.0/libdvdcss-1.3.0.tar.bz2 - multimedia/misc/libdvdcss/pspec.xml - - - libdvdcss - - /usr/lib - /usr/share/doc - - - - libdvdcss-devel - Development files for libdvdcss - libdvdcss için geliştirme dosyaları - - libdvdcss - - - /usr/include/dvdcss - /usr/lib/pkgconfig - - - - - 2014-09-29 - 1.3.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-21 - 1.2.13 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 1.2.13 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.2.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libspnav - http://spacenav.sourceforge.net - - Osman Erkan - osman.erkan@pisilinux.org - - BSD - library - multimedia.misc - Open source alternative to 3DConnextion drivers - The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. - http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz - - libX11-devel - - - Makefile.patch - - multimedia/misc/libspnav/pspec.xml - - - libspnav - - libX11 - - - /usr/lib/ - /usr/share/doc - - - - libspnav-devel - Development files for libspnav - libspnav için geliştirme dosyaları - - libspnav - - - /usr/include - /usr/lib/libspnav.so - - - - - 2015-09-16 - 0.2.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.2.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.2.2 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-28 - 0.2.2 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-01 - 0.2.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libbluray - http://www.videolan.org/developers/libbluray.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Library to access Blu-Ray disks for video playback - Blu-Ray disklere ulaşmak için kitaplık - Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. - Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. - ftp://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 - - libxml2-devel - freetype-devel - - multimedia/misc/libbluray/pspec.xml - - - libbluray - - libxml2 - freetype - - - /usr/bin - /usr/lib - - - - libbluray-devel - Development files for libbluray - Libbluray için geliştirme dosyaları - - libbluray - - - /usr/include - /usr/lib/pkgconfig - - - - libbluray-docs - document files for libbluray - - libbluray - - - /usr/share/doc/ - - - - - 2014-05-20 - 0.5.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-03 - 0.5.0 - Rebuild for openjdk - PisiLinux Community - admins@pisilinux.org - - - 2014-02-23 - 0.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-06 - 0.3.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-11 - 0.2.3 - First release - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - - - - libebml - http://www.matroska.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie de format binaire extensible (un peu comme XML). - Extensible binary format library (kinda like XML) - Genişletilebilir ikilik biçimlendirme kütüphanesi - Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. - http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2 - multimedia/misc/libebml/pspec.xml - - - libebml - - libgcc - - - /usr/lib - /usr/share/doc - - - - libebml-devel - Development files for libebml - libebml için geliştirme dosyaları - - libebml - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-20 - 1.3.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-24 - 1.3.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-16 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-07 - 1.2.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - taglib-extras - http://amarok.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Taglib extras library from Amarok team - Amarok takımından taglib ekstraları kütüphanesi - Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. - Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. - http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz - - pkgconfig - cmake - taglib-devel - - multimedia/misc/taglib-extras/pspec.xml - - - taglib-extras - - taglib - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - taglib-extras-devel - Development files for taglib-extras - taglib-extras için geliştirme dosyaları - - taglib-extras - - - /usr/include/taglib-extras - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.0.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.0.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2010-10-12 - 1.0.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sdl-image - http://www.libsdl.org/projects/SDL_image/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie SDL de chargement de fichier d'image. - SDL image file loading library - SDL resim yükleme kitaplığı - SDL_image is an image file loader for SDL. - SDL_image, SDL için resim yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz - - libsdl-devel - tiff-devel - libjpeg-turbo-devel - - - gif-overflow.patch - - multimedia/misc/sdl-image/pspec.xml - - - sdl-image - - libsdl - tiff - zlib - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib/ - /usr/share/doc - - - - sdl-image-devel - Development files for sdl-image - sdl-image için geliştirme dosyaları - - sdl-image - libsdl-devel - tiff-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-image-32bit - 32-bit shared libraries for sdl-image - sdl-image için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - - - sdl-image - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - zlib-32bit - glibc-32bit - - - /usr/lib32/ - - - - - 2014-05-31 - 1.2.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.2.12 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2012-08-29 - 1.2.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openexr - http://www.openexr.com - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - library - multimedia.misc - A high dynamic-range (HDR) image file format library - OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. - OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. - OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması - OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. - http://download.savannah.nongnu.org/releases/openexr/openexr-2.2.0.tar.gz - - ilmbase-devel - zlib-devel - mesa-glu-devel - - multimedia/misc/openexr/pspec.xml - - - openexr - - ilmbase - libgcc - openexr-libs - - - /usr/bin - - - - openexr-libs - OpenEXR runtime libraries - OpenEXR çalışma zamanı kitaplıkları - - ilmbase - zlib - libgcc - - - /usr/lib/lib* - /usr/share/doc - - - - openexr-docs - OpenEXR example files - OpenEXR örnek dosyalar - - /usr/share/doc/openexr/examples - - - - openexr-devel - Development files for openexr - OpenEXR için geliştirme dosyaları - - openexr - mesa-glu-devel - ilmbase-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2015-08-28 - 2.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 2.1.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-16 - 2.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 1.7.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - musicbrainz5 - http://www.musicbrainz.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Client library to access metadata of mp3/vorbis/CD media - Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. - MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. - MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. - MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. - MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. - ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz - - neon-devel - libxml2-devel - cmake - - multimedia/misc/musicbrainz5/pspec.xml - - - musicbrainz5 - - libgcc - libxml2 - neon - - - /usr/lib - /usr/share/doc - - - - musicbrainz5-devel - Development files for musicbrainz5 - musicbrainz5 için geliştirme dosyaları - - musicbrainz5 - neon-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 5.1.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-29 - 5.0.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2014-03-10 - 5.0.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-31 - 5.0.1 - missing dep - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-06 - 5.0.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkate - http://code.google.com/p/libkate - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.misc - A text codec for embedding in Ogg - Ogg için karaoke ve metin kitaplığı - Kate is a codec for karaoke and text encapsulation for Ogg. - Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. - http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz - - libogg-devel - libpng-devel - doxygen - - multimedia/misc/libkate/pspec.xml - - - libkate - - libogg - libpng - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libkate-devel - Development files for libkate - libkate için geliştirme dosyaları - - libkate - libogg-devel - libpng-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libkate-docs - API documentation for libkate - libkate paketine ait API belgeleri - - libkate - - - /usr/share/doc/libkate/html - /usr/share/doc/libkate/examples - - - - - 2014-05-24 - 0.4.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.4.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-31 - 0.4.1 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-29 - 0.4.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - liboil - http://www.schleef.org/liboil/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Liboil is a library of simple functions that are optimized for various CPUs - Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir - Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. - Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. - liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. - Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. - http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz - - 02_amd64-cpuid.patch - 03_stride-segfaults.patch - - multimedia/misc/liboil/pspec.xml - - - liboil - - /usr/lib - /usr/share/doc - - - - liboil-devel - Development files for liboil - liboil için geliştirme dosyaları - - liboil - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 0.3.17 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.3.17 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-05 - 0.3.17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - taglib - http://developer.kde.org/~wheeler/taglib.html - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - library - multimedia.misc - A library for reading and editing audio meta data - Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi - TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. - TagLib is a library for reading and editing the meta data of several popular audio formats. - TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. - http://taglib.github.io/releases/taglib-1.9.1.tar.gz - - cmake - zlib-devel - - multimedia/misc/taglib/pspec.xml - - - taglib - - zlib - libgcc - - - /usr/lib - /usr/bin - /usr/share/doc - - - - taglib-devel - Development files for taglib - taglib için geliştirme dosyaları - - taglib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 1.9.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-24 - 1.9.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-22 - 1.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - exiv2 - http://www.exiv2.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Another library for parsing, editing, and saving EXIF data - EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık - Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. - exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. - Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. - Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. - http://www.exiv2.org/exiv2-0.25.tar.gz - - zlib-devel - expat-devel - - - exiv2-0.18-deps.patch - - multimedia/misc/exiv2/pspec.xml - - - exiv2 - - exiv2-libs - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - exiv2-libs - - zlib - expat - libgcc - - - /usr/lib - - - - exiv2-devel - Development files for exiv2 - exiv2 için geliştirme dosyaları - - exiv2-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-02 - 0.25 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-23 - 0.24 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 0.23 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libexif - http://libexif.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie pour analyser, éditer et sauvegarder des données EXIF. - Library for parsing, editing, and saving EXIF data - EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane - Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. - mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 - - doxygen - - - libexif-0.6.13-pkgconfig.patch - - multimedia/misc/libexif/pspec.xml - - - libexif - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libexif-devel - Development files for libexif - libexif için geliştirme dosyaları - - libexif - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/libexif/libexif-api.html - - - - - 2014-05-24 - 0.6.21 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-30 - 0.6.21 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 0.6.21 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - faac - http://www.audiocoding.com/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - MPEG-4 audio codecs - Özgür MPEG-4 ses codecleri - Free MPEG-4 audio codecs by AudioCoding.com. - mirrors://sourceforge/faac/faac-1.28.tar.gz - - libmp4v2-devel - - - mp4v2-1.9.patch - mp4v2-2.0.0.patch - altivec.patch - - multimedia/sound/faac/pspec.xml - - - faac - - libmp4v2 - - - /usr/bin - /usr/lib - /usr/share/doc/faac - /usr/share/man - - - - faac-devel - Development files for faac - faac için geliştirme dosyaları - - faac - - - /usr/include - - - - - 2014-12-14 - 1.28 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 1.28 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-23 - 1.28 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.28 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libogg - http://www.vorbis.com - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.sound - La librairie pour fichiers au format média Ogg. - The Ogg media file format library - Ogg dosya biçimi kütüphanesi - libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. - libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. - http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz - multimedia/sound/libogg/pspec.xml - - - libogg - - /usr/lib - /usr/share/doc - - - - libogg-devel - - libogg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/aclocal - /usr/share/doc/libogg/*html - /usr/share/doc/libogg/*png - /usr/share/doc/libogg/ogg - - - - libogg-32bit - 32-bit shared libraries for libogg - libogg için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libogg - - - /usr/lib32 - - - - - 2014-05-20 - 1.3.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-16 - 1.3.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-08-31 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lash - http://savannah.nongnu.org/projects/lash - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:gui - multimedia.sound - LASH Audio Session Handler - LASH Ses Oturum Yöneticisi - LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. - LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. - lash - http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 - - alsa-lib-devel - gtk2-devel - jack-audio-connection-kit-devel - dmapi-devel - texi2html - - - makefile.patch - docs-Makefile.patch - - multimedia/sound/lash/pspec.xml - - - lash - - alsa-lib - gtk2 - jack-audio-connection-kit - dmapi - libxml2 - libutil-linux - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - - - lash-panel.desktop - - - - lash-devel - Development files for lash - lash için geliştirme dosyaları - - dbus-devel - lash - alsa-lib-devel - libxml2-devel - libutil-linux-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-26 - 0.6.0_rc2 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 0.6.0_rc2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-29 - 0.6.0_rc2 - missing dep,update - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2012-12-29 - 0.6.0_rc2 - First release - PisiLinux Community - osman.erkan@yandex.xom - - - - - - soundtouch - http://www.surina.net/soundtouch - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - Audio Processing Library - Ses işleme kitaplığı - Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. - soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. - soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. - Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio - http://www.surina.net/soundtouch/soundtouch-1.8.0.tar.gz - multimedia/sound/soundtouch/pspec.xml - - - soundtouch - - /usr/bin - /usr/lib - /usr/share/doc - - - - soundtouch-devel - Development files for soundtouch - soundtouch için geliştirme dosyaları - - soundtouch - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2014-07-05 - 1.8.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 1.5.0 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2010-10-12 - 1.5.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - audiofile - http://www.68k.org/~michael/audiofile/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - An elegant API for accessing audio files - Ses dosyalarına erişim için zarif bir UPA - audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. - audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. - http://audiofile.68k.org/audiofile-0.3.6.tar.gz - - alsa-lib-devel - flac-devel - - multimedia/sound/audiofile/pspec.xml - - - audiofile - - alsa-lib - flac - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - audiofile-devel - Development files for audiofile - audiofile için geliştirme dosyaları - - audiofile - - - /usr/bin/audiofile-config - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - audiofile-32bit - 32-bit shared libraries for audiofile - audiofile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - flac-32bit - glibc-32bit - - - alsa-lib-32bit - flac-32bit - audiofile - - - /usr/lib32 - - - - - 2014-05-20 - 0.3.4 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 0.3.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-01-14 - 0.3.4 - First release - Idris Kalp - admins@pisilinux.org - - - - - - pulseaudio - http://pulseaudio.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - GPLv2 - BSD - app:console - library - multimedia.sound - A networked sound server with an advanced plugin system - Gelişmiş eklenti desteğine sahip ağ temelli bir ses sunucusu - pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. - pulseaudio, POSIX ve Win32 sistemler için tasarlanmış, donanım ve uygulamalar arasında gezinen ses verilerinin üzerinde gelişmiş işlemler yapılmasına olanak sağlayan bir ses sunucusudur. - http://freedesktop.org/software/pulseaudio/releases/pulseaudio-6.0.tar.xz - - orc-devel - sbc-devel - fftw3-devel - doxygen - xcb-proto - gtk2-devel - avahi-devel - speex-devel - libSM-devel - libtdb-devel - libICE-devel - libXtst-devel - xcb-util-devel - alsa-lib-devel - libsndfile-devel - libasyncns-devel - libatomic_ops-devel - eudev-devel - dbus-devel - intltool - libcap-devel - json-c-devel - - multimedia/sound/pulseaudio/pspec.xml - - - pulseaudio-libs - Libraries for PulseAudio clients - PulseAudio istemci kitaplığı - - dbus - glib2 - json-c - libX11 - libtdb - libxcb - eudev - libtool-ltdl - orc - sbc - fftw3 - libSM - speex - libICE - libXtst - alsa-lib - avahi-libs - libasyncns - libsndfile - bluez - - - /usr/bin/pa* - /etc/pulse/client.conf - /usr/lib/libpulse.so - /usr/lib/libpulse.so* - /usr/lib/libpulse-simple.so - /usr/lib/libpulse-simple.so* - /usr/lib/pulseaudio/libpulsecommon-* - /usr/lib/libpulse-mainloop-glib.so - /usr/lib/libpulse-mainloop-glib.so* - /usr/lib/pulseaudio/libpulsedsp.* - /usr/lib/pulse/modules - /usr/lib/udev/rules.d - /usr/lib/libpulsecore-*.so - - - - pulseaudio-libs-devel - Development files for pulseaudio-libs - pulseaudio-libs için geliştirme dosyaları - - pulseaudio-libs - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/vala/vapi - /usr/lib/cmake/PulseAudio - - - - pulseaudio-docs - doxygen generated API documentation for PulseAudio - Doxygen tarafından üretilmiş PulseAudio API belgeleri - - /usr/share/doc/pulseaudio/html - - - - pulseaudio - - dbus - libcap - libtool-ltdl - pulseaudio-libs - - - /usr/bin/pulseaudio - /usr/bin/qpaeq - /usr/bin/start-pulseaudio-kde - /usr/bin/esdcompat - /usr/bin/start-pulseaudio-x11 - /usr/lib/pm-utils/sleep.d - /usr/libexec - /usr/lib/pulse-5.0/modules - /etc - /usr/lib/tmpfiles.d/pulseaudio.conf - /lib/udev/rules.d - /usr/share/pulseaudio/alsa-mixer - /usr/share - /usr/share/icons - /var/lib/pulse - /run/pulse - - - System.Package - - - pulseaudio.conf - pisilinux/pulseaudio.sysconfig - mandriva/pulseaudio.svg - mandriva/pulseaudio.svg - mandriva/pulseaudio16.png - mandriva/pulseaudio22.png - mandriva/pulseaudio32.png - mandriva/pulseaudio48.png - mandriva/pulseaudio64.png - mandriva/pulseaudio128.png - mandriva/pulseaudio16.png - mandriva/pulseaudio22.png - mandriva/pulseaudio32.png - mandriva/pulseaudio48.png - mandriva/pulseaudio64.png - mandriva/pulseaudio128.png - - - - pulseaudio-libs-32bit - 32-bit shared libraries for pulseaudio-libs - pulseaudio-libs için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - json-c-32bit - dbus-32bit - glib2-32bit - speex-32bit - libcap-32bit - libsndfile-32bit - libtool-ltdl-32bit - glibc-32bit - - - pulseaudio-libs - dbus-32bit - glib2-32bit - libsndfile-32bit - json-c-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-02-20 - 6.0 - Version bump. Dep fixed - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-25 - 5.0 - Rebuild for smplayer - Vedat Demir - vedat@pisilinux.org - - - 2014-05-12 - 5.0 - version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-14 - 4.0 - add git version - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-11 - 4.0 - Add tmpfiles.con; add updates from git. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-16 - 3.99 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-18 - 3.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - portaudio - http://www.portaudio.com - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.sound - Portable audio library - Ses kütüphanesi - Une API audio multi-plateforme libre. - PortAudio is a free, cross platform, open-source, audio I/O library. - Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi - http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz - - alsa-lib-devel - jack-audio-connection-kit-devel - - multimedia/sound/portaudio/pspec.xml - - - portaudio - - alsa-lib - jack-audio-connection-kit - - - /usr/lib - /usr/share/doc - - - - portaudio-devel - Development files for portaudio - portaudio için geliştirme dosyaları - - portaudio - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/portaudio/html - - - - - 2015-11-21 - 19.20140130 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-06-01 - 19.20140130 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-05 - 19.20140130 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-29 - 19 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - sayonara - http://sayonara.luciocarreras.de/index.html + module-nvidia340 + http://www.nvidia.com Pisi Linux Community admins@pisilinux.org - GPLv3 - app:gui - multimedia.sound - Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. - Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. - Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. - Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. - sayonara - http://sayonara-player.com/sw/sayonara-player-r195.tar.gz + NVIDIA + kernel.drivers + NVIDIA drivers for GeForce 6xxx and newer GPUs + NVIDIA graphics drivers provide optimized 2D/3D performance. + http://http.download.nvidia.com/XFree86/Linux-x86/340.96/NVIDIA-Linux-x86-340.96.run + http://http.download.nvidia.com/XFree86/Linux-x86_64/340.96/NVIDIA-Linux-x86_64-340.96.run - qt5-base-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-linguist - gstreamer-next-devel - taglib-devel - libnotify-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gst-plugins-ugly-next - glib2-devel - cmake - gstreamer-next-devel - gst-plugins-base-next-devel + kernel-module-headers - multimedia/sound/sayonara/pspec.xml + kernel/drivers/module-nvidia340/pspec.xml - sayonara + module-nvidia340 + Kernel module for NVIDIA driver 340.xx releases + driver + + noDelta + - qt5-base - gst-plugins-bad - gst-plugins-base-next - gst-plugins-good-next - gst-plugins-ugly-next - gstreamer - taglib - libnotify - glib2 - libgcc - gstreamer-next - gst-plugins-base-next + kernel - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/pixmaps - /usr/share/applications - /usr/share/doc + /lib/modules - - sayonara.desktop - sayonara.png - - - - 2015-10-11 - 0.7.1 - Version Bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-09-26 - 0.7.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knowthelist - http://qt-apps.org/content/show.php/Knowthelist?content=165335 - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv3 - app:gui - multimedia.sound - Knowthelist the awesome party music player - Knowthelist the awesome party music player - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - knowthelist - https://github.com/knowthelist/knowthelist/archive/v2.3.0.tar.gz - - qt5-base-devel - qt5-xmlpatterns-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-linguist - glib2-devel - alsa-lib-devel - taglib-devel - gstreamer-next-devel - gst-plugins-bad-next-devel - gst-plugins-base-next-devel - - multimedia/sound/knowthelist/pspec.xml - - knowthelist + xorg-video-nvidia340 + driver + x11.driver + + noDelta + - qt5-base - gstreamer-next - taglib - alsa-lib - glib2 - libgcc - - - /usr/bin - /usr/share - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - - - 2015-11-11 - 2.3.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - flac - http://flac.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - multimedia.sound - An encoder/decoder for the Free Lossless Audio Codec - Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları - flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. - flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. - http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz - - libogg-devel - - multimedia/sound/flac/pspec.xml - - - flac - - libogg - libgcc - - - /usr/bin - /usr/lib - /usr/share/man - - - - flac-docs - Documentation for flac - flac ile ilgili belgeler - - flac - - - /usr/share/doc - - - - flac-devel - Development files for flac - flac için geliştirme dosyaları - - libogg-devel - flac - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - flac-32bit - 32-bit shared libraries for flac - flac için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libogg-32bit - glibc-32bit - - - libogg-32bit - libgcc - glibc-32bit - flac - - - /usr/lib32 - - - - - 2014-12-03 - 1.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-21 - 1.3.0 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-16 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2011-03-01 - 1.2.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - faad2 - http://www.audiocoding.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - MPEG2 and MPEG4 AAC decoder - AAC yorumlayıcı - FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. - FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. - mirrors://sourceforge/faac/faad2-2.7.tar.bz2 - - faad2-2.7-libmp4ff-shared-lib.patch - faad2-2.7-man1_MANS.patch - faad2-2.7-libmp4ff-install-mp4ff_int_types_h.patch - - multimedia/sound/faad2/pspec.xml - - - faad2 - - /usr/bin - /usr/lib - /usr/share/doc/faad2 - /usr/share/man - - - - faad2-devel - Development files for faad2 - faad2 için geliştirme dosyaları - - faad2 - - - /usr/include - - - - - 2014-05-20 - 2.7 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-23 - 2.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 2.7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - speex - http://www.speex.org/ - - PisiLinux Community - admins@pisilinux.org - - xiph - app:console - multimedia.sound - Audio compression format designed for speech and its converter application - Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları - speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. - speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. - http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz - - libogg-devel - - - constant.patch - configure.patch - - multimedia/sound/speex/pspec.xml - - - speex - - libogg - - - /usr/bin - /usr/share/man - /usr/lib - /usr/share/doc - - - - speex-devel - Development files for speex - speex için geliştirme dosyaları - - speex - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - speex-32bit - 32-bit shared libraries for speex - speex için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - speex - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 1.2_rc1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2011-03-01 - 1.2_rc1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libao - http://www.xiph.org/ao/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - La librairie de rendu (sortie) audio. - The audio output library - Ses çıktısı kütüphanesi - Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. - http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz - - alsa-lib-devel - pulseaudio-libs-devel - - multimedia/sound/libao/pspec.xml - - - libao - - alsa-lib - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - libao-devel - Development files for libao - libao için geliştirme dosyaları - - libao - - - /usr/include/ao - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libao/html - - - - - 2014-05-26 - 1.2.0 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 1.1.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-14 - 1.1.0 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-08-31 - 1.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lame - http://lame.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - A free MP3 encoder/decoder - MP3 ses çözümleme kütüphanesi - LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. - Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. - mirrors://sourceforge/lame/lame-3.99.5.tar.gz - - ncurses-devel - - multimedia/sound/lame/pspec.xml - - - lame - - ncurses - - - /usr/bin - /usr/lib - /usr/share/man - - - - lame-docs - - /usr/share/doc - - - - lame-devel - Development files for lame - lame için geliştirme dosyaları - - lame - - - /usr/include - /usr/share/man/man3 - - - - - 2014-12-14 - 3.99.5 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 3.99.5 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-29 - 3.99.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 - 3.99.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - celt - http://www.celt-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - multimedia.sound - An audio codec for use in low-delay speech and audio communication - Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği - CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). - CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. - http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz - - libogg-devel - - multimedia/sound/celt/pspec.xml - - - celt - app:console - library - - libogg - - - /usr/bin - /usr/lib - /usr/share/doc - - - - celt-devel - Development files for celt - celt için geliştirme dosyaları - library - - celt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-15 - 0.11.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 0.11.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-20 - 0.11.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-17 - 0.11.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libmad - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") - "M"peg "A"udio "D"ecoder library - Yüksek kaliteli MPEG ses çözücü kütüphanesi - libmad is an audio decoder library for MPEG based content. - libmad MPEG tabanlı ses çözüm kitaplığıdır. - mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz - - amd64-64bit.diff - libmad-0.15.1b-cflags-O2.patch - libmad-0.15.1b-cflags.patch - - multimedia/sound/libmad/pspec.xml - - - libmad - - /usr/lib - /usr/share/doc - - - - libmad-devel - Development files for libmad - libmad için geliştirme dosyaları - - libmad - - - /usr/include - /usr/lib/pkgconfig - - - mad.pc - - - - - 2014-05-20 - 0.15.1b - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-28 - 0.15.1b - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.15.1b - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - qmmp - http://qmmp.ylsoftware.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - multimedia.sound - An audio-player, written with Qt5 library - Qt tabanlı müzik oynatıcı - Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. - Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. - qmmp - http://qmmp.ylsoftware.com/files/qmmp-1.0.1.tar.bz2 - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - qt5-linguist - libsamplerate-devel - wavpack-devel - flac-devel - faad2-devel - libmodplug-devel - libmms-devel - libcdio-devel - libvorbis-devel - libsndfile-devel - pulseaudio-libs-devel - alsa-lib-devel - mesa-devel - libmad-devel - taglib-devel - ffmpeg-devel - libmpcdec-devel - libcddb-devel - cmake - - multimedia/sound/qmmp/pspec.xml - - - qmmp - - qt5-base - curl - libX11 - libgcc - qt5-x11extras - libsamplerate - wavpack - flac - faad2 - libmodplug - libmms - libvorbis - libsndfile - pulseaudio-libs - alsa-lib - libmad - taglib - ffmpeg - jack-audio-connection-kit - libmpcdec - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - qmmp-devel - qmmp development files - qmmp için geliştirme dosyaları - - qmmp - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/ - - - - - 2015-11-19 - 1.0.1 - Version bump ported to qt5. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-11 - 0.8.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-25 - 0.8.2 - Rebuild for ffmpeg - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-17 - 0.8.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2014-07-06 - 0.8.0 - Version bump - Nikolay Semenov - tribunal@pisilinux.org - - - 2014-06-04 - 0.7.7 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 0.7.3 - Rebuild for ffmpeg. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-10-19 - 0.7.3 - Version Bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-08-30 - 0.7.2 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-29 - 0.7.1 - missing dep. - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2013-07-27 - 0.7.1 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-08 - 0.7.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-01 - 0.6.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - openal - http://kcat.strangesoft.net/openal.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.sound - Open Audio Library is a vendor-neutral API for interactive spatialized audio - Açık ses kütüphanesi - OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). - OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. - OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. - http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.1.tar.bz2 - - alsa-lib-devel - pulseaudio-libs-devel - cmake - - - pthread.patch - no-fpuextended.patch - - multimedia/sound/openal/pspec.xml - - - openal - - alsa-lib - - - /usr/bin - /usr/lib - /usr/share/doc/openal - /usr/share/openal - - - - openal-devel - Development files for openal - openal için geliştirme dosyaları - - openal - pulseaudio - - - /usr/include - /usr/lib/pkgconfig/openal.pc - /usr/lib32/pkgconfig/openal.pc - - - - openal-32bit - 32-bit shared libraries for openal - openal için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - openal - - - /usr/lib32 - - - - - 2014-05-25 - 1.15.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 1.15.1 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-08-31 - 1.14 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - libsamplerate - http://www.mega-nerd.com/SRC/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.sound - Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). - Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio - libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü - Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. - libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. - http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz - - libsndfile-devel - - - dontbuild-tests-examples.patch - - multimedia/sound/libsamplerate/pspec.xml - - - libsamplerate - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libsamplerate-devel - Development files for libsamplerate - libsamplerate için geliştirme dosyaları - libsamplerate için geliştirme dosyaları - - libsamplerate - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-25 - 0.1.8 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 0.1.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-10-17 - 0.1.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcanberra - http://0pointer.de/lennart/projects/libcanberra/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A library for generating event sounds on free desktops - Masaüstü üzerinde bildirim sesleri üretmek için kütüphane - libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. - libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. - http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz - - libogg-devel - pulseaudio-libs-devel - gstreamer-devel - libvorbis-devel - alsa-lib-devel - glib2-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - eudev-devel - atk-devel - cairo-devel - pango-devel - libogg-devel - libtdb-devel - libvorbis-devel - fontconfig-devel - gstreamer-next-devel - - - fix-pthread.patch - fix-underlinking.patch - - multimedia/sound/libcanberra/pspec.xml - - - libcanberra - - libtdb - libtool-ltdl - glib2 - alsa-lib - libvorbis - pulseaudio-libs - gstreamer-next - - - /usr/lib - /usr/share/doc - /usr/share/gdm - /usr/share/gnome/ - - - - libcanberra-devel - Development files for libcanberra - libcanberra için geliştirme dosyaları - - libcanberra - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - - - - libcanberra-gtk - GTK+ convenience API and utilities for libcanberra - GTK+ için libcanberra araçları ve programlama kitaplığı - - libcanberra - gtk2 - glib2 + libXext + xorg-server + module-nvidia340 libX11 - /usr/lib/gtk-2* - /usr/lib/libcanberra-gtk.so* - - - - libcanberra-gtk-devel - Development files for libcanberra-gtk - - libcanberra - libcanberra-devel - gtk2-devel - - - /usr/include/canberra-gtk.h - /usr/lib/pkgconfig/libcanberra-gtk.pc - /usr/share/vala/vapi/libcanberra-gtk.vapi - - - - libcanberra-gtk3-devel - Development files for libcanberra-gtk - - libcanberra-gtk-devel - gtk3-devel - - - /usr/lib/pkgconfig/libcanberra-gtk3.pc - - - - libcanberra-gtk3 - GTK+ convenience API and utilities for libcanberra - - gtk3 - glib2 - eudev - libX11 - libcanberra - - - /usr/lib/gtk-3* - /usr/lib/libcanberra-gtk3* - /usr/share/doc/libcanberra-gtk3 - /usr/bin/canberra-boot - /usr/bin/canberra-gtk-play - - - - - 2015-08-03 - 0.30 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-15 - 0.30 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-07 - 0.29 - Split Package + Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-17 - 0.29 - Release Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-29 - 0.29 - missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-08-31 - 0.29 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsndfile - http://www.mega-nerd.com/libsndfile/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A C library for reading and writing files containing sampled sound - Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. - Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. - Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. - Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. - Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. - http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz - - flac-devel - libogg-devel - alsa-lib-devel - libvorbis-devel - - - libsndfile-1.0.18-less_strict_tests.patch - libsndfile-1.0.17-regtests-need-sqlite.patch - m4dir.patch - - multimedia/sound/libsndfile/pspec.xml - - - libsndfile - - flac - libogg - alsa-lib - libvorbis - - + /etc/OpenCL /usr/bin /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/octave - - - - libsndfile-devel - Development files for libsndfile - libsndfile için geliştirme dosyaları - - libsndfile - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libsndfile-32bit - 32-bit shared libraries for libsndfile - libsndfile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - - - glibc-32bit - flac-32bit - alsa-lib-32bit - libogg-32bit - libvorbis-32bit - libsndfile - - - /usr/lib32 - - - - - 2014-05-25 - 1.0.25 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-01 - 1.0.25 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-07-17 - 1.0.25 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdca - http://developers.videolan.org/libdca.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Library for decoding DTS Coherent Acoustics streams - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. - libdts is a free library for decoding DTS Coherent Acoustics streams. - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts es una librería libre para decodificar flujos acústicos coherentes DTS. - http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2 - - libdca-0.0.5-cflags.patch - libdca-0.0.5-constant.patch - - multimedia/sound/libdca/pspec.xml - - - libdca - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - libdca-devel - Development files for libdca - libdca için geliştirme dosyaları - - libdca - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.0.5 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.0.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.0.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmikmod - http://mikmod.raphnet.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - A library to play a wide range of module formats - Bir çok modül formatını çalabilen bir kitaplık - libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. - libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. - libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. - libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. - http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz - - audiofile-devel - alsa-lib-devel - - multimedia/sound/libmikmod/pspec.xml - - - libmikmod - - pulseaudio-libs - - - /usr/lib - /usr/share/doc/libmikmod - /usr/share/info - /usr/share/man - - - - libmikmod-devel - Development files for libmikmod - libmikmod için geliştirme dosyaları - - libmikmod - - - /usr/bin/libmikmod-config - /usr/include - /usr/share/aclocal - - - - libmikmod-32bit - 32-bit shared libraries for libmikmod - libmikmod için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - audiofile-32bit - glibc-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - libmikmod - audiofile-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - /usr/lib32 - - - - - 2015-10-19 - 3.3.7 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2014-05-31 - 3.3.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 3.3.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-08-01 - 3.2.0_beta2 - First release - Anıl Özbek - admins@pisilinux.org - - - - - - libmpcdec - http://www.musepack.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - Portable Musepack decoder library - Musepack SV7 kodlama kitaplığı - Librairie de décodage portable Musepack. - Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. - libmpcdec, taşınabilir bir Musepack kodlama kitaplığıdır. - http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2 - multimedia/sound/libmpcdec/pspec.xml - - - libmpcdec - - /usr/lib - - - - libmpcdec-devel - Development files for libmpcdec - libmpcdec için geliştirme dosyaları - - libmpcdec - - - /usr/include - - - - - 2014-05-20 - 1.2.6 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 1.2.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.2.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - mpg123 - http://www.mpg123.de/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - app:console - multimedia.sound - Console MP3 player - Gerçek zamanlı bir mp3 oynatıcı - mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. - mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. - mirrors://sourceforge/mpg123/mpg123-1.22.4.tar.bz2 - - alsa-lib-devel - - multimedia/sound/mpg123/pspec.xml - - - mpg123 - - alsa-lib - libtool-ltdl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - mpg123-devel - Development files for mpg123 - mpg123 için geliştirme dosyaları - - mpg123 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mpg123-32bit - 32-bit shared libraries for mpg123 - mpg123 için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - - - mpg123 - glibc-32bit - - - /usr/lib32 - - - - - 2015-11-13 - 1.22.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-03 - 1.21.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 1.19.0 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-01-08 - 1.17.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-07-06 - 1.15.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-31 - 1.14.4 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - twolame - http://www.twolame.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.sound - An optimised MPEG Audio Layer 2 - Optimize edilmiş bir MPEG Ses katman 2 çözücüsü - TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. - TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. - mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz - - libsndfile-devel - - multimedia/sound/twolame/pspec.xml - - - twolame - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc/twolame - /usr/share/man - - - - twolame-devel - Development files for twolame - twolame için geliştirme dosyaları - - twolame - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/twolame/html - - - - - 2014-05-25 - 0.3.13 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-02-17 - 0.3.13 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-26 - 0.3.13 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-28 - 0.3.13 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - a52dec - http://liba52.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - DVD ATSC A/52 streams decoder library - DVD'de kullanılan ATSC A/52 akımını çözen kütüphane - liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. - liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. - http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz - - glibc-devel - djbfft-devel - - - a52dec-0.7.4-build.patch - use-djbfft.patch - constant.patch - - multimedia/sound/a52dec/pspec.xml - - - a52dec - - djbfft - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - a52dec-devel - Development files for a52dec - a52dec için geliştirme dosyaları - - a52dec - - - /usr/include - - - - - 2014-05-20 - 0.7.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 0.7.4 - some fixes and rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-12 - 0.7.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcdaudio - http://libcdaudio.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.sound - A library for controlling CD-ROM devices - CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık - libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. - libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. - mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz - - libcdaudio-0.99.10.config.patch - security-bug-8587.patch - - multimedia/sound/libcdaudio/pspec.xml - - - libcdaudio - - /usr/bin - /usr/lib - /usr/share/doc - - - - libcdaudio-devel - Development files for libcdaudio - libcdaudio için geliştirme dosyaları - - libcdaudio - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2014-05-26 - 0.99.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-08 - 0.99.12 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 0.99.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sox - http://sox.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - The swiss army knife of sound processing programs - Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım - SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. - SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. - mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 - - pulseaudio-libs-devel - opencore-amr-devel - libsndfile-devel - ladspa-sdk-devel - libid3tag-devel - libvorbis-devel - alsa-lib-devel - wavpack-devel - libmad-devel - ffmpeg-devel - libogg-devel - libao-devel - lame-devel - gsm-devel - twolame-devel - libgomp - - - sox-dynamic.patch - - multimedia/sound/sox/pspec.xml - - - sox - - gsm - file - lame - libao - libmad - libogg - libgomp - twolame - wavpack - alsa-lib - libvorbis - libsndfile - libtool-ltdl - opencore-amr - pulseaudio-libs - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - sox-devel - Development files for sox - sox için geliştirme dosyaları - - sox - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-11-17 - 14.4.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-02-21 - 14.4.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-02-11 - 14.4.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-26 - 14.4.1 - rebuild for ffmpeg - Kamil Atlı - suvarice@gmail.com - - - 2013-08-29 - 14.4.1 - missing dep. version bump - Erdinç gültekin - erdincgultekin@pisilinux.org - - - 2012-08-28 - 14.4.0 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - gsm - http://kbs.cs.tu-berlin.de/~jutta/toast.html - - PisiLinux Community - admins@pisilinux.org - - OSI-Approved - library - multimedia.sound - Lossy speech compression library and tool - Kayıplı ses sıkıştırması kitaplığı ve araçları - Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. - Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding - GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır - Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate - http://osxwinebuilder.googlecode.com/files/gsm-1.0.13.tar.gz - - gsm-1.0.10-dyn.patch - gsm-1.0-pl10-includes.patch - gsm-1.0-pl10-shared.diff - gsm-1.0-pl10-add-includefile.patch - pardusflags.patch - gsm-1.0.12-64bit.patch - - multimedia/sound/gsm/pspec.xml - - - gsm - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - gsm-devel - Development files for gsm - gsm için geliştirme dosyaları - - gsm - - - /usr/include - /usr/share/man/man3 - - - - gsm-32bit - 32-bit shared libraries for gsm - gsm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - gsm - glibc-32bit - - - /usr/lib32 - - - - - 2014-12-14 - 1.0.13 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-21 - 1.0.13 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-23 - 1.0.13 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2011-05-04 - 1.0.13 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmodplug - http://modplug-xmms.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Librairie pour jouer les fichiers son de type MOD. - Library for playing MOD-like music files - MOD-like müzik dosyalarını çalmak için bir kütüphane - libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. - http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.8.5/libmodplug-0.8.8.5.tar.gz - - libgcc - - - libmodplug-0.8.4-timidity-patches.patch - - multimedia/sound/libmodplug/pspec.xml - - - libmodplug - - libgcc - - - /usr/lib - /usr/share/doc - - - - libmodplug-devel - - libmodplug - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.8.8.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 0.8.8.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 - 0.8.8.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - fluidsynth - http://fluidsynth.resonance.org/trac - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.sound - A realtime software synthesizer - Gerçek zamanlı bir yazılım birleştirici - FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. - FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. - mirrors://sourceforge/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.bz2 - - lash-devel - alsa-lib-devel - ladspa-sdk-devel - libsndfile-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - - multimedia/sound/fluidsynth/pspec.xml - - - fluidsynth - - lash - dbus - glib2 - readline - alsa-lib - ladspa-sdk - libsndfile - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fluidsynth-devel - Development files for fluidsynth - fluidsynth için geliştirme dosyaları - - fluidsynth - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-26 - 1.1.6 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-24 - 1.1.6 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-29 - 1.1.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libvorbis - http://www.vorbis.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - Librairie de formatage de fichier son Ogg Vorbis libre. - The Vorbis general audio compression codec - Vorbis genel ses sıkıştırma kodlaması - libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. - libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. - http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.xz - - libogg-devel - - multimedia/sound/libvorbis/pspec.xml - - - libvorbis - - libogg - - - /usr/lib - /usr/share/doc/libvorbis/AUTHORS - /usr/share/doc/libvorbis/README - - - - libvorbis-devel - - libvorbis - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/doc/libvorbis - - - - libvorbis-32bit - 32-bit shared libraries for libvorbis - libvorbis için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libogg-32bit - - - libvorbis - glibc-32bit - libogg-32bit - - - /usr/lib32 - - - - - 2014-05-20 - 1.3.4 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 1.3.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-08-31 - 1.3.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libvisual - http://libvisual.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - Abstraction library for audio visualisation plugins - Ses canlandırma eklentileri için kütüphane - Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. - libvisual is an abstraction library that comes between applications and audio visualisation plugins. - libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. - Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. - mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 - - disable_altivec.patch - libvisual-0.4.0-inlinedefineconflict.patch - - multimedia/sound/libvisual/pspec.xml - - - libvisual - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libvisual-32bit - 32-bit shared libraries for libvisual - emul32 - emul32 - - glibc-32bit - - - libvisual - glibc-32bit - - - /usr/lib32 - - - - libvisual-devel - Development files for libvisual - libvisual için geliştirme dosyaları - - libvisual - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man/man3 - - - - - 2014-05-20 - 0.4.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-14 - 0.4.0 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 0.4.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - speech-dispatcher - http://www.freebsoft.org/speechd - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - GPLv2 - service - app:console - library - multimedia.sound - speech dispatcher: common interface to speech synthesis - Konuşma sentezi ortak arayüzü - Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). - Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. - http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.3.tar.gz - - glib2-devel - libsndfile-devel - dotconf-devel - intltool - gettext-devel - pkgconfig - alsa-lib-devel - pulseaudio-libs-devel - - multimedia/sound/speech-dispatcher/pspec.xml - - - speech-dispatcher - - glib2 - libtool-ltdl - dotconf - libsndfile - alsa-lib - pulseaudio-libs - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /etc/speech-dispatcher - /var/log/speech-dispatcher - /usr/share/speech-dispatcher - - - - speech-dispatcher-devel - Development headers for speech-dispatcher - speech-dispatcher için geliştirme başlıkları - - speech-dispatcher - glib2-devel - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2015-11-22 - 0.8.3 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - - - - vorbis-tools - http://www.vorbis.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - multimedia.sound - Tools for using the Ogg Vorbis sound file format - Ogg Vorbis ses dosyaları için araçlar paketi. - This set of tools allow you to play and encode Ogg Vorbis files. - vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. - http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz - - libvorbis-devel - libao-devel - flac-devel - speex-devel - libogg-devel - libkate-devel - curl-devel - - multimedia/sound/vorbis-tools/pspec.xml - - - vorbis-tools - - libvorbis - libao - flac - speex - libogg - libkate - - - /usr/bin - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - - 2014-01-28 - 1.4.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-12 - 1.4.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - jack-audio-connection-kit - http://jackaudio.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - service - multimedia.sound - A low-latency audio server - Düşük gecikmeli bir ses sunucu - JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. - GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. - https://dl.dropboxusercontent.com/u/28869550/jack-1.9.10.tar.bz2 - - libsamplerate-devel - alsa-lib-devel - libffado-devel - celt-devel - pkgconfig - eigen3 - libopus-devel - doxygen - libfreebob-devel - libsndfile-devel - readline-devel - - multimedia/sound/jack-audio-connection-kit/pspec.xml - - - jack-audio-connection-kit - - alsa-lib - libsamplerate - libsndfile - libffado - readline - libgcc - celt - libopus - - - /etc/security - /usr/bin - /usr/lib - /usr/share/jack-audio-connection-kit - /usr/share/dbus-1 - /usr/share/doc - - - 99-jack.conf - 40-hpet-permissions.rules - 99-audio.conf - - - - jack-audio-connection-kit-devel - Development files for jack-audio-connection-kit - jack-audio-connection-kit için geliştirme dosyaları - - jack-audio-connection-kit - - - /usr/include - /usr/lib/pkgconfig - - - - jack-audio-connection-kit-docs - Help files and API documents for jack-audio-connection-kit - jack-audio-connection-kit için yardım dosyaları ve API belgeleri - - jack-audio-connection-kit - - - /usr/share/jack-audio-connection-kit/reference - /usr/share/man - - - - - 2015-08-24 - 1.9.10 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - - - - wavpack - http://www.wavpack.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - WavPack audio compression tools - WavPack ses sıkıştırma araçları. - WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. - WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. - WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. - http://www.wavpack.com/wavpack-4.75.0.tar.bz2 - multimedia/sound/wavpack/pspec.xml - - - wavpack - - /usr/bin - /usr/lib /usr/share/doc /usr/share/man - - - wavpack-devel - - wavpack - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-20 - 4.75.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-20 - 4.70.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-20 - 4.70.0 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2010-10-12 - 4.60.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - rtmpdump - http://rtmpdump.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - app:console - library - multimedia.stream - Toolkit for RTMP streams - RTMP yayınları araç takımı - rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . - rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . - http://source.pisilinux.org/1.0/rtmpdump-15012015.tar.gz - - openssl-devel - zlib-devel - - multimedia/stream/rtmpdump/pspec.xml - - - rtmpdump - - openssl - zlib - - - /usr/bin - /usr/lib - /usr/share/doc/rtmpdump - /usr/share/man - - - - rtmpdump-devel - Development files for rtmpdump - rtmpdump için geliştirme dosyaları - - rtmpdump - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-07-29 - 15012015 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-20 - 20130918 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-11 - 2.3 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2011-01-19 - 2.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmms - http://sourceforge.net/projects/libmms - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.stream - A common library for accessing MMS media streaming protocol - MMS protokolüne erişim sağlayan bir kütüphane - libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. - libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. - mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz - multimedia/stream/libmms/pspec.xml - - - libmms - - /usr/lib - /usr/share/doc - - - - libmms-devel - Development files for libmms - libmms için geliştirme dosyaları - - libmms - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-23 - 0.6.4 - Version Bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-05-26 - 0.6.2 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-31 - 0.6.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-24 - 0.6.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - live555 - http://www.live555.com - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.stream - Multimedia streaming library - Çokluortam yayın kitaplığı - Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). - Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) - Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. - http://distfiles.alpinelinux.org/distfiles/live.2014.05.08.tar.gz - - shared-config.patch - - multimedia/stream/live555/pspec.xml - - - live555 - - /usr/lib - /usr/share/doc - - - - live555-devel - Development files for live555 - live555 için geliştirme dosyaları - - live555 - - - /usr/include - - - - - 2014-05-25 - 2014.05.08 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2013-10-09 - 0.0_20131009 - First release - Erdinç Gültekin - admins@pisilinux.org - - - 2012-08-27 - 0.0_20121004 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - ladspa-sdk - http://www.ladspa.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.plugin - The Linux Audio Developer's Simple Plugin API - Ses geliştiricisinin temel eklenti kütüphanesi - La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. - The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications - ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. - El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. - http://pkgs.fedoraproject.org/repo/pkgs/ladspa/ladspa_sdk_1.13.tgz/671be3e1021d0722cadc7fb27054628e/ladspa_sdk_1.13.tgz - - ladspa-sdk-1.12-gcc4.patch - properbuild.patch - asneeded.patch - notests.patch - - multimedia/plugin/ladspa-sdk/pspec.xml - - - ladspa-sdk - - /usr/bin - /usr/lib - /etc - /usr/share/doc/ladspa-sdk - - - 60ladspa - - - - ladspa-sdk-devel - Development files for ladspa-sdk - ladspa-sdk için geliştirme dosyaları - - ladspa-sdk - - - /usr/include - /usr/share/doc/ladspa-sdk/html - - - - - 2014-05-25 - 1.13 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-29 - 1.13 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.13 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libchromaprint - http://acoustid.org/chromaprint - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.plugin - Chromaprint is the core component of the Acoustid project. - Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. - https://bitbucket.org/acoustid/chromaprint/downloads/chromaprint-1.2.tar.gz - - ffmpeg-devel - - multimedia/plugin/libchromaprint/pspec.xml - - - libchromaprint - - ffmpeg - - - /usr/share - /usr/lib - - - - libchromaprint-devel - libchromaprint için geliştirme dosyaları - - libchromaprint - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-18 - 1.2 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-25 - 1.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-25 - 1.1 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.7 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-12-17 - 0.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - handbrake - http://handbrake.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv1 - app - multimedia.editor - Multithreaded video transcoder - Çoklu görev destekli video kodlama/düzenleme aracı - The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. - Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. - HandBrake - https://handbrake.fr/rotation.php?file=HandBrake-0.10.2.tar.bz2 - - bzip2 - python - intltool - gtk3-devel - lame-devel - gtk3-devel - x264-devel - libogg-devel - libass-devel - fribidi-devel - libxml2-devel - libbluray-devel - libnotify-devel - libvorbis-devel - libtheora-devel - dbus-glib-devel - fontconfig-devel - libsamplerate-devel - gst-plugins-base-next-devel - - multimedia/editor/handbrake/pspec.xml - - - handbrake - - gtk3 - lame - x264 - cairo - pango - libass - libogg - fribidi - libbluray - libnotify - gst-libav-next - libvorbis - libtheora - gdk-pixbuf - libsamplerate - gstreamer-next - gst-plugins-base-next - zlib - bzip2 - eudev - glib2 - libgcc - libxml2 - freetype - dbus-glib - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/lib/python2.7 - /usr/share/locale - - - - - 2015-09-26 - 0.10.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-04-30 - 0.10.1 - Version bump. - Idris KALP - idriskalp@gmail.com - - - 2015-02-20 - 0.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-18 - 0.9.9 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-07 - 0.9.9 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2013-12-05 - 0.9.9 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - blender - http://www.blender.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.editor - 3D modeling, animation, rendering and post-production application - 3D animasyon sistemi - blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. - Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. - blender - http://download.blender.org/source/blender-2.75a.tar.gz - - boost-devel - cmake - ffmpeg-devel - fftw3-devel - freetype-devel - glew-devel - icu4c-devel - ilmbase-devel - jack-audio-connection-kit-devel - libdc1394-devel - libgomp - libjpeg-turbo-devel - libpng-devel - libsdl-devel - libsndfile-devel - libspnav-devel - libX11-devel - libXi-devel - libXxf86vm-devel - mesa-devel - mesa-glu-devel - openal-devel - openexr-devel - openjpeg-devel - python3-devel - tiff-devel - openimageio-devel - webp-devel - zlib-devel - - - 06-blender-2.68-fix-install-rules.patch - - multimedia/editor/blender/pspec.xml - - - blender - - boost - ffmpeg - fftw3 - freetype - glew - ilmbase - jack-audio-connection-kit - libgcc - libdc1394 - libgomp - libjpeg-turbo - libpng - libsdl - libsndfile - libspnav - libX11 - libXi - libXxf86vm - mesa - mesa-glu - openal - openexr-libs - openjpeg - python3 - tiff - openimageio - zlib - - - /usr/bin - /usr/lib/python3.3/ - /usr/share/blender/ - /usr/share/doc - /usr/share/pixmaps/ - /usr/share/man/man1 - /usr/share/icons - /usr/share/applications - /usr/share/mime - /usr/share/locale - - - blender.xml - blender-wrapper - blender.desktop - - - - - 2015-07-24 - 2.75a - Version bump. - Ali Algul - alialgul@pisilinux.org - - - 2015-01-24 - 2.75 - Version bump. - Ali Algul - alialgul@pisilinux.org - - - 2015-01-24 - 2.73a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-08 - 2.73 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-30 - 2.72b - Rebuild, remove opencolorio dependency - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-10 - 2.72b - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-08 - 2.72 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-27 - 2.71 - Version bump. - Nikolay Semenov - tribunal@pisilinux.org - - - 2014-05-28 - 2.70a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-23 - 2.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-25 - 2.7.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-11-26 - 2.69 - Rebuild for ffmpeg. - Kamil Atlı - suvarice@gmail.com - - - 2013-11-09 - 2.69 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-31 - 2.69 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-14 - 2.68a - rebuild for icu4c. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-08-17 - 2.68a - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-07-25 - 2.68 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-04-20 - 2.66 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-01 - 2.65 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - docbook-sgml4_5 - http://www.docbook.org/sgml/ - - PisiLinux Community - admins@pisilinux.org - - X11 - data - office.docbook - Docbook SGML DTD 4.5 - Docbook SGML DTD 4.5 - Contains Docbook SGML DTD version 4.5. - Docbook SGML DTD sürüm 4.5 belgelerini içerir. - http://www.docbook.org/sgml/4.5/docbook-4.5.zip - - catalog.patch - - office/docbook/docbook-sgml4_5/pspec.xml - - - docbook-sgml4_5 - - sgml-common - - - /usr/share/doc/docbook-sgml4_5 - /usr/share - + + xorg-video-nvidia-current + xorg-video-nvidia304 + System.Package - - - 2014-05-18 - 4.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-22 - 4.5 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2007-02-23 - 4.5 - First release - Eren Türkay - admins@pisilinux.org - - - - - - asciidoc - http://www.methods.co.nz/asciidoc/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.docbook - Text document format for writing documents - Belge hazırlamak için metin biçimlendirme sistemi - AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages. AsciiDoc files can be translated to HTML and DocBook markups using the asciidoc command. - AsciiDoc, kısa belgeler, makaleler, kitaplar ve kılavuz sayfaları yazmak ve bunları HTML/Docbook'a dönüştürmek için kullanılır. - mirrors://sourceforge/asciidoc/asciidoc-8.6.9.tar.gz - office/docbook/asciidoc/pspec.xml - - asciidoc - - docbook-xml - docbook-xsl - - - /etc - /usr/bin - /usr/lib/python* - /usr/share/asciidoc - /usr/share/vim - /usr/share/doc/asciidoc - /usr/share/man - - - - - 2014-05-18 - 8.6.9 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-31 - 8.6.9 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-17 - 8.6.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - itstool - http://itstool.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - office.docbook - XML to PO and back again - XML to PO and back again - http://files.itstool.org/itstool/itstool-2.0.2.tar.bz2 - office/docbook/itstool/pspec.xml - - - itstool - - /usr - - - - - 2014-05-18 - 2.0.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-26 - 2.0.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-12 - 1.2.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - opensp - http://openjade.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - office.docbook - A SGML parsing and entity management toolkit - SGML ayrıştırma araç seti - OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. - OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. - mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz + xorg-video-nvidia340-32bit + 32-bit shared libraries for xorg-video-nvidia340 + emul32 + + noDelta + + emul32 - docbook-xml - libgcc + libvdpau-32bit + glibc-32bit - - opensp-1.5-gcc34.patch - opensp-sigsegv.patch - - office/docbook/opensp/pspec.xml - - - opensp - libgcc + zlib-32bit + libX11-32bit + libXext-32bit + glibc-32bit + xorg-video-nvidia340 - /usr/bin - /usr/share/doc/opensp - /usr/share/man - /usr/lib - /usr/share/locale - /usr/share/sgml - - - - opensp-devel - Development files for opensp - opensp için geliştirme dosyaları - - opensp - - - /usr/include - - - - - 2014-05-18 - 1.5.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-01 - 1.5.2 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 1.5.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - openjade - http://openjade.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - office.docbook - An implementation of DSSSL - Bir DSSSL uyarlaması - OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. - OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. - http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz - - sgml-common - opensp-devel - libgcc - - - openjade-1.3.2-ldflags.patch - openjade-1.3.2-respect-ldflags.patch - openjade-1.3.2-msggen.pl.patch - - office/docbook/openjade/pspec.xml - - - openjade - - sgml-common - opensp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc/openjade - /usr/share/sgml + /usr/lib32 + /usr/share/nvidia-current/32bit-ld.so.conf + + xorg-video-nvidia-current-32bit + xorg-video-nvidia304-32bit + - System.Package + System.Package - - openjade-1.3.2.dsssl-catalog - openjade-1.3.2.catalog - - - 2014-05-18 - 1.3.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org + + 2015-12-13 + 340.96 + Version bump for kernel 4.3.2 + Ertuğrul Erata + ertugrulerata@gmail.com - - 2014-02-01 - 1.3.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + + 2015-05-22 + 340.76 + Rebuild for kernel 3.19.8 + Ertuğrul Erata + ertugrulerata@gmail.com - - 2012-10-18 - 1.3.2 - First release - Marcin Bojara - marcin@pisilinux.org + + 2015-05-05 + 340.76 + Rebuild for kernel 3.19.6 + Ertuğrul Erata + ertugrulerata@gmail.com - - - - - homebank - http://homebank.free.fr - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - app:gui - office - Free, easy, personal accounting for everyone - Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı - «HomeBank» is free software that will assist you to manage your personal accounting. - HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. - homebank - http://homebank.free.fr/public/homebank-5.0.5.tar.gz - - cairo-devel - libofx-devel - pango-devel - gdk-pixbuf-devel - pixman-devel - gtk3-devel - glib2-devel - gettext-devel - pkgconfig - libofx-devel - intltool - at-spi2-core-devel - - office/homebank/pspec.xml - - - homebank - - cairo - libofx - pango - gdk-pixbuf - gtk3 - glib2 - - - /usr/bin - /usr/share/applications - /usr/share/application-registry - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - /usr/share/icons/hicolor - - - - homebank-data - Data Files for Homebank - - /usr/share/homebank/datas - /usr/share/mime-info - - - - - 2015-10-12 - 5.0.5 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org + + 2015-04-24 + 340.76 + Rebuild for kernel 3.19.5 + Ertuğrul Erata + ertugrulerata@gmail.com - - 2015-02-14 - 5.0.0 - Version bump. + + 2015-04-16 + 340.76 + Rebuild for kernel 3.19.4 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-02 + 340.76 + Rebuid for kernel 3.19.3 Hakan Yıldız hknyldz93@gmail.com + + 2015-03-08 + 340.76 + Rebuild for kernel 3.19.1 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-03-01 + 340.76 + Version bump, Rebuild for kernel 3.19.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-31 + 340.76 + Version bump, Rebuild for kernel 3.18.3 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-13 + 340.65 + version bump + Stefan Gronewold (groni) + groni@pisilinux.org + - 2014-09-26 - 4.6.3 - Version bump. - Stefan Gronewold(groni) + 2014-12-08 + 340.58 + Rebuild for kernel 3.17.4 + Stefan Gronewold (groni) groni@pisilinux.org - 01.11.2013 - 4.5.4 + 2014-11-13 + 340.58 First Release - Stefan Gronewold(groni) - groni3427@gmail.com + Stefan Gronewold (groni) + groni@pisilinux.org @@ -32469,6 +61712,893 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + openjade + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + An implementation of DSSSL + Bir DSSSL uyarlaması + OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. + OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. + http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz + + sgml-common + opensp-devel + libgcc + + + openjade-1.3.2-ldflags.patch + openjade-1.3.2-respect-ldflags.patch + openjade-1.3.2-msggen.pl.patch + + office/docbook/openjade/pspec.xml + + + openjade + + sgml-common + opensp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/openjade + /usr/share/sgml + + + System.Package + + + openjade-1.3.2.dsssl-catalog + openjade-1.3.2.catalog + + + + + 2014-05-18 + 1.3.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 1.3.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-18 + 1.3.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + opensp + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + A SGML parsing and entity management toolkit + SGML ayrıştırma araç seti + OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. + OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. + mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz + + docbook-xml + libgcc + + + opensp-1.5-gcc34.patch + opensp-sigsegv.patch + + office/docbook/opensp/pspec.xml + + + opensp + + libgcc + + + /usr/bin + /usr/share/doc/opensp + /usr/share/man + /usr/lib + /usr/share/locale + /usr/share/sgml + + + + opensp-devel + Development files for opensp + opensp için geliştirme dosyaları + + opensp + + + /usr/include + + + + + 2014-05-18 + 1.5.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 1.5.2 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 1.5.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + docbook-sgml4_5 + http://www.docbook.org/sgml/ + + PisiLinux Community + admins@pisilinux.org + + X11 + data + office.docbook + Docbook SGML DTD 4.5 + Docbook SGML DTD 4.5 + Contains Docbook SGML DTD version 4.5. + Docbook SGML DTD sürüm 4.5 belgelerini içerir. + http://www.docbook.org/sgml/4.5/docbook-4.5.zip + + catalog.patch + + office/docbook/docbook-sgml4_5/pspec.xml + + + docbook-sgml4_5 + + sgml-common + + + /usr/share/doc/docbook-sgml4_5 + /usr/share + + + System.Package + + + + + 2014-05-18 + 4.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-22 + 4.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2007-02-23 + 4.5 + First release + Eren Türkay + admins@pisilinux.org + + + + + + itstool + http://itstool.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + office.docbook + XML to PO and back again + XML to PO and back again + http://files.itstool.org/itstool/itstool-2.0.2.tar.bz2 + office/docbook/itstool/pspec.xml + + + itstool + + /usr + + + + + 2014-05-18 + 2.0.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-26 + 2.0.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-12 + 1.2.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + asciidoc + http://www.methods.co.nz/asciidoc/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.docbook + Text document format for writing documents + Belge hazırlamak için metin biçimlendirme sistemi + AsciiDoc is a text document format for writing short documents, articles, books and UNIX man pages. AsciiDoc files can be translated to HTML and DocBook markups using the asciidoc command. + AsciiDoc, kısa belgeler, makaleler, kitaplar ve kılavuz sayfaları yazmak ve bunları HTML/Docbook'a dönüştürmek için kullanılır. + mirrors://sourceforge/asciidoc/asciidoc-8.6.9.tar.gz + office/docbook/asciidoc/pspec.xml + + + asciidoc + + docbook-xml + docbook-xsl + + + /etc + /usr/bin + /usr/lib/python* + /usr/share/asciidoc + /usr/share/vim + /usr/share/doc/asciidoc + /usr/share/man + + + + + 2014-05-18 + 8.6.9 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 8.6.9 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-17 + 8.6.8 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + hunspell-dict-nl + http://www.opentaal.org/english.php + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + locale:nl + data + office.dictionary + Dutch hunspell dictionaries + Flemenkçe hunspell sözlükleri + hunspell-dict-nl includes Dutch hunspell dictionaries. + hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt + office/dictionary/hunspell-dict-nl/pspec.xml + + + hunspell-dict-nl + + /usr/share + /usr/share/doc + + + + + 2015-10-05 + 2.10g + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-17 + 1.00g + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-05 + 1.00g + Adress Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 1.00g + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-ru + ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell + + PisiLinux Community + admins@pisilinux.org + + BSD + locale:ru + data + office.dictionary + Russian hunspell dictionaries + Rusça hunspell sözlükleri + hunspell-dict-ru includes Russian hunspell dictionaries. + hunspell-dict-ru Rusça hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz + office/dictionary/hunspell-dict-ru/pspec.xml + + + hunspell-dict-ru + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 0.99f_7 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-05-05 + 0.99f_7 + Url fixed + Ertan Güven + ertan@pisilinux.org + + + 2010-12-28 + 0.99f_7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-pt + http://www.broffice.org/verortografico/baixar + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + GPLv2+ + locale:pt + data + office.dictionary + Portuguese hunspell dictionaries + Portekizce hunspell sözlükleri + hunspell-dict-pt includes Portuguese hunspell dictionaries. + hunspell-dict-pt Portekizce hunspell sözlükleri içerir. + http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20150704.tar.gz + office/dictionary/hunspell-dict-pt/pspec.xml + + + hunspell-dict-pt + + /usr/share/hunspell + /usr/share/doc + + + + + 2015-10-05 + 20150704 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-01-27 + 0.0_20090319 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-fr + http://dico.savant.free.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + MPL-1.1 + locale:fr + data + office.dictionary + French hunspell dictionaries + Fransızca hunspell sözlükleri + hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. + hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. + http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip + office/dictionary/hunspell-dict-fr/pspec.xml + + + hunspell-dict-fr + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-27 + 2.3.2 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 2.3.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-en + http://wordlist.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + locale:en + data + office.dictionary + English hunspell dictionaries + İngilizce hunspell sözlükleri + hunspell-dict-en includes English (US, UK, etc.) hunspell dictionaries. + hunspell-dict-en İngilizce (US, UK vs.) hunspell sözlüklerini içerir. + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_US-2015.05.18.zip + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_CA-2015.05.18.zip + http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_GB-large-2015.05.18.zip + office/dictionary/hunspell-dict-en/pspec.xml + + + hunspell-dict-en + + /usr/share + /usr/share/doc + + + + + 2015-10-05 + 2015.05.18 + version bump + Ayhan Yalcinsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-17 + 0.0_20090319 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-tr + http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + locale:en + data + office.dictionary + Turkish hunspell dictionaries + Turkish hunspell dictionaries + http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/releases/1.1-2014.12.11/tr-tr.oxt + + hunspell + + office/dictionary/hunspell-dict-tr/pspec.xml + + + hunspell-dict-tr + + /usr/lib/libreoffice/share/extensions/hunspell_tr/ + /usr/share/hunspell + + + + + 2015-10-03 + 1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + hunspell-dict-es + http://es.openoffice.org/programa/diccionario.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + GPLv3+ + MPL-1.1 + locale:es + data + office.dictionary + Spanish hunspell dictionaries + İspanyolca hunspell sözlükleri + hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. + hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip + office/dictionary/hunspell-dict-es/pspec.xml + + + hunspell-dict-es + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 0.0_20081215 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-05-05 + 0.0_20081215 + Fixed + Ertan Güven + ertan@pisilinux.org + + + 2010-10-13 + 0.0_20081215 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-de + http://www.j3e.de/ispell/igerman98 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + locale:de + data + office.dictionary + German hunspell dictionaries + Almanca hunspell sözlüğü + hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. + hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. + https://www.j3e.de/ispell/igerman98/dict/igerman98-20131206.tar.bz2 + office/dictionary/hunspell-dict-de/pspec.xml + + + hunspell-dict-de + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 0.0_20131216 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090107 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-ca + http://www.softcatala.org/wiki/Projectes/Corrector_ortogràfic + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + locale:ca + data + office.dictionary + Catalan hunspell dictionaries + Katalanca hunspell sözlüğü + hunspell-dict-ca includes Catalan hunspell dictionaries. + hunspell-dict-ca Katalanca hunspell sözlüğünü içermektedir. + http://source.pisilinux.org/1.0/hunspell-dict-ca-20090319.tar.bz2 + office/dictionary/hunspell-dict-ca/pspec.xml + + + hunspell-dict-ca + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 0.0_20090319 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-pl + http://www.kurnik.pl/dictionary/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2+ + MPL-1.1 + locale:pl + data + office.dictionary + Polish hunspell dictionaries + Polonya dili için hunspell sözlükleri + hunspell-dict-pl includes Polish hunspell dictionaries. + hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. + https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20150428.zip + office/dictionary/hunspell-dict-pl/pspec.xml + + + hunspell-dict-pl + + /usr/share/hunspell + /usr/share/doc + + + + + 2015-10-05 + 20100428 + Rebuild + Alihanh Öztürk + alihan@pisilinux.org + + + 2014-01-26 + 0.0_20090319 + Rebuild + Alihanh Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 0.0_20090319 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-it + http://linguistico.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + locale:it + data + office.dictionary + Italian hunspell dictionaries + İtalyanca hunspell sözlükleri + hunspell-dict-it includes Italian hunspell dictionaries. + hunspell-dict-it İtalyanca hunspell sözlüklerini içerir. + http://downloads.sourceforge.net/sourceforge/linguistico/italiano_2_4_2007_09_01.zip + office/dictionary/hunspell-dict-it/pspec.xml + + + hunspell-dict-it + + /usr/share/hunspell + /usr/share/doc + + + + + 2014-01-26 + 2.4 + rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 2.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + hunspell-dict-sv + http://dsso.se/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + locale:sv + data + office.dictionary + Swedish hunspell dictionaries + İsveççe hunspell sözlükleri + hunspell-dict-sv includes Swedish hunspell dictionaries. + hunspell-dict-sv İsveççe hunspell sözlüklerini içerir. + http://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan/releases/2.36/ooo_swedish_dict_2-36.oxt + office/dictionary/hunspell-dict-sv/pspec.xml + + + hunspell-dict-sv + + /usr/share + /usr/share/doc + + + + + 2014-02-17 + 1.29 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-05 + 1.29 + v.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-13 + 1.29 + First release + Pisi Linux Admins + admins@pisilinux.org + + + gsoap @@ -32542,205 +62672,86 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - chmlib - http://www.jedrea.com/chmlib/ + qpdf + http://qpdf.sourceforge.net - PisiLinux Community - admins@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - LGPLv2.1 - library + Artistic-2 app:console office.misc - A library for dealing with Microsoft ITSS/CHM format files - Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane - Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. - Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. - Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. - Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. - http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 - office/misc/chmlib/pspec.xml - - - chmlib - - /usr/lib - /usr/bin - /usr/share/doc - - - - chmlib-devel - Development files for chmlib - chmlib için geliştirme dosyaları - - chmlib - - - /usr/include - - - - - 2014-01-20 - 0.40 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.40 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - qpdfview - https://launchpad.net/qpdfview - - Stefan Gronewold (groni) - groni@pisilinux.org - - GNU GPL v2 - office.misc - qpdfview is a tabbed document viewer - It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface - https://launchpad.net/qpdfview/trunk/0.4.14/+download/qpdfview-0.4.14.tar.gz + A Content-Preserving PDF Transformation System + A command-line program that does structural, content-preserving transformations on PDF files + mirrors://sourceforge/qpdf/qpdf-5.1.3.tar.gz - djvu-devel - cups-devel - poppler-qt5-devel - qt5-base-devel - qt5-xmlpatterns-devel - libspectre-devel + libpcre-devel zlib-devel - pkgconfig - qt5-svg-devel - office/misc/qpdfview/pspec.xml + office/misc/qpdf/pspec.xml - qpdfview - qpdfview is a tabbed document viewer. + qpdf - qt5-base - cups - djvu - libgcc zlib - libspectre - poppler-qt5 + libgcc + libpcre - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - - 2015-11-04 - 0.4.14 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - mdbtools - https://github.com/brianb/mdbtools - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - app:console - office.misc - MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases - Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar - mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. - mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. - https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz - - unixODBC-devel - glib2-devel - readline-devel - - office/misc/mdbtools/pspec.xml - - - mdbtools - - unixODBC - glib2 - readline - - - /usr/bin /usr/lib /usr/share/man /usr/share/doc + /usr/bin - - mdbtools-gui - - mdbtools-devel - Development files for mdbtools - mdbtools için geliştirme dosyaları + qpdf-devel + qpdf için geliştirme dosyaları - mdbtools + libpcre-devel + zlib-devel + qpdf /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig - 2015-04-20 - 0.7.1 - Version bump, gui build disabled. - Ertuğrul Erata - ertugrulerata@gmail.com + 2015-10-30 + 5.1.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2014-02-19 - 0.6_pre1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org + 2015-03-04 + 5.1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-07-28 - 0.6_pre1 - Dep Fixed + 2014-01-26 + 5.1.1 + Version bump. PisiLinux Community admins@pisilinux.org - 2013-05-02 - 0.6_pre1 - Fixed build dep - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org + 2013-07-13 + 5.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org - 2010-10-13 - 0.6_pre1 - First release - Pisi Linux Admins - admins@pisilinux.org + 2013-07-01 + 4.1.0 + First release. + Marcin Bojara + marcin@pisilinux.org @@ -32860,75 +62871,128 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - ebook-tools - http://sourceforge.net/projects/ebook-tools/ + graphite2 + http://sourceforge.net/projects/silgraphite PisiLinux Community admins@pisilinux.org - MIT - library - app:console + LGPLv2.1 + app:gui office.misc - A tool for accessing and converting various ebook file formats - Çeşitli e-kitap dosya biçimlerine erişmek için bir araç - ebook-tools is a programming library for accessing and converting various ebook file formats. It also contains a console application. - ebook-tools, çeşitli e-kitap dosya biçimleri arasında dönüştürme yapmak, bu biçimlere erişmek için kullanılan bir programlama kitaplığıdır. Kitaplığın yanında ayrıca bir terminal aracı da içerir. - mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz + SILGraphite: rendering non-roman scripts + Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. + graphite2 + mirrors://sourceforge/silgraphite/graphite2-1.2.4.tgz - libzip-devel - libxml2-devel - doxygen cmake + freetype-devel - - ebook-tools-0.2.1-libzip_pkgconfig.patch - - office/misc/ebook-tools/pspec.xml + office/misc/graphite2/pspec.xml - ebook-tools - - libzip - libxml2 - + graphite2 /usr/bin /usr/share/doc - /usr/lib + /usr/share/graphite2 + /usr/lib/ - ebook-tools-devel - Development files for ebook-tools - ebook-tools için geliştirme dosyaları + graphite2-devel + graphite2 için geliştirme dosyaları + graphite2 için geliştirme dosyaları - libxml2-devel - ebook-tools + graphite2 /usr/include - - - - ebook-tools-docs - Documentation for ebook-tools - ebook-tools kitaplığı için belgelendirme - - /usr/share/doc/ebook-tools/html + /usr/lib/pkgconfig/ + + 2014-05-17 + 1.2.4 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-25 + 1.2.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-08-21 + 1.2.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-02 + 1.2.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-28 + 1.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + docutils + http://docutils.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + public-domain + library + office.misc + A library for processing plaintext documentation + Düz yazı belgelendirme işleme için kütüphane + A library for processing plaintext documentation into useful formats, such as HTML, XML, and LaTeX. + Librería para procesamiento de texto plano para conversión a formatos útiles como HTML, XML, y LaTeX. + mirrors://sourceforge/docutils/docutils-0.11.tar.gz + office/misc/docutils/pspec.xml + + + docutils + + /usr/lib + /usr/bin + /usr/share/doc + + + + + 2014-02-26 + 0.11 + Rebuild for python 2.7.6 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2014-01-22 - 0.2.2 + 0.11 Version bump. Stefan Gronewold(groni) groni@pisilinux.org 2010-10-13 - 0.1.1 + 0.7 First release Pisi Linux Admins admins@pisilinux.org @@ -32999,52 +63063,166 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - iso-codes - http://pkg-isocodes.alioth.debian.org/ + qpdfview + https://launchpad.net/qpdfview + + Stefan Gronewold (groni) + groni@pisilinux.org + + GNU GPL v2 + office.misc + qpdfview is a tabbed document viewer + It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface + https://launchpad.net/qpdfview/trunk/0.4.14/+download/qpdfview-0.4.14.tar.gz + + djvu-devel + cups-devel + poppler-qt5-devel + qt5-base-devel + qt5-xmlpatterns-devel + libspectre-devel + zlib-devel + pkgconfig + qt5-svg-devel + + office/misc/qpdfview/pspec.xml + + + qpdfview + qpdfview is a tabbed document viewer. + + qt5-base + cups + djvu + libgcc + zlib + libspectre + poppler-qt5 + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + + 2015-11-04 + 0.4.14 + First Release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + texi2html + http://savannah.nongnu.org/projects/texi2html/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + Texinfo to HTML converter + Texinfo'dan HTML'ye dönüştürücü + texi2html is a Perl script which can generate HTML from Texinfo source files. + text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. + http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 + office/misc/texi2html/pspec.xml + + + texi2html + + /usr/bin + /usr/share/info + /usr/share/doc/texi2html + /usr/share/man/man1 + /usr/share/texi2html + /usr/share/texinfo + /usr/share/locale + + + + + 2014-05-20 + 5.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-05-02 + 1.82 + Mass rebuild for Pisi Linux 1.0 + Ertan Güven + ertan@pisilinux.org + + + 2012-11-06 + 5.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + chmlib + http://www.jedrea.com/chmlib/ PisiLinux Community admins@pisilinux.org LGPLv2.1 library + app:console office.misc - International country codes - Uluslararası ülke kodları - iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. - iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. - http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.53.tar.xz - office/misc/iso-codes/pspec.xml + A library for dealing with Microsoft ITSS/CHM format files + Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane + Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. + Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. + Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. + Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. + http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 + office/misc/chmlib/pspec.xml - iso-codes + chmlib - /usr/lib/pkgconfig - /usr/share/locale + /usr/lib + /usr/bin /usr/share/doc - /usr/share/xml - /usr/share/iso-codes + + + + chmlib-devel + Development files for chmlib + chmlib için geliştirme dosyaları + + chmlib + + + /usr/include - - 2014-05-21 - 3.53 - Version bump. - Vedat Demir - vedat@pisilinux.org - - 2013-10-13 - 3.47 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-01-20 + 0.40 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2012-10-02 - 3.39 + 2010-10-13 + 0.40 First release - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org @@ -33099,6 +63277,98 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + mdbtools + https://github.com/brianb/mdbtools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + app:console + office.misc + MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases + Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar + mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. + mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. + https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz + + unixODBC-devel + glib2-devel + readline-devel + + office/misc/mdbtools/pspec.xml + + + mdbtools + + unixODBC + glib2 + readline + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + mdbtools-gui + + + + mdbtools-devel + Development files for mdbtools + mdbtools için geliştirme dosyaları + + mdbtools + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-20 + 0.7.1 + Version bump, gui build disabled. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-19 + 0.6_pre1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 0.6_pre1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-05-02 + 0.6_pre1 + Fixed build dep + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2010-10-13 + 0.6_pre1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + libofx @@ -33191,48 +63461,127 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - docutils - http://docutils.sourceforge.net + iso-codes + http://pkg-isocodes.alioth.debian.org/ PisiLinux Community admins@pisilinux.org - public-domain + LGPLv2.1 library office.misc - A library for processing plaintext documentation - Düz yazı belgelendirme işleme için kütüphane - A library for processing plaintext documentation into useful formats, such as HTML, XML, and LaTeX. - Librería para procesamiento de texto plano para conversión a formatos útiles como HTML, XML, y LaTeX. - mirrors://sourceforge/docutils/docutils-0.11.tar.gz - office/misc/docutils/pspec.xml + International country codes + Uluslararası ülke kodları + iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. + iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. + http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.53.tar.xz + office/misc/iso-codes/pspec.xml - docutils + iso-codes - /usr/lib - /usr/bin + /usr/lib/pkgconfig + /usr/share/locale /usr/share/doc + /usr/share/xml + /usr/share/iso-codes - 2014-02-26 - 0.11 - Rebuild for python 2.7.6 + 2014-05-21 + 3.53 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2013-10-13 + 3.47 + Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2012-10-02 + 3.39 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ebook-tools + http://sourceforge.net/projects/ebook-tools/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + office.misc + A tool for accessing and converting various ebook file formats + Çeşitli e-kitap dosya biçimlerine erişmek için bir araç + ebook-tools is a programming library for accessing and converting various ebook file formats. It also contains a console application. + ebook-tools, çeşitli e-kitap dosya biçimleri arasında dönüştürme yapmak, bu biçimlere erişmek için kullanılan bir programlama kitaplığıdır. Kitaplığın yanında ayrıca bir terminal aracı da içerir. + mirrors://sourceforge/project/ebook-tools/ebook-tools/0.2.2/ebook-tools-0.2.2.tar.gz + + libzip-devel + libxml2-devel + doxygen + cmake + + + ebook-tools-0.2.1-libzip_pkgconfig.patch + + office/misc/ebook-tools/pspec.xml + + + ebook-tools + + libzip + libxml2 + + + /usr/bin + /usr/share/doc + /usr/lib + + + + ebook-tools-devel + Development files for ebook-tools + ebook-tools için geliştirme dosyaları + + libxml2-devel + ebook-tools + + + /usr/include + + + + ebook-tools-docs + Documentation for ebook-tools + ebook-tools kitaplığı için belgelendirme + + /usr/share/doc/ebook-tools/html + + + 2014-01-22 - 0.11 + 0.2.2 Version bump. Stefan Gronewold(groni) groni@pisilinux.org 2010-10-13 - 0.7 + 0.1.1 First release Pisi Linux Admins admins@pisilinux.org @@ -33241,125 +63590,44 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - graphite2 - http://sourceforge.net/projects/silgraphite + librevenge + http://dev-www.libreoffice.org/src/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 - app:gui + MPL-1.0 + library office.misc - SILGraphite: rendering non-roman scripts - Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. - graphite2 - mirrors://sourceforge/silgraphite/graphite2-1.2.4.tgz + A base library for writing document import filters + librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. + http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2 - cmake - freetype-devel - - office/misc/graphite2/pspec.xml - - - graphite2 - - /usr/bin - /usr/share/doc - /usr/share/graphite2 - /usr/lib/ - - - - graphite2-devel - graphite2 için geliştirme dosyaları - graphite2 için geliştirme dosyaları - - graphite2 - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2014-05-17 - 1.2.4 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-25 - 1.2.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-08-21 - 1.2.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-02 - 1.2.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-28 - 1.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - qpdf - http://qpdf.sourceforge.net - - Marcin Bojara - marcin@pisilinux.org - - Artistic-2 - app:console - office.misc - A Content-Preserving PDF Transformation System - A command-line program that does structural, content-preserving transformations on PDF files - mirrors://sourceforge/qpdf/qpdf-5.1.3.tar.gz - - libpcre-devel + boost-devel + cppunit-devel zlib-devel + doxygen + libtool - office/misc/qpdf/pspec.xml + office/misc/librevenge/pspec.xml - qpdf + librevenge zlib libgcc - libpcre + /usr/share /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - qpdf-devel - qpdf için geliştirme dosyaları + librevenge-devel + Development files for librevenge + librevenge için geliştirme dosyaları - libpcre-devel - zlib-devel - qpdf + librevenge /usr/include @@ -33367,41 +63635,13 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - 2015-10-30 - 5.1.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-03-04 - 5.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-26 - 5.1.1 - Version bump. + + 2015-01-06 + 0.0.1 + First Release PisiLinux Community admins@pisilinux.org - - 2013-07-13 - 5.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-01 - 4.1.0 - First release. - Marcin Bojara - marcin@pisilinux.org - @@ -33488,759 +63728,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - texi2html - http://savannah.nongnu.org/projects/texi2html/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.misc - Texinfo to HTML converter - Texinfo'dan HTML'ye dönüştürücü - texi2html is a Perl script which can generate HTML from Texinfo source files. - text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. - http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 - office/misc/texi2html/pspec.xml - - - texi2html - - /usr/bin - /usr/share/info - /usr/share/doc/texi2html - /usr/share/man/man1 - /usr/share/texi2html - /usr/share/texinfo - /usr/share/locale - - - - - 2014-05-20 - 5.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-05-02 - 1.82 - Mass rebuild for Pisi Linux 1.0 - Ertan Güven - ertan@pisilinux.org - - - 2012-11-06 - 5.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - librevenge - http://dev-www.libreoffice.org/src/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.0 - library - office.misc - A base library for writing document import filters - librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. - http://dev-www.libreoffice.org/src/librevenge-0.0.1.tar.bz2 - - boost-devel - cppunit-devel - zlib-devel - doxygen - libtool - - office/misc/librevenge/pspec.xml - - - librevenge - - zlib - libgcc - - - /usr/share - /usr/lib - - - - librevenge-devel - Development files for librevenge - librevenge için geliştirme dosyaları - - librevenge - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-06 - 0.0.1 - First Release - PisiLinux Community - admins@pisilinux.org - - - - - - hunspell-dict-pl - http://www.kurnik.pl/dictionary/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2+ - MPL-1.1 - locale:pl - data - office.dictionary - Polish hunspell dictionaries - Polonya dili için hunspell sözlükleri - hunspell-dict-pl includes Polish hunspell dictionaries. - hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. - https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20150428.zip - office/dictionary/hunspell-dict-pl/pspec.xml - - - hunspell-dict-pl - - /usr/share/hunspell - /usr/share/doc - - - - - 2015-10-05 - 20100428 - Rebuild - Alihanh Öztürk - alihan@pisilinux.org - - - 2014-01-26 - 0.0_20090319 - Rebuild - Alihanh Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-sv - http://dsso.se/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - locale:sv - data - office.dictionary - Swedish hunspell dictionaries - İsveççe hunspell sözlükleri - hunspell-dict-sv includes Swedish hunspell dictionaries. - hunspell-dict-sv İsveççe hunspell sözlüklerini içerir. - http://extensions.libreoffice.org/extension-center/swedish-spelling-dictionary-den-stora-svenska-ordlistan/releases/2.36/ooo_swedish_dict_2-36.oxt - office/dictionary/hunspell-dict-sv/pspec.xml - - - hunspell-dict-sv - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 1.29 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-05 - 1.29 - v.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 1.29 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-nl - http://www.opentaal.org/english.php - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - locale:nl - data - office.dictionary - Dutch hunspell dictionaries - Flemenkçe hunspell sözlükleri - hunspell-dict-nl includes Dutch hunspell dictionaries. - hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt - office/dictionary/hunspell-dict-nl/pspec.xml - - - hunspell-dict-nl - - /usr/share - /usr/share/doc - - - - - 2015-10-05 - 2.10g - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-02-17 - 1.00g - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-05 - 1.00g - Adress Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 1.00g - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-es - http://es.openoffice.org/programa/diccionario.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - GPLv3+ - MPL-1.1 - locale:es - data - office.dictionary - Spanish hunspell dictionaries - İspanyolca hunspell sözlükleri - hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. - hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip - office/dictionary/hunspell-dict-es/pspec.xml - - - hunspell-dict-es - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 0.0_20081215 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-05-05 - 0.0_20081215 - Fixed - Ertan Güven - ertan@pisilinux.org - - - 2010-10-13 - 0.0_20081215 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-fr - http://dico.savant.free.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - MPL-1.1 - locale:fr - data - office.dictionary - French hunspell dictionaries - Fransızca hunspell sözlükleri - hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. - hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. - http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip - office/dictionary/hunspell-dict-fr/pspec.xml - - - hunspell-dict-fr - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-27 - 2.3.2 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 2.3.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-ca - http://www.softcatala.org/wiki/Projectes/Corrector_ortogràfic - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - locale:ca - data - office.dictionary - Catalan hunspell dictionaries - Katalanca hunspell sözlüğü - hunspell-dict-ca includes Catalan hunspell dictionaries. - hunspell-dict-ca Katalanca hunspell sözlüğünü içermektedir. - http://source.pisilinux.org/1.0/hunspell-dict-ca-20090319.tar.bz2 - office/dictionary/hunspell-dict-ca/pspec.xml - - - hunspell-dict-ca - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 0.0_20090319 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-it - http://linguistico.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - locale:it - data - office.dictionary - Italian hunspell dictionaries - İtalyanca hunspell sözlükleri - hunspell-dict-it includes Italian hunspell dictionaries. - hunspell-dict-it İtalyanca hunspell sözlüklerini içerir. - http://downloads.sourceforge.net/sourceforge/linguistico/italiano_2_4_2007_09_01.zip - office/dictionary/hunspell-dict-it/pspec.xml - - - hunspell-dict-it - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 2.4 - rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 2.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-en - http://wordlist.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - locale:en - data - office.dictionary - English hunspell dictionaries - İngilizce hunspell sözlükleri - hunspell-dict-en includes English (US, UK, etc.) hunspell dictionaries. - hunspell-dict-en İngilizce (US, UK vs.) hunspell sözlüklerini içerir. - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_US-2015.05.18.zip - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_CA-2015.05.18.zip - http://downloads.sourceforge.net/project/wordlist/speller/2015.05.18/hunspell-en_GB-large-2015.05.18.zip - office/dictionary/hunspell-dict-en/pspec.xml - - - hunspell-dict-en - - /usr/share - /usr/share/doc - - - - - 2015-10-05 - 2015.05.18 - version bump - Ayhan Yalcinsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-02-17 - 0.0_20090319 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-tr - http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - locale:en - data - office.dictionary - Turkish hunspell dictionaries - Turkish hunspell dictionaries - http://extensions.libreoffice.org/extension-center/turkish-spellcheck-dictionary/releases/1.1-2014.12.11/tr-tr.oxt - - hunspell - - office/dictionary/hunspell-dict-tr/pspec.xml - - - hunspell-dict-tr - - /usr/lib/libreoffice/share/extensions/hunspell_tr/ - /usr/share/hunspell - - - - - 2015-10-03 - 1.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - hunspell-dict-pt - http://www.broffice.org/verortografico/baixar - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - GPLv2+ - locale:pt - data - office.dictionary - Portuguese hunspell dictionaries - Portekizce hunspell sözlükleri - hunspell-dict-pt includes Portuguese hunspell dictionaries. - hunspell-dict-pt Portekizce hunspell sözlükleri içerir. - http://natura.di.uminho.pt/download/sources/Dictionaries/hunspell/hunspell-pt_PT-20150704.tar.gz - office/dictionary/hunspell-dict-pt/pspec.xml - - - hunspell-dict-pt - - /usr/share/hunspell - /usr/share/doc - - - - - 2015-10-05 - 20150704 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-01-27 - 0.0_20090319 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090319 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-ru - ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell - - PisiLinux Community - admins@pisilinux.org - - BSD - locale:ru - data - office.dictionary - Russian hunspell dictionaries - Rusça hunspell sözlükleri - hunspell-dict-ru includes Russian hunspell dictionaries. - hunspell-dict-ru Rusça hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz - office/dictionary/hunspell-dict-ru/pspec.xml - - - hunspell-dict-ru - - /usr/share - /usr/share/doc - - - - - 2014-02-17 - 0.99f_7 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-05-05 - 0.99f_7 - Url fixed - Ertan Güven - ertan@pisilinux.org - - - 2010-12-28 - 0.99f_7 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - hunspell-dict-de - http://www.j3e.de/ispell/igerman98 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - locale:de - data - office.dictionary - German hunspell dictionaries - Almanca hunspell sözlüğü - hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. - hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. - https://www.j3e.de/ispell/igerman98/dict/igerman98-20131206.tar.bz2 - office/dictionary/hunspell-dict-de/pspec.xml - - - hunspell-dict-de - - /usr/share/hunspell - /usr/share/doc - - - - - 2014-01-26 - 0.0_20131216 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 0.0_20090107 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - poppler-data - http://poppler.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - data - office.postscript - Poppler encoding files - Poppler kodlama dosyaları - poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. - poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. - http://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz - office/postscript/poppler-data/pspec.xml - - - poppler-data - - /usr/share/doc - /usr/share/poppler - /usr/share/pkgconfig - - - - - 2015-03-05 - 0.4.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 0.4.6 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 0.4.6 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-04-17 - 0.4.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-12 - 0.4.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - poppler @@ -34522,6 +64009,71 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + poppler-data + http://poppler.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + data + office.postscript + Poppler encoding files + Poppler kodlama dosyaları + poppler-data consists of encoding files for poppler. When installed, the encoding files enables poppler to correctly render CJK and Cyrillic properly. + poppler-data, poppler için CJK ve Kiril harflerini düzgünce gösterebilmek için gerekli kodlama dosyalarını içerir. + http://poppler.freedesktop.org/poppler-data-0.4.7.tar.gz + office/postscript/poppler-data/pspec.xml + + + poppler-data + + /usr/share/doc + /usr/share/poppler + /usr/share/pkgconfig + + + + + 2015-03-05 + 0.4.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-25 + 0.4.6 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 0.4.6 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-17 + 0.4.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-12 + 0.4.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + ghostscript @@ -34696,6 +64248,83 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + aspell + http://aspell.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + office.spellcheck + A multi-language spellchecker + Bir yazım kontrol aracı + Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. + Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. + GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. + mirrors://gnu/aspell/aspell-0.60.6.1.tar.gz + + fedora/aspell-0.60.3-install_info.patch + fedora/aspell-0.60.5-fileconflict.patch + fedora/aspell-0.60.5-pspell_conf.patch + fedora/aspell-0.60.6-mp.patch + fedora/aspell-0.60.6-zero.patch + + office/spellcheck/aspell/pspec.xml + + + aspell + + libgcc + + + /usr/bin + /usr/lib + /usr/share/aspell + /usr/share/doc + /usr/share/man + /usr/share/info + /usr/share/locale + + + + aspell-devel + Development files for aspell + aspell için geliştirme dosyaları + + aspell + + + /usr/include + /usr/share/info/aspell-dev.info + + + + + 2014-05-25 + 0.60.6.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-18 + 0.60.6.1 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-14 + 0.60.6.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + enchant @@ -34882,81 +64511,7694 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - aspell - http://aspell.net/ + homebank + http://homebank.free.fr + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + app:gui + office + Free, easy, personal accounting for everyone + Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı + «HomeBank» is free software that will assist you to manage your personal accounting. + HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. + homebank + http://homebank.free.fr/public/homebank-5.0.5.tar.gz + + cairo-devel + libofx-devel + pango-devel + gdk-pixbuf-devel + pixman-devel + gtk3-devel + glib2-devel + gettext-devel + pkgconfig + libofx-devel + intltool + at-spi2-core-devel + + office/homebank/pspec.xml + + + homebank + + cairo + libofx + pango + gdk-pixbuf + gtk3 + glib2 + + + /usr/bin + /usr/share/applications + /usr/share/application-registry + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + /usr/share/icons/hicolor + + + + homebank-data + Data Files for Homebank + + /usr/share/homebank/datas + /usr/share/mime-info + + + + + 2015-10-12 + 5.0.5 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-02-14 + 5.0.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-26 + 4.6.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 01.11.2013 + 4.5.4 + First Release + Stefan Gronewold(groni) + groni3427@gmail.com + + + + + + screen + http://www.gnu.org/software/screen/ PisiLinux Community admins@pisilinux.org - LGPLv2 + GPLv2 app:console - office.spellcheck - A multi-language spellchecker - Bir yazım kontrol aracı - Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. - Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. - GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. - mirrors://gnu/aspell/aspell-0.60.6.1.tar.gz - - fedora/aspell-0.60.3-install_info.patch - fedora/aspell-0.60.5-fileconflict.patch - fedora/aspell-0.60.5-pspell_conf.patch - fedora/aspell-0.60.6-mp.patch - fedora/aspell-0.60.6-zero.patch - - office/spellcheck/aspell/pspec.xml + util.misc + Terminal multiplexer (to have multiple sessions in a single terminal window) + Screen bir terminal(komut penceresi) çoğaltıcıdır. + GNU Screen is a free terminal multiplexer developed by the GNU Project. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. + screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. + http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz + util/misc/screen/pspec.xml - aspell + screen - libgcc + ncurses + + /run + /etc + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/info + /usr/share/screen + /usr/share/terminfo + /usr/lib/tmpfiles.d/screen.conf + + + System.Package + + + screenrc + screen.pam.system-auth + tmpfiles.conf + + + + + 2015-08-07 + 4.3.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-10 + 4.0.3 + Add tmpfiles.conf + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-10-12 + 4.0.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + tidy + http://tidy.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + HTML and XML error checking + HTML ve XML hata denetleme aracı + tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. + tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. + http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/tidy-cvs_20101110.tar.bz2 + util/misc/tidy/pspec.xml + + + tidy /usr/bin /usr/lib - /usr/share/aspell /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - aspell-devel - Development files for aspell - aspell için geliştirme dosyaları + tidy-devel + Development files for tidy + tidy için geliştirme dosyaları - aspell + tidy + + + /usr/include + + + + + 2012-10-04 + 20101110 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ibus + http://code.google.com/p/ibus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app + util.misc + Intelligent Input Bus for Linux / Unix OS + IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. + https://github.com/ibus/ibus/releases/download/1.5.10/ibus-1.5.10.tar.gz + + gtk2-devel + gtk3-devel + glib2-devel + dconf-devel + vala-devel + libnotify-devel + libxkbcommon-devel + intltool + iso-codes + libxslt + docbook-xsl + + util/misc/ibus/pspec.xml + + + ibus + + glib2 + libX11 + atk + gtk2 + gtk3 + cairo + libXi + pango + dconf + libnotify + gdk-pixbuf + libxkbcommon + wayland-client + + + /etc/bash_completion.d/ + /etc/gconf/schemas/ibus.schemas + /etc/dconf/ + /usr/bin + /usr/lib + /usr/share + + + + ibus-gtk2 + ibus için gtk2 desteği + + ibus + glib2 + gtk2 + pango + + + /usr/lib/gtk-2.0/2.10.0/immodules/ + + + + ibus-gtk3 + ibus için gtk3 desteği + + ibus + glib2 + gtk3 + pango + + + /usr/lib/gtk-3.0/3.0.0/immodules/ + + + + ibus-devel + ibus için geliştirme dosyaları + ibus için geliştirme dosyaları + + ibus + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-06-16 + 1.5.10 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-02-26 + 1.5.4 + Delete Unused Deps. + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-25 + 1.5.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-08 + 1.5.4 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-07-27 + 1.5.3 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-04-30 + 1.5.2 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-04 + 1.4.99.20120917 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mc + http://www.midnight-commander.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + GNU Midnight Commander cli-based file manager + GNU Midnight Commander konsol kip dosya yöneticisi + Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. + GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. + http://www.midnight-commander.org/downloads/mc-4.8.15.tar.xz + + gpm + check-devel + glib2-devel + doxygen + slang-devel + libpcre-devel + samba-devel + libICE-devel + libutil-linux-devel + + util/misc/mc/pspec.xml + + + mc + + gpm + glib2 + slang + samba + libutil-linux + + + /etc/profile.d + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/mc + /etc/mc + + + mc.profile + u7z + mc.ini + + + + + 2015-11-09 + 4.8.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-05 + 4.8.14 + Version bump, add samba + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-21 + 4.8.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-05 + 4.8.12 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-02-18 + 4.8.11 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-04 + 4.8.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-01 + 4.8.8 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-30 + 4.8.8 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-12-29 + 4.8.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + strace + http://sourceforge.net/projects/strace/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + util.misc + Tracks and displays system calls associated with a running process + Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç + Herramienta útil para diagnostico, aprendizaje y depuración + strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. + strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. + mirrors://sourceforge/strace/strace-4.9.tar.xz + + libaio-devel + libunwind-devel + + util/misc/strace/pspec.xml + + + strace + + libunwind + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2015-01-25 + 4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-09 + 4.8 + Version bump + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-04-20 + 4.7 + Versrion bump + Ertan Güven + ertan@pisilinux.org + + + 2011-04-18 + 4.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lsof + http://people.freebsd.org/~abe/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Lists open files for running Unix processes + Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç + Lista archivos abiertos por procesos unix en ejecución + lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. + lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. + Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. + http://source.pisilinux.org/1.0/lsof_4.84_src.tar + util/misc/lsof/pspec.xml + + + lsof + + /usr/sbin + /usr/share/doc + /usr/share/lsof + /usr/share/man + + + + + 2014-03-09 + 4.84 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 4.84 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + tree + http://mama.indstate.edu/users/ice/tree/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Recursive directory listing tool + Dizin listeleme aracı + Tree lists directories recursively, and produces an indented listing of files. + Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. + ftp://mama.indstate.edu/linux/tree/tree-1.7.0.tgz + util/misc/tree/pspec.xml + + + tree + + /usr/bin + /usr/share/bash-completion + /usr/share/doc + /usr/share/man + + + tree.bashcomp + + + + + 2015-01-25 + 1.7.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-03-09 + 1.6.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-10-20 + 1.6.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + logrotate + https://fedorahosted.org/releases/l/o/logrotate + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.admin + Rotates, compresses, removes and emails system log files + Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç + logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. + Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. + https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.8.tar.gz + + popt-devel + acl-devel + + util/admin/logrotate/pspec.xml + + + logrotate + + popt + acl + + + /etc + /usr/sbin + /usr/share/doc + /usr/share/man + + + + + 2015-01-26 + 3.8.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 3.8.7 + v.bump + Ayhan Yalçınsoy + ayhanyacinsoy@gmail.com + + + 2014-03-09 + 3.7.9 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2011-09-29 + 3.7.9 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pisido + http://www.pisilinux.org + + Harun Gültekin + hrngultekin@gmail.com + + GPLv3+ + app:gui + util.admin + A pisi packager from GUI + Grafik arayüzde çalışan pisi paketçisi. + You can make pisi packages with a GUI. Also, you can import your existing build files.Warning:Alfa version. Ported Qt5. + Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. + https://github.com/hrngultekin/pisido/archive/pisido-v2.3.3.tar.gz + + qscintilla2-devel + qtermwidget5-devel + + util/admin/pisido/pspec.xml + + + pisido + A pisi packager from GUI + + libgcc + qt5-base + qscintilla2 + qtermwidget5 + + + / + + + + + 2015-10-26 + 2.3.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-30 + 2.3.1 + Qt5 rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-08-26 + 2.2.1 + rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-08-01 + 2.2.0 + Rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-27 + 2.2.0 + Version bump + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-24 + 2.1.0 + Version bump + Harun Gültekin + hrngultekin@gmail.com + + + 2015-07-09 + 2.0.1 + added multipackage support + Harun Gültekin + hrngultekin@gmail.com + + + 2014-07-05 + 2.0b + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-02-04 + 2.0b + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-10 + 2.0b + Inıtial import. + Serdar Soytetir + kaptan@pisilinux.org + + + + + + utempter + http://www.redhat.com/ + + PisiLinux Community + admins@pisilinux.org + + MIT + LGPLv2.1 + app:console + util.admin + Application that allows non-privileged applications to write utmp (login) info + utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. + Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. + Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. + ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 + + libutempter-pierelro.patch + + util/admin/utempter/pspec.xml + + + utempter + + /usr/libexec + /usr/lib + /usr/share/doc + /usr/share/man + + + System.Package + + + + utempter-devel + Development files for utempter + utempter için geliştirme dosyaları + + utempter /usr/include - /usr/share/info/aspell-dev.info 2014-05-25 - 0.60.6.1 + 1.1.6 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-20 + 1.1.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 0.5.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pisilinux-dev-tools + http://www.pisilinux.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + app:console + util.admin + A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier + Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. + http://source.pisilinux.org/1.0/pisilinux-dev-tools-0.0.2.tar.xz + + fix_detect_mesa.patch + spped_up.patch + ignore_glibc-32bit.patch + + util/admin/pisilinux-dev-tools/pspec.xml + + + pisilinux-dev-tools + + chrpath + binutils + + + /usr/bin + /usr/share/doc + + + + + 2015-06-28 + 0.0.2 + fix runtime deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-21 + 0.0.2 + checkelf: ignore glibc-32bit + Marcin Bojara + marcin@pisilinux.org + + + 2014-07-01 + 0.0.2 + rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2014-06-19 + 0.0.2 + Speed up checkelf. + Marcin Bojara + marcin@pisilinux.org + + + 2014-06-16 + 0.0.2 + checkelf: fix detect mesa. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-11 + 0.0.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-03 + 0.0.1 + Use re.search() for checking command file output. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-29 + 0.0.1 Rebuild + Pisi Linux Admins + admins@pisilinux.org + + + 2011-05-23 + 0.0.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + inxi + http://code.google.com/p/inxi/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv1 + app:console + util.admin + script to get system information + script to get system information + script voor het opvragen van systeem informatie + Script para la información del sistema + script to get system information + script to get system information + Script voor het opvragen van systeem informatie + Inxi es un completo script que muestra la información del sistema + http://inxi.googlecode.com/svn/tarballs/inxi_2.2.19.tar.gz + util/admin/inxi/pspec.xml + + + inxi + + /usr/bin + /usr/share/kde4/apps/konversation/scripts/inxi + /usr/share/man + /usr/share/doc + + + + + 2015-07-23 + 2.2.19 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-01-26 + 2.2.17 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-17 + 2.1.28 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-05-03 + 2.1.27 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-12-16 + 1.9.17 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-0 + 1.9.15 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-08 + 1.9.12 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-27 + 1.8.45 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-20 + 1.8.34 + Distro list added PisiLinux + Ertan Güven + ertan@pisilinux.org + + + 2013-02-23 + 1.8.34 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2013-01-28 + 1.8.32 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + sudo + http://www.sudo.ws/ + + PisiLinux Community + admins@pisilinux.org + + Sudo + app:console + util.admin + Allows restricted root access for specified users + Yönetici haklarıyla komut çalıştırma uygulaması + sudo allows certain users/groups to run commands with root user privileges. + sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. + http://www.sudo.ws/sudo/dist/sudo-1.8.13.tar.gz + + nss-devel + audit-devel + pam-devel + zlib-devel + cyrus-sasl-devel + openldap-client + + util/admin/sudo/pspec.xml + + + sudo + + nss + audit + pam + zlib + cyrus-sasl + openldap-client + + + /etc + /usr/lib/tmpfiles.d/sudo.conf + /usr/bin + /usr/sbin + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/man + /run/sudo + /var/db/sudo + /usr/include + + + System.Package + + + sudoers + sudo.pamd + sudo-i.pamd + sudo.tmpfiles.conf + + + + + 2015-04-17 + 1.8.13 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-01 + 1.8.11_p2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-01 + 1.8.11p2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-18 + 1.8.10_p3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-03-29 + 1.8.10_p2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-13 + 1.8.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-09 + 1.8.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.8.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + security + 2011-02-04 + 1.7.4_p6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cgmanager + https://github.com/lxc/cgmanager + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL + app:console + util.admin + Central cgroup management daemon + Merkezi cgroup yönetimi uygulamacığı + CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. + CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. + https://github.com/lxc/cgmanager/archive/v0.39.tar.gz + + libnih-devel + pam-devel + help2man + + util/admin/cgmanager/pspec.xml + + + cgmanager + + libnih + pam + dbus + + + /usr/bin + /lib/security + /usr/share/man + /usr/share/cgmanager + /usr/lib/libcgmanager* + + + System.Service + + + + cgmanager-devel + + cgmanager + libnih + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-10 + 0.39 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 0.38 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-12 + 0.36 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-27 + 0.23 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + htop + http://htop.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + util.admin + Visionneur de processus pour Linux + An interactive process viewer for Linux + Linux için etkileşimli bir süreç izleyici + htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. + htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. + htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. + htop + http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz + + ncurses-devel + gettext-devel + + + desktop_tr.patch + + util/admin/htop/pspec.xml + + + htop + + ncurses + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/pixmaps + + + + + 2014-06-17 + 1.0.3 + Version bump + Kamil Atlı + burakerturk@pisilinux.org + + + 2013-12-31 + 1.0.2 + Release bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-01-31 + 1.0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + dash + http://gondor.apana.org.au/~herbert/dash/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + util.shell + Small and fast POSIX-compliant shell + Ufak ve hızlı POSIX uyumlu kabuk + DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. + DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. + http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.8.tar.gz + util/shell/dash/pspec.xml + + + dash + + /bin/dash + /usr/share/man + /usr/share/doc + + + + + 2015-11-21 + 0.5.8 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-01-22 + 0.5.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-17 + 0.5.7 + Release. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2014-01-18 - 0.60.6.1 + 2013-04-30 + 0.5.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-12-31 + 0.5.6.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + bashdb + http://bashdb.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.shell + A Debugger for Bash + Bash Kabuğu için bir hata ayıklayıcısı + bashdb is a comprehensive source-code debugger for bash. + bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. + mirrors://sourceforge/bashdb/bashdb-4.3-0.91.tar.gz + util/shell/bashdb/pspec.xml + + + bashdb + + /usr/bin + /usr/share/doc + /usr/share/bashdb + /usr/share/info + /usr/share/man + + + + + 2015-01-22 + 0.91 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-19 + 4.2.0.8 Rebuild Stefan Gronewold(groni) groni@pisilinux.org - 2012-09-14 - 0.60.6.1 + 2011-05-27 + 4.2.0.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + bash-completion + http://bash-completion.alioth.debian.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.shell + Programmable completion for bash + Bash kabuğu için otomatik tamamlama + A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. + Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. + http://bash-completion.alioth.debian.org/files/bash-completion-2.1.tar.bz2 + util/shell/bash-completion/pspec.xml + + + bash-completion + + /etc + /usr/share/doc + /usr/share + /var + + + System.Package + + + pisilinux + + + + + 2014-02-23 + 2.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-14 + 2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2011-06-20 + 1.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cabextract + http://www.cabextract.org.uk/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.archive + A program to extract from Microsoft Cabinet files + Microsoft Cabinet dosyalarını açan bir program + cabextract is a program to extract files from Microsoft Cabinet files. + cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. + http://www.cabextract.org.uk/cabextract-1.6.tar.gz + util/archive/cabextract/pspec.xml + + + cabextract + + /usr/bin + /usr/share/man + + + + + 2015-11-23 + 1.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-16 + 1.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 1.4 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-19 + 1.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-06-07 + 1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libzip + http://www.nih.at/libzip/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + util.archive + A C library for reading, creating, and modifying zip archives + Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı + libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. + libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. + http://www.nih.at/libzip/libzip-1.0.1.tar.gz + + zlib-devel + + util/archive/libzip/pspec.xml + + + libzip + + zlib + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libzip-devel + Development files for libzip + libzip için geliştirme dosyaları + + zlib-devel + libzip + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-07-28 + 1.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 0.11.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-04 + 0.11.2 + preserve old header path for compatibility. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-01 + 0.11.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-09 + 0.10.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libtar + http://www.feep.net/libtar/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + util.archive + tar file manipulation API + tar dosyalarını işlemek için bir API + libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. + libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. + http://pkgbuild.com/~giovanni/libtar/libtar-1.2.20.tar.gz + util/archive/libtar/pspec.xml + + + libtar + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libtar-devel + Development files for libtar + libtar için geliştirme dosyaları + + libtar + + + /usr/include + /usr/share/man/man3 + + + + + 2014-06-20 + 1.2.20 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2010-10-12 + 1.2.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + areca + http://www.areca-backup.org/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.archive + Easy to use and reliable backup solution for Linux. + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + Areca Backup is very versatile and as simple as possible. + areca + http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz + util/archive/areca/pspec.xml + + + areca + + acl + + + /usr/bin/ + /usr/share/applications + /usr/share/pixmaps + /opt/areca/ + /usr + + + areca + areca.desktop + areca.png + + + + + 2015-11-23 + 7.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-25 + 7.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-27 + 7.4.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-19 + 7.4.6 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-03-03 + 7.4.1 + Rebuild for openjdk + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-17 + 7.4.1 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-03 + 7.3.9 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + quazip + http://quazip.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + app:console + util.archive + A C++/Qt ZIP library + A Qt/C++ wrapper for Gilles Vollant's ZIP/UNZIP C package (minizip). Provides access to ZIP archives from Qt programs using QIODevice API. + http://sourceforge.net/projects/quazip/files/quazip/0.7.1/quazip-0.7.1.tar.gz + + qt5-base-devel + zlib-devel + cmake + + + qt5.patch + + util/archive/quazip/pspec.xml + + + quazip + + zlib + libgcc + + + /usr/lib + /usr/share/doc + /usr/share/cmake/Modules/FindQuaZip5.cmake + + + + quazip-devel + Development files for quazip + quazip paketi için geliştirme dosyaları + + quazip + + + /usr/include + + + + + 2015-11-05 + 0.7.1 + Version Bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-08-8 + 0.7 + Version Bump + Vedat Demir + vedat@pisilinux.org + + + 2014-03-10 + 0.5.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-05-14 + 0.5.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + + + + unrar + http://www.rarsoft.com/rar_add.htm + + PisiLinux Community + admins@pisilinux.org + + unRAR + app:console + util.archive + RAR decompressor + RAR açma uygulaması + unrar is a program to decompress RAR archives. + Unrar, RAR biçimli sıkıştırılmış dosyaları açar. + http://www.rarlab.com/rar/unrarsrc-5.3.4.tar.gz + + unrar-5.3.4-soname.patch + + util/archive/unrar/pspec.xml + + + unrar + + /usr/bin + /usr/share/doc + + + + + 2015-01-25 + 5.3.4 + Version bump. + yusuf Aydemir + yuısuf.aydemir@pisilinux.org + + + 2015-01-25 + 5.2.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-19 + 5.0.13 + Rebuild + Richard de Bruin + admins@pisilinux.org + + + 2013-11-18 + 5.0.13 + Version bump + Richard de Bruin + admins@pisilinux.org + + + 2012-10-31 + 4.2.4 + First release + Richard de Bruin + admins@pisilinux.org + + + + + + gnutls + http://www.gnutls.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + util.crypt + GNU TLS Library + GNU TLS Kütüphanesi + Biblioteka GNU TLS (Transport Layer Security) + GnuTLS est un projet dont l'objectif est de développer une librairie fournissant une couche de sécurité au dessus d'une couche de transport fiable. Actuellement la librairie GnuTLS implémente les standards proposés par le groupe de travail TLs de l'IETF. + gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group. + GnuTLS, erişilebilir bir gönderim katmanı üzerinde güvenli katman oluşturmayı amaçlayan bir projedir. GnuTLS kütüphanesi halen IETF TLS çalışma grubunun öngördüğü standartları uygulamaya geçirmektedir. + GnuTLS es un proyecto que apunta al desarrollo de una librería, que facilite una capa segura, a través de una capa de transporte fiable. Actualmente la librería GnuTLS implementa los estándares propuestos del grupo de trabajo de TLS de IETF. + GnuTLS to projekt mający na celu stworzenie biblioteki udostępniającej powłokę bezpieczeństwa ponad powłoką transportową (np. TCP/IP). Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez grupę roboczą IETF TLS. + http://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/gnutls/v3.3/gnutls-3.3.16.tar.xz + + gc-devel + gmp-devel + nettle-devel + autogen-devel + p11-kit-devel + libidn-devel + zlib-devel + libtasn1-devel + + util/crypt/gnutls/pspec.xml + + + gnutls + + zlib + libidn + gmp + nettle + autogen + p11-kit + libgcc + libtasn1 + + + /usr/share + /usr/lib + /usr/bin + + + + gnutls-devel + Development files for gnutls + gnutls için geliştirme dosyaları + Pliki nagłówkowe do gnutls. + + nettle-devel + p11-kit-devel + libtasn1-devel + zlib-devel + gnutls + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/info/gnutls* + /usr/bin/libgnutls*-config + + + libgnutls-config + libgnutls-config + + + + gnutls-32bit + 32-bit shared libraries for gnutls + gnutls için 32-bit paylaşımlı kitaplıklar + 32-bitowe biblioteki GnuTLS. + emul32 + emul32 + + gmp-32bit + zlib-32bit + libidn-32bit + nettle-32bit + p11-kit-32bit + libtasn1-32bit + + + libgcc + glibc-32bit + gmp-32bit + zlib-32bit + nettle-32bit + p11-kit-32bit + libtasn1-32bit + + + /usr/lib32 + + + + + 2015-07-13 + 3.3.16 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-20 + 3.3.15 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 3.3.11 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-06 + 3.3.5 + Version bump and security update(CVE-2014-3466) + Vedat Demir + vedat@pisilinux.org + + + 2014-05-24 + 3.3.2 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-21 + 3.3.2 + Version bump, rm unneed deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-20 + 3.3.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-06 + 3.2.5 + Rebuild to fix stripping. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-27 + 3.2.5 + Version bump, clean up, enable tests. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-30 + 3.1.9 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-03-04 + 3.1.9 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-02 + 3.1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + nss + http://www.mozilla.org/projects/security/pki/nss/ + + Erdinç Gültekin + admins@pisilinux.org + + MPL-2.0 + GPLv2 + LGPLv2.1 + library + util.crypt + Network Security Services + Ağ Güvenlik Servisleri + Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. + 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_19_4_RTM/src/nss-3.19.4.tar.gz + + nss.pc.in + nss-config.in + generate-pc-config.sh + + + nspr-devel + sqlite-devel + zlib-devel + + + nss-3.18.1-standalone-1.patch + add_spi+cacert_ca_certs.patch + ssl-renegotiate-transitional.patch + fedora/add-relro-linker-option.patch + fedora/nss-539183.patch + + util/crypt/nss/pspec.xml + + + nss + + zlib + sqlite + nspr + + + /usr/lib + /usr/bin + /etc + + + ld.so.conf + nssdb/cert8.db + nssdb/key3.db + nssdb/secmod.db + + + + nss-devel + Development files for nss + nss için geliştirme dosyaları + + nspr-devel + + + /usr/bin/nss-config + /usr/include + /usr/lib/pkgconfig + /usr/lib/nss/*.a + + + + + 2015-11-19 + 3.19.4 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-07-15 + 3.19.2 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-05-01 + 3.18.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-28 + 3.17.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-12-13 + 3.17.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-02 + 3.17.2 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-08-10 + 3.16.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-20 + 3.16.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-04-11 + 3.16 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-04 + 3.15.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-18 + 3.15.3 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-11 + 3.15.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-18 + 3.15.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-19 + 3.14.3 + vbump + Erdinç Gültekin + admins@pisilinux.org + + + 2013-03-01 + 3.14.3 + vbump + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-10 + 3.14.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + gnupg + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + util.crypt + The GNU Privacy Guard, a PGP replacement + GNU Gizlilik Koruması + GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. + GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. + ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.7.tar.bz2 + + openldap-client + pinentry + npth-devel + libassuan-devel + libksba-devel + zlib-devel + bzip2 + texinfo + gnutls-devel + readline-devel + libgcrypt-devel + libgpg-error-devel + libusb-compat-devel + + util/crypt/gnupg/pspec.xml + + + gnupg + + openldap-client + npth + libassuan + pinentry + libksba + zlib + bzip2 + gnutls + readline + libgcrypt + libgpg-error + libusb-compat + + + /usr/bin + /usr/sbin + /usr/libexec + /usr/share/doc + /usr/share/doc/html + /usr/share/gnupg + /usr/share/info + /usr/share/locale + /usr/share/man + + + dirmngr + + + dirmngr + + + System.Package + + + + gnupg-docs + Documentation files for GnuPG + GnuPG paketine ait API dokümantasyonu + + gnupg + + + /usr/share/doc/gnupg/html + /usr/share/gnupg/help.* + /usr/share/doc/gnupg/faq.html + + + + + 2015-08-21 + 2.1.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-26 + 2.1.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-08-16 + 2.0.26 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-30 + 2.0.25 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-04 + 2.0.23 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-04-05 + 2.0.22 + Rebuild for libgcrypt and some other system.base packs. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-02 + 2.0.22 + new pcsc-lite and pinentry + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-27 + 2.0.22 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-29 + 2.0.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qca2-qt5 + http://download.kde.org/stable/qca-qt5 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + util.crypt + Cryptographic Architecture for QT4 + QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. + http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz + + qt5-base-devel + nss-devel + doxygen + cmake + + util/crypt/qca2-qt5/pspec.xml + + + qca2-qt5 + + qt5-base + nss + libgcc + + + /usr/bin + /usr/qt/4/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/qca + + + + qca2-qt5-devel + Development files for qca2 + + qca2-qt5 + qt5-base-devel + + + /usr/include/qt5/Qca-qt5/QtCrypto + /usr/lib/pkgconfig/qca2.pc + /usr/share/qt4/mkspecs/features + + + + + 2015-11-06 + 2.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-10-18 + 2.1.0.3 + First release,rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtasn1 + http://www.gnutls.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + util.crypt + ASN.1 library used in GNUTLS + GNUTLS için kullanılan ASN.1 kütüphanesi + libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. + libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. + http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.5.tar.gz + util/crypt/libtasn1/pspec.xml + + + libtasn1 + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libtasn1-devel + Development files for libtasn1 + libtasn1 için geliştirme dosyaları + + libtasn1 + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libtasn1-32bit + 32-bit shared libraries for libtasn1 + libtasn1 için 32bit kütüphanesi + emul32 + emul32 + + glibc-32bit + + + libtasn1 + glibc-32bit + + + /usr/lib32/ + + + + + 2015-07-13 + 4.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-28 + 4.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-31 + 4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 3.5 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-20 + 3.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 3.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-27 + 3.3 + Move pc files to devel pack, rebuild + v.bump + PisiLinux Community + admins@pisilinux.org + + + 2012-10-18 + 2.14 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gpgme + http://www.gnupg.org/gpgme.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + util.crypt + GnuPG Made Easy is a library for making GnuPG easier to use + GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir + GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. + GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. + GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. + GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. + ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.5.5.tar.bz2 + + gnupg + libgpg-error-devel + libassuan-devel + + util/crypt/gpgme/pspec.xml + + + gpgme + + gnupg + libgpg-error + libassuan + + + /usr/bin + /usr/lib + /usr/share/common-lisp + /usr/share/doc + /usr/share/info + + + + gpgme-devel + Development files for gpgme + gpgme için geliştirme dosyaları + + gpgme + libgpg-error-devel + libassuan-devel + + + /usr/include + /usr/share/aclocal + + + + + 2015-08-21 + 1.5.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-14 + 1.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-13 + 1.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-10-31 + 1.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-29 + 1.5.0 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-01-25 + 1.4.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-30 + 1.3.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + skey + http://www.openbsd.org/faq/faq8.html#SKey + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + util.crypt + Linux Port of OpenBSD Single-key Password System + Linux için OpenBSD tek anahtarlı parola sistemi + skey is an S/Key implementation ported from OpenBSD. S/Key provides One Time Password functionality, and can be used to increase system security. + skey, OpenBSD'den Linux'a aktarılan S/Key sistemidir. S/Key sistemi Tek Seferlik Parola özelilği ile sistem güvenliğini arttırmak için kullanılabilir. + http://source.pisilinux.org/1.0/skey-1.1.5.tar.bz2 + + cracklib-devel + zlib-devel + perl + + + skey-1.1.5-gentoo.diff + skey-login_name_max.diff + skey-1.1.5-fPIC.patch + skey-1.1.5-bind-now.patch + skey-1.1.5-otp.diff + skey-1.1.5-binary-search.patch + confdir.patch + zeroed_entries.patch + default_hash.patch + fix_library_info.patch + + util/crypt/skey/pspec.xml + + + skey + + cracklib + zlib + + + /etc/skey + /lib + /usr/bin + /usr/lib + /usr/sbin + /usr/share/doc/skey + /usr/share/man + + + + skey-devel + Development files for skey + skey için geliştirme dosyaları + system.devel + + skey + + + /usr/include + /usr/share/man/man3 + + + + + 2014-05-21 + 1.1.5 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.1.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-11 + 1.1.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + p11-kit + http://p11-glue.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + util.crypt + Library to work with PKCS#11 modules + Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 + The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. + p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). + http://p11-glue.freedesktop.org/releases/p11-kit-0.23.1.tar.gz + + libtasn1-devel + libffi-devel + + util/crypt/p11-kit/pspec.xml + + + p11-kit + + libtasn1 + libffi + + + /usr/bin + /usr/share/doc + /usr/share/gtk-doc + /usr/share/p11-kit + /usr/lib + /etc/pkcs11 + + + + p11-kit-devel + p11-kit için geliştirme dosyaları + p11-kit için geliştirme dosyaları. + Pliki nagłówkowe do biplioteki p11-kit. + + p11-kit + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + p11-kit-32bit + 32-bit shared libraries for p11-kit + emul32 + emul32 + + libtasn1-32bit + libffi-32bit + glibc-32bit + + + p11-kit + libffi-32bit + libtasn1-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-04-28 + 0.23.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-13 + 0.22.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-24 + 0.20.2 + Rebuild for gcc. + PisiLinux Community + admins@pisilinux.org + + + 2014-04-20 + 0.20.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-26 + 0.20.1 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-31 + 0.19.3 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-26 + 0.15.2 + Move pc files to devel pack,rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-23 + 0.15.2 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-11-02 + 0.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libksba + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + app:console + util.crypt + rends les certificats X.509 et le CMS facilement accessible aux applications. + Library handling X.509 certificates and CMS data + Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık + libksba is a library designed to build software based on the X.509 and CMS protocols. + libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. + ftp://ftp.gnupg.org/gcrypt/libksba/libksba-1.3.3.tar.bz2 + + libgpg-error-devel + + util/crypt/libksba/pspec.xml + + + libksba + + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libksba-devel + Development files for libksba + libksba için geliştirme dosyaları + + libksba + + + /usr/include + /usr/share/aclocal + + + + + 2015-04-12 + 1.3.3 + Version Bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-31 + 1.3.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-29 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + pinentry + http://www.gnupg.org/aegypten/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + util.crypt + Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol + Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri + Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. + Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. + ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-0.9.5.tar.bz2 + + libsecret-devel + libgpg-error-devel + libassuan-devel + gtk2-devel + pango-devel + libcap-devel + ncurses-devel + glib2-devel + + util/crypt/pinentry/pspec.xml + + + pinentry + + glib2 + libassuan + libsecret + libgpg-error + libcap + ncurses + + + /usr/bin + /usr/share/info + /usr/share/doc + + + pinentry-wrapper + + + + pinentry-gtk + pinentry for GTK toolkit + GTK+ ile yazılmış pinentry arayüzü + + pinentry + ncurses + libcap + libassuan + libsecret + libgpg-error + glib2 + gtk2 + pango + + + /usr/bin/pinentry-gtk* + + + + + 2015-08-21 + 0.9.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-13 + 0.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-04 + 0.8.3 + Rebuid. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-04 + 0.8.3 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-04 + 0.8.2 + First release + PisiLinux Community + namso-0"@hotmail.it + + + + + + keyutils + http://people.redhat.com/~dhowells/keyutils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + library + app:console + util.crypt + Linux key management utilities + Linux anahtar yönetim araçları + keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated. + keyutils, Linux çekirdeğindeki anahtar yönetim kolaylıklarını denetlemek ve çekirdek ile kullanıcı uzayı arasında iletişim kurmak için gereken araçları içerir. + http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2 + util/crypt/keyutils/pspec.xml + + + keyutils + + /etc + /bin + /sbin + /usr/include + /usr/lib + /lib + /usr/share/man + /usr/share/doc + /usr/share/keyutils + + + + + 2014-05-22 + 1.5.9 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-03 + 1.5.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-13 + 1.5.8 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 1.5.5 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org + + + dustrac + http://dustrac.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + app:gui + game.arcade + Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game + The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. + https://github.com/juzzlin/DustRacing2D/archive/1.11.0.tar.gz + + qt5-base-devel + qt5-linguist + openal-devel + cmake + pkgconfig + libvorbis-devel + mesa-devel + mesa-glu-devel + + game/arcade/dustrac/pspec.xml + + + dustrac + + qt5-base + openal + libvorbis + libgcc + mesa + + + /usr/bin + /usr/share/games + /usr/share/locale + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/doc + + + + + 2015-11-20 + 1.11.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + alienarena + http://red.planetarena.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + COR-Entertainment-LLC + app:gui + game.fps + A standalone 3D first person shooter game + 3 Boyutlu ilkgözden nişancılık oyunu + Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. + Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. + alienarena + http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz + + libjpeg-turbo-devel + libXxf86dga-devel + libXxf86vm-devel + libX11-devel + mesa-devel + openal-devel + ode-devel + curl-devel + freetype-devel + libvorbis-devel + + + use_home_dir.patch + + game/fps/alienarena/pspec.xml + + + alienarena + + libjpeg-turbo + libXxf86vm + curl + zlib + libX11 + libvorbis + libgcc + freetype + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + alienarena.png + alienarena.desktop + + + + + 2015-11-11 + 7.66 + Rebuild for 2.0. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-09-27 + 7.66 + Version bump. + Aydın Demirel + aydin.demirel@pisilinux.org + + + 2013-01-12 + 7.60.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ode + http://www.ode.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + game.misc + High performance library for simulating rigid body dynamics + Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık + ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej + SDK (kit de développement) du moteur Open Dynamics. + ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. + ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. + Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. + mirrors://sourceforge/opende/ode-0.13.tar.bz2 + game/misc/ode/pspec.xml + + + ode + + /usr/lib + /usr/share/doc + + + + ode-devel + Development files for ode + ode için geliştirme dosyaları + Pliki nagłówkowe ode + + ode + + + /usr/bin/ode-config + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-26 + 0.13 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-03-09 + 0.12 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-05-18 + 0.12 + Enable double precision + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-08 + 0.12 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gdb + http://www.gnu.org/software/gdb/gdb.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + programming.debug + GNU debugger + GNU hata ayıklayıcısı + Depurador GNU + GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. + GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. + GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. + mirrors://gnu/gdb/gdb-7.9.1.tar.xz + + texinfo + expat-devel + python-devel + readline-devel + ncurses-devel + + programming/debug/gdb/pspec.xml + + + gdb + + guile + expat + python + readline + ncurses + + + /usr/bin + /usr/lib + /usr/share/doc/gdb + /usr/share/gdb + /usr/share/info + /usr/share/man + + + gstack.1 + + + + gdb-devel + Development files for gdb + gdb için geliştirme dosyaları + + gdb + + + /usr/include + + + + + 2015-07-30 + 7.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 7.9 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-20 + 7.7.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-19 + 7.7 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-01-25 + 7.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-23 + 7.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libctemplate + https://github.com/OlafvdSpek/ctemplate + + Pisi Linux Community + admins@pisilinux.org + + BSD + library + programming.misc + CTemplate is a simple but powerful template language for C++. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz + + glibc-devel + + programming/misc/libctemplate/pspec.xml + + + libctemplate + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libctemplate-devel + Development files for libctemplate + + libctemplate + + + /usr/include + + + + + 2015-11-22 + 2.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-29 + 2.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-05 + 2.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + xsd + http://www.codesynthesis.com/products/xsd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + An open-source, cross-platform W3C XML Schema to C++ data binding compiler + Kompilator schematów W3C XML do wiązań danych C++ + CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. + CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. + http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2 + + xerces-c-devel + boost-devel + + + xsdcxx.patch + + programming/misc/xsd/pspec.xml + + + xsd + + xerces-c + boost + + + /usr/bin + /usr/share/man + + + + xsd-devel + Development files for xsd + xsd için geliştirme dosyaları + Pliki nagłówkowe xsd + + xsd + + + /usr/include + /usr/lib/pkgconfig + + + + xsd-docs + Document files for xsd + + xsd + + + /usr/share/doc + + + + + 2014-12-24 + 4.0.0 + Rebuild for boost. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-20 + 3.3.0 + Rebuild for boost. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 3.3.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 3.3.0 + Rebuild for icu4c + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-07 + 3.3.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libnotify + http://www.galago-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + Desktop notification library + Masaüstü bildirim kitaplığı + Envoie les notifications bureautiques à un daemon de notification. + libnotify sends desktop notifications to a notification daemon. + Libnotify, masaüstü uyarılarını uyarı birimine gönderir. + Envía notificaciones de escritorio al demonio de notificaciones + http://ftp.acc.umu.se/pub/GNOME/sources/libnotify/0.7/libnotify-0.7.6.tar.xz + + gtk3-devel + gdk-pixbuf-devel + gnome-common + libepoxy-devel + at-spi2-core-devel + gobject-introspection-devel + gtk-doc + + programming/misc/libnotify/pspec.xml + + + libnotify + + gdk-pixbuf + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gir-1.0/ + /usr/share/gtk-doc/html + + + + libnotify-devel + Development files for libnotify + libnotify için geliştirme dosyaları + + libnotify + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 0.7.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-27 + 0.7.6 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-28 + 0.7.5 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-23 + 0.7.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + geoip + http://www.maxmind.com/geoip/api/c.shtml + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C library for country/city/organization to IP address or hostname mapping + Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı + GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. + GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. + https://github.com/maxmind/geoip-api-c/releases/download/v1.6.2/GeoIP-1.6.2.tar.gz + programming/misc/geoip/pspec.xml + + + geoip + + /etc + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/GeoIP + + + + geoip-devel + Geoip için geliştirme dosyaları + + geoip + + + /usr/include + + + + + 2014-07-14 + 1.6.2 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-12 + 1.5.1 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-23 + 1.5.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2011-05-30 + 1.4.7 + First release + Ertuğrul Erata + admins@pisilinux.org + + + + + + iniparser + http://ndevilla.free.fr/iniparser/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + programming.misc + A free ini file parsing library + Bir ini dosyası ayrıştırma kitaplığı + iniparser is a free stand-alone ini file parsing library written in portable ANSI C. + iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. + http://ndevilla.free.fr/iniparser/iniparser-3.1.tar.gz + + makefile.patch + + programming/misc/iniparser/pspec.xml + + + iniparser + + /usr/share/doc + /usr/lib + + + + iniparser-devel + Development files for iniparser + iniparser için geliştirme dosyaları + + iniparser + + + /usr/include + + + + + 2013-05-22 + 3.1 + rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-30 + 3.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2009-03-19 + 3.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libtevent + http://tevent.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Event system based on the talloc memory management library + talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı + libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. + libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. + http://samba.org/ftp/tevent/tevent-0.9.25.tar.gz + + python-devel + gdb-devel + libtalloc-devel + libxslt + docbook-xsl + + programming/misc/libtevent/pspec.xml + + + libtevent + + libtalloc + python + + + /usr/lib + + + + libtevent-devel + Development files for libtevent + libtevent için geliştirme dosyaları + + libtevent + libtalloc-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-30 + 0.9.25 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 0.9.21 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-23 + 0.9.21 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.9.18 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-08-17 + 0.9.18 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 0.9.18 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-26 + 0.9.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libwpg + http://libwpg.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect Graphics documents + WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı + Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. + Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. + http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2 + + doxygen + libwpd-devel + libtool + grep + pkgconfig + + programming/misc/libwpg/pspec.xml + + + libwpg + + libwpd + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpg-devel + Development files for libwpg + libwpg için geliştirme dosyaları + + libwpd-devel + librevenge-devel + libwpg + + + /usr/include + /usr/lib/pkgconfig + + + + libwpg-docs + Documentation for libwpg + + /usr/share/doc/libwpg/html + + + + + 2015-01-02 + 0.3.0 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-26 + 0.3.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.2.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 0.2.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 0.2.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + apr-util + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime utils + Apache çalışma ortamı araçları (eski sürüm) + L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. + Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. + Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. + Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. + mirrors://apache/apr/apr-util-1.5.4.tar.bz2 + + db-devel + zlib-devel + expat-devel + sqlite-devel + libutil-linux-devel + openssl-devel + unixODBC-devel + apr-devel + mariadb-lib + postgresql-lib + cyrus-sasl-devel + openldap-client + + programming/misc/apr-util/pspec.xml + + + apr-util + + db + zlib + expat + sqlite + libutil-linux + openssl + apr + unixODBC + mariadb-lib + postgresql-lib + cyrus-sasl + openldap-client + + + /usr/lib + /usr/share/doc + /usr/bin + + + + apr-util-devel + Development files for apr-util + + apr-util + apr-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-01 + 1.5.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-23 + 1.5.3 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-20 + 1.5.3 + Rebuild for Mariadb. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-09 + 1.5.3 + Rebuild for cyrus-sasl and openldap + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-28 + 1.5.3 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2013-04-23 + 1.4.1 + Dep fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-09-29 + 1.4.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libwpd + http://libwpd.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect documents + WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı + Library that handles Word Perfect documents. + Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. + mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz + + doxygen + libgsf-devel + librevenge-devel + libtool + grep + pkgconfig + + programming/misc/libwpd/pspec.xml + + + libwpd + + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpd-devel + Development files for libwpd + libwpd için geliştirme dosyaları + + libwpd + librevenge-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libwpd-docs + Documentation for libwpd + + /usr/share/doc/libwpd/html + + + + + 2015-01-06 + 0.10.0 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-26 + 0.10.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.9.9 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-29 + 0.9.9 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 0.9.6 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libspectre + http://libspectre.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + A small library for rendering Postscript documents + Postscript belgeleri görüntüleştirme için küçük bir kitaplığı + libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. + libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. + http://libspectre.freedesktop.org/releases/libspectre-0.2.7.tar.gz + + ghostscript-devel + cairo + + programming/misc/libspectre/pspec.xml + + + libspectre + + ghostscript + + + /usr/lib + /usr/share/doc + + + + libspectre-devel + Development files for libspectre + libspectre için geliştirme dosyaları + + libspectre + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libspectre-32bit + 32-bit shared libraries for libspectre + emul32 + emul32 + + ghostscript-32bit + + + libspectre + ghostscript-32bit + + + /usr/lib32 + + + + + 2015-11-02 + 0.2.7 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-30 + 0.2.7 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-01-22 + 0.2.7 + Version bump, add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-14 + 0.2.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + icu4c + http://site.icu-project.org/home + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.misc + International Components for Unicode + Unicode desteği için uluslarası bileşenler + ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. + ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. + ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. + ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. + http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz + + libgcc + + programming/misc/icu4c/pspec.xml + + + icu4c + + libgcc + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc/icu4c/html + + + + icu4c-devel + Development files for icu4c + icu4c için geliştirme dosyaları + + icu4c + + + /usr/bin/icu-config + /usr/lib/icu + /usr/share/icu + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/ + + + + icu4c-32bit + 32-bit shared libraries for icu4c + emul32 + _emul32 + + libgcc + glibc-32bit + + + icu4c + libgcc + glibc-32bit + + + /usr/lib32/libicu* + /usr/lib32/icu + + + + + 2015-07-03 + 55.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-22 + 54.1 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2014-05-17 + 53.1 + Version bump and add patch. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-13 + 52.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-27 + 51.2 + Move pc files to devel pack, rebuild + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-05-15 + 51.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-22 + 50.1.2 + Version bump, add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-24 + 50.1.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libgsf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + programming.misc + Gnome structured file library + Gnome yapılandırılmış dosya kitaplığı + The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). + Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. + mirrors://gnome/libgsf/1.14/libgsf-1.14.31.tar.xz + + libbonobo-devel + gtk2-devel + python-gtk-devel + orbit2-devel + glib2-devel + libxml2-devel + intltool + gettext-devel + perl + gobject-introspection-devel + gtk-doc + gdk-pixbuf-devel + + programming/misc/libgsf/pspec.xml + + + libgsf + app:console + library + + zlib + bzip2 + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/thumbnailers/gsf-office.thumbnailer + /usr/share/gir-1.0/Gsf-1.gir + /usr/share/man + + + + libgsf-gnome + Gnome support for libgsf + libgsf için Gnome desteği + app:console + library + + libgsf + gdk-pixbuf + + + /etc + /usr/bin/gsf-office-thumbnailer + /usr/lib/libgsf-gnome* + /usr/lib/python*/site-packages/gsf/gnome* + /usr/share/man/man1/gst-office-thumbnailer* + + + + libgsf-docs + Libgsf reference documents + libgsf referans belgeleri + data:doc + + libgsf + + + /usr/share/doc + /usr/share/gtk-doc + + + + libgsf-devel + Development files for libgsf + libgsf paketi geliştirme dosyaları + library + + libgsf + libgsf-gnome + libbonobo-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-07 + 1.14.31 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 1.14.30 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 1.14.30 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-27 + 1.14.28 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 1.14.25 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-02-23 + 1.14.25 + version bump, fix-call missing Gsf-1.gir + Erdinç Gültekin + admins@pisilinux.org + + + 2012-10-02 + 1.14.24 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xapian-core + http://www.oligarchy.co.uk/xapian + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + programming.misc + Probabilistic Information Retrieval library + İstatistiksel Bilgi Çıkarma kitaplığı + Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. + Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. + http://oligarchy.co.uk/xapian/1.2.18/xapian-core-1.2.18.tar.xz + + zlib-devel + libutil-linux-devel + + programming/misc/xapian-core/pspec.xml + + + xapian-core + + zlib + libutil-linux + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + xapian-core-devel + Development headers for xapian-core + xapian-core için geliştirme başlıkları + xapian-core-devel provides development headers for xapian-core. + xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. + library + + xapian-core + + + /usr/bin/xapian-config* + /usr/include + /usr/lib/cmake/xapian + /usr/share/aclocal + + + + xapian-core-docs + Documentation files for xapian-core + xapian-core için belgelendirme dosyaları + xapian-core-docs provides documentation files for xapian-core. + xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. + data:doc + + xapian-core + + + /usr/share/doc/xapian-core/*html + /usr/share/doc/xapian-core/apidoc.pdf + /usr/share/doc/xapian-core/apidoc/ + + + + + critical + 2014-09-02 + 1.12.18 + Version down for baloo seg fault. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-25 + 1.3.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-28 + 1.3.1 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-19 + 1.2.12 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libassuan + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.misc + Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. + IPC library for GnuPG related projects + GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı + This is the IPC library used by GnuPG 2, GPGME and a few other packages. + ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-2.2.1.tar.bz2 + + libgpg-error-devel + + programming/misc/libassuan/pspec.xml + + + libassuan + + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/info + + + + libassuan-devel + Development files for libassuan + libassuan için geliştirme dosyaları + + libassuan + + + /usr/include + /usr/share/aclocal + + + + + 2015-08-21 + 2.2.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-13 + 2.2.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-31 + 2.1.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-13 + 2.1.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-29 + 2.0.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + unixODBC + http://www.unixodbc.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + programming.misc + ODBC Interface for Linux + The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. + http://www.unixodbc.org/unixODBC-2.3.2.tar.gz + + libtool-ltdl + + programming/misc/unixODBC/pspec.xml + + + unixODBC + + libtool-ltdl + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/unixODBC/AUTHORS + /usr/share/doc/unixODBC/README + + + + unixODBC-devel + Development files for unixODBC + unixODBC için geliştirme dosyaları. + + unixODBC + + + /usr/bin/odbc_config + /usr/include + + + + unixODBC-docs + Documentation for unixODBC + unixODBC için belgelendirme dosyaları. + data:doc + + /usr/share/doc/unixODBC + + + + + 2014-05-19 + 2.3.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-10-04 + 2.3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + boost + http://boost.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language + Peer-reviewed portable C++ source libraries + Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları + Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. + Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. + Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. + mirrors://sourceforge/boost/boost_1_58_0.tar.bz2 + + icu4c-devel + zlib-devel + python-devel + bzip2 + libxslt + + + boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch + + programming/misc/boost/pspec.xml + + + boost + + icu4c + zlib + bzip2 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/boostbook + + + + boost-devel + Headers and library documentation for boost + boost için başlık dosyaları ve kitaplık belgeleri + data:doc + + boost + + + /usr/include + /usr/share/doc/*/html + + + + + 2015-07-20 + 1.58.0 + Version bump, openmpi disabled. + Ali Algul + alialgul@pisilinux.org + + + 2014-12-19 + 1.57.0 + Version bump. + Ergün Salman Aydemir + poyraz76@pisilinux.org + + + 2014-05-19 + 1.55.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-07 + 1.54.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-14 + 1.53.0 + Rebuild for icu4c + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-04 + 1.53.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-14 + 1.52.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libinput + http://www.freedesktop.org/wiki/Software/libinput/ + + Alihan Öztürk + alihan@pisilinux.org + + X11 + app:console + programming.misc + library that handles input devices for display servers and other applications that need to directly deal with input devices. + libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. + It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. + Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. + http://www.freedesktop.org/software/libinput/libinput-0.20.0.tar.xz + + libevdev + eudev-devel + libmtdev-devel + + programming/misc/libinput/pspec.xml + + + libinput + + eudev + libevdev + libmtdev + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + libinput-devel + Development files for libinput + + libinput + eudev-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-21 + 0.20.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-16 + 0.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-10-25 + 0.6.0 + Add symbolic link. + Ekin Dursun + ekin.dursun@pisilinux.org + + + 2014-09-19 + 0.6.0 + Version bump.. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-27 + 0.2.0 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + libxmlpp + http://libxmlplusplus.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ wrapper for the libxml2 XML parser library + libxml++ is a C++ wrapper for the libxml XML parser library. + http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/2.38/libxml++-2.38.1.tar.xz + + glibmm-devel + libsigc++-devel + libxml2-devel + + programming/misc/libxmlpp/pspec.xml + + + libxmlpp + + libgcc + libxml2 + glibmm + + + /usr/lib + /usr/share/doc + + + + libxmlpp-devel + Development files for libxmlpp + libxmlpp için geliştirme dosyaları + + libxmlpp + glibmm-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/libxml++-2.6 + + + + libxmlpp-docs + Development documents for libxmlpp in HTML + libxmlpp için HTML formatında geliştirme belgeleri + + /usr/share/doc/libxmlpp/html + /usr/share/devhelp + + + + + 2015-05-21 + 2.38.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2013-10-29 + 2.37.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2011-03-16 + 2.33.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libsoup + http://live.gnome.org/LibSoup + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + An HTTP library implementation in C + C için HTTP kitaplık gerçekleyicisi + libsoup is an HTTP client/server library for GNOME. + libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. + mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz + + libgcrypt-devel + gtk-doc + glib2-devel + libxml2-devel + sqlite-devel + intltool + gettext-devel + + programming/misc/libsoup/pspec.xml + + + libsoup + + glib2 + libxml2 + sqlite + glib-networking + + + /usr/lib + /usr/share/doc + /usr/share/locale/ + /usr/lib/girepository-1.0/Soup-2.4.typelib + + + + libsoup-gnome + + glib2 + libsoup + + + /usr/lib/lib*gnome* + /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib + + + + libsoup-docs + libsoup reference documents + libsoup başvuru belgeleri + data:doc + + libsoup + + + /usr/share/gtk-doc + + + + libsoup-devel + Development files for libsoup + libsoup için geliştirme dosyaları + + glib2-devel + libxml2-devel + libsoup + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libsoup-32bit + 32-bit shared libraries for libsoup + libsoup için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + + + glib2-32bit + sqlite-32bit + libxml2-32bit + glibc-32bit + libsoup + + + /usr/lib32 + + + + + 2015-06-14 + 2.50.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-20 + 2.49.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-25 + 2.46.0 + Rebuil. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-30 + 2.46.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-30 + 2.46.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02.20 + 2.44.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10.10 + 2.44.0 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-03-08 + 2.41.91 + bump + Erdinç Gültekin + erdincgultekin@gmail + + + 2013-01-29 + 2.40.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-14 + 2.40.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + dbus-c++ + http://sourceforge.net/projects/dbus-cplusplus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ bindings for DBus library + DBus kitaplığı için C++ bağlayıcıları + dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. + dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. + http://source.pisilinux.org/1.0/dbus-c++.tar.gz + + dbus + libgcc + expat + glib2 + + + dbus-c++-build-fix.patch + dbus-c++-linkfix.patch + gcc-44.patch + + programming/misc/dbus-c++/pspec.xml + + + dbus-c++ + + dbus + libgcc + expat + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + dbus-c++-devel + + dbus-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-01-21 + 0.0_20090907 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-03-07 + 0.0_20090907 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libtalloc + http://talloc.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Hierarchical pool based memory allocator + Bellek yönetim kitaplığı + libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. + libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. + http://www.samba.org/ftp/talloc/talloc-2.1.2.tar.gz + + docbook-xsl + libxslt-devel + python-devel + attr-devel + + programming/misc/libtalloc/pspec.xml + + + libtalloc + + python + attr + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtalloc-devel + Development files for libtalloc + libtalloc için geliştirme dosyaları + + libtalloc + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + libtalloc-32bit + 32-bit shared libraries for libtalloc + libtalloc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + attr-32bit + + + glibc-32bit + attr-32bit + libtalloc + + + /usr/lib32 + + + + + 2015-06-28 + 2.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 2.1.1 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-23 + 2.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.0.8 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 2.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 2.0.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libical + https://github.com/libical/libical + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + LGPLv2 + library + programming.misc + An open source reference implementation of the icalendar data type and serialization format + icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi + libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. + libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. + https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz + + cmake + + programming/misc/libical/pspec.xml + + + libical + + /usr/lib + /usr/share/libical/zoneinfo + + + + libical-devel + Development files for libical + libical için geliştirme dosyaları + + libical + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-06 + 1.0.1 + Version bump, fix date + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 1.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-27 + 1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-02 + 0.48 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + flann + http://www.cs.ubc.ca/research/flann/ + + Osman Erkan + osman.erkan@pisilinux.org + + BSD + library + programming.misc + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. + http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip + + cmake + + programming/misc/flann/pspec.xml + + + flann + + libgcc + libgomp + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/flann + + + + flann-devel + Development files for flann + + flann + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-25 + 1.8.4 + First release. + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libdbusmenu-qt + https://launchpad.net/libdbusmenu-qt + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + Qt implementation of the DBusMenu spec + DBusMenu spesifikasyonunun Qt gerçeklemesi + libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. + libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. + http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+15.10.20150604.orig.tar.gz + + libqjson-devel + mesa-devel + qt5-base-devel + doxygen + cmake + + programming/misc/libdbusmenu-qt/pspec.xml + + + libdbusmenu-qt + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libdbusmenu-qt-devel + Development files for libdbusmenu-qt + libdbusmenu-qt için geliştirme dosyaları + + libdbusmenu-qt + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-18 + 0.9.3_20150604 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 0.9.2 + rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-08 + 0.9.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.9.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-29 + 0.9.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + vigra + http://ukoethe.github.io/vigra + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.misc + Generic programming library for computer vision + Bilgisayarlı görü (computer vision) için genel programlama kitaplığı + vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. + vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. + https://github.com/ukoethe/vigra/archive/Version-1-10-0.tar.gz + + cmake + doxygen + tiff-devel + hdf5-devel + fftw3-devel + boost-devel + python-nose + python-sphinx + libpng-devel + python-numpy + python-devel + openexr-devel + libjpeg-turbo-devel + + + disable-doc.patch + + programming/misc/vigra/pspec.xml + + + vigra + + hdf5 + tiff + boost + fftw3 + libgcc + libpng + python + ilmbase + openexr-libs + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/bin + + + + vigra-devel + Development files for vigra + vigra için geliştirme dosyaları + + vigra + + + /usr/include + /usr/lib/vigra/*.cmake + + + + + 2015-02-03 + 1.10.0 + Rebuild for openexr + Yusuf Aydemir + yusuf.aydemir@gmail.com + + + + + + xerces-c + http://xml.apache.org/xerces-c + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Xerces-C++ is a validating XML parser written in a portable subset of C++ + C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı + Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. + Xerces-C++ is a validating XML parser written in a portable subset of C++. + Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. + Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ + http://mirror.metrocast.net/apache//xerces/c/3/sources/xerces-c-3.1.2.tar.gz + + icu4c-devel + curl-devel + libgcc + + programming/misc/xerces-c/pspec.xml + + + xerces-c + + icu4c + curl + libgcc + + + /usr/bin + /usr/lib + + + + xerces-c-devel + Development files for xerces-c + xerces-c için geliştirme dosyaları + + xerces-c + + + /usr/include + /usr/lib/pkgconfig + + + + xerces-c-docs + Document files for xerces-c + xerces-c için yardım dosyaları ve API belgeleri + + xerces-c + + + /usr/share/doc + + + + + 2015-11-03 + 3.1.2 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-20 + 3.1.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 3.1.1 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org + + + 2010-10-21 + 3.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + json-glib + http://live.gnome.org/JsonGlib + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Library for JavaScript Object Notation format + JavaScript Nesne Notasyon biçimi için bir kitaplık + json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. + json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. + mirrors://gnome/json-glib/1.0/json-glib-1.0.2.tar.xz + + gobject-introspection-devel + glib2-devel + + programming/misc/json-glib/pspec.xml + + + json-glib + + gobject-introspection + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + json-glib-devel + Development files for json-glib + json-glib için geliştirme dosyaları + + json-glib + glib2-devel + + + /usr/include + /usr/share/gir* + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + json-glib-32bit + 32-bit shared libraries for json-glib + json-glib için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glibc-32bit + glib2-32bit + + + glibc-32bit + glib2-32bit + json-glib + + + /usr/lib32 + + + + + 2015-03-18 + 1.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-18 + 1.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-30 + 1.0.0 + 32bit split packages. + PisiLinux Community + admins@pisilinux.org + + + 2014-03-30 + 1.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-13 + 0.16.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-09 + 0.16.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-26 + 0.15.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libsigc++ + http://libsigc.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Système de rappels à types sûrs (typesafe callback) pour C++. + Typesafe signal framework for C++ + C++ için sinyal altyapısı + libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. + libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. + mirrors://gnome/libsigc++/2.4/libsigc++-2.4.1.tar.xz + programming/misc/libsigc++/pspec.xml + + + libsigc++ + + libgcc + + + /usr/lib + /usr/share/doc + + + + libsigc++-devel + Development files for libsigc++ + libsigc++ için geliştirme dosyaları + + libsigc++ + + + /usr/include + /usr/lib/sigc++*/include + /usr/lib/pkgconfig + + + + libsigc++-docs + Development documents for libsigc++ + libsigc++ için geliştirme belgeleri + + /usr/share/doc/libsigc++/html + + + + + 2015-07-21 + 2.4.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2013-05-18 + 2.3.1 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-03-04 + 2.3.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-29 + 2.2.11 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libqjson + http://qjson.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Qt-based library that maps JSON data to QVariant objects + Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür + Implementacja Qt formatu JSON + libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. + libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. + http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz + + qt5-base-devel + cmake + + programming/misc/libqjson/pspec.xml + + + libqjson + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libqjson-devel + Development files for libqjson + libqjson için geliştirme dosyaları + Pliki nagłówkowe do libqjson + + libqjson + qt5-base-devel + + + /usr/include/qjson + /usr/lib/pkgconfig + /usr/lib/cmake/qjson + + + + + 2015-10-18 + 0.82_p1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 0.8.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.8.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 0.8.1 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-01-08 + 0.8.1 + First release + Idris Kalp + yaralikurt15@hotmail.com + + + + + + libIDL + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Constructeur d'arbre CORBA + CORBA tree builder + CORBA ağacı inşa aracı + libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. + libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. + mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 + + glib2-devel + + programming/misc/libIDL/pspec.xml + + + libIDL + + glib2 + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libIDL-devel + Development files for libIDL + + libIDL + + + /usr/bin/libIDL-config-2 + /usr/lib/pkgconfig + /usr/include + + + + + 2014-05-20 + 0.8.14 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.8.14 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.8.14 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libnice + http://nice.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + LGPLv2.1 + app:console + library + programming.misc + GLib ICE library + GLIB ICE kitaplığı + Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). + Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. + http://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz + + glib2-devel + gobject-introspection-devel + gstreamer-devel + + programming/misc/libnice/pspec.xml + + + libnice + + glib2 + libxml2 + gstreamer + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + libnice-devel + Development files for libnice + libnice için geliştirme dosyaları + + libnice + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-10-27 + 0.1.13 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 0.1.4 + runtime dep. fixed + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.1.4 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-04-19 + 0.1.4 + build with gst-10 + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-12 + 0.1.4 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 0.1.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + grantlee-qt5 + https://github.com/simonwagner/grantlee + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Qt string template engine based on the Django template system + grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. + http://source.pisilinux.org/1.0/grantlee-5.0.0.tar.gz + + mesa-devel + qt5-base-devel + qt5-script-devel + qt5-linguist + cmake + + programming/misc/grantlee-qt5/pspec.xml + + + grantlee-qt5 + + qt5-base + qt5-script + libgcc + + + /usr/bin + /etc + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + grantlee-qt5-devel + Development files for grantlee + + grantlee-qt5 + qt5-base-devel + qt5-script-devel + + + /usr/include + /usr/lib/grantlee/*.cmake + + + + + 2015-10-18 + 5.0.0 + First release,rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + qrencode + http://fukuchi.org/works/qrencode/index.en.html + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C library for encoding data in a QR code symbol + QR kod sembolüne veri gömmek için bir kitaplık + qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. + qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. + http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz + + libsdl-devel + m4 + + programming/misc/qrencode/pspec.xml + + + qrencode + + libpng + + + /usr/lib + /usr/bin/qrencode + /usr/share/man/man1 + /usr/share/doc + + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-22 + 3.4.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 3.3.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2012-04-05 + 3.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + apr + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime library + Apache portatif çalışma ortamı kitaplığı (eski sürüm) + Apache Portable Runtime – przenośna biblioteka uruchomieniowa + L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. + The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. + Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. + APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. + mirrors://apache/apr/apr-1.5.2.tar.gz + + libutil-linux-devel + + programming/misc/apr/pspec.xml + + + apr + + libutil-linux + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/lib/apr-1/build + + + + apr-devel + Development files for apr + Development files for apr + + apr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-09-01 + 1.5.2 + Version bump, fix deps. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-06-19 + 1.5.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-12-28 + 1.5.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2012-05-26 + 1.4.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ragel + http://www.complang.org/ragel/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + programming.misc + Ragel compiles executable finite state machines from regular languages. + Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. + http://fossies.org/linux/misc/ragel-6.9.tar.gz + programming/misc/ragel/pspec.xml + + + ragel + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/vim/ + + + + + 2015-11-19 + 6.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libdaemon + http://0pointer.de/lennart/projects/libdaemon + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Library for writing UNIX daemons + UNIX hizmetleri yazmak için bir kitaplığı + libdaemon is a lightweight C library which eases the writing of UNIX daemons. + libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz + programming/misc/libdaemon/pspec.xml + + + libdaemon + + /usr/lib + /usr/share/doc + + + + libdaemon-devel + Development files for libdaemon + libdaemon için geliştirme dosyaları + + libdaemon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + libdaemon-32bit + 32-bit shared libraries for libdaemon + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libdaemon + + + /usr/lib32 + + + + + 2014-03-09 + 0.14 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 0.14 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-02-15 + 0.14 + add emul32 + Erdinç Gültekin + admins@pisilinux.org + + + 2010-10-12 + 0.14 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libedit + http://www.thrysoee.dk/editline + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + An autotool and libtoolized port of the NetBSD Editline library + NetBSD Editline kitaplığının Linux portu + libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. + libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. + http://thrysoee.dk/editline/libedit-20150325-3.1.tar.gz + + ncurses-devel + + programming/misc/libedit/pspec.xml + + + libedit + + ncurses + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libedit-devel + Development files for libedit + libedit için geliştirme dosyaları + + libedit + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-06-25 + 3.1_20150325 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-19 + 3.1_20140213 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-27 + 3.1_20130712 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-17 + 3.0_20120601 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libevent + http://monkey.org/~provos/libevent + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. + A library to execute a function when a specific event occurs on a file descriptor + Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı + The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. + libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. + https://github.com/libevent/libevent/archive/release-2.0.22-stable.tar.gz + + openssl-devel + zlib-devel + + + libevent-linkage_fix.diff + libevent-2.0.13-manpages-on.patch + + programming/misc/libevent/pspec.xml + + + libevent + + openssl + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libevent-devel + Development files for libevent + libevent için geliştirme dosyaları + + libevent + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-07-30 + 2.0.22 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 2.0.21 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-25 + 2.0.21 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-27 + 2.0.21 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-03-27 + 2.0.21 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-10-14 + 2.0.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + npth + http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + New portable threads library + Yeni GNU Taşınabilir iş parçacıkları kitaplığı + Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. + is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. + Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. + ftp://ftp.gnupg.org/gcrypt/npth/npth-1.2.tar.bz2 + programming/misc/npth/pspec.xml + + + npth + + /usr/lib + /usr/share/doc + + + + npth-devel + Development files for pth + npth için geliştirme dosyaları + + npth + + + /usr/bin/npth-config + /usr/include + /usr/share/aclocal + /usr/share/man + + + + + 2015-04-12 + 1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + dotconf + http://www.opentts.org/projects/dotconf + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A library to parse configuration files + Yapılandırma dosyası ayıklama kitaplığı + dotconf is a simple-to-use and powerful configuration file parser library written in C. + dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. + http://source.pisilinux.org/1.0/dotconf-1.3.tar.gz + programming/misc/dotconf/pspec.xml + + + dotconf + + /usr/lib + /usr/share/doc + + + + dotconf-devel + Development headers and documentation for dotconf + dotconf kitaplığı için geliştirme başlıkları ve belgeleri + + dotconf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/dotconf/examples + /usr/share/doc/dotconf/dotconf-api.txt + + + + + 2015-08-25 + 1.3 + First release. + Vedat Demir + vedat@pisilinux.org + + + + + + libyaml + http://pyyaml.org/wiki/LibYAML + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + YAML 1.1 parser and emitter written in C + C ile yazılmış YAML 1.1 ayrıştırıcısı + libyaml is a YAML 1.1 parser and emitter written in C. + libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. + http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz + programming/misc/libyaml/pspec.xml + + + libyaml + + /usr/lib + /usr/share/doc + + + + libyaml-devel + Development headers for libyaml + libyaml için başlık dosyaları + libyaml-devel provides development headers for libyaml. + libyaml-devel, libyaml için başlık dosyalarını içerir. + + libyaml + + + /usr/include + /usr/share/doc/libyaml/html/ + + + + + 2015-07-22 + 0.1.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-29 + 0.1.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 0.1.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + valgrind + http://www.valgrind.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.profiler + Memory access debugger for X86 and PPC Linux platforms + X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı + Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. + Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. + http://www.valgrind.org/downloads/valgrind-3.10.1.tar.bz2 + + glibc-devel + + + valgrind-3.9.0-glibc-2.21.patch + + programming/profiler/valgrind/pspec.xml + + + valgrind + + /usr/bin + /usr/include/valgrind + /usr/lib + /usr/share/doc/valgrind + /usr/share/man + + + + + 2015-07-21 + 3.10.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-10-31 + 3.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-20 + 3.9.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-08 + 3.9.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-19 + 3.8.1 + Add glibc-2.17 patch. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-10-24 + 3.8.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + ctags + http://ctags.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Exuberant Ctags generates an index (or tag) file of objects found in source and header files + Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir + Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. + Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. + Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. + Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. + mirrors://sourceforge/ctags/ctags-5.8.tar.gz + + ctags-5.7-segment-fault.patch + ctags-5.8-f95-pointers.patch + ctags-5.8-python-vars-starting-with-def.patch + + programming/tool/ctags/pspec.xml + + + ctags + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2014-01-21 + 5.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-13 + 5.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + cppunit + http://www.freedesktop.org/wiki/Software/cppunit + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.tool + C++ port of the famous JUnit framework for unit testing + Popüler JUnit test çatısının C++ sürümü + cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. + cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. + http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz + + grep + libtool + + programming/tool/cppunit/pspec.xml + + + cppunit + + /usr/lib + /usr/share/doc + + + + cppunit-devel + Contains the headers and other files necessary for developing programs that use cppunit + + cppunit + libgcc + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/share/man + + + + + 2014-01-21 + 1.13.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-02-09 + 1.13.1 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + dev86 + http://homepage.ntlworld.com/robert.debath/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Development environment for ELKS-86 and standalone 8086 code + ELKS-86 ve 8086 kodları için geliştirme ortamı + Entorno de desarrollo para ELKS-86 y código 8086 independiente + The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. + http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.19.tar.gz + + fedora/dev86-noelks.patch + fedora/dev86-nostrip.patch + fedora/dev86-long.patch + fedora/dev86-print-overflow.patch + dont-ask-anything.patch + 64bit-build-fix.patch + makefile-fix.patch + + programming/tool/dev86/pspec.xml + + + dev86 + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2014-02-17 + 0.16.19 + Release. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-05-02 + 0.16.19 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2010-10-13 + 0.16.17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + llvm + http://www.llvm.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + NCSA + programming.build + The Low Level Virtual Machine + Düşük Seviye Sanal Makine (LLVM) + The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. + LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. + http://llvm.org/releases/3.5.0/llvm-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/cfe-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/clang-tools-extra-3.5.0.src.tar.xz + http://llvm.org/releases/3.5.0/compiler-rt-3.5.0.src.tar.xz + + zlib-devel + libxml2-devel + ncurses-devel + ocaml + libffi-devel + groff + libedit-devel + binutils + + + llvm-3.5.0-fix-cmake-llvm-exports.patch + llvm-3.5.0-force-link-pass.o.patch + + programming/build/llvm/pspec.xml + + + llvm + app:console + library + + llvm-libs + libxml2 + libgcc + ncurses + + + /usr/bin + /usr/bin/llvm-config + /usr/include/llvm* + /usr/lib/llvm + /usr/lib + /etc/ld.so.conf.d + /etc/llvm + /usr/share/doc + /usr/share/vim + /usr/share/llvm/cmake + /usr/share/kde4 + /usr/share/man + + + + llvm-libs + library + + zlib + libffi + libedit + libgcc + ncurses + + + /usr/lib/llvm/libLLVM-3* + /usr/share/licenses/llvm-libs/LICENSE + + + + llvm-ocaml + OCaml binding for LLVM + LLVM için OCaml bağlayıcısı + library + programming.language.ocaml + + llvm + ocaml + + + /usr/lib/ocaml + + + + llvm-clang-analyzer + A source code analysis framework + C ve Objective-C için kod analiz altyapısı + The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. + app:console + + llvm-clang + + + /usr/lib/clang-analyzer + /usr/bin/scan-* + + + + llvm-clang + A C language family front-end for LLVM + LLVM için C dili ailesi ön ucu + The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. + + llvm-libs + libgcc + ncurses + + + /usr/bin/clang* + /usr/bin/tblgen + /usr/lib/clang + /usr/lib/clang/libclang.so + /usr/share/man/man1/clang.1 + + + + llvm-clang-devel + Development headers for llvm-clang + llvm-clang için başlık dosyaları + + llvm-clang + + + /usr/include/clang + /usr/include/clang-c + + + + llvm-docs + Documentation for LLVM + LLVM belgeleri + data:doc + programming.docs + + /usr/share/doc/llvm/html + /usr/share/doc/llvm/ocamldoc + + + + llvm-32bit + 32-bit shared libraries for llvm + emul32 + emul32 + + zlib-32bit + libffi-32bit + + + llvm + libgcc + libedit + ncurses-32bit + zlib-32bit + libffi-32bit + + + /usr/lib32 + + + + + 2014-09-23 + 3.5.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-11 + 3.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 3.4.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-01 + 3.3 + Release bump, already cleaned. + marcin bojara + marcin@pisilinux.org + + + 2013-07-26 + 3.3 + Version bump. + marcin bojara + marcin@pisilinux.org + + + 2013-02-18 + 3.2 + version bump + PisiLinux Community + admins@pisilinux.org + + + 2012-06-11 + 3.1 + First release + marcin bojara + marcin@pisilinux.org + + + + + + ant + http://ant.apache.org + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:console + programming.build + Java-based build tool + Java tabanlı inşa aracı + Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. + Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir + Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. + http://archive.apache.org/dist/ant/source/apache-ant-1.9.6-src.tar.bz2 + + jdk7-openjdk + + + apache-ant-no-test-jar.patch + + programming/build/ant/pspec.xml + + + ant + + /etc + /usr/bin + /usr/share/ + + + 20ant + ant.conf + + + + ant-docs + Documentation package for ant build system + + /usr/share/doc + + + + + 2015-08-22 + 1.9.6 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-25 + 1.9.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-03 + 1.8.4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-04-20 + 1.8.4 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-10-06 + 1.8.4 + First release + PisiLinux Community + admins@pisilinux.org + + + signon @@ -35065,6 +72307,47 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol + + + yaml-cpp + https://github.com/jbeder/yaml-cpp + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + Libry + programming.library + yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. + To get a feel for how it can be used, see the Tutorial or How to Emit YAML. + yalm-cpp + https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz + + cmake + python-devel + boost-devel + + programming/library/yaml-cpp/pspec.xml + + + yaml-cpp + + /usr/lib/ + /usr/include/yaml-cpp/* + /usr/lib/pkgconfig/ + /usr/share/doc/ + + + + + 2015-09-01 + 0.5.2 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + libaccounts-glib @@ -35186,126 +72469,57 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - yaml-cpp - https://github.com/jbeder/yaml-cpp + libnih + https://launchpad.net/libnih - Ergün Salman - Poyraz76@pisilinux.org + Aydın Demirel + aydin.demirel@pisilinux.org - LGPLv2 - Libry + GPL + app:library programming.library - yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. - To get a feel for how it can be used, see the Tutorial or How to Emit YAML. - yalm-cpp - https://github.com/jbeder/yaml-cpp/archive/release-0.5.2.tar.gz + Small library for C application development + C uygulama geliştirme için küçük bir kütüphane + Small library for C application development. + C uygulama geliştirme için küçük bir kütüphane. + https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz - cmake - python-devel - boost-devel + dbus-devel + expat-devel - programming/library/yaml-cpp/pspec.xml + programming/library/libnih/pspec.xml - yaml-cpp - - /usr/lib/ - /usr/include/yaml-cpp/* - /usr/lib/pkgconfig/ - /usr/share/doc/ - - - - - 2015-09-01 - 0.5.2 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - libaccounts-qt5 - https://gitlab.com/accounts-sso/libaccounts-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - Qt5-based client library for accessing the online accounts database - Qt5-based client library for accessing the online accounts database - https://gitlab.com/accounts-sso/libaccounts-qt/repository/archive.tar.bz2 - - doxygen - qt5-base-devel - glib2-devel - libaccounts-glib-devel - - programming/library/libaccounts-qt5/pspec.xml - - - libaccounts-qt5 + libnih - glib2 - libgcc - qt5-base - libaccounts-glib + dbus + expat - /usr/lib/libaccounts-qt5.so.* - /usr/share/doc/libaccounts-qt5 + /usr/bin + /usr/share/man + /usr/share/aclocal + /usr/lib/* - libaccounts-qt5-devel - Development files for libaccounts-qt5 + libnih-devel - libaccounts-qt5 - glib2-devel + libnih + dbus-devel + expat-devel /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/lib/libaccounts-qt5.so - - - - libaccounts-qt5-docs - Help files and API documents for libaccounts-qt5 - data:doc - - libaccounts-qt5 - - - /usr/share/doc - - - - libaccounts-qt5-tools - This package contains the tools for the libaccounts-qt5 library - data:doc - - libaccounts-qt5 - libgcc - qt5-base - - - /usr/bin - /usr/share/libaccounts-qt-tests - 2015-10-20 - 1.14 + 2014-06-27 + 1.0.3 First release - Alihan Öztürk - alihan@pisilinux.org + Aydın Demirel + aydin.demirel@pisilinux.org @@ -35416,45 +72630,40 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libnih - https://launchpad.net/libnih + libwlocate + http://sourceforge.net/projects/libwlocate/ - Aydın Demirel - aydin.demirel@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - GPL - app:library + GPLv3 + library programming.library - Small library for C application development - C uygulama geliştirme için küçük bir kütüphane - Small library for C application development. - C uygulama geliştirme için küçük bir kütüphane. - https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz + A shared library that can be used for location-based services + libwlocate is a shared library that can be used for location-based services. + http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz - dbus-devel - expat-devel + wireless-tools-devel - programming/library/libnih/pspec.xml + programming/library/libwlocate/pspec.xml - libnih + libwlocate + A shared library that can be used for location-based services - dbus - expat + wireless-tools /usr/bin - /usr/share/man - /usr/share/aclocal - /usr/lib/* + /usr/lib + /usr/share/doc - libnih-devel + libwlocate-devel + Development files for libwlocate - libnih - dbus-devel - expat-devel + libwlocate /usr/include @@ -35462,11 +72671,145 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2014-06-27 - 1.0.3 + 2015-12-03 + 0.2 First release - Aydın Demirel - aydin.demirel@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org + + + + + + libaccounts-qt5 + https://gitlab.com/accounts-sso/libaccounts-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + library + programming.library + Qt5-based client library for accessing the online accounts database + Qt5-based client library for accessing the online accounts database + https://gitlab.com/accounts-sso/libaccounts-qt/repository/archive.tar.bz2 + + doxygen + qt5-base-devel + glib2-devel + libaccounts-glib-devel + + programming/library/libaccounts-qt5/pspec.xml + + + libaccounts-qt5 + + glib2 + libgcc + qt5-base + libaccounts-glib + + + /usr/lib/libaccounts-qt5.so.* + /usr/share/doc/libaccounts-qt5 + + + + libaccounts-qt5-devel + Development files for libaccounts-qt5 + + libaccounts-qt5 + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/lib/libaccounts-qt5.so + + + + libaccounts-qt5-docs + Help files and API documents for libaccounts-qt5 + data:doc + + libaccounts-qt5 + + + /usr/share/doc + + + + libaccounts-qt5-tools + This package contains the tools for the libaccounts-qt5 library + data:doc + + libaccounts-qt5 + libgcc + qt5-base + + + /usr/bin + /usr/share/libaccounts-qt-tests + + + + + 2015-10-20 + 1.14 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libbsd + http://libbsd.freedesktop.org + + Marcin Bojara + marcin@pisilinux.org + + BSD + BSD-2 + BSD-4 + ISC + library + programming.library + Provides useful functions commonly found on BSD systems + Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık. + This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project. + GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır. + http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz + programming/library/libbsd/pspec.xml + + + libbsd + + /usr/lib + /usr/share/doc + + + + libbsd-devel + Development files for libbsd + + libbsd + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-03-09 + 0.6.0 + Fisrt release. + Marcin Bojara + marcin@pisilinux.org @@ -35656,4569 +72999,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - libbsd - http://libbsd.freedesktop.org - - Marcin Bojara - marcin@pisilinux.org - - BSD - BSD-2 - BSD-4 - ISC - library - programming.library - Provides useful functions commonly found on BSD systems - Taşınabilirlik için BSD uyumlu fonksiyonlar sağlayan bir kitaplık. - This library provides useful functions commonly found on BSD systems, and lacking on others like GNU systems, thus making it easier to port projects with strong BSD origins, without needing to embed the same code over and over again on each project. - GNU Linux sistemlerde bulunmayan BSD sistemlere özgü fonsiyonları barındıran bir kitaplıktır ve BSD uygulamalarının GNU Linux'a taşınmasını kolaylaştırır. - http://libbsd.freedesktop.org/releases/libbsd-0.6.0.tar.xz - programming/library/libbsd/pspec.xml - - - libbsd - - /usr/lib - /usr/share/doc - - - - libbsd-devel - Development files for libbsd - - libbsd - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-03-09 - 0.6.0 - Fisrt release. - Marcin Bojara - marcin@pisilinux.org - - - - - - libwlocate - http://sourceforge.net/projects/libwlocate/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - A shared library that can be used for location-based services - libwlocate is a shared library that can be used for location-based services. - http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz - - wireless-tools-devel - - programming/library/libwlocate/pspec.xml - - - libwlocate - A shared library that can be used for location-based services - - wireless-tools - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libwlocate-devel - Development files for libwlocate - - libwlocate - - - /usr/include - - - - - 2015-12-03 - 0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ctags - http://ctags.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Exuberant Ctags generates an index (or tag) file of objects found in source and header files - Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir - Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. - Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. - Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. - Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. - mirrors://sourceforge/ctags/ctags-5.8.tar.gz - - ctags-5.7-segment-fault.patch - ctags-5.8-f95-pointers.patch - ctags-5.8-python-vars-starting-with-def.patch - - programming/tool/ctags/pspec.xml - - - ctags - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2014-01-21 - 5.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 5.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dev86 - http://homepage.ntlworld.com/robert.debath/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Development environment for ELKS-86 and standalone 8086 code - ELKS-86 ve 8086 kodları için geliştirme ortamı - Entorno de desarrollo para ELKS-86 y código 8086 independiente - The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. - http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.19.tar.gz - - fedora/dev86-noelks.patch - fedora/dev86-nostrip.patch - fedora/dev86-long.patch - fedora/dev86-print-overflow.patch - dont-ask-anything.patch - 64bit-build-fix.patch - makefile-fix.patch - - programming/tool/dev86/pspec.xml - - - dev86 - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2014-02-17 - 0.16.19 - Release. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-05-02 - 0.16.19 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-13 - 0.16.17 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - cppunit - http://www.freedesktop.org/wiki/Software/cppunit - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.tool - C++ port of the famous JUnit framework for unit testing - Popüler JUnit test çatısının C++ sürümü - cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. - cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. - http://dev-www.libreoffice.org/src/cppunit-1.13.2.tar.gz - - grep - libtool - - programming/tool/cppunit/pspec.xml - - - cppunit - - /usr/lib - /usr/share/doc - - - - cppunit-devel - Contains the headers and other files necessary for developing programs that use cppunit - - cppunit - libgcc - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/share/man - - - - - 2014-01-21 - 1.13.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-02-09 - 1.13.1 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - gdb - http://www.gnu.org/software/gdb/gdb.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - programming.debug - GNU debugger - GNU hata ayıklayıcısı - Depurador GNU - GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. - GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. - GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. - mirrors://gnu/gdb/gdb-7.9.1.tar.xz - - texinfo - expat-devel - python-devel - readline-devel - ncurses-devel - - programming/debug/gdb/pspec.xml - - - gdb - - guile - expat - python - readline - ncurses - - - /usr/bin - /usr/lib - /usr/share/doc/gdb - /usr/share/gdb - /usr/share/info - /usr/share/man - - - gstack.1 - - - - gdb-devel - Development files for gdb - gdb için geliştirme dosyaları - - gdb - - - /usr/include - - - - - 2015-07-30 - 7.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 7.9 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-20 - 7.7.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-19 - 7.7 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-01-25 - 7.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-23 - 7.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mercurial - http://www.selenic.com/mercurial - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.scm - A distributed SCM tool - Dağıtık bir kaynak kod yönetim aracı - Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. - Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi - Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. - http://mercurial.selenic.com/release/mercurial-3.3.3.tar.gz - - python-devel - - programming/scm/mercurial/pspec.xml - - - mercurial - - python - - - /usr/bin - /etc/bash_completion.d - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-04-04 - 3.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-01-10 - 3.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-07 - 2.9.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-01 - 2.8 - Ver. bump - Kamil Atlı - suvarice@gmail.com - - - 2012-10-06 - 2.3.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - subversion - http://subversion.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Subversion - app:console - service - programming.scm - A compelling replacement for CVS - Bir sürüm kontrol sistemi - SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. - SVN is a version controlling system to store files and control their change history in a repository. - Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. - http://archive.apache.org/dist/subversion/subversion-1.9.1.tar.bz2 - - apache - expat-devel - zlib-devel - ruby-devel - serf-devel - sqlite-devel - jdk7-openjdk - apr-util-devel - cyrus-sasl-devel - python-devel - dbus-devel - glib2-devel - openssl-devel - swig - - - subversion-swig-perl-install_vendor.patch - subversion.rpath.fix.patch - dont_compile_pyc.patch - - programming/scm/subversion/pspec.xml - - - subversion - - file - zlib - expat - libgcc - sqlite - apr - serf - apr-util - cyrus-sasl - - - /etc/conf.d - /etc/subversion - /etc/bash_completion.d - /usr/share/build - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - /var/svn - - - System.Service - System.Package - - - svnserve.confd - subversion.config - - - - subversion-devel - Development files for subversion - Subversion için geliştirme dosyaları - - openssl-devel - apr-devel - serf-devel - sqlite-devel - apr-util-devel - subversion - - - /usr/include - /usr/share/pkgconfig - - - - mod_dav_svn - server.web - - apr - apache - apr-util - subversion - - - /usr/lib/apache2 - /usr/libexec/mod_dav_svn.so - /usr/libexec/mod_authz_svn.so - /etc/apache2/modules.d - /var/www/localhost/htdocs - - - System.Package - - - 47_mod_dav_svn.conf - - - - - 2015-09-04 - 1.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-04 - 1.8.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-14 - 1.8.10 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-21 - 1.8.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-03 - 1.8.8 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-03 - 1.8.5 - rebuild for openjdk - Kamil Atlı - suvarice@gmail.com - - - 2014-01-11 - 1.8.5 - rebuild for cyrus-sasl - Kamil Atlı - suvarice@gmail.com - - - 2013-12-28 - 1.8.5 - Fix Deps - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-24 - 1.8.5 - Version bump, fix deps, add mandatory serf dependency. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-30 - 1.8.1 - rebuild for perl-svn-simple - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 1.8.1 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-03 - 1.8.1 - *Version bump to 1.8.1 - *Disable neon as suggested in http://subversion.apache.org/docs/release-notes/1.8.html#neon-deleted - Fatih Turgel - hitaf@pisilinux.org - - - 2012-10-24 - 1.7.7 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - git - http://git-scm.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - programming.scm - Fast Version Control System - Hızlı Sürüm Denetim Sistemi - Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. - Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. - GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. - https://www.kernel.org/pub/software/scm/git/git-2.4.4.tar.xz - - tcltk-devel - openssl-devel - libpcre-devel - curl-devel - zlib-devel - expat-devel - xmlto - asciidoc - perl-Error - perl - libxslt - util-linux - - - project-root.patch - gitk-fonts.patch - git-1.5-gitweb-home-link.patch - git-cvsps-ignore.patch - fix-gitwebdir.patch - - programming/scm/git/pspec.xml - - - git - app:console - - perl-String-ShellQuote - perl-Net-SMTP-SSL - perl-Authen-SASL - perl-libwww - libpcre - perl-Git - openssh - openssl - rsync - expat - zlib - curl - - - /usr/bin - /usr/libexec/git-core - /etc/bash_completion.d - /usr/share/git-core - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - git-daemon - GIT protocol daemon - GIT protokolü hizmeti - service - - zlib - libpcre - git - - - /etc/conf.d/git-daemon - /usr/libexec/git-core/git-daemon - /usr/share/man/man1/*daemon*.1* - /pub/scm - - - System.Service - - - git-daemon.confd - - - - perl-Git - Perl interface to GIT - GIT için perl arayüzü - library - programming.language.perl - - perl-Error - perl - - - /usr/lib/perl5 - /usr/share/man/man3/Git.3pm - - - - gitk - Git revision tree visualiser - Git sürüm ağacı görüntüleyici - app:gui - - git - tcltk - - - /usr/bin/gitk - /usr/share/gitk - /usr/share/man/man1/*gitk*.1* - - - - git-gui - Git GUI tool - GIT için basit bir grafik arayüz - app:gui - - git - gitk - tcltk - - - /usr/libexec/git-core/git-gui* - /usr/libexec/git-core/git-citool - /usr/share/git-gui - /usr/share/man/man1/git-gui.1* - /usr/share/man/man1/git-citool.1* - - - - gitweb - Simple web interface to GIT repositories - GIT için Web arayüzü - interfaz web para GIT - app:web - server.web - - git - - - /var/www/localhost - /etc/conf.d/gitweb - /etc/apache2/conf.d - - - gitweb.confd - git.conf.httpd - - - - - 2015-06-20 - 2.4.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-04-04 - 2.3.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-07 - 2.3.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-19 - 2.2.2 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-13 - 2.1.0 - Rebuild for new perl. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-16 - 2.1.0 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-25 - 2.0.1 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-01 - 2.0.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-15 - 1.9.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-11 - 1.8.5.4 - Version bump and new rsync - Alihan Öztürk - alihan@pisilinux.org - - - 2013-11-21 - 1.8.4.4 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-29 - 1.8.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-21 - 1.8.3.2 - fix dep - Kamil Atlı - suvarice@gmail.com - - - 2013-07-04 - 1.8.3.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-08 - 1.8.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-29 - 1.8.1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-28 - 1.8.0.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libgit2 - https://libgit2.github.com - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:gui - programming.scm - git c dili kütüphanesi - A linkable library for Git - git için c kütüphanesi - A plain C library to interface with the git version control system - libgit2 - https://github.com/libgit2/libgit2/archive/v0.23.0.tar.gz - - zlib-devel - openssl-devel - python - cmake - - programming/scm/libgit2/pspec.xml - - - libgit2 - - zlib - openssl - - - /usr/lib - - - - libgit2-devel - - libgit2 - zlib - openssl - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-08-01 - 0.23.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libctemplate - https://github.com/OlafvdSpek/ctemplate - - Pisi Linux Community - admins@pisilinux.org - - BSD - library - programming.misc - CTemplate is a simple but powerful template language for C++. - It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. - https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.3.tar.gz - - glibc-devel - - programming/misc/libctemplate/pspec.xml - - - libctemplate - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libctemplate-devel - Development files for libctemplate - - libctemplate - - - /usr/include - - - - - 2015-11-22 - 2.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-29 - 2.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-05 - 2.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - npth - http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - New portable threads library - Yeni GNU Taşınabilir iş parçacıkları kitaplığı - Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. - is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. - Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. - ftp://ftp.gnupg.org/gcrypt/npth/npth-1.2.tar.bz2 - programming/misc/npth/pspec.xml - - - npth - - /usr/lib - /usr/share/doc - - - - npth-devel - Development files for pth - npth için geliştirme dosyaları - - npth - - - /usr/bin/npth-config - /usr/include - /usr/share/aclocal - /usr/share/man - - - - - 2015-04-12 - 1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - iniparser - http://ndevilla.free.fr/iniparser/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - programming.misc - A free ini file parsing library - Bir ini dosyası ayrıştırma kitaplığı - iniparser is a free stand-alone ini file parsing library written in portable ANSI C. - iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. - http://ndevilla.free.fr/iniparser/iniparser-3.1.tar.gz - - makefile.patch - - programming/misc/iniparser/pspec.xml - - - iniparser - - /usr/share/doc - /usr/lib - - - - iniparser-devel - Development files for iniparser - iniparser için geliştirme dosyaları - - iniparser - - - /usr/include - - - - - 2013-05-22 - 3.1 - rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-30 - 3.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2009-03-19 - 3.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libevent - http://monkey.org/~provos/libevent - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. - A library to execute a function when a specific event occurs on a file descriptor - Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı - The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. - libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. - https://github.com/libevent/libevent/archive/release-2.0.22-stable.tar.gz - - openssl-devel - zlib-devel - - - libevent-linkage_fix.diff - libevent-2.0.13-manpages-on.patch - - programming/misc/libevent/pspec.xml - - - libevent - - openssl - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libevent-devel - Development files for libevent - libevent için geliştirme dosyaları - - libevent - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-07-30 - 2.0.22 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-31 - 2.0.21 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-25 - 2.0.21 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-27 - 2.0.21 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-03-27 - 2.0.21 - bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2012-10-14 - 2.0.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xsd - http://www.codesynthesis.com/products/xsd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - An open-source, cross-platform W3C XML Schema to C++ data binding compiler - Kompilator schematów W3C XML do wiązań danych C++ - CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. - CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. - http://codesynthesis.com/download/xsd/4.0/xsd-4.0.0+dep.tar.bz2 - - xerces-c-devel - boost-devel - - - xsdcxx.patch - - programming/misc/xsd/pspec.xml - - - xsd - - xerces-c - boost - - - /usr/bin - /usr/share/man - - - - xsd-devel - Development files for xsd - xsd için geliştirme dosyaları - Pliki nagłówkowe xsd - - xsd - - - /usr/include - /usr/lib/pkgconfig - - - - xsd-docs - Document files for xsd - - xsd - - - /usr/share/doc - - - - - 2014-12-24 - 4.0.0 - Rebuild for boost. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-20 - 3.3.0 - Rebuild for boost. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 3.3.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 3.3.0 - Rebuild for icu4c - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-07 - 3.3.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libxmlpp - http://libxmlplusplus.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ wrapper for the libxml2 XML parser library - libxml++ is a C++ wrapper for the libxml XML parser library. - http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/2.38/libxml++-2.38.1.tar.xz - - glibmm-devel - libsigc++-devel - libxml2-devel - - programming/misc/libxmlpp/pspec.xml - - - libxmlpp - - libgcc - libxml2 - glibmm - - - /usr/lib - /usr/share/doc - - - - libxmlpp-devel - Development files for libxmlpp - libxmlpp için geliştirme dosyaları - - libxmlpp - glibmm-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/libxml++-2.6 - - - - libxmlpp-docs - Development documents for libxmlpp in HTML - libxmlpp için HTML formatında geliştirme belgeleri - - /usr/share/doc/libxmlpp/html - /usr/share/devhelp - - - - - 2015-05-21 - 2.38.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-10-29 - 2.37.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2011-03-16 - 2.33.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dbus-c++ - http://sourceforge.net/projects/dbus-cplusplus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ bindings for DBus library - DBus kitaplığı için C++ bağlayıcıları - dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. - dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. - http://source.pisilinux.org/1.0/dbus-c++.tar.gz - - dbus - libgcc - expat - glib2 - - - dbus-c++-build-fix.patch - dbus-c++-linkfix.patch - gcc-44.patch - - programming/misc/dbus-c++/pspec.xml - - - dbus-c++ - - dbus - libgcc - expat - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - dbus-c++-devel - - dbus-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-01-21 - 0.0_20090907 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-03-07 - 0.0_20090907 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdbusmenu-qt - https://launchpad.net/libdbusmenu-qt - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - Qt implementation of the DBusMenu spec - DBusMenu spesifikasyonunun Qt gerçeklemesi - libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. - libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. - http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+15.10.20150604.orig.tar.gz - - libqjson-devel - mesa-devel - qt5-base-devel - doxygen - cmake - - programming/misc/libdbusmenu-qt/pspec.xml - - - libdbusmenu-qt - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libdbusmenu-qt-devel - Development files for libdbusmenu-qt - libdbusmenu-qt için geliştirme dosyaları - - libdbusmenu-qt - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-18 - 0.9.3_20150604 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.9.2 - rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-08 - 0.9.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.9.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-29 - 0.9.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libgsf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - programming.misc - Gnome structured file library - Gnome yapılandırılmış dosya kitaplığı - The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). - Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. - mirrors://gnome/libgsf/1.14/libgsf-1.14.31.tar.xz - - libbonobo-devel - gtk2-devel - python-gtk-devel - orbit2-devel - glib2-devel - libxml2-devel - intltool - gettext-devel - perl - gobject-introspection-devel - gtk-doc - gdk-pixbuf-devel - - programming/misc/libgsf/pspec.xml - - - libgsf - app:console - library - - zlib - bzip2 - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/thumbnailers/gsf-office.thumbnailer - /usr/share/gir-1.0/Gsf-1.gir - /usr/share/man - - - - libgsf-gnome - Gnome support for libgsf - libgsf için Gnome desteği - app:console - library - - libgsf - gdk-pixbuf - - - /etc - /usr/bin/gsf-office-thumbnailer - /usr/lib/libgsf-gnome* - /usr/lib/python*/site-packages/gsf/gnome* - /usr/share/man/man1/gst-office-thumbnailer* - - - - libgsf-docs - Libgsf reference documents - libgsf referans belgeleri - data:doc - - libgsf - - - /usr/share/doc - /usr/share/gtk-doc - - - - libgsf-devel - Development files for libgsf - libgsf paketi geliştirme dosyaları - library - - libgsf - libgsf-gnome - libbonobo-devel - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-07 - 1.14.31 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 1.14.30 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 1.14.30 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-27 - 1.14.28 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-17 - 1.14.25 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-23 - 1.14.25 - version bump, fix-call missing Gsf-1.gir - Erdinç Gültekin - admins@pisilinux.org - - - 2012-10-02 - 1.14.24 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libnice - http://nice.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - LGPLv2.1 - app:console - library - programming.misc - GLib ICE library - GLIB ICE kitaplığı - Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). - Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. - http://nice.freedesktop.org/releases/libnice-0.1.13.tar.gz - - glib2-devel - gobject-introspection-devel - gstreamer-devel - - programming/misc/libnice/pspec.xml - - - libnice - - glib2 - libxml2 - gstreamer - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - libnice-devel - Development files for libnice - libnice için geliştirme dosyaları - - libnice - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-27 - 0.1.13 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 0.1.4 - runtime dep. fixed - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.1.4 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-04-19 - 0.1.4 - build with gst-10 - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-04-12 - 0.1.4 - V.Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 0.1.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libical - https://github.com/libical/libical - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - LGPLv2 - library - programming.misc - An open source reference implementation of the icalendar data type and serialization format - icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi - libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. - libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. - https://github.com/libical/libical/releases/download/v1.0.1/libical-1.0.1.tar.gz - - cmake - - programming/misc/libical/pspec.xml - - - libical - - /usr/lib - /usr/share/libical/zoneinfo - - - - libical-devel - Development files for libical - libical için geliştirme dosyaları - - libical - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-10-06 - 1.0.1 - Version bump, fix date - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-01 - 1.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-27 - 1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 0.48 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xapian-core - http://www.oligarchy.co.uk/xapian - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - programming.misc - Probabilistic Information Retrieval library - İstatistiksel Bilgi Çıkarma kitaplığı - Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. - Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. - http://oligarchy.co.uk/xapian/1.2.18/xapian-core-1.2.18.tar.xz - - zlib-devel - libutil-linux-devel - - programming/misc/xapian-core/pspec.xml - - - xapian-core - - zlib - libutil-linux - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - xapian-core-devel - Development headers for xapian-core - xapian-core için geliştirme başlıkları - xapian-core-devel provides development headers for xapian-core. - xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. - library - - xapian-core - - - /usr/bin/xapian-config* - /usr/include - /usr/lib/cmake/xapian - /usr/share/aclocal - - - - xapian-core-docs - Documentation files for xapian-core - xapian-core için belgelendirme dosyaları - xapian-core-docs provides documentation files for xapian-core. - xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. - data:doc - - xapian-core - - - /usr/share/doc/xapian-core/*html - /usr/share/doc/xapian-core/apidoc.pdf - /usr/share/doc/xapian-core/apidoc/ - - - - - critical - 2014-09-02 - 1.12.18 - Version down for baloo seg fault. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-25 - 1.3.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-28 - 1.3.1 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2012-09-19 - 1.2.12 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - flann - http://www.cs.ubc.ca/research/flann/ - - Osman Erkan - osman.erkan@pisilinux.org - - BSD - library - programming.misc - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. - http://people.cs.ubc.ca/~mariusm/uploads/FLANN/flann-1.8.4-src.zip - - cmake - - programming/misc/flann/pspec.xml - - - flann - - libgcc - libgomp - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/flann - - - - flann-devel - Development files for flann - - flann - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-25 - 1.8.4 - First release. - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libnotify - http://www.galago-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Desktop notification library - Masaüstü bildirim kitaplığı - Envoie les notifications bureautiques à un daemon de notification. - libnotify sends desktop notifications to a notification daemon. - Libnotify, masaüstü uyarılarını uyarı birimine gönderir. - Envía notificaciones de escritorio al demonio de notificaciones - http://ftp.acc.umu.se/pub/GNOME/sources/libnotify/0.7/libnotify-0.7.6.tar.xz - - gtk3-devel - gdk-pixbuf-devel - gnome-common - libepoxy-devel - at-spi2-core-devel - gobject-introspection-devel - gtk-doc - - programming/misc/libnotify/pspec.xml - - - libnotify - - gdk-pixbuf - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gir-1.0/ - /usr/share/gtk-doc/html - - - - libnotify-devel - Development files for libnotify - libnotify için geliştirme dosyaları - - libnotify - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-31 - 0.7.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-27 - 0.7.6 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-28 - 0.7.5 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-23 - 0.7.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdaemon - http://0pointer.de/lennart/projects/libdaemon - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Library for writing UNIX daemons - UNIX hizmetleri yazmak için bir kitaplığı - libdaemon is a lightweight C library which eases the writing of UNIX daemons. - libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz - programming/misc/libdaemon/pspec.xml - - - libdaemon - - /usr/lib - /usr/share/doc - - - - libdaemon-devel - Development files for libdaemon - libdaemon için geliştirme dosyaları - - libdaemon - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man/man3 - - - - libdaemon-32bit - 32-bit shared libraries for libdaemon - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libdaemon - - - /usr/lib32 - - - - - 2014-03-09 - 0.14 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 0.14 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-02-15 - 0.14 - add emul32 - Erdinç Gültekin - admins@pisilinux.org - - - 2010-10-12 - 0.14 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libqjson - http://qjson.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Qt-based library that maps JSON data to QVariant objects - Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür - Implementacja Qt formatu JSON - libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. - libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. - http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz - - qt5-base-devel - cmake - - programming/misc/libqjson/pspec.xml - - - libqjson - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libqjson-devel - Development files for libqjson - libqjson için geliştirme dosyaları - Pliki nagłówkowe do libqjson - - libqjson - qt5-base-devel - - - /usr/include/qjson - /usr/lib/pkgconfig - /usr/lib/cmake/qjson - - - - - 2015-10-18 - 0.82_p1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 0.8.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 0.8.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.8.1 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-01-08 - 0.8.1 - First release - Idris Kalp - yaralikurt15@hotmail.com - - - - - - libtevent - http://tevent.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Event system based on the talloc memory management library - talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı - libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. - libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. - http://samba.org/ftp/tevent/tevent-0.9.25.tar.gz - - python-devel - gdb-devel - libtalloc-devel - libxslt - docbook-xsl - - programming/misc/libtevent/pspec.xml - - - libtevent - - libtalloc - python - - - /usr/lib - - - - libtevent-devel - Development files for libtevent - libtevent için geliştirme dosyaları - - libtevent - libtalloc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-30 - 0.9.25 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 0.9.21 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 0.9.21 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.9.18 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-08-17 - 0.9.18 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.9.18 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-26 - 0.9.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - boost - http://boost.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language - Peer-reviewed portable C++ source libraries - Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları - Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. - Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. - Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. - mirrors://sourceforge/boost/boost_1_58_0.tar.bz2 - - icu4c-devel - zlib-devel - python-devel - bzip2 - libxslt - - - boost-1.58.0-Fix-for-bind-void-mf-ambiguous-resolution-error.patch - - programming/misc/boost/pspec.xml - - - boost - - icu4c - zlib - bzip2 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/boostbook - - - - boost-devel - Headers and library documentation for boost - boost için başlık dosyaları ve kitaplık belgeleri - data:doc - - boost - - - /usr/include - /usr/share/doc/*/html - - - - - 2015-07-20 - 1.58.0 - Version bump, openmpi disabled. - Ali Algul - alialgul@pisilinux.org - - - 2014-12-19 - 1.57.0 - Version bump. - Ergün Salman Aydemir - poyraz76@pisilinux.org - - - 2014-05-19 - 1.55.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-07 - 1.54.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 1.53.0 - Rebuild for icu4c - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-04 - 1.53.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 1.52.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - json-glib - http://live.gnome.org/JsonGlib - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Library for JavaScript Object Notation format - JavaScript Nesne Notasyon biçimi için bir kitaplık - json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. - json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. - mirrors://gnome/json-glib/1.0/json-glib-1.0.2.tar.xz - - gobject-introspection-devel - glib2-devel - - programming/misc/json-glib/pspec.xml - - - json-glib - - gobject-introspection - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - json-glib-devel - Development files for json-glib - json-glib için geliştirme dosyaları - - json-glib - glib2-devel - - - /usr/include - /usr/share/gir* - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - json-glib-32bit - 32-bit shared libraries for json-glib - json-glib için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glibc-32bit - glib2-32bit - - - glibc-32bit - glib2-32bit - json-glib - - - /usr/lib32 - - - - - 2015-03-18 - 1.0.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-18 - 1.0.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-30 - 1.0.0 - 32bit split packages. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-30 - 1.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-13 - 0.16.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-09 - 0.16.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-26 - 0.15.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - apr-util - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime utils - Apache çalışma ortamı araçları (eski sürüm) - L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. - Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. - Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. - Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. - mirrors://apache/apr/apr-util-1.5.4.tar.bz2 - - db-devel - zlib-devel - expat-devel - sqlite-devel - libutil-linux-devel - openssl-devel - unixODBC-devel - apr-devel - mariadb-lib - postgresql-lib - cyrus-sasl-devel - openldap-client - - programming/misc/apr-util/pspec.xml - - - apr-util - - db - zlib - expat - sqlite - libutil-linux - openssl - apr - unixODBC - mariadb-lib - postgresql-lib - cyrus-sasl - openldap-client - - - /usr/lib - /usr/share/doc - /usr/bin - - - - apr-util-devel - Development files for apr-util - - apr-util - apr-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-01 - 1.5.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-23 - 1.5.3 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-20 - 1.5.3 - Rebuild for Mariadb. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-09 - 1.5.3 - Rebuild for cyrus-sasl and openldap - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-28 - 1.5.3 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 1.4.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-09-29 - 1.4.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libsoup - http://live.gnome.org/LibSoup - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - An HTTP library implementation in C - C için HTTP kitaplık gerçekleyicisi - libsoup is an HTTP client/server library for GNOME. - libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. - mirrors://gnome/libsoup/2.50/libsoup-2.50.0.tar.xz - - libgcrypt-devel - gtk-doc - glib2-devel - libxml2-devel - sqlite-devel - intltool - gettext-devel - - programming/misc/libsoup/pspec.xml - - - libsoup - - glib2 - libxml2 - sqlite - glib-networking - - - /usr/lib - /usr/share/doc - /usr/share/locale/ - /usr/lib/girepository-1.0/Soup-2.4.typelib - - - - libsoup-gnome - - glib2 - libsoup - - - /usr/lib/lib*gnome* - /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib - - - - libsoup-docs - libsoup reference documents - libsoup başvuru belgeleri - data:doc - - libsoup - - - /usr/share/gtk-doc - - - - libsoup-devel - Development files for libsoup - libsoup için geliştirme dosyaları - - glib2-devel - libxml2-devel - libsoup - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libsoup-32bit - 32-bit shared libraries for libsoup - libsoup için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glib2-32bit - sqlite-32bit - libxml2-32bit - glibc-32bit - - - glib2-32bit - sqlite-32bit - libxml2-32bit - glibc-32bit - libsoup - - - /usr/lib32 - - - - - 2015-06-14 - 2.50.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-20 - 2.49.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-25 - 2.46.0 - Rebuil. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.46.0 - 32bit split packages. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-30 - 2.46.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02.20 - 2.44.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10.10 - 2.44.0 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-03-08 - 2.41.91 - bump - Erdinç Gültekin - erdincgultekin@gmail - - - 2013-01-29 - 2.40.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-14 - 2.40.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libspectre - http://libspectre.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - A small library for rendering Postscript documents - Postscript belgeleri görüntüleştirme için küçük bir kitaplığı - libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. - libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. - http://libspectre.freedesktop.org/releases/libspectre-0.2.7.tar.gz - - ghostscript-devel - cairo - - programming/misc/libspectre/pspec.xml - - - libspectre - - ghostscript - - - /usr/lib - /usr/share/doc - - - - libspectre-devel - Development files for libspectre - libspectre için geliştirme dosyaları - - libspectre - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libspectre-32bit - 32-bit shared libraries for libspectre - emul32 - emul32 - - ghostscript-32bit - - - libspectre - ghostscript-32bit - - - /usr/lib32 - - - - - 2015-11-02 - 0.2.7 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-30 - 0.2.7 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-01-22 - 0.2.7 - Version bump, add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-14 - 0.2.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - geoip - http://www.maxmind.com/geoip/api/c.shtml - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C library for country/city/organization to IP address or hostname mapping - Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı - GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. - GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. - https://github.com/maxmind/geoip-api-c/releases/download/v1.6.2/GeoIP-1.6.2.tar.gz - programming/misc/geoip/pspec.xml - - - geoip - - /etc - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/GeoIP - - - - geoip-devel - Geoip için geliştirme dosyaları - - geoip - - - /usr/include - - - - - 2014-07-14 - 1.6.2 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-12 - 1.5.1 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-01-23 - 1.5.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2011-05-30 - 1.4.7 - First release - Ertuğrul Erata - admins@pisilinux.org - - - - - - libwpg - http://libwpg.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect Graphics documents - WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı - Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. - Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. - http://dev-www.libreoffice.org/src/libwpg-0.3.0.tar.bz2 - - doxygen - libwpd-devel - libtool - grep - pkgconfig - - programming/misc/libwpg/pspec.xml - - - libwpg - - libwpd - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpg-devel - Development files for libwpg - libwpg için geliştirme dosyaları - - libwpd-devel - librevenge-devel - libwpg - - - /usr/include - /usr/lib/pkgconfig - - - - libwpg-docs - Documentation for libwpg - - /usr/share/doc/libwpg/html - - - - - 2015-01-02 - 0.3.0 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-26 - 0.3.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.2.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-29 - 0.2.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 0.2.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ragel - http://www.complang.org/ragel/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - programming.misc - Ragel compiles executable finite state machines from regular languages. - Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. - http://fossies.org/linux/misc/ragel-6.9.tar.gz - programming/misc/ragel/pspec.xml - - - ragel - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/vim/ - - - - - 2015-11-19 - 6.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xerces-c - http://xml.apache.org/xerces-c - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Xerces-C++ is a validating XML parser written in a portable subset of C++ - C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı - Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. - Xerces-C++ is a validating XML parser written in a portable subset of C++. - Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. - Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ - http://mirror.metrocast.net/apache//xerces/c/3/sources/xerces-c-3.1.2.tar.gz - - icu4c-devel - curl-devel - libgcc - - programming/misc/xerces-c/pspec.xml - - - xerces-c - - icu4c - curl - libgcc - - - /usr/bin - /usr/lib - - - - xerces-c-devel - Development files for xerces-c - xerces-c için geliştirme dosyaları - - xerces-c - - - /usr/include - /usr/lib/pkgconfig - - - - xerces-c-docs - Document files for xerces-c - xerces-c için yardım dosyaları ve API belgeleri - - xerces-c - - - /usr/share/doc - - - - - 2015-11-03 - 3.1.2 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 3.1.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-18 - 3.1.1 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2010-10-21 - 3.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libedit - http://www.thrysoee.dk/editline - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - An autotool and libtoolized port of the NetBSD Editline library - NetBSD Editline kitaplığının Linux portu - libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. - libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. - http://thrysoee.dk/editline/libedit-20150325-3.1.tar.gz - - ncurses-devel - - programming/misc/libedit/pspec.xml - - - libedit - - ncurses - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libedit-devel - Development files for libedit - libedit için geliştirme dosyaları - - libedit - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-06-25 - 3.1_20150325 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-19 - 3.1_20140213 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-27 - 3.1_20130712 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-17 - 3.0_20120601 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libyaml - http://pyyaml.org/wiki/LibYAML - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - YAML 1.1 parser and emitter written in C - C ile yazılmış YAML 1.1 ayrıştırıcısı - libyaml is a YAML 1.1 parser and emitter written in C. - libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. - http://pyyaml.org/download/libyaml/yaml-0.1.5.tar.gz - programming/misc/libyaml/pspec.xml - - - libyaml - - /usr/lib - /usr/share/doc - - - - libyaml-devel - Development headers for libyaml - libyaml için başlık dosyaları - libyaml-devel provides development headers for libyaml. - libyaml-devel, libyaml için başlık dosyalarını içerir. - - libyaml - - - /usr/include - /usr/share/doc/libyaml/html/ - - - - - 2015-07-22 - 0.1.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-10-29 - 0.1.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 0.1.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - grantlee-qt5 - https://github.com/simonwagner/grantlee - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Qt string template engine based on the Django template system - grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. - http://source.pisilinux.org/1.0/grantlee-5.0.0.tar.gz - - mesa-devel - qt5-base-devel - qt5-script-devel - qt5-linguist - cmake - - programming/misc/grantlee-qt5/pspec.xml - - - grantlee-qt5 - - qt5-base - qt5-script - libgcc - - - /usr/bin - /etc - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - grantlee-qt5-devel - Development files for grantlee - - grantlee-qt5 - qt5-base-devel - qt5-script-devel - - - /usr/include - /usr/lib/grantlee/*.cmake - - - - - 2015-10-18 - 5.0.0 - First release,rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libassuan - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - programming.misc - Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. - IPC library for GnuPG related projects - GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı - This is the IPC library used by GnuPG 2, GPGME and a few other packages. - ftp://ftp.gnupg.org/gcrypt/libassuan/libassuan-2.2.1.tar.bz2 - - libgpg-error-devel - - programming/misc/libassuan/pspec.xml - - - libassuan - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - - - - libassuan-devel - Development files for libassuan - libassuan için geliştirme dosyaları - - libassuan - - - /usr/include - /usr/share/aclocal - - - - - 2015-08-21 - 2.2.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-13 - 2.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-10-31 - 2.1.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-13 - 2.1.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-29 - 2.0.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vigra - http://ukoethe.github.io/vigra - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.misc - Generic programming library for computer vision - Bilgisayarlı görü (computer vision) için genel programlama kitaplığı - vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. - vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. - https://github.com/ukoethe/vigra/archive/Version-1-10-0.tar.gz - - cmake - doxygen - tiff-devel - hdf5-devel - fftw3-devel - boost-devel - python-nose - python-sphinx - libpng-devel - python-numpy - python-devel - openexr-devel - libjpeg-turbo-devel - - - disable-doc.patch - - programming/misc/vigra/pspec.xml - - - vigra - - hdf5 - tiff - boost - fftw3 - libgcc - libpng - python - ilmbase - openexr-libs - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/bin - - - - vigra-devel - Development files for vigra - vigra için geliştirme dosyaları - - vigra - - - /usr/include - /usr/lib/vigra/*.cmake - - - - - 2015-02-03 - 1.10.0 - Rebuild for openexr - Yusuf Aydemir - yusuf.aydemir@gmail.com - - - - - - libsigc++ - http://libsigc.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Système de rappels à types sûrs (typesafe callback) pour C++. - Typesafe signal framework for C++ - C++ için sinyal altyapısı - libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. - libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. - mirrors://gnome/libsigc++/2.4/libsigc++-2.4.1.tar.xz - programming/misc/libsigc++/pspec.xml - - - libsigc++ - - libgcc - - - /usr/lib - /usr/share/doc - - - - libsigc++-devel - Development files for libsigc++ - libsigc++ için geliştirme dosyaları - - libsigc++ - - - /usr/include - /usr/lib/sigc++*/include - /usr/lib/pkgconfig - - - - libsigc++-docs - Development documents for libsigc++ - libsigc++ için geliştirme belgeleri - - /usr/share/doc/libsigc++/html - - - - - 2015-07-21 - 2.4.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-05-18 - 2.3.1 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-04 - 2.3.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-29 - 2.2.11 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - icu4c - http://site.icu-project.org/home - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.misc - International Components for Unicode - Unicode desteği için uluslarası bileşenler - ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. - ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. - ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. - ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. - http://download.icu-project.org/files/icu4c/55.1/icu4c-55_1-src.tgz - - libgcc - - programming/misc/icu4c/pspec.xml - - - icu4c - - libgcc - - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc/icu4c/html - - - - icu4c-devel - Development files for icu4c - icu4c için geliştirme dosyaları - - icu4c - - - /usr/bin/icu-config - /usr/lib/icu - /usr/share/icu - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/ - - - - icu4c-32bit - 32-bit shared libraries for icu4c - emul32 - _emul32 - - libgcc - glibc-32bit - - - icu4c - libgcc - glibc-32bit - - - /usr/lib32/libicu* - /usr/lib32/icu - - - - - 2015-07-03 - 55.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-01-22 - 54.1 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2014-05-17 - 53.1 - Version bump and add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-13 - 52.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-27 - 51.2 - Move pc files to devel pack, rebuild + V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-05-15 - 51.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 50.1.2 - Version bump, add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-24 - 50.1.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - dotconf - http://www.opentts.org/projects/dotconf - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A library to parse configuration files - Yapılandırma dosyası ayıklama kitaplığı - dotconf is a simple-to-use and powerful configuration file parser library written in C. - dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. - http://source.pisilinux.org/1.0/dotconf-1.3.tar.gz - programming/misc/dotconf/pspec.xml - - - dotconf - - /usr/lib - /usr/share/doc - - - - dotconf-devel - Development headers and documentation for dotconf - dotconf kitaplığı için geliştirme başlıkları ve belgeleri - - dotconf - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/dotconf/examples - /usr/share/doc/dotconf/dotconf-api.txt - - - - - 2015-08-25 - 1.3 - First release. - Vedat Demir - vedat@pisilinux.org - - - - - - libinput - http://www.freedesktop.org/wiki/Software/libinput/ - - Alihan Öztürk - alihan@pisilinux.org - - X11 - app:console - programming.misc - library that handles input devices for display servers and other applications that need to directly deal with input devices. - libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. - It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. - Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. - http://www.freedesktop.org/software/libinput/libinput-0.20.0.tar.xz - - libevdev - eudev-devel - libmtdev-devel - - programming/misc/libinput/pspec.xml - - - libinput - - eudev - libevdev - libmtdev - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - libinput-devel - Development files for libinput - - libinput - eudev-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-21 - 0.20.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-16 - 0.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-10-25 - 0.6.0 - Add symbolic link. - Ekin Dursun - ekin.dursun@pisilinux.org - - - 2014-09-19 - 0.6.0 - Version bump.. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-27 - 0.2.0 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - apr - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime library - Apache portatif çalışma ortamı kitaplığı (eski sürüm) - Apache Portable Runtime – przenośna biblioteka uruchomieniowa - L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. - The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. - Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. - APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. - mirrors://apache/apr/apr-1.5.2.tar.gz - - libutil-linux-devel - - programming/misc/apr/pspec.xml - - - apr - - libutil-linux - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/lib/apr-1/build - - - - apr-devel - Development files for apr - Development files for apr - - apr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-09-01 - 1.5.2 - Version bump, fix deps. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-19 - 1.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-28 - 1.5.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-05-26 - 1.4.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libIDL - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Constructeur d'arbre CORBA - CORBA tree builder - CORBA ağacı inşa aracı - libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. - libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. - mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 - - glib2-devel - - programming/misc/libIDL/pspec.xml - - - libIDL - - glib2 - - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libIDL-devel - Development files for libIDL - - libIDL - - - /usr/bin/libIDL-config-2 - /usr/lib/pkgconfig - /usr/include - - - - - 2014-05-20 - 0.8.14 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 0.8.14 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 0.8.14 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libwpd - http://libwpd.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect documents - WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı - Library that handles Word Perfect documents. - Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. - mirrors://sourceforge/libwpd/libwpd-0.10.0.tar.gz - - doxygen - libgsf-devel - librevenge-devel - libtool - grep - pkgconfig - - programming/misc/libwpd/pspec.xml - - - libwpd - - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpd-devel - Development files for libwpd - libwpd için geliştirme dosyaları - - libwpd - librevenge-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libwpd-docs - Documentation for libwpd - - /usr/share/doc/libwpd/html - - - - - 2015-01-06 - 0.10.0 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-26 - 0.10.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-24 - 0.9.9 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-29 - 0.9.9 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-14 - 0.9.6 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - qrencode - http://fukuchi.org/works/qrencode/index.en.html - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C library for encoding data in a QR code symbol - QR kod sembolüne veri gömmek için bir kitaplık - qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. - qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. - http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz - - libsdl-devel - m4 - - programming/misc/qrencode/pspec.xml - - - qrencode - - libpng - - - /usr/lib - /usr/bin/qrencode - /usr/share/man/man1 - /usr/share/doc - - - - qrencode-devel - Development files for qrencode - qrencode için geliştirme dosyaları - - qrencode - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-22 - 3.4.4 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.3.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-04-05 - 3.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - unixODBC - http://www.unixodbc.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - programming.misc - ODBC Interface for Linux - The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. - http://www.unixodbc.org/unixODBC-2.3.2.tar.gz - - libtool-ltdl - - programming/misc/unixODBC/pspec.xml - - - unixODBC - - libtool-ltdl - - - /etc - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/unixODBC/AUTHORS - /usr/share/doc/unixODBC/README - - - - unixODBC-devel - Development files for unixODBC - unixODBC için geliştirme dosyaları. - - unixODBC - - - /usr/bin/odbc_config - /usr/include - - - - unixODBC-docs - Documentation for unixODBC - unixODBC için belgelendirme dosyaları. - data:doc - - /usr/share/doc/unixODBC - - - - - 2014-05-19 - 2.3.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-04 - 2.3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libtalloc - http://talloc.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Hierarchical pool based memory allocator - Bellek yönetim kitaplığı - libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. - libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. - http://www.samba.org/ftp/talloc/talloc-2.1.2.tar.gz - - docbook-xsl - libxslt-devel - python-devel - attr-devel - - programming/misc/libtalloc/pspec.xml - - - libtalloc - - python - attr - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libtalloc-devel - Development files for libtalloc - libtalloc için geliştirme dosyaları - - libtalloc - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - libtalloc-32bit - 32-bit shared libraries for libtalloc - libtalloc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - attr-32bit - - - glibc-32bit - attr-32bit - libtalloc - - - /usr/lib32 - - - - - 2015-06-28 - 2.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-22 - 2.1.1 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-23 - 2.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.0.8 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 2.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 2.0.7 - First release - Erdem Artan - admins@pisilinux.org - - - python3 @@ -40409,2607 +73189,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - lua51 - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua51 is a powerful light-weight programming language designed for extending applications. - lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.1.5.tar.gz - - readline-devel - - - lua-5.1-cflags.diff - lua-arch.patch - - programming/language/lua51/pspec.xml - - - lua51 - - readline - - - /usr/lib - /usr/share/man/man1 - /usr/share/doc - /usr/bin - /sbin/lsmod - /usr/share/pixmaps - /usr/share/lua5.1 - /luac5.1.1/luac.1 - /lua5.1.1/lua.1 - - - lua.png - lua.pc - - - - lua51-devel - Development files for lua51 - lua51 için geliştirme dosyaları - - lua51 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-09 - 5.1.5 - fixed libraries and man pages - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-02-01 - 5.1.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - vala - http://live.gnome.org/Vala - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - programming.language - A modern programming language for GNOME - GNOME için modern bir programlama dili - Kompilator języka opartego na bibliotece GObject - Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. - Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. - Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. - mirrors://gnome/vala/0.28/vala-0.28.0.tar.xz - - glib2-devel - gobject-introspection-devel - libxslt - - programming/language/vala/pspec.xml - - - vala - app:console - library - - glib2 - - - /usr/lib/vala - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/vala-*/vapi - /usr/share/vim/vimfiles - - - vim/vala.syntax - vim/vala.ftdetect - - - - vala-docs - GNOME devhelp documentation for Vala - Vala için GNOME devhelp kitabı - Pliki dokumentacji dla kompilatora vala - data:doc - - /usr/share/devhelp - - - - vala-devel - Development files for vala - vala için geliştirme dosyaları - Pliki nagłówkowe dla kompilatora vala - - vala - - - /usr/include - /usr/lib/pkgconfig - /usr/share/pkgconfig - /usr/share/aclocal - /usr/share/vala/Makefile.vapigen - /usr/share/man/man3 - - - - - 2015-05-22 - 0.28.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-25 - 0.24.0 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-11-18 - 0.22.1 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-04-13 - 0.20.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-15 - 0.18.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - tcltk - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.tcl - Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. - An X11 toolkit implemented with the Tcl scripting language - Tcl betik dili ile yazılmış X11 araç ve kitaplıkları - Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. - Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. - mirrors://sourceforge/tcl/tk8.6.3-src.tar.gz - - tcl-devel - libX11-devel - libXft-devel - fontconfig-devel - - - tk-8.6.1-conf.patch - tk-8.6.1-fix-xft.patch - tk-8.6.1-make.patch - - programming/language/tcl/tcltk/pspec.xml - - - tcltk - - tcl - libX11 - libXft - fontconfig - - - /usr/bin - /usr/lib - /usr/lib/tk8.5 - /usr/share/doc - /usr/share/man - - - - tcltk-devel - Development files for tcltk - tcltk için geliştirme dosyaları - - tcltk - libX11-devel - tcl-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/tkConfig.sh - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-12-14 - 8.6.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-30 - 8.6.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-17 - 8.6.1 - Version bump and add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-09 - 8.6.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-26 - 8.6.0 - Move pc files to devel pack, increase release no. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-26 - 8.6.0 - bump - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-15 - 8.5.12 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - tcl - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.tcl - Tcl programming language - Tcl programlama dili - Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. - Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. - Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks - mirrors://sourceforge/tcl/tcl8.6.4-src.tar.gz - - zlib-devel - - programming/language/tcl/tcl/pspec.xml - - - tcl - - zlib - - - /usr/bin - /usr/lib - /usr/lib/tcl8.5 - /usr/share/doc - /usr/share/man - - - - tcl-devel - Development files for tcl - tcl için geliştirme dosyaları - - tcl - zlib-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/lib/tclConfig.sh - /usr/share/man/man3 - - - - sqlite-tcl - files for sqlite-tcl - - tcl - - - /usr/lib/sqlite3.8.8.3/libsqlite* - /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.3.tm - /usr/share/man/mann/tdbc_sqlite3.n - /usr/share/man/mann/sqlite3.n - - - - - 2015-06-11 - 8.6.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-03 - 8.6.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-12-12 - 8.6.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-30 - 8.6.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-17 - 8.6.1 - Add patch. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-06 - 8.6.1 - Rebuild to fix stripping. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-24 - 8.6.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-26 - 8.6.0 - Move pc files to devel pack, increase release no. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-26 - 8.6.0 - bump - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-15 - 8.5.12 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - lua - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua is a powerful light-weight programming language designed for extending applications. - lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.2.4.tar.gz - - lua.pc - - - readline-devel - - - liblua.so.patch - - programming/language/lua/pspec.xml - - - lua - - readline - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/pixmaps - - - lua.png - - - - lua-devel - Development files for lua - lua için geliştirme dosyaları - - lua - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-06-03 - 5.2.4 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2015-02-01 - 5.2.3 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-30 - 5.1.5 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 5.1.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-udev - http://packages.python.org/pyudev - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Python bindings for libudev library - libudev için Python bağlayıcısı - These bindings enable using of udev library in Python programs. - Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. - https://pypi.python.org/packages/source/p/pyudev/pyudev-0.16.1.tar.gz - - python-setuptools - eudev-devel - - programming/language/python/python-udev/pspec.xml - - - python-udev - - /usr/lib - /usr/share/doc - - - - python-udev-qt - Qt bindings for libudev library - libudev için Qt bağlayıcısı - These bindings provide udev capability for Python programs where Qt is used. - Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar. - - python-udev - python-qt - - - /usr/lib/python2*/site-packages/pyudev/pyqt4.py - - - - - 2015-08-04 - 0.16.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-24 - 0.16.1 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2013-06-26 - 0.16.1 - V.bump - PisiLinux Community - admins@pisilinux.org - - - 2011-07-11 - 0.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-MarkupSafe - http://pypi.python.org/pypi/MarkupSafe - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Implements a XML/HTML/XHTML Markup safe string for Python - XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi - python-MarkupSafe, implements a unicode subclass that supports HTML strings. - python-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. - http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz - - python-setuptools - - programming/language/python/python-MarkupSafe/pspec.xml - - - python-MarkupSafe - - /usr/lib/python2.* - /usr/share/doc - - - - - 2014-05-29 - 0.23 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-11-11 - 0.15 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-decorator - http://www.phyast.pitt.edu/~micheles/python/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Python module to simplify the usage of decorators - Dekoratör kullanımını kolaylaştıran python modulü - python-decorator simplifies the usage of decorators for the average programmer. - python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. - http://pypi.python.org/packages/source/d/decorator/decorator-4.0.2.tar.gz - - python-nose - python-setuptools - - programming/language/python/python-decorator/pspec.xml - - - python-decorator - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 4.0.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 3.4.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2013-11-06 - 3.4.0 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-11 - 3.4.0 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-lxml - http://codespeak.net/lxml - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - library - programming.language.python - lxml is the most feature-rich and easy-to-use library - Zengin içerikli ve kolay kullanımlı bir kütüphane. - lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. - Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. - http://lxml.de/files/lxml-3.3.5.tgz - - libxml2-devel - python-devel - cython - libxslt-devel - - programming/language/python/python-lxml/pspec.xml - - - python-lxml - - libxslt - libxml2 - python - - - /usr/lib - - - - python-lxml-docs - API documentation of python-lxml - python-lxml paketine ait API belgeleri - - python-lxml - - - /usr/share/doc - - - - - 2014-07-05 - 3.3.5 - Version bump - Vedat Demir - vedat@pisilinux.org - - - 2013-11-07 - 3.2.4 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-28 - 3.0.1 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-10-24 - 3.0.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dbus-python3 - http://dbus.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - AFL-2.1 - library - programming.language.python - D-Bus Python bindings - dbus-python provides a Python module which wraps the D-Bus programming API. - http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.0.tar.gz - - python3-devel - dbus-devel - dbus-glib-devel - glib2-devel - libpcre-devel - - - suppress-warnings.patch - - programming/language/python/dbus-python3/pspec.xml - - - dbus-python3 - D-Bus Python3 bindings - programming.language.python - - python3 - dbus - glib2 - dbus-glib - - - /usr/lib/python3* - - - - - 2015-10-08 - 1.2.0 - Release bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-05-11 - 1.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-28 - 1.2.0 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-23 - 1.2.0 - Version bump. Remove dbus-devel from runtime dependencies. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-25 - 1.1.1 - Dep Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-10 - 1.1.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gst-python - http://gstreamer.freedesktop.org/modules/gst-python.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GStreamer Python bindings - GStreamer Python bağlayıcıları - gst-python is a Python frontend to GStreamer. - gst-python GStreamer için Python arabirimidir. - http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.bz2 - - python-gtk-devel - python-pygobject-devel - glib2-devel - gstreamer-devel - gst-plugins-base-devel - - programming/language/python/gst-python/pspec.xml - - - gst-python - - glib2 - gstreamer - gst-plugins-base - - - /usr/lib - /usr/share/doc - /usr/share - - - - gst-python-devel - Development files for gst-python - gst-python için geliştirme dosyaları - - gst-python - python-pygobject-devel - gstreamer-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-10-21 - 0.10.22 - Version Bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-02-27 - 0.10.21 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-26 - 0.10.21 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-17 - 0.10.21 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2011-05-03 - 0.10.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-PyYAML - http://pyyaml.org/wiki/PyYAML - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - The next generation YAML parser and emitter for Python - python-pyyaml is the next generation YAML parser and emitter for Python. - http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz - - libyaml-devel - python-devel - - programming/language/python/python-PyYAML/pspec.xml - - - python-PyYAML - - libyaml - - - /usr/lib - /usr/share/doc - - - - - 2015-07-27 - 3.11 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2011-06-04 - 3.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-sphinx - http://sphinx.pocoo.org - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.python - Python documentation generator. It can generate HTML or Latex outputs - Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor - It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. - Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. - http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.2.1.tar.gz - - docutils - python-Pygments - python-Jinja2 - - - remove_docutils.patch - - programming/language/python/python-sphinx/pspec.xml - - - python-sphinx - - docutils - python-Pygments - python-Jinja2 - - - /usr/bin - /usr/lib/python* - /usr/share/doc/python-sphinx/LICENSE - - - - python-sphinx-docs - Documentation files for python-sphinx - python-sphinx için belgelendirme dosyaları - - /usr/share/doc/python-sphinx - - - - - 2015-07-27 - 1.3.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-02-27 - 1.2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-29 - 1.1.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - python-numpy - http://numeric.scipy.org - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - The fundamental package needed for scientific computing with Python - Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. - mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz - - python-devel - python-nose - libgfortran - lapack-devel - - programming/language/python/python-numpy/pspec.xml - - - python-numpy - - blas - lapack - python - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2014-05-29 - 1.8.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-27 - 1.8.0 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-01-19 - 1.8.0 - Version bump - Richard de Bruin - rr.debruin@pisilinux.org - - - 2013-11-16 - 1.7.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-13 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pip - https://pypi.python.org/pypi/pip - - Yusuf Aydemir - Yusuf.aydemir@istanbul.com - - MIT - programming.language.python - The PyPA recommended tool for installing Python packages - The PyPA recommended tool for installing Python packages - https://pypi.python.org/packages/source/p/pip/pip-7.1.2.tar.gz - - python-setuptools - python3-setuptools - python3-devel - - programming/language/python/pip/pspec.xml - - - pip - - python-setuptools - - - /usr/bin/pip2* - /usr/lib/python2* - /usr/share/doc - - - - pip3 - - python3-setuptools - - - /usr/bin/pip - /usr/bin/pip3* - /usr/lib/python3* - - - - - 2015-08-24 - 7.1.2 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2015-04-08 - 6.1.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - telepathy-python - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.language.python - Python libraries for Telepathy - Telepathy için Python kitaplıkları - telepathy-python is the Python libraries for use in Telepathy client and connection managers. - telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. - http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz - - libxslt-devel - - - telepathy-python-0.15.19-mkdir_p.patch - dont-compile-py.patch - python-telepathy-no_double_errors-py.patch - - programming/language/python/telepathy-python/pspec.xml - - - telepathy-python - - /usr/lib - /usr/share/doc - - - - - 2015-11-22 - 0.15.19 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-03 - 0.15.19 - Fix build - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-16 - 0.15.19 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-15 - 0.15.19 - Version bump - Aydın Demirel - aydin@demirel.web.tr - - - 2010-10-13 - 0.15.18 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-qt5 - http://www.riverbankcomputing.co.uk/software/pyqt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - A set of Python bindings for the Qt 5.x Toolkit - Qt5.x araçları için python bağlayıcıları - Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. - Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. - mirrors://sourceforge/pyqt/PyQt5/PyQt-5.4.2/PyQt-gpl-5.5.1.tar.gz - - dbus-devel - dbus-python3 - dbus-python-common - python3-devel - python-devel - python3-sip - python-sip - qt5-base-devel - qt5-connectivity-devel - qt5-declarative-devel - qt5-enginio-devel - qt5-location-devel - qt5-multimedia-devel - qt5-sensors-devel - qt5-serialport-devel - qt5-svg-devel - qt5-webchannel-devel - qt5-webkit-devel - qt5-websockets-devel - qt5-x11extras-devel - qt5-xmlpatterns-devel - - programming/language/python/python-qt5/pspec.xml - - - python-qt5 - A set of Python 2.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python - qt5-base - qt5-sensors - qt5-location - qt5-webkit - qt5-enginio - qt5-x11extras - qt5-svg - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - - - /usr/bin/py2uic5 - /usr/lib/python2.7/site-packages - /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so - /usr/share/qt5/qsci/api/python/Py2Qt5.api - - - - python-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python-qt5 - - - /usr/bin/py2lupdate5 - /usr/bin/py2rcc5 - /usr/share/sip/Py2Qt5 - - - - python3-qt5 - A set of Python 3.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python3 - qt5-base - qt5-sensors - qt5-location - qt5-webkit - qt5-enginio - qt5-x11extras - qt5-svg - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - - - /usr/bin/pyuic5 - /usr/lib/python3.4/site-packages - /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so - /usr/lib/qt5/plugins/designer/libpyqt5.so - /usr/share/doc - /usr/share/qt5/qsci/api/python/PyQt5.api - - - - python3-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python3-qt5 - - - /usr/bin/pylupdate5 - /usr/bin/pyrcc5 - /usr/share/sip/PyQt5 - - - - - 2015-11-02 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-10-16 - 5.5 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-07 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-pyaspects - http://github.com/baris/pyaspects - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Aspect-Oriented development for Python - Aspect-Oriented Development modules for Python. - https://github.com/baris/pyaspects/archive/0.4.4.tar.gz - programming/language/python/python-pyaspects/pspec.xml - - - python-pyaspects - - /usr/lib - /usr/share/doc - - - - - 2013-12-07 - 0.4.4 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 0.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-beaker - http://beaker.groovie.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - A Session and Caching library with WSGI Middleware - Oturum ve önbellekleme kitaplığı - python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. - python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. - http://pypi.python.org/packages/source/B/Beaker/Beaker-1.6.4.tar.gz - - python-setuptools - - programming/language/python/python-beaker/pspec.xml - - - python-beaker - - /usr/lib/ - /usr/share/doc - - - - - 2013-11-04 - 1.6.4 - Rebuild - Erdinç Gültekin - admins@pisilinux.org - - - 2012-11-11 - 1.6.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-nose - http://somethingaboutorange.com/mrl/projects/nose/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - programming.language.python - A unittest extension offering automatic test suite discovery and easy test authoring - Python için unittest genişlemesi - python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. - python-nose alternatif test tanıtma ve keşif kitaplığı. - https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz - programming/language/python/python-nose/pspec.xml - - - python-nose - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2015-08-04 - 1.3.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-27 - 1.3.3 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-05-21 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-17 - 1.3.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-13 - 1.2.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pyparted - http://people.redhat.com/dcantrel/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - programming.language.python - Python bindings for parted - Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. - pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. - pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. - pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. - https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz - - python-decorator - python-devel - parted-devel - - programming/language/python/pyparted/pspec.xml - - - pyparted - - python-decorator - parted - python - - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 3.10.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 3.10.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-09 - 3.9.5 - Revert back to 3.9 latest stable series. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-03 - 3.10 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-24 - 3.8 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - python-Jinja2 - http://jinja.pocoo.org/2/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.python - A small but fast and easy to use stand-alone template engine written in pure python - Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci - Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. - Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. - https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.2.tar.gz - - python-setuptools - python-MarkupSafe - - - drop_next_import_from_docs-jinjaext.patch - - programming/language/python/python-Jinja2/pspec.xml - - - python-Jinja2 - - /usr/lib/python* - /usr/share/doc/python-Jinja2/LICENSE - - - - python-Jinja2-docs - python-Jinja2 için belgelendirme dosyaları - - /usr/share/doc/python-Jinja2 - - - - - 2014-02-27 - 2.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 2.7.1 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-10-29 - 2.6 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pyqtermwidget5 - http://gitorious.org/qtermwidget - - Harun Gültekin - hrngultekin@gmail.com - - GPLv2 - library - programming.language.python - Python binding of terminal widget for Qt - PyQt5 tabanlı uygulamalar için basit bir terminal modulü - A simple terminal widget for using with PyQt based applications - https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz - - python-devel - python-qt5-devel - python-sip - qt5-base-devel - qtermwidget5-devel - - - py2config.patch - - programming/language/python/pyqtermwidget5/pspec.xml - - - pyqtermwidget5 - Python binding of terminal widget for Qt - - libgcc - qt5-base - qtermwidget5 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2014-06-19 - 0.1 - first build - Harun Gültekin - hrngultekin@gmail.com - - - - - - sip - http://www.riverbankcomputing.co.uk/sip - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - programming.language.python - SIP is a tool for generating bindings for C++ classes so that they can be used by Python - SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. - mirrors://sourceforge/pyqt/sip-4.16.9.tar.gz - - qt5-base-devel - python3-devel - python-devel - - programming/language/python/sip/pspec.xml - - - python-sip - Python 2.x SIP bindings for C and C++ libraries - - libgcc - python - - - /usr/bin/py2sip - /usr/lib/python2.7/ - /usr/include/python2.7 - - - - python3-sip - Python 3.x SIP bindings for C and C++ libraries - - libgcc - python3 - - - /usr/bin/sip - /usr/lib/python3* - /usr/include/python3.4m - /usr/share/licenses/python3-sip/LICENSE - - - - - 2015-09-09 - 4.16.9 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-23 - 4.16.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-Pygments - http://pygments.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - A syntax highlighting package written in Python - Python dilinde yazılmış bir sözdizimi belirtme aracı - python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. - python-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. - https://pypi.python.org/packages/source/P/Pygments/Pygments-1.6.tar.gz - programming/language/python/python-Pygments/pspec.xml - - - python-Pygments - - python-setuptools - - - /usr/bin - /usr/lib/python* - /usr/share/man - - - - python-Pygments-docs - Documentation files for python-Pygments - python-Pygments için belgelendirme dosyaları - - /usr/share/doc/python-Pygments - - - - - 2013-12-07 - 1.6 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-16 - 1.5 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-gtk - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GTK+ bindings for Python - Python için GTK+ bağlayıcıları - Bindings (liens) GTK+2 pour Python. - python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. - python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. - mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 - - cairo-devel - pango-devel - gtk2-devel - glib2-devel - python-devel - libglade-devel - python-pygobject-devel - python-numpy - python-cairo - - programming/language/python/python-gtk/pspec.xml - - - python-gtk - - pango - atk - gtk2 - cairo - gdk-pixbuf - - - /usr/lib - /usr/share/doc - - - - python-gtk-demo - Demo applications for python-gtk - python-gtk için demo uygulamalar - app:gui - - python-gtk - - - /usr/bin/pygtk-demo - /usr/lib/pygtk/2.0/pygtk-demo.py - /usr/lib/pygtk/2.0/demos - - - - python-gtk-docs - Reference documents for python-gtk - python-gtk için referans belgeleri - data:doc - - python-gtk - - - /usr/share/gtk-doc - - - - python-gtk-devel - Development files for python-gtk - python-gtk için geliştirme dosyaları - - python-gtk - python-pygobject-devel - gtk2-devel - - - /usr/bin/pygtk-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygtk - - - - - 2013-08-17 - 2.24.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 2.24.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-11 - 2.24.0 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-mako - http://www.makotemplates.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - programming.language.python - A python templating language - Python şablonlama dili - python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. - python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. - http://pypi.python.org/packages/source/M/Mako/Mako-0.9.1.tar.gz - - python-setuptools - - programming/language/python/python-mako/pspec.xml - - - python-mako - - python-beaker - python-MarkupSafe - - - /usr/bin - /usr/lib - /usr/share/doc - - - - python-mako-docs - python-mako için belgelendirme dosyaları - - python-mako - - - /usr/share/doc/*/html - /usr/share/doc/*/build - /usr/share/doc/*/examples - - - - - 2014-04-16 - 0.9.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-11 - 0.7.3 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-pygobject - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Bindings (liens) glib pour Python. - Glib bindings for Python - glib için python bağlayıcıları - pygobject is GLib's GObject library bindings for Python. - pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.xz - - python-devel - gobject-introspection-devel - - - pygobject-2.16.1-fixdetection.patch - - programming/language/python/python-pygobject/pspec.xml - - - python-pygobject - - glib2 - gobject-introspection - libffi - - - /usr/lib - /usr/share/doc - - - - python-pygobject-devel - pygobject development files - pygobject geliştirme dosyaları - - python-pygobject - gobject-introspection-devel - - - /usr/bin/pygobject-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygobject - - - - python-pygobject-docs - API documents for pygobject - pygobject için API dökümanları - data:doc - - /usr/share/gtk-doc - - - - - 2012-10-14 - 2.28.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-requests - http://www.python-requests.org/ - - Ergün Salman - ergunsalman@hotmail.com - - MIT - programming.language.python - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. - Python’s standard urllib2 module provides most of the HTTP capabilities you need - https://pypi.python.org/packages/source/r/requests/requests-2.8.1.tar.gz - - python - python3-devel - - programming/language/python/python-requests/pspec.xml - - - python-requests - - /usr/lib/python2* - /usr/share/doc - - - - python3-requests - - /usr/lib/python3* - - - - - 2015-11-06 - 2.8.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-24 - 2.7.0 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - python-six - http://pypi.python.org/pypi/six/ - - Alihan Öztürk - alihan@pisilinux.org - - MIT - app:console - programming.language.python - Python 2 and 3 compatibility utilities. - Python2 ve python3 uyumluluk programı. - python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. - python-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. - http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz - - python3-devel - - programming/language/python/python-six/pspec.xml - - - python-six - - /usr/lib/python2* - /usr/share/doc - - - - python3-six - - /usr/lib/python3* - - - - - 2015-07-24 - 1.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-31 - 1.6.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-setuptools - http://pypi.python.org/pypi/setuptools - - PisiLinux Community - admins@pisilinux.org - - PSF-2.2 - library - programming.language.python - Python setuptools - python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. - http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz - - python3-devel - - programming/language/python/python3-setuptools/pspec.xml - - - python3-setuptools - - /usr/bin/py3easy-install - /usr/bin/easy_install-3* - /usr/lib/python3* - - - - - 2015-11-07 - 0.6.49 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-24 - 0.6.49 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-17 - 0.6.35 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-08-19 - 0.6.28 - First release - Ramazan Utku - admins@pisilinux.org - - - - - - python-cups - http://cyberelk.net/tim/software/pycups - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Python interface to the CUPS API - CUPS programlama arayüzü için Python desteği - python-cups contains python bindings to wrap the CUPS API. - python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. - http://cyberelk.net/tim/data/pycups/pycups-1.9.72.tar.bz2 - - cups-devel - python-devel - - programming/language/python/python-cups/pspec.xml - - - python-cups - - cups - - - /usr/lib - /usr/share/doc - - - - - 2015-06-21 - 1.9.72 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2013-11-06 - 1.9.63 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-11 - 1.9.62 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-cairo - http://cairographics.org/pycairo - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. - Python wrapper for cairo graphics library - Cairo vektörel grafik kitaplığı için Python bağlayıcıları - Pycairo is set of Python bindings for the cairo graphics library. - http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2 - - cairo-devel - python-devel - libtool - - programming/language/python/python-cairo/pspec.xml - - - python-cairo - - cairo - python - - - /usr/lib - /usr/share/doc - - - - python-cairo-devel - Development files for python-cairo - python-cairo için geliştirme dosyaları - - python-cairo - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-01 - 1.10.0 - rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-11-05 - 1.10.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 1.8.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-pyblock - http://git.fedoraproject.org/git/pyblock.git - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - Python modules for dealing with block devices - Blok aygıtları ile ilgili python modülleri içerir - The pyblock contains Python modules for dealing with block devices. - Pyblock blok aygıtları ile ilgili python modülleri içerir - https://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 - - device-mapper-devel - python-devel - dmraid-devel - - - fix-underlinking.patch - - programming/language/python/python-pyblock/pspec.xml - - - python-pyblock - - device-mapper - dmraid - python - - - /usr/lib - /usr/share/doc - - - - - 2015-08-04 - 0.53 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-12-07 - 0.53_20111208 - Rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-05-05 - 0.53_20111208 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-19 - 0.53_20111208 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - ocaml - http://www.ocaml.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - OPL - app:console - programming.language.ocaml - Fast modern type-inferring functional programming language - Hızlı ve modern bir programlama dili - A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. - OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir - http://caml.inria.fr/pub/distrib/ocaml-4.02/ocaml-4.02.1.tar.xz - - zlib-devel - ncurses-devel - libX11-devel - chrpath - - - fedora/0001-Don-t-ignore-.-configure-it-s-a-real-git-file.patch - fedora/0002-Ensure-empty-compilerlibs-directory-is-created-by-gi.patch - fedora/0003-Don-t-add-rpaths-to-libraries.patch - fedora/0004-ocamlbyteinfo-ocamlplugininfo-Useful-utilities-from-.patch - fedora/0005-configure-Allow-user-defined-C-compiler-flags.patch - fedora/0009-arg-Add-no_arg-and-get_arg-helper-functions.patch - fedora/0010-arg-Allow-flags-such-as-flag-arg-as-well-as-flag-arg.patch - fedora/0011-PR-6517-use-ISO-C99-types-u-int-32-64-_t-in-preferen.patch - - programming/language/ocaml/ocaml/pspec.xml - - - ocaml - - zlib - ncurses - libX11 - - - /usr/bin/ - /usr/lib/ - /usr/share/doc/ - /usr/share/man/ - - - - - 2015-04-04 - 4.02.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-16 - 4.00.2 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-23 - 4.00.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-24 - 3.4.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-02-07 - 4.00.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 4.01.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-20 - 4.00.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - go @@ -43077,48 +73256,131 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - fastjar - http://savannah.nongnu.org/projects/fastjar + rhino + http://www.mozilla.org/rhino/ PisiLinux Community admins@pisilinux.org - GPLv2 - app:web + GPL2 programming.language.java - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver. - http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz + Open-source implementation of JavaScript written entirely in Java + Open-source implementation of JavaScript written entirely in Java + https://github.com/mozilla/rhino/archive/Rhino1_7_7_RELEASE.tar.gz + http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz + + rhino + rhino.1 + rhino-jsc + rhino-jsc.1 + rhino-debugger + rhino-debugger.1 + - zlib-devel + ant + re7-openjdk-headless - programming/language/java/fastjar/pspec.xml + programming/language/java/rhino/pspec.xml - fastjar - - zlib - + rhino - /usr/share/doc /usr/share/man /usr/bin - /usr/share/info + /usr/share/java/ + + 2015-08-15 + 1.7.7 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-03-03 + 1.7R_4 + Rebuild for openjdk. + Serdar Soytetir + kaptan@pisilinux.org + - 2014-06-05 - 0.98 - Rebuild for gcc + 2014-01-04 + 1.7R_4 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2012-07-23 + 1.7 + First release + Ramazan Utku + admins@pisilinux.org + + + + + + eclipse-ecj + http://www.eclipse.org + + PisiLinux Community + admins@pisilinux.org + + EPL + app:web + programming.language.java + Eclipse java bytecode compiler + Eclipse java bytecode compiler + http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar + + ant + jre7-openjdk-headless + + + 01-ecj-include-props.patch + 02-buildxml-fix-manifest.patch + + programming/language/java/eclipse-ecj/pspec.xml + + + eclipse-ecj + + /usr/share/man + /usr/bin + /usr/share/java + + + ecj + + + + + 2015-05-19 + 4.4.2_201502041700 + Version Bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-04 + 4.4.1_201409250400 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-06-04 + 4.3.1_201309111000 + Rebuild for new gcc. PisiLinux Community admins@pisilinux.org 2014-02-27 - 0.98 + 4.3.1_201309111000 First Release PisiLinux Community admins@pisilinux.org @@ -43492,64 +73754,48 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - eclipse-ecj - http://www.eclipse.org + fastjar + http://savannah.nongnu.org/projects/fastjar PisiLinux Community admins@pisilinux.org - EPL + GPLv2 app:web programming.language.java - Eclipse java bytecode compiler - Eclipse java bytecode compiler - http://download.eclipse.org/eclipse/downloads/drops4/R-4.4.2-201502041700/ecjsrc-4.4.2.jar + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver. + http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz - ant - jre7-openjdk-headless + zlib-devel - - 01-ecj-include-props.patch - 02-buildxml-fix-manifest.patch - - programming/language/java/eclipse-ecj/pspec.xml + programming/language/java/fastjar/pspec.xml - eclipse-ecj + fastjar + + zlib + + /usr/share/doc /usr/share/man /usr/bin - /usr/share/java + /usr/share/info - - ecj - - - 2015-05-19 - 4.4.2_201502041700 - Version Bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-06-04 - 4.4.1_201409250400 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - 2014-06-04 - 4.3.1_201309111000 - Rebuild for new gcc. + 2014-06-05 + 0.98 + Rebuild for gcc PisiLinux Community admins@pisilinux.org 2014-02-27 - 4.3.1_201309111000 + 0.98 First Release PisiLinux Community admins@pisilinux.org @@ -43558,71 +73804,5075 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - rhino - http://www.mozilla.org/rhino/ + lua + http://www.lua.org PisiLinux Community admins@pisilinux.org - GPL2 - programming.language.java - Open-source implementation of JavaScript written entirely in Java - Open-source implementation of JavaScript written entirely in Java - https://github.com/mozilla/rhino/archive/Rhino1_7_7_RELEASE.tar.gz - http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz + LGPLv2 + library + programming.language + A light-weight programming language + Hafif bir programlama dili + lua is a powerful light-weight programming language designed for extending applications. + lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.2.4.tar.gz - rhino - rhino.1 - rhino-jsc - rhino-jsc.1 - rhino-debugger - rhino-debugger.1 + lua.pc - ant - re7-openjdk-headless + readline-devel - programming/language/java/rhino/pspec.xml + + liblua.so.patch + + programming/language/lua/pspec.xml - rhino + lua + + readline + + /usr/lib /usr/share/man + /usr/share/doc /usr/bin - /usr/share/java/ + /usr/share/pixmaps + + + lua.png + + + + lua-devel + Development files for lua + lua için geliştirme dosyaları + + lua + + + /usr/include + /usr/lib/pkgconfig - 2015-08-15 - 1.7.7 - Version Bump. - Osman Erkan - osman.erkan@pisilinux.org + 2015-06-03 + 5.2.4 + Version bump. + Vedat Demir + vedat@pisilinux.org - 2014-03-03 - 1.7R_4 - Rebuild for openjdk. + 2015-02-01 + 5.2.3 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-30 + 5.1.5 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-13 + 5.1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lua51 + http://www.lua.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.language + A light-weight programming language + Hafif bir programlama dili + lua51 is a powerful light-weight programming language designed for extending applications. + lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.1.5.tar.gz + + readline-devel + + + lua-5.1-cflags.diff + lua-arch.patch + + programming/language/lua51/pspec.xml + + + lua51 + + readline + + + /usr/lib + /usr/share/man/man1 + /usr/share/doc + /usr/bin + /sbin/lsmod + /usr/share/pixmaps + /usr/share/lua5.1 + /luac5.1.1/luac.1 + /lua5.1.1/lua.1 + + + lua.png + lua.pc + + + + lua51-devel + Development files for lua51 + lua51 için geliştirme dosyaları + + lua51 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-09 + 5.1.5 + fixed libraries and man pages + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-02-01 + 5.1.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + ocaml + http://www.ocaml.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + OPL + app:console + programming.language.ocaml + Fast modern type-inferring functional programming language + Hızlı ve modern bir programlama dili + A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. + OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir + http://caml.inria.fr/pub/distrib/ocaml-4.02/ocaml-4.02.1.tar.xz + + zlib-devel + ncurses-devel + libX11-devel + chrpath + + + fedora/0001-Don-t-ignore-.-configure-it-s-a-real-git-file.patch + fedora/0002-Ensure-empty-compilerlibs-directory-is-created-by-gi.patch + fedora/0003-Don-t-add-rpaths-to-libraries.patch + fedora/0004-ocamlbyteinfo-ocamlplugininfo-Useful-utilities-from-.patch + fedora/0005-configure-Allow-user-defined-C-compiler-flags.patch + fedora/0009-arg-Add-no_arg-and-get_arg-helper-functions.patch + fedora/0010-arg-Allow-flags-such-as-flag-arg-as-well-as-flag-arg.patch + fedora/0011-PR-6517-use-ISO-C99-types-u-int-32-64-_t-in-preferen.patch + + programming/language/ocaml/ocaml/pspec.xml + + + ocaml + + zlib + ncurses + libX11 + + + /usr/bin/ + /usr/lib/ + /usr/share/doc/ + /usr/share/man/ + + + + + 2015-04-04 + 4.02.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-11-16 + 4.00.2 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-23 + 4.00.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-24 + 3.4.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-07 + 4.00.1 + Rebuild. Serdar Soytetir kaptan@pisilinux.org - 2014-01-04 - 1.7R_4 - Version bump + 2014-01-29 + 4.01.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-20 + 4.00.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + python-gtk + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GTK+ bindings for Python + Python için GTK+ bağlayıcıları + Bindings (liens) GTK+2 pour Python. + python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. + python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. + mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 + + cairo-devel + pango-devel + gtk2-devel + glib2-devel + python-devel + libglade-devel + python-pygobject-devel + python-numpy + python-cairo + + programming/language/python/python-gtk/pspec.xml + + + python-gtk + + pango + atk + gtk2 + cairo + gdk-pixbuf + + + /usr/lib + /usr/share/doc + + + + python-gtk-demo + Demo applications for python-gtk + python-gtk için demo uygulamalar + app:gui + + python-gtk + + + /usr/bin/pygtk-demo + /usr/lib/pygtk/2.0/pygtk-demo.py + /usr/lib/pygtk/2.0/demos + + + + python-gtk-docs + Reference documents for python-gtk + python-gtk için referans belgeleri + data:doc + + python-gtk + + + /usr/share/gtk-doc + + + + python-gtk-devel + Development files for python-gtk + python-gtk için geliştirme dosyaları + + python-gtk + python-pygobject-devel + gtk2-devel + + + /usr/bin/pygtk-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygtk + + + + + 2013-08-17 + 2.24.0 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 2.24.0 + Dep Fixed PisiLinux Community admins@pisilinux.org - 2012-07-23 - 1.7 + 2012-11-11 + 2.24.0 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-PyYAML + http://pyyaml.org/wiki/PyYAML + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + The next generation YAML parser and emitter for Python + python-pyyaml is the next generation YAML parser and emitter for Python. + http://pyyaml.org/download/pyyaml/PyYAML-3.11.tar.gz + + libyaml-devel + python-devel + + programming/language/python/python-PyYAML/pspec.xml + + + python-PyYAML + + libyaml + + + /usr/lib + /usr/share/doc + + + + + 2015-07-27 + 3.11 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2011-06-04 + 3.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-requests + http://www.python-requests.org/ + + Ergün Salman + ergunsalman@hotmail.com + + MIT + programming.language.python + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. + Python’s standard urllib2 module provides most of the HTTP capabilities you need + https://pypi.python.org/packages/source/r/requests/requests-2.8.1.tar.gz + + python + python3-devel + + programming/language/python/python-requests/pspec.xml + + + python-requests + + /usr/lib/python2* + /usr/share/doc + + + + python3-requests + + /usr/lib/python3* + + + + + 2015-11-06 + 2.8.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-08-24 + 2.7.0 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + pyqtermwidget5 + http://gitorious.org/qtermwidget + + Harun Gültekin + hrngultekin@gmail.com + + GPLv2 + library + programming.language.python + Python binding of terminal widget for Qt + PyQt5 tabanlı uygulamalar için basit bir terminal modulü + A simple terminal widget for using with PyQt based applications + https://github.com/hrngultekin/pyqtermwidget5/archive/pyqtermwidget5-v0.1.tar.gz + + python-devel + python-qt5-devel + python-sip + qt5-base-devel + qtermwidget5-devel + + + py2config.patch + + programming/language/python/pyqtermwidget5/pspec.xml + + + pyqtermwidget5 + Python binding of terminal widget for Qt + + libgcc + qt5-base + qtermwidget5 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2014-06-19 + 0.1 + first build + Harun Gültekin + hrngultekin@gmail.com + + + + + + python-mako + http://www.makotemplates.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + programming.language.python + A python templating language + Python şablonlama dili + python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. + python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. + http://pypi.python.org/packages/source/M/Mako/Mako-0.9.1.tar.gz + + python-setuptools + + programming/language/python/python-mako/pspec.xml + + + python-mako + + python-beaker + python-MarkupSafe + + + /usr/bin + /usr/lib + /usr/share/doc + + + + python-mako-docs + python-mako için belgelendirme dosyaları + + python-mako + + + /usr/share/doc/*/html + /usr/share/doc/*/build + /usr/share/doc/*/examples + + + + + 2014-04-16 + 0.9.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-11-11 + 0.7.3 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-lxml + http://codespeak.net/lxml + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + library + programming.language.python + lxml is the most feature-rich and easy-to-use library + Zengin içerikli ve kolay kullanımlı bir kütüphane. + lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. + Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. + http://lxml.de/files/lxml-3.3.5.tgz + + libxml2-devel + python-devel + cython + libxslt-devel + + programming/language/python/python-lxml/pspec.xml + + + python-lxml + + libxslt + libxml2 + python + + + /usr/lib + + + + python-lxml-docs + API documentation of python-lxml + python-lxml paketine ait API belgeleri + + python-lxml + + + /usr/share/doc + + + + + 2014-07-05 + 3.3.5 + Version bump + Vedat Demir + vedat@pisilinux.org + + + 2013-11-07 + 3.2.4 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-07-28 + 3.0.1 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-10-24 + 3.0.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-numpy + http://numeric.scipy.org + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + The fundamental package needed for scientific computing with Python + Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. + mirrors://sourceforge/numpy/numpy-1.8.1.tar.gz + + python-devel + python-nose + libgfortran + lapack-devel + + programming/language/python/python-numpy/pspec.xml + + + python-numpy + + blas + lapack + python + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2014-05-29 + 1.8.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-27 + 1.8.0 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-01-19 + 1.8.0 + Version bump + Richard de Bruin + rr.debruin@pisilinux.org + + + 2013-11-16 + 1.7.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-13 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-sphinx + http://sphinx.pocoo.org + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.python + Python documentation generator. It can generate HTML or Latex outputs + Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor + It's a very common documentation generator especially using for python based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. + Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. + http://pypi.python.org/packages/source/S/Sphinx/Sphinx-1.2.1.tar.gz + + docutils + python-Pygments + python-Jinja2 + + + remove_docutils.patch + + programming/language/python/python-sphinx/pspec.xml + + + python-sphinx + + docutils + python-Pygments + python-Jinja2 + + + /usr/bin + /usr/lib/python* + /usr/share/doc/python-sphinx/LICENSE + + + + python-sphinx-docs + Documentation files for python-sphinx + python-sphinx için belgelendirme dosyaları + + /usr/share/doc/python-sphinx + + + + + 2015-07-27 + 1.3.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-02-27 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-29 + 1.1.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-decorator + http://www.phyast.pitt.edu/~micheles/python/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Python module to simplify the usage of decorators + Dekoratör kullanımını kolaylaştıran python modulü + python-decorator simplifies the usage of decorators for the average programmer. + python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. + http://pypi.python.org/packages/source/d/decorator/decorator-4.0.2.tar.gz + + python-nose + python-setuptools + + programming/language/python/python-decorator/pspec.xml + + + python-decorator + + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 4.0.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 3.4.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2013-11-06 + 3.4.0 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-11 + 3.4.0 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-pygobject + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Bindings (liens) glib pour Python. + Glib bindings for Python + glib için python bağlayıcıları + pygobject is GLib's GObject library bindings for Python. + pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. + http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.6.tar.xz + + python-devel + gobject-introspection-devel + + + pygobject-2.16.1-fixdetection.patch + + programming/language/python/python-pygobject/pspec.xml + + + python-pygobject + + glib2 + gobject-introspection + libffi + + + /usr/lib + /usr/share/doc + + + + python-pygobject-devel + pygobject development files + pygobject geliştirme dosyaları + + python-pygobject + gobject-introspection-devel + + + /usr/bin/pygobject-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygobject + + + + python-pygobject-docs + API documents for pygobject + pygobject için API dökümanları + data:doc + + /usr/share/gtk-doc + + + + + 2012-10-14 + 2.28.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-cairo + http://cairographics.org/pycairo + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. + Python wrapper for cairo graphics library + Cairo vektörel grafik kitaplığı için Python bağlayıcıları + Pycairo is set of Python bindings for the cairo graphics library. + http://cairographics.org/releases/py2cairo-1.10.0.tar.bz2 + + cairo-devel + python-devel + libtool + + programming/language/python/python-cairo/pspec.xml + + + python-cairo + + cairo + python + + + /usr/lib + /usr/share/doc + + + + python-cairo-devel + Development files for python-cairo + python-cairo için geliştirme dosyaları + + python-cairo + cairo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-06-01 + 1.10.0 + rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-11-05 + 1.10.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-10-13 + 1.8.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-Jinja2 + http://jinja.pocoo.org/2/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.python + A small but fast and easy to use stand-alone template engine written in pure python + Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci + Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. + Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. + https://pypi.python.org/packages/source/J/Jinja2/Jinja2-2.7.2.tar.gz + + python-setuptools + python-MarkupSafe + + + drop_next_import_from_docs-jinjaext.patch + + programming/language/python/python-Jinja2/pspec.xml + + + python-Jinja2 + + /usr/lib/python* + /usr/share/doc/python-Jinja2/LICENSE + + + + python-Jinja2-docs + python-Jinja2 için belgelendirme dosyaları + + /usr/share/doc/python-Jinja2 + + + + + 2014-02-27 + 2.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-09 + 2.7.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-29 + 2.6 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-qt5 + http://www.riverbankcomputing.co.uk/software/pyqt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + A set of Python bindings for the Qt 5.x Toolkit + Qt5.x araçları için python bağlayıcıları + Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. + Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. + mirrors://sourceforge/pyqt/PyQt5/PyQt-5.4.2/PyQt-gpl-5.5.1.tar.gz + + dbus-devel + dbus-python3 + dbus-python-common + python3-devel + python-devel + python3-sip + python-sip + qt5-base-devel + qt5-connectivity-devel + qt5-declarative-devel + qt5-enginio-devel + qt5-location-devel + qt5-multimedia-devel + qt5-sensors-devel + qt5-serialport-devel + qt5-svg-devel + qt5-webchannel-devel + qt5-webkit-devel + qt5-websockets-devel + qt5-x11extras-devel + qt5-xmlpatterns-devel + + programming/language/python/python-qt5/pspec.xml + + + python-qt5 + A set of Python 2.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python + qt5-base + qt5-sensors + qt5-location + qt5-webkit + qt5-enginio + qt5-x11extras + qt5-svg + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + + + /usr/bin/py2uic5 + /usr/lib/python2.7/site-packages + /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so + /usr/share/qt5/qsci/api/python/Py2Qt5.api + + + + python-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python-qt5 + + + /usr/bin/py2lupdate5 + /usr/bin/py2rcc5 + /usr/share/sip/Py2Qt5 + + + + python3-qt5 + A set of Python 3.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python3 + qt5-base + qt5-sensors + qt5-location + qt5-webkit + qt5-enginio + qt5-x11extras + qt5-svg + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + + + /usr/bin/pyuic5 + /usr/lib/python3.4/site-packages + /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so + /usr/lib/qt5/plugins/designer/libpyqt5.so + /usr/share/doc + /usr/share/qt5/qsci/api/python/PyQt5.api + + + + python3-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python3-qt5 + + + /usr/bin/pylupdate5 + /usr/bin/pyrcc5 + /usr/share/sip/PyQt5 + + + + + 2015-11-02 + 5.5.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-10-16 + 5.5 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-09-07 + 5.4.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-pyblock + http://git.fedoraproject.org/git/pyblock.git + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + Python modules for dealing with block devices + Blok aygıtları ile ilgili python modülleri içerir + The pyblock contains Python modules for dealing with block devices. + Pyblock blok aygıtları ile ilgili python modülleri içerir + https://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 + + device-mapper-devel + python-devel + dmraid-devel + + + fix-underlinking.patch + + programming/language/python/python-pyblock/pspec.xml + + + python-pyblock + + device-mapper + dmraid + python + + + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 0.53 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-12-07 + 0.53_20111208 + Rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-05-05 + 0.53_20111208 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-11-19 + 0.53_20111208 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + python3-setuptools + http://pypi.python.org/pypi/setuptools + + PisiLinux Community + admins@pisilinux.org + + PSF-2.2 + library + programming.language.python + Python setuptools + python-setuptools is a collection of enhancements to the Python distutils that allow you to more easily build and distribute Python packages, especially ones that have dependencies on other packages. + http://pypi.python.org/packages/source/d/distribute/distribute-0.6.49.tar.gz + + python3-devel + + programming/language/python/python3-setuptools/pspec.xml + + + python3-setuptools + + /usr/bin/py3easy-install + /usr/bin/easy_install-3* + /usr/lib/python3* + + + + + 2015-11-07 + 0.6.49 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-24 + 0.6.49 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-02-17 + 0.6.35 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-08-19 + 0.6.28 First release Ramazan Utku admins@pisilinux.org + + + pyparted + http://people.redhat.com/dcantrel/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + programming.language.python + Python bindings for parted + Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. + pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. + pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. + pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. + https://github.com/rhinstaller/pyparted/archive/v3.10.5.tar.gz + + python-decorator + python-devel + parted-devel + + programming/language/python/pyparted/pspec.xml + + + pyparted + + python-decorator + parted + python + + + /usr/lib + /usr/share/doc + + + + + 2015-08-04 + 3.10.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-21 + 3.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-08-09 + 3.9.5 + Revert back to 3.9 latest stable series. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-03 + 3.10 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-24 + 3.8 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-beaker + http://beaker.groovie.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + A Session and Caching library with WSGI Middleware + Oturum ve önbellekleme kitaplığı + python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. + python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. + http://pypi.python.org/packages/source/B/Beaker/Beaker-1.6.4.tar.gz + + python-setuptools + + programming/language/python/python-beaker/pspec.xml + + + python-beaker + + /usr/lib/ + /usr/share/doc + + + + + 2013-11-04 + 1.6.4 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-11 + 1.6.4 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-six + http://pypi.python.org/pypi/six/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:console + programming.language.python + Python 2 and 3 compatibility utilities. + Python2 ve python3 uyumluluk programı. + python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. + python-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. + http://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz + + python3-devel + + programming/language/python/python-six/pspec.xml + + + python-six + + /usr/lib/python2* + /usr/share/doc + + + + python3-six + + /usr/lib/python3* + + + + + 2015-07-24 + 1.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-31 + 1.6.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pip + https://pypi.python.org/pypi/pip + + Yusuf Aydemir + Yusuf.aydemir@istanbul.com + + MIT + programming.language.python + The PyPA recommended tool for installing Python packages + The PyPA recommended tool for installing Python packages + https://pypi.python.org/packages/source/p/pip/pip-7.1.2.tar.gz + + python-setuptools + python3-setuptools + python3-devel + + programming/language/python/pip/pspec.xml + + + pip + + python-setuptools + + + /usr/bin/pip2* + /usr/lib/python2* + /usr/share/doc + + + + pip3 + + python3-setuptools + + + /usr/bin/pip + /usr/bin/pip3* + /usr/lib/python3* + + + + + 2015-08-24 + 7.1.2 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2015-04-08 + 6.1.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-cups + http://cyberelk.net/tim/software/pycups + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Python interface to the CUPS API + CUPS programlama arayüzü için Python desteği + python-cups contains python bindings to wrap the CUPS API. + python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. + http://cyberelk.net/tim/data/pycups/pycups-1.9.72.tar.bz2 + + cups-devel + python-devel + + programming/language/python/python-cups/pspec.xml + + + python-cups + + cups + + + /usr/lib + /usr/share/doc + + + + + 2015-06-21 + 1.9.72 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2013-11-06 + 1.9.63 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-11 + 1.9.62 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-MarkupSafe + http://pypi.python.org/pypi/MarkupSafe + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Implements a XML/HTML/XHTML Markup safe string for Python + XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi + python-MarkupSafe, implements a unicode subclass that supports HTML strings. + python-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. + http://pypi.python.org/packages/source/M/MarkupSafe/MarkupSafe-0.23.tar.gz + + python-setuptools + + programming/language/python/python-MarkupSafe/pspec.xml + + + python-MarkupSafe + + /usr/lib/python2.* + /usr/share/doc + + + + + 2014-05-29 + 0.23 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-11-11 + 0.15 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + gst-python + http://gstreamer.freedesktop.org/modules/gst-python.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GStreamer Python bindings + GStreamer Python bağlayıcıları + gst-python is a Python frontend to GStreamer. + gst-python GStreamer için Python arabirimidir. + http://gstreamer.freedesktop.org/src/gst-python/gst-python-0.10.22.tar.bz2 + + python-gtk-devel + python-pygobject-devel + glib2-devel + gstreamer-devel + gst-plugins-base-devel + + programming/language/python/gst-python/pspec.xml + + + gst-python + + glib2 + gstreamer + gst-plugins-base + + + /usr/lib + /usr/share/doc + /usr/share + + + + gst-python-devel + Development files for gst-python + gst-python için geliştirme dosyaları + + gst-python + python-pygobject-devel + gstreamer-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-10-21 + 0.10.22 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-02-27 + 0.10.21 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-26 + 0.10.21 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-17 + 0.10.21 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-05-03 + 0.10.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + sip + http://www.riverbankcomputing.co.uk/sip + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:console + programming.language.python + SIP is a tool for generating bindings for C++ classes so that they can be used by Python + SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. + mirrors://sourceforge/pyqt/sip-4.16.9.tar.gz + + qt5-base-devel + python3-devel + python-devel + + programming/language/python/sip/pspec.xml + + + python-sip + Python 2.x SIP bindings for C and C++ libraries + + libgcc + python + + + /usr/bin/py2sip + /usr/lib/python2.7/ + /usr/include/python2.7 + + + + python3-sip + Python 3.x SIP bindings for C and C++ libraries + + libgcc + python3 + + + /usr/bin/sip + /usr/lib/python3* + /usr/include/python3.4m + /usr/share/licenses/python3-sip/LICENSE + + + + + 2015-09-09 + 4.16.9 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-04-23 + 4.16.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-pyaspects + http://github.com/baris/pyaspects + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Aspect-Oriented development for Python + Aspect-Oriented Development modules for Python. + https://github.com/baris/pyaspects/archive/0.4.4.tar.gz + programming/language/python/python-pyaspects/pspec.xml + + + python-pyaspects + + /usr/lib + /usr/share/doc + + + + + 2013-12-07 + 0.4.4 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-10-13 + 0.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-udev + http://packages.python.org/pyudev + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Python bindings for libudev library + libudev için Python bağlayıcısı + These bindings enable using of udev library in Python programs. + Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. + https://pypi.python.org/packages/source/p/pyudev/pyudev-0.16.1.tar.gz + + python-setuptools + eudev-devel + + programming/language/python/python-udev/pspec.xml + + + python-udev + + /usr/lib + /usr/share/doc + + + + python-udev-qt + Qt bindings for libudev library + libudev için Qt bağlayıcısı + These bindings provide udev capability for Python programs where Qt is used. + Bu bağlayıcı, Qt kullanan Python programlarının, udev kitaplığı olan libudev'i kullanabilmesini sağlar. + + python-udev + python-qt + + + /usr/lib/python2*/site-packages/pyudev/pyqt4.py + + + + + 2015-08-04 + 0.16.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-24 + 0.16.1 + Release bump + PisiLinux Community + admins@pisilinux.org + + + 2013-06-26 + 0.16.1 + V.bump + PisiLinux Community + admins@pisilinux.org + + + 2011-07-11 + 0.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + telepathy-python + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.language.python + Python libraries for Telepathy + Telepathy için Python kitaplıkları + telepathy-python is the Python libraries for use in Telepathy client and connection managers. + telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. + http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz + + libxslt-devel + + + telepathy-python-0.15.19-mkdir_p.patch + dont-compile-py.patch + python-telepathy-no_double_errors-py.patch + + programming/language/python/telepathy-python/pspec.xml + + + telepathy-python + + /usr/lib + /usr/share/doc + + + + + 2015-11-22 + 0.15.19 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-03 + 0.15.19 + Fix build + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-16 + 0.15.19 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-15 + 0.15.19 + Version bump + Aydın Demirel + aydin@demirel.web.tr + + + 2010-10-13 + 0.15.18 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python-nose + http://somethingaboutorange.com/mrl/projects/nose/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + programming.language.python + A unittest extension offering automatic test suite discovery and easy test authoring + Python için unittest genişlemesi + python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. + python-nose alternatif test tanıtma ve keşif kitaplığı. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + programming/language/python/python-nose/pspec.xml + + + python-nose + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2015-08-04 + 1.3.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-27 + 1.3.3 + Rebuild for gcc + PisiLinux Community + admins@pisilinux.org + + + 2014-05-21 + 1.3.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-17 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-10-13 + 1.2.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + dbus-python3 + http://dbus.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + AFL-2.1 + library + programming.language.python + D-Bus Python bindings + dbus-python provides a Python module which wraps the D-Bus programming API. + http://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.0.tar.gz + + python3-devel + dbus-devel + dbus-glib-devel + glib2-devel + libpcre-devel + + + suppress-warnings.patch + + programming/language/python/dbus-python3/pspec.xml + + + dbus-python3 + D-Bus Python3 bindings + programming.language.python + + python3 + dbus + glib2 + dbus-glib + + + /usr/lib/python3* + + + + + 2015-10-08 + 1.2.0 + Release bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-05-11 + 1.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-28 + 1.2.0 + rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-23 + 1.2.0 + Version bump. Remove dbus-devel from runtime dependencies. + Marcin Bojara + marcin@pisilinux.org + + + 2013-04-25 + 1.1.1 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2012-11-10 + 1.1.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-Pygments + http://pygments.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + A syntax highlighting package written in Python + Python dilinde yazılmış bir sözdizimi belirtme aracı + python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. + python-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. + https://pypi.python.org/packages/source/P/Pygments/Pygments-1.6.tar.gz + programming/language/python/python-Pygments/pspec.xml + + + python-Pygments + + python-setuptools + + + /usr/bin + /usr/lib/python* + /usr/share/man + + + + python-Pygments-docs + Documentation files for python-Pygments + python-Pygments için belgelendirme dosyaları + + /usr/share/doc/python-Pygments + + + + + 2013-12-07 + 1.6 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-16 + 1.5 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + perl-Error + http://search.cpan.org/dist/Error/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Error/exception handling in an OO-ish way + Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü + The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. + perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. + http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-0.17022.tar.gz + + perl + + programming/language/perl/perl-Error/pspec.xml + + + perl-Error + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.17022 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.17022 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 0.17021 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-04-25 + 0.17019 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-09-07 + 0.17018 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Encode-Locale + http://search.cpan.org/~gaas/Encode-Locale-1.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2+ + app:console + programming.language.perl + NAME::Encode::Locale - Determine the locale encoding + In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.03.tar.gz + + perl + + programming/language/perl/perl-Encode-Locale/pspec.xml + + + perl-Encode-Locale + + perl + + + /usr/lib + /usr/share + + + + + 2014-09-10 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-31 + 1.03 + rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 1.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Form + http://search.cpan.org/~gaas/HTML-Form-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTML::Form - Class that represents an HTML form element + Objects of the HTML::Form class represents a single HTML <form> ... </form> instance. A form consists of a sequence of inputs that usually have names, and which can take on various values. The state of a form can be tweaked and it can then be asked to provide HTTP::Request objects that can be passed to the request() method of LWP::UserAgent. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Form-6.03.tar.gz + + perl + + programming/language/perl/perl-HTML-Form/pspec.xml + + + perl-HTML-Form + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 6.03 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Digest-MD5 + http://www.cpan.org + + PisiLinux Community + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl interface to the MD5 Algorithm + MD5 Algoritmasına perl arayüzü + Perl interface to the MD5 Algorithm + MD5 Algoritmasına perl arayüzü + http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.53.tar.gz + + perl + + programming/language/perl/perl-Digest-MD5/pspec.xml + + + perl-Digest-MD5 + + perl + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 2.53 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.53 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 2.53 + Rebuild + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2013-11-04 + 2.53 + V.bump + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + 2013-03-21 + 2.52 + First release + Ayhan YALÇINSOY + ayhanyalcinsoy@pisilinux.org + + + + + + perl-HTML-Tagset + http://search.cpan.org/dist/HTML-Tagset/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Data tables useful in parsing HTML + HTML ayrıştırmak için yararlı bilgi tabloları + HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. + HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. + HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. + http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz + + perl + + programming/language/perl/perl-HTML-Tagset/pspec.xml + + + perl-HTML-Tagset + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-HTML-Tagset + + + + + 2014-09-10 + 3.20 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.20 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 3.20 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-07 + 3.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTTP-Server-Simple + http://search.cpan.org/dist/HTTP-Server-Simple/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Lightweight HTTP Server + Basit bir HTTP Sunucusu + HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. + HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. + http://search.cpan.org/CPAN/authors/id/J/JE/JESSE/HTTP-Server-Simple-0.45_02.tar.gz + + perl + perl-URI + + programming/language/perl/perl-HTTP-Server-Simple/pspec.xml + + + perl-HTTP-Server-Simple + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.45_02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-25 + 0.45_02 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.44 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.44 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Tree + http://search.cpan.org/dist/HTML-Tree/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + programming.language.perl + A Perl module that build and scan parse-trees of HTML + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü + Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. + http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-5.03.tar.gz + + perl + perl-HTML-Tagset + perl-HTML-Parser + perl-Test-Exception + perl-Test-Pod-Coverage + + programming/language/perl/perl-HTML-Tree/pspec.xml + + + perl-HTML-Tree + + perl + perl-HTML-Tagset + perl-HTML-Parser + perl-Test-Exception + perl-Test-Pod-Coverage + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 5.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 5.03 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 5.02 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 5.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-IO-Socket-SSL + http://search.cpan.org/dist/IO-Socket-SSL/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Nearly transparent SSL encapsulation for IO::Socket::INET + IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. + IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. + IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. + http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-1.998.tar.gz + + perl-Net-SSLeay + perl + + programming/language/perl/perl-IO-Socket-SSL/pspec.xml + + + perl-IO-Socket-SSL + + perl-Net-SSLeay + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-IO-Socket-SSL + + + + + 2014-09-10 + 1.998 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.989 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.76 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-07 + 1.76 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Net-SMTP-SSL + http://search.cpan.org/dist/Net-SMTP-SSL/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SSL Support for Net::SMTP + Net::SMTP için SSL desteği + perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. + perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. + http://search.cpan.org/CPAN/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz + + perl + perl-IO-Socket-SSL + + programming/language/perl/perl-Net-SMTP-SSL/pspec.xml + + + perl-Net-SMTP-SSL + + perl + perl-IO-Socket-SSL + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 1.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-11 + 1.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Daemon + http://search.cpan.org/~gaas/HTTP-Daemon-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + a simple http server class + Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz + + perl + + programming/language/perl/perl-HTTP-Daemon/pspec.xml + + + perl-HTTP-Daemon + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Negotiate + http://search.cpan.org/~gaas/HTTP-Negotiate-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + choose a variant to serve + This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz + + perl + perl-HTTP-Date + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Negotiate/pspec.xml + + + perl-HTTP-Negotiate + + perl + perl-HTTP-Date + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.01 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-16 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Digest-SHA1 + http://search.cpan.org/dist/Digest-SHA1/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SHA1 message digest algorithm + The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. + Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. + El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz + + perl + + programming/language/perl/perl-Digest-SHA1/pspec.xml + + + perl-Digest-SHA1 + + perl + + + /usr/lib + /usr/share/doc/perl-Digest-SHA1 + /usr/share/man + + + + + 2014-09-10 + 2.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.13 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 2.13 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 2.13 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-Format + http://search.cpan.org/dist/HTML-Format/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that format HTML as plaintext, RTF and PostScript + HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. + perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.11.tar.gz + + perl + perl-HTML-Tree + perl-Font-AFM + + programming/language/perl/perl-HTML-Format/pspec.xml + + + perl-HTML-Format + + perl + perl-HTML-Tree + perl-Font-AFM + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 2.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 2.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 2.10 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 2.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Digest-HMAC + http://search.cpan.org/dist/Digest-HMAC + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Keyed-Hashing for Message Authentication + This Perl module provides HMAC-MD5 hashing. + Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. + Este módulo Perl facilita hashing HMAC-MD5 + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz + + perl + perl-Digest-SHA1 + + programming/language/perl/perl-Digest-HMAC/pspec.xml + + + perl-Digest-HMAC + + perl + perl-Digest-SHA1 + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.03 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 1.03 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 1.03 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-LWP-Protocol-https + http://search.cpan.org/~gaas/LWP-Protocol-https-6.04/lib/LWP/Protocol/https.pm + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + LWP::Protocol::https - Provide https support for LWP::UserAgent + The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-Protocol-https-6.04.tar.gz + + perl + perl-Mozilla-CA + + programming/language/perl/perl-LWP-Protocol-https/pspec.xml + + + perl-LWP-Protocol-https + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2014-10-16 + 6.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-URI + http://search.cpan.org/~gaas/URI + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl module for Uniform Resource Identifiers (absolute and relative) + A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). + Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. + Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/URI-1.60.tar.gz + + perl + + programming/language/perl/perl-URI/pspec.xml + + + perl-URI + + perl + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 1.60 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.60 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 1.60 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-11 + 1.60 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Test-Pod + http://search.cpan.org/dist/Test-Pod + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A perl module to check for errors in POD files + Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü + Check POD files for errors or warnings in a test file, using Pod::Simple. + Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz + + perl + + programming/language/perl/perl-Test-Pod/pspec.xml + + + perl-Test-Pod + + perl + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 1.48 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.48 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 1.48 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.45 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-String-ShellQuote + http://search.cpan.org/~rosch/String-ShellQuote + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Quote strings for passing through the shell + This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. + Bu modül kabuk veya kabuk benzeri bir neseden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. + El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. + http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz + + perl + + programming/language/perl/perl-String-ShellQuote/pspec.xml + + + perl-String-ShellQuote + + perl + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/perl-String-ShellQuote + + + + + 2014-09-10 + 1.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 1.04 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-07-10 + 1.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Image-ExifTool + http://www.sno.phy.queensu.ca/~phil/exiftool + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + A command-line application for reading, writing and editing meta information in image, audio and video files + Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması + ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. + ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. + http://www.cpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-10.00.tar.gz + + perl + + programming/language/perl/perl-Image-ExifTool/pspec.xml + + + perl-Image-ExifTool + + perl + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/perl-Image-ExifTool/Changes + + + + perl-Image-ExifTool-docs + Documentation of perl-Image-ExifTool + perl-Image-ExifTool için dökümantasyon dosyaları + + /usr/share/doc + + + + + 2015-08-27 + 10.00 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + perl-HTTP-Date + http://search.cpan.org/~gaas/HTTP-Date-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + date conversion routines + This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz + + perl + + programming/language/perl/perl-HTTP-Date/pspec.xml + + + perl-HTTP-Date + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.02 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Template-Pro + http://search.cpan.org/dist/HTML-Template-Pro + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + LGPLv2 + library + programming.language.perl + Perl/XS module to use HTML Templates from CGI scripts + CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü + A fast and lightweight C/Perl+XS HTML Template engine implementation. + http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz + + perl + perl-JSON + + programming/language/perl/perl-HTML-Template-Pro/pspec.xml + + + perl-HTML-Template-Pro + + perl + perl-JSON + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2014-09-10 + 0.9510 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.9510 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.9509 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.9509 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Parser + http://search.cpan.org/dist/HTML-Parser/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + HTML Parser + HTML ayrıştırmak için kütüphane + The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. + HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. + La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.71.tar.gz + + perl + perl-Test-Pod + perl-HTML-Tagset + + programming/language/perl/perl-HTML-Parser/pspec.xml + + + perl-HTML-Parser + + perl + perl-HTML-Tagset + + + /usr/lib + /usr/share/doc/perl-HTML-Parser + /usr/share/man + + + + + 2014-09-10 + 3.71 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.71 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 3.71 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-06-29 + 3.69 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-File-Listing + http://search.cpan.org/~gaas/File-Listing-6.04/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + File::Listing - parse directory listing + This module exports a single function called parse_dir(), which can be used to parse directory listings. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz + + perl + perl-HTTP-Date + + programming/language/perl/perl-File-Listing/pspec.xml + + + perl-File-Listing + + perl + perl-HTTP-Date + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.04 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-25 + 6.04 + Fix version number. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 6.0.4 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.0.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Authen-SASL + http://search.cpan.org/dist/Authen-SASL + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A Perl SASL interface + Perl için SASL modülü + SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. + SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. + SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. + http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz + + perl + perl-GSSAPI + perl-Digest-HMAC + + programming/language/perl/perl-Authen-SASL/pspec.xml + + + perl-Authen-SASL + + perl + perl-GSSAPI + perl-Digest-HMAC + + + /usr/lib + /usr/share/doc/perl-Authen-SASL + /usr/share/man + + + + + 2014-09-10 + 2.16 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 2.16 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-04 + 2.16 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-09-06 + 2.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-FormatText-WithLinks-AndTables + http://search.cpan.org/dist/HTML-FormatText-WithLinks-AndTables + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + Converts HTML to Text with tables in tact. + This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. + http://search.cpan.org/CPAN/authors/id/S/SF/SFRYER/HTML-FormatText-WithLinks-AndTables-0.02.tar.gz + + perl + perl-HTML-FormatText-WithLinks + + programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml + + + perl-HTML-FormatText-WithLinks-AndTables + + perl + perl-HTML-FormatText-WithLinks + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 0.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 0.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-Template + http://search.cpan.org/~wonko/HTML-Template-2.91/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Perl module to use HTML-like templating language + First you make a template - this is just a normal HTML file with a few extra tags, the simplest being <TMPL_VAR> + http://search.cpan.org/CPAN/authors/id/W/WO/WONKO/HTML-Template-2.95.tar.gz + + perl + + programming/language/perl/perl-HTML-Template/pspec.xml + + + perl-HTML-Template + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 2.95 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 2.95 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 2.91 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-06 + 2.91 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-libwww + http://search.cpan.org/dist/libwww-perl + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Application programming interface to the World-Wide Web + libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. + La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-6.05.tar.gz + + perl + perl-URI + perl-NET-HTTP + perl-HTTP-Date + perl-HTML-Parser + perl-HTML-Tagset + perl-HTTP-Daemon + perl-File-Listing + perl-HTTP-Message + perl-Encode-Locale + perl-HTTP-Negotiate + perl-LWP-Mediatypes + perl-WWW-Robotrules + + programming/language/perl/perl-libwww/pspec.xml + + + perl-libwww + + perl + perl-URI + perl-NET-HTTP + perl-HTTP-Date + perl-HTML-Parser + perl-HTML-Tagset + perl-HTTP-Daemon + perl-File-Listing + perl-HTTP-Message + perl-Encode-Locale + perl-HTTP-Negotiate + perl-LWP-Mediatypes + perl-WWW-Robotrules + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2014-09-10 + 6.05 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.05 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 6.05 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.04 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTTP-Message + http://search.cpan.org/~gaas/HTTP-Message-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Class encapsulating HTTP Message headers + The HTTP::Headers class encapsulates HTTP-style message headers. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Message-6.06.tar.gz + + perl + perl-LWP-Mediatypes + perl-HTTP-Date + perl-HTML-Parser + perl-URI + + programming/language/perl/perl-HTTP-Message/pspec.xml + + + perl-HTTP-Message + + perl + perl-LWP-Mediatypes + perl-HTTP-Date + perl-HTML-Parser + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.06 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 6.06 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.03 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-16 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-NET-HTTP + http://search.cpan.org/~gaas/Net-HTTP-6.03/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Low-level HTTP connection (client) + The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Net-HTTP-6.06.tar.gz + + perl + + programming/language/perl/perl-NET-HTTP/pspec.xml + + + perl-NET-HTTP + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.06 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 6.06 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 6.03 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.03 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Text-ParseWords + http://search.cpan.org/~chorny/Text-ParseWords-3.29/ParseWords.pm + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Text::ParseWords - parse text into an array of tokens or array of arrays + This module has two interfaces, one through color() and colored() and the other through constants. It also offers the utility functions uncolor(), colorstrip(), and colorvalid(), which have to be explicitly imported to be used + http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz + + perl + + programming/language/perl/perl-Text-ParseWords/pspec.xml + + + perl-Text-ParseWords + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2015-07-26 + 3.30 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-10 + 3.29 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 3.29 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-07 + 3.29 + Version bump, fix URL + Richard de Bruin + richdb@pisilinux.org + + + 2012-06-06 + 3.27 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-HTML-FormatText-WithLinks + http://search.cpan.org/dist/HTML-FormatText-WithLinks + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + HTML to text conversion with links as footnotes. + HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. + http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.14.tar.gz + + perl + perl-HTML-Tree + perl-HTML-Format + + programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml + + + perl-HTML-FormatText-WithLinks + + perl + perl-HTML-Tree + perl-HTML-Format + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 0.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.14 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-23 + 0.14 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Archive-Zip + http://search.cpan.org/dist/Archive-Zip + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Perl interface to ZIP archive files + ZIP arşivlerine erişim için Perl modülü + The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. + Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. + El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. + http://www.cpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.49.tar.gz + + perl + + programming/language/perl/perl-Archive-Zip/pspec.xml + + + perl-Archive-Zip + + perl + + + /usr/lib/perl5 + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2015-08-15 + 1.49 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-10 + 1.38 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.37 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 1.33 + Version Bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.31_04 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTTP-Body + http://search.cpan.org/~getty/HTTP-Body-1.15/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP Body Parser + HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. + http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.19.tar.gz + + perl + perl-Test-Deep + + programming/language/perl/perl-HTTP-Body/pspec.xml + + + perl-HTTP-Body + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 1.19 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.19 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.25 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 1.15 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Crypt-PasswdMD5 + http://search.cpan.org/dist/Crypt-PasswdMD5/ + + Selim Ok + admins@pisilinux.org + + Artistic + library + programming.language.perl + Crypt::PasswdMD5 module for perl + Perl için Crypt::PasswdMD5 modülü + Provides various crypt()-compatible interfaces to the MD5-based crypt() function. + MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. + http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz + + perl + + programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml + + + perl-Crypt-PasswdMD5 + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2014-09-10 + 1.40 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.40 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 1.40 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Net-SSLeay + http://search.cpan.org/~flora/Net-SSLeay + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Net::SSLeay module for perl + OpenSSL erişimi için Perl modülü + Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). + Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. + Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). + http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-1.66.tar.gz + + perl + perl-Test-Exception + openssl-devel + + programming/language/perl/perl-Net-SSLeay/pspec.xml + + + perl-Net-SSLeay + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Net-SSLeay + + + + + 2014-09-10 + 1.66 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 1.63 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 1.48 + Rebuild for new perl. + PisiLinux Community + admins@pisilinux.org + + + 2012-09-12 + 1.48 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Sub-Uplevel + http://search.cpan.org/dist/Sub-Uplevel/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module to apparently run a function in a higher stack frame + Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü + Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. + http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz + + perl + + programming/language/perl/perl-Sub-Uplevel/pspec.xml + + + perl-Sub-Uplevel + + perl + + + /usr/lib + /usr/share/doc/perl-Sub-Uplevel + /usr/share/man + + + + + 2014-09-10 + 0.24 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.24 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 0.24 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.24 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-GSSAPI + http://search.cpan.org/dist/GSSAPI/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension providing access to the GSSAPIv2 library + GSSAPI kitaplığına erişim sağlayan perl modülü + perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. + perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. + http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz + + perl + mit-kerberos + e2fsprogs-devel + + + disable_failing_test.patch + + programming/language/perl/perl-GSSAPI/pspec.xml + + + perl-GSSAPI + + perl + mit-kerberos + e2fsprogs + + + /usr/lib + /usr/share/man + + + + + 2015-04-23 + 0.28 + Release bump, fix deps + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.28 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-21 + 0.28 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.28 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTTP-Cookies + http://search.cpan.org/~gaas/HTTP-Cookies-6.01/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP cookie jars + This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Cookies-6.01.tar.gz + + perl + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Cookies/pspec.xml + + + perl-HTTP-Cookies + + perl + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.01 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 6.01 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.01 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Exception + http://search.cpan.org/dist/Test-Exception/ + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module for testing exception based codes + Perl için exception tabanlı kod denetleme modülü + This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. + http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-0.32.tar.gz + + perl + perl-Sub-Uplevel + + programming/language/perl/perl-Test-Exception/pspec.xml + + + perl-Test-Exception + + perl + perl-Sub-Uplevel + + + /usr/lib + /usr/share/doc/perl-Test-Exception + /usr/share/man + + + + + 2014-09-10 + 0.32 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 0.32 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-08 + 0.32 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 0.31 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-HTML-Scrubber + http://search.cpan.org/dist/HTML-Scrubber + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension for scrubbing/sanitizing html + HTML dosyalarını düzenlemek için bir perl modülü + If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. + http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Scrubber-0.11.tar.gz + + perl-HTML-Parser + perl + + programming/language/perl/perl-HTML-Scrubber/pspec.xml + + + perl-HTML-Scrubber + + perl-HTML-Parser + perl + + + /usr/lib + /usr/share/man + + + + + 2014-09-10 + 0.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 0.09 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 0.09 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-LWP-Mediatypes + http://search.cpan.org/~gaas/LWP-MediaTypes-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + guess media type for a file or a URL + This module provides functions for handling media (also known as MIME) types and encodings. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz + + perl + + programming/language/perl/perl-LWP-Mediatypes/pspec.xml + + + perl-LWP-Mediatypes + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 12.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-01 + 12.2 + Rebuild for new perl. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-WWW-Robotrules + http://search.cpan.org/~gaas/WWW-RobotRules-6.02/ + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + database of robots.txt-derived permissions + This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz + + perl + + programming/language/perl/perl-WWW-Robotrules/pspec.xml + + + perl-WWW-Robotrules + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2014-09-10 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 6.02 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 6.02 + Rebuild + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-07 + 6.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vala + http://live.gnome.org/Vala + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + programming.language + A modern programming language for GNOME + GNOME için modern bir programlama dili + Kompilator języka opartego na bibliotece GObject + Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. + Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. + Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. + mirrors://gnome/vala/0.28/vala-0.28.0.tar.xz + + glib2-devel + gobject-introspection-devel + libxslt + + programming/language/vala/pspec.xml + + + vala + app:console + library + + glib2 + + + /usr/lib/vala + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/vala-*/vapi + /usr/share/vim/vimfiles + + + vim/vala.syntax + vim/vala.ftdetect + + + + vala-docs + GNOME devhelp documentation for Vala + Vala için GNOME devhelp kitabı + Pliki dokumentacji dla kompilatora vala + data:doc + + /usr/share/devhelp + + + + vala-devel + Development files for vala + vala için geliştirme dosyaları + Pliki nagłówkowe dla kompilatora vala + + vala + + + /usr/include + /usr/lib/pkgconfig + /usr/share/pkgconfig + /usr/share/aclocal + /usr/share/vala/Makefile.vapigen + /usr/share/man/man3 + + + + + 2015-05-22 + 0.28.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-25 + 0.24.0 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-11-18 + 0.22.1 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-04-13 + 0.20.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-11-15 + 0.18.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + ruby-gtk2 @@ -43818,9311 +79068,324 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - perl-GSSAPI - http://search.cpan.org/dist/GSSAPI/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension providing access to the GSSAPIv2 library - GSSAPI kitaplığına erişim sağlayan perl modülü - perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. - perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. - http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz - - perl - mit-kerberos - e2fsprogs-devel - - - disable_failing_test.patch - - programming/language/perl/perl-GSSAPI/pspec.xml - - - perl-GSSAPI - - perl - mit-kerberos - e2fsprogs - - - /usr/lib - /usr/share/man - - - - - 2015-04-23 - 0.28 - Release bump, fix deps - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.28 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 0.28 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.28 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Encode-Locale - http://search.cpan.org/~gaas/Encode-Locale-1.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2+ - app:console - programming.language.perl - NAME::Encode::Locale - Determine the locale encoding - In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.03.tar.gz - - perl - - programming/language/perl/perl-Encode-Locale/pspec.xml - - - perl-Encode-Locale - - perl - - - /usr/lib - /usr/share - - - - - 2014-09-10 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-31 - 1.03 - rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 1.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-File-Listing - http://search.cpan.org/~gaas/File-Listing-6.04/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - File::Listing - parse directory listing - This module exports a single function called parse_dir(), which can be used to parse directory listings. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/File-Listing-6.04.tar.gz - - perl - perl-HTTP-Date - - programming/language/perl/perl-File-Listing/pspec.xml - - - perl-File-Listing - - perl - perl-HTTP-Date - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-25 - 6.04 - Fix version number. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 6.0.4 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.0.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Authen-SASL - http://search.cpan.org/dist/Authen-SASL - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A Perl SASL interface - Perl için SASL modülü - SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. - SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. - SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. - http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz - - perl - perl-GSSAPI - perl-Digest-HMAC - - programming/language/perl/perl-Authen-SASL/pspec.xml - - - perl-Authen-SASL - - perl - perl-GSSAPI - perl-Digest-HMAC - - - /usr/lib - /usr/share/doc/perl-Authen-SASL - /usr/share/man - - - - - 2014-09-10 - 2.16 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.16 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-04 - 2.16 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-09-06 - 2.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-libwww - http://search.cpan.org/dist/libwww-perl - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Application programming interface to the World-Wide Web - libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. - La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/libwww-perl-6.05.tar.gz - - perl - perl-URI - perl-NET-HTTP - perl-HTTP-Date - perl-HTML-Parser - perl-HTML-Tagset - perl-HTTP-Daemon - perl-File-Listing - perl-HTTP-Message - perl-Encode-Locale - perl-HTTP-Negotiate - perl-LWP-Mediatypes - perl-WWW-Robotrules - - programming/language/perl/perl-libwww/pspec.xml - - - perl-libwww - - perl - perl-URI - perl-NET-HTTP - perl-HTTP-Date - perl-HTML-Parser - perl-HTML-Tagset - perl-HTTP-Daemon - perl-File-Listing - perl-HTTP-Message - perl-Encode-Locale - perl-HTTP-Negotiate - perl-LWP-Mediatypes - perl-WWW-Robotrules - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2014-09-10 - 6.05 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.05 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 6.05 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Tagset - http://search.cpan.org/dist/HTML-Tagset/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Data tables useful in parsing HTML - HTML ayrıştırmak için yararlı bilgi tabloları - HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. - HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. - HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. - http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz - - perl - - programming/language/perl/perl-HTML-Tagset/pspec.xml - - - perl-HTML-Tagset - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-HTML-Tagset - - - - - 2014-09-10 - 3.20 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.20 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 3.20 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-07 - 3.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-Parser - http://search.cpan.org/dist/HTML-Parser/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - HTML Parser - HTML ayrıştırmak için kütüphane - The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. - HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. - La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Parser-3.71.tar.gz - - perl - perl-Test-Pod - perl-HTML-Tagset - - programming/language/perl/perl-HTML-Parser/pspec.xml - - - perl-HTML-Parser - - perl - perl-HTML-Tagset - - - /usr/lib - /usr/share/doc/perl-HTML-Parser - /usr/share/man - - - - - 2014-09-10 - 3.71 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.71 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 3.71 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-06-29 - 3.69 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Body - http://search.cpan.org/~getty/HTTP-Body-1.15/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP Body Parser - HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. - http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.19.tar.gz - - perl - perl-Test-Deep - - programming/language/perl/perl-HTTP-Body/pspec.xml - - - perl-HTTP-Body - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 1.19 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.19 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.25 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 1.15 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Net-SMTP-SSL - http://search.cpan.org/dist/Net-SMTP-SSL/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SSL Support for Net::SMTP - Net::SMTP için SSL desteği - perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. - perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. - http://search.cpan.org/CPAN/authors/id/C/CW/CWEST/Net-SMTP-SSL-1.01.tar.gz - - perl - perl-IO-Socket-SSL - - programming/language/perl/perl-Net-SMTP-SSL/pspec.xml - - - perl-Net-SMTP-SSL - - perl - perl-IO-Socket-SSL - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 1.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-11 - 1.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-WWW-Robotrules - http://search.cpan.org/~gaas/WWW-RobotRules-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - database of robots.txt-derived permissions - This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz - - perl - - programming/language/perl/perl-WWW-Robotrules/pspec.xml - - - perl-WWW-Robotrules - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 6.02 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Negotiate - http://search.cpan.org/~gaas/HTTP-Negotiate-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - choose a variant to serve - This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz - - perl - perl-HTTP-Date - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Negotiate/pspec.xml - - - perl-HTTP-Negotiate - - perl - perl-HTTP-Date - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-16 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Daemon - http://search.cpan.org/~gaas/HTTP-Daemon-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - a simple http server class - Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Daemon-6.01.tar.gz - - perl - - programming/language/perl/perl-HTTP-Daemon/pspec.xml - - - perl-HTTP-Daemon - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.01 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-IO-Socket-SSL - http://search.cpan.org/dist/IO-Socket-SSL/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Nearly transparent SSL encapsulation for IO::Socket::INET - IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. - IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. - IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. - http://search.cpan.org/CPAN/authors/id/S/SU/SULLR/IO-Socket-SSL-1.998.tar.gz - - perl-Net-SSLeay - perl - - programming/language/perl/perl-IO-Socket-SSL/pspec.xml - - - perl-IO-Socket-SSL - - perl-Net-SSLeay - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-IO-Socket-SSL - - - - - 2014-09-10 - 1.998 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.989 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.76 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-07 - 1.76 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-LWP-Mediatypes - http://search.cpan.org/~gaas/LWP-MediaTypes-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - guess media type for a file or a URL - This module provides functions for handling media (also known as MIME) types and encodings. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-MediaTypes-6.02.tar.gz - - perl - - programming/language/perl/perl-LWP-Mediatypes/pspec.xml - - - perl-LWP-Mediatypes - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 12.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 12.2 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Server-Simple - http://search.cpan.org/dist/HTTP-Server-Simple/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Lightweight HTTP Server - Basit bir HTTP Sunucusu - HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. - HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. - http://search.cpan.org/CPAN/authors/id/J/JE/JESSE/HTTP-Server-Simple-0.45_02.tar.gz - - perl - perl-URI - - programming/language/perl/perl-HTTP-Server-Simple/pspec.xml - - - perl-HTTP-Server-Simple - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.45_02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-25 - 0.45_02 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.44 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.44 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Sub-Uplevel - http://search.cpan.org/dist/Sub-Uplevel/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module to apparently run a function in a higher stack frame - Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü - Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. - http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.24.tar.gz - - perl - - programming/language/perl/perl-Sub-Uplevel/pspec.xml - - - perl-Sub-Uplevel - - perl - - - /usr/lib - /usr/share/doc/perl-Sub-Uplevel - /usr/share/man - - - - - 2014-09-10 - 0.24 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.24 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 0.24 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.24 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Digest-SHA1 - http://search.cpan.org/dist/Digest-SHA1/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SHA1 message digest algorithm - The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. - Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. - El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz - - perl - - programming/language/perl/perl-Digest-SHA1/pspec.xml - - - perl-Digest-SHA1 - - perl - - - /usr/lib - /usr/share/doc/perl-Digest-SHA1 - /usr/share/man - - - - - 2014-09-10 - 2.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 2.13 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 2.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Digest-MD5 - http://www.cpan.org - - PisiLinux Community - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl interface to the MD5 Algorithm - MD5 Algoritmasına perl arayüzü - Perl interface to the MD5 Algorithm - MD5 Algoritmasına perl arayüzü - http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.53.tar.gz - - perl - - programming/language/perl/perl-Digest-MD5/pspec.xml - - - perl-Digest-MD5 - - perl - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 2.53 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 2.53 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 2.53 - Rebuild - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - 2013-11-04 - 2.53 - V.bump - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - 2013-03-21 - 2.52 - First release - Ayhan YALÇINSOY - ayhanyalcinsoy@pisilinux.org - - - - - - perl-Archive-Zip - http://search.cpan.org/dist/Archive-Zip - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Perl interface to ZIP archive files - ZIP arşivlerine erişim için Perl modülü - The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. - Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. - El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. - http://www.cpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.49.tar.gz - - perl - - programming/language/perl/perl-Archive-Zip/pspec.xml - - - perl-Archive-Zip - - perl - - - /usr/lib/perl5 - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2015-08-15 - 1.49 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-10 - 1.38 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.37 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-21 - 1.33 - Version Bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.31_04 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Test-Pod - http://search.cpan.org/dist/Test-Pod - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A perl module to check for errors in POD files - Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü - Check POD files for errors or warnings in a test file, using Pod::Simple. - Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/D/DW/DWHEELER/Test-Pod-1.48.tar.gz - - perl - - programming/language/perl/perl-Test-Pod/pspec.xml - - - perl-Test-Pod - - perl - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 1.48 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.48 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 1.48 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.45 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Digest-HMAC - http://search.cpan.org/dist/Digest-HMAC - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Keyed-Hashing for Message Authentication - This Perl module provides HMAC-MD5 hashing. - Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. - Este módulo Perl facilita hashing HMAC-MD5 - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz - - perl - perl-Digest-SHA1 - - programming/language/perl/perl-Digest-HMAC/pspec.xml - - - perl-Digest-HMAC - - perl - perl-Digest-SHA1 - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 1.03 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-07 - 1.03 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-URI - http://search.cpan.org/~gaas/URI - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl module for Uniform Resource Identifiers (absolute and relative) - A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). - Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. - Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/URI-1.60.tar.gz - - perl - - programming/language/perl/perl-URI/pspec.xml - - - perl-URI - - perl - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 1.60 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.60 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 1.60 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-11 - 1.60 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-LWP-Protocol-https - http://search.cpan.org/~gaas/LWP-Protocol-https-6.04/lib/LWP/Protocol/https.pm - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - LWP::Protocol::https - Provide https support for LWP::UserAgent - The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/LWP-Protocol-https-6.04.tar.gz - - perl - perl-Mozilla-CA - - programming/language/perl/perl-LWP-Protocol-https/pspec.xml - - - perl-LWP-Protocol-https - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-10-16 - 6.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Error - http://search.cpan.org/dist/Error/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Error/exception handling in an OO-ish way - Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü - The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. - perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. - http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/Error-0.17022.tar.gz - - perl - - programming/language/perl/perl-Error/pspec.xml - - - perl-Error - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.17022 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.17022 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-09 - 0.17021 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-04-25 - 0.17019 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-07 - 0.17018 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Image-ExifTool - http://www.sno.phy.queensu.ca/~phil/exiftool - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - A command-line application for reading, writing and editing meta information in image, audio and video files - Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması - ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. - ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. - http://www.cpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-10.00.tar.gz - - perl - - programming/language/perl/perl-Image-ExifTool/pspec.xml - - - perl-Image-ExifTool - - perl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/perl-Image-ExifTool/Changes - - - - perl-Image-ExifTool-docs - Documentation of perl-Image-ExifTool - perl-Image-ExifTool için dökümantasyon dosyaları - - /usr/share/doc - - - - - 2015-08-27 - 10.00 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - perl-HTTP-Message - http://search.cpan.org/~gaas/HTTP-Message-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Class encapsulating HTTP Message headers - The HTTP::Headers class encapsulates HTTP-style message headers. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Message-6.06.tar.gz - - perl - perl-LWP-Mediatypes - perl-HTTP-Date - perl-HTML-Parser - perl-URI - - programming/language/perl/perl-HTTP-Message/pspec.xml - - - perl-HTTP-Message - - perl - perl-LWP-Mediatypes - perl-HTTP-Date - perl-HTML-Parser - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.06 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 6.06 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.03 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-16 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTTP-Date - http://search.cpan.org/~gaas/HTTP-Date-6.02/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - date conversion routines - This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Date-6.02.tar.gz - - perl - - programming/language/perl/perl-HTTP-Date/pspec.xml - - - perl-HTTP-Date - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.02 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Template - http://search.cpan.org/~wonko/HTML-Template-2.91/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Perl module to use HTML-like templating language - First you make a template - this is just a normal HTML file with a few extra tags, the simplest being <TMPL_VAR> - http://search.cpan.org/CPAN/authors/id/W/WO/WONKO/HTML-Template-2.95.tar.gz - - perl - - programming/language/perl/perl-HTML-Template/pspec.xml - - - perl-HTML-Template - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 2.95 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 2.95 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 2.91 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 2.91 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Scrubber - http://search.cpan.org/dist/HTML-Scrubber - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension for scrubbing/sanitizing html - HTML dosyalarını düzenlemek için bir perl modülü - If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. - http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Scrubber-0.11.tar.gz - - perl-HTML-Parser - perl - - programming/language/perl/perl-HTML-Scrubber/pspec.xml - - - perl-HTML-Scrubber - - perl-HTML-Parser - perl - - - /usr/lib - /usr/share/man - - - - - 2014-09-10 - 0.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.09 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.09 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-String-ShellQuote - http://search.cpan.org/~rosch/String-ShellQuote - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Quote strings for passing through the shell - This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. - Bu modül kabuk veya kabuk benzeri bir neseden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. - El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. - http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz - - perl - - programming/language/perl/perl-String-ShellQuote/pspec.xml - - - perl-String-ShellQuote - - perl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/perl-String-ShellQuote - - - - - 2014-09-10 - 1.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.04 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 1.04 - Rebuild - Richard de Bruin - richdb@pisilinux.org - - - 2012-07-10 - 1.04 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks-AndTables - http://search.cpan.org/dist/HTML-FormatText-WithLinks-AndTables - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - Converts HTML to Text with tables in tact. - This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. - http://search.cpan.org/CPAN/authors/id/S/SF/SFRYER/HTML-FormatText-WithLinks-AndTables-0.02.tar.gz - - perl - perl-HTML-FormatText-WithLinks - - programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml - - - perl-HTML-FormatText-WithLinks-AndTables - - perl - perl-HTML-FormatText-WithLinks - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 0.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.02 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 0.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Test-Exception - http://search.cpan.org/dist/Test-Exception/ - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module for testing exception based codes - Perl için exception tabanlı kod denetleme modülü - This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. - http://search.cpan.org/CPAN/authors/id/A/AD/ADIE/Test-Exception-0.32.tar.gz - - perl - perl-Sub-Uplevel - - programming/language/perl/perl-Test-Exception/pspec.xml - - - perl-Test-Exception - - perl - perl-Sub-Uplevel - - - /usr/lib - /usr/share/doc/perl-Test-Exception - /usr/share/man - - - - - 2014-09-10 - 0.32 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.32 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 0.32 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 0.31 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks - http://search.cpan.org/dist/HTML-FormatText-WithLinks - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - HTML to text conversion with links as footnotes. - HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. - http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.14.tar.gz - - perl - perl-HTML-Tree - perl-HTML-Format - - programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml - - - perl-HTML-FormatText-WithLinks - - perl - perl-HTML-Tree - perl-HTML-Format - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 0.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 0.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-23 - 0.14 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Tree - http://search.cpan.org/dist/HTML-Tree/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - programming.language.perl - A Perl module that build and scan parse-trees of HTML - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü - Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. - http://search.cpan.org/CPAN/authors/id/C/CJ/CJM/HTML-Tree-5.03.tar.gz - - perl - perl-HTML-Tagset - perl-HTML-Parser - perl-Test-Exception - perl-Test-Pod-Coverage - - programming/language/perl/perl-HTML-Tree/pspec.xml - - - perl-HTML-Tree - - perl - perl-HTML-Tagset - perl-HTML-Parser - perl-Test-Exception - perl-Test-Pod-Coverage - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 5.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 5.03 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 5.02 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 5.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Template-Pro - http://search.cpan.org/dist/HTML-Template-Pro - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - LGPLv2 - library - programming.language.perl - Perl/XS module to use HTML Templates from CGI scripts - CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü - A fast and lightweight C/Perl+XS HTML Template engine implementation. - http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz - - perl - perl-JSON - - programming/language/perl/perl-HTML-Template-Pro/pspec.xml - - - perl-HTML-Template-Pro - - perl - perl-JSON - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2014-09-10 - 0.9510 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 0.9510 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 0.9509 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 0.9509 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Crypt-PasswdMD5 - http://search.cpan.org/dist/Crypt-PasswdMD5/ - - Selim Ok - admins@pisilinux.org - - Artistic - library - programming.language.perl - Crypt::PasswdMD5 module for perl - Perl için Crypt::PasswdMD5 modülü - Provides various crypt()-compatible interfaces to the MD5-based crypt() function. - MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. - http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz - - perl - - programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml - - - perl-Crypt-PasswdMD5 - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 1.40 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.40 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-08 - 1.40 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Cookies - http://search.cpan.org/~gaas/HTTP-Cookies-6.01/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP cookie jars - This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Cookies-6.01.tar.gz - - perl - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Cookies/pspec.xml - - - perl-HTTP-Cookies - - perl - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.01 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 6.01 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.01 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-NET-HTTP - http://search.cpan.org/~gaas/Net-HTTP-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Low-level HTTP connection (client) - The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Net-HTTP-6.06.tar.gz - - perl - - programming/language/perl/perl-NET-HTTP/pspec.xml - - - perl-NET-HTTP - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.06 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 6.06 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 6.03 - Rebuild for new perl. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Text-ParseWords - http://search.cpan.org/~chorny/Text-ParseWords-3.29/ParseWords.pm - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Text::ParseWords - parse text into an array of tokens or array of arrays - This module has two interfaces, one through color() and colored() and the other through constants. It also offers the utility functions uncolor(), colorstrip(), and colorvalid(), which have to be explicitly imported to be used - http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz - - perl - - programming/language/perl/perl-Text-ParseWords/pspec.xml - - - perl-Text-ParseWords - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-07-26 - 3.30 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-10 - 3.29 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 3.29 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-07 - 3.29 - Version bump, fix URL - Richard de Bruin - richdb@pisilinux.org - - - 2012-06-06 - 3.27 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-HTML-Form - http://search.cpan.org/~gaas/HTML-Form-6.03/ - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTML::Form - Class that represents an HTML form element - Objects of the HTML::Form class represents a single HTML <form> ... </form> instance. A form consists of a sequence of inputs that usually have names, and which can take on various values. The state of a form can be tweaked and it can then be asked to provide HTTP::Request objects that can be passed to the request() method of LWP::UserAgent. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTML-Form-6.03.tar.gz - - perl - - programming/language/perl/perl-HTML-Form/pspec.xml - - - perl-HTML-Form - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2014-09-10 - 6.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 6.03 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 6.03 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 6.03 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Net-SSLeay - http://search.cpan.org/~flora/Net-SSLeay - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Net::SSLeay module for perl - OpenSSL erişimi için Perl modülü - Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). - Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. - Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). - http://search.cpan.org/CPAN/authors/id/M/MI/MIKEM/Net-SSLeay-1.66.tar.gz - - perl - perl-Test-Exception - openssl-devel - - programming/language/perl/perl-Net-SSLeay/pspec.xml - - - perl-Net-SSLeay - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Net-SSLeay - - - - - 2014-09-10 - 1.66 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 1.63 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-01 - 1.48 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-09-12 - 1.48 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-Format - http://search.cpan.org/dist/HTML-Format/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that format HTML as plaintext, RTF and PostScript - HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. - perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.11.tar.gz - - perl - perl-HTML-Tree - perl-Font-AFM - - programming/language/perl/perl-HTML-Format/pspec.xml - - - perl-HTML-Format - - perl - perl-HTML-Tree - perl-Font-AFM - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2014-09-10 - 2.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 2.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 2.10 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-06 - 2.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - llvm - http://www.llvm.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - NCSA - programming.build - The Low Level Virtual Machine - Düşük Seviye Sanal Makine (LLVM) - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. - LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. - http://llvm.org/releases/3.5.0/llvm-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/cfe-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/clang-tools-extra-3.5.0.src.tar.xz - http://llvm.org/releases/3.5.0/compiler-rt-3.5.0.src.tar.xz - - zlib-devel - libxml2-devel - ncurses-devel - ocaml - libffi-devel - groff - libedit-devel - binutils - - - llvm-3.5.0-fix-cmake-llvm-exports.patch - llvm-3.5.0-force-link-pass.o.patch - - programming/build/llvm/pspec.xml - - - llvm - app:console - library - - llvm-libs - libxml2 - libgcc - ncurses - - - /usr/bin - /usr/bin/llvm-config - /usr/include/llvm* - /usr/lib/llvm - /usr/lib - /etc/ld.so.conf.d - /etc/llvm - /usr/share/doc - /usr/share/vim - /usr/share/llvm/cmake - /usr/share/kde4 - /usr/share/man - - - - llvm-libs - library - - zlib - libffi - libedit - libgcc - ncurses - - - /usr/lib/llvm/libLLVM-3* - /usr/share/licenses/llvm-libs/LICENSE - - - - llvm-ocaml - OCaml binding for LLVM - LLVM için OCaml bağlayıcısı - library - programming.language.ocaml - - llvm - ocaml - - - /usr/lib/ocaml - - - - llvm-clang-analyzer - A source code analysis framework - C ve Objective-C için kod analiz altyapısı - The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. - app:console - - llvm-clang - - - /usr/lib/clang-analyzer - /usr/bin/scan-* - - - - llvm-clang - A C language family front-end for LLVM - LLVM için C dili ailesi ön ucu - The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. - - llvm-libs - libgcc - ncurses - - - /usr/bin/clang* - /usr/bin/tblgen - /usr/lib/clang - /usr/lib/clang/libclang.so - /usr/share/man/man1/clang.1 - - - - llvm-clang-devel - Development headers for llvm-clang - llvm-clang için başlık dosyaları - - llvm-clang - - - /usr/include/clang - /usr/include/clang-c - - - - llvm-docs - Documentation for LLVM - LLVM belgeleri - data:doc - programming.docs - - /usr/share/doc/llvm/html - /usr/share/doc/llvm/ocamldoc - - - - llvm-32bit - 32-bit shared libraries for llvm - emul32 - emul32 - - zlib-32bit - libffi-32bit - - - llvm - libgcc - libedit - ncurses-32bit - zlib-32bit - libffi-32bit - - - /usr/lib32 - - - - - 2014-09-23 - 3.5.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-11 - 3.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 3.4.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-01 - 3.3 - Release bump, already cleaned. - marcin bojara - marcin@pisilinux.org - - - 2013-07-26 - 3.3 - Version bump. - marcin bojara - marcin@pisilinux.org - - - 2013-02-18 - 3.2 - version bump - PisiLinux Community - admins@pisilinux.org - - - 2012-06-11 - 3.1 - First release - marcin bojara - marcin@pisilinux.org - - - - - - ant - http://ant.apache.org - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:console - programming.build - Java-based build tool - Java tabanlı inşa aracı - Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. - Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir - Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. - http://archive.apache.org/dist/ant/source/apache-ant-1.9.6-src.tar.bz2 - - jdk7-openjdk - - - apache-ant-no-test-jar.patch - - programming/build/ant/pspec.xml - - - ant - - /etc - /usr/bin - /usr/share/ - - - 20ant - ant.conf - - - - ant-docs - Documentation package for ant build system - - /usr/share/doc - - - - - 2015-08-22 - 1.9.6 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-05-25 - 1.9.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-03 - 1.8.4 - Rebuild for openjdk. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-04-20 - 1.8.4 - Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-06 - 1.8.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - valgrind - http://www.valgrind.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.profiler - Memory access debugger for X86 and PPC Linux platforms - X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı - Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. - Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. - http://www.valgrind.org/downloads/valgrind-3.10.1.tar.bz2 - - glibc-devel - - - valgrind-3.9.0-glibc-2.21.patch - - programming/profiler/valgrind/pspec.xml - - - valgrind - - /usr/bin - /usr/include/valgrind - /usr/lib - /usr/share/doc/valgrind - /usr/share/man - - - - - 2015-07-21 - 3.10.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-10-31 - 3.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-20 - 3.9.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-08 - 3.9.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-19 - 3.8.1 - Add glibc-2.17 patch. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-24 - 3.8.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gfxboot - https://github.com/openSUSE/gfxboot - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Tools to create graphical boot logos - Grafik açılış logosu oluşturma araçları - Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. - Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. - gfxboot - https://github.com/openSUSE/gfxboot/archive/4.5.7.tar.gz - - xmlto - freetype-devel - util-linux - libxslt - lynx - - - productname.patch - no-theme-no-git.patch - - system/boot/gfxboot/pspec.xml - - - gfxboot - - perl-HTML-Parser - freetype - - - /usr/sbin - /usr/share/gfxboot/bin - /usr/share/gfxboot - /usr/share/doc - - - - - 2015-08-05 - 4.5.7 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-14 - 4.5.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 4.5.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-01-13 - 4.5.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - efivar - https://github.com/vathpela/efivar - - Aydın Demirel - aydin.demirel@pisilinux.org - - LGPL2.1 - app:console - system.boot - Tools and library to manipulate EFI variables - EFI değişkenlerini işlemek için araçlar ve kütüphane - Tools and library to manipulate EFI variables. - EFI değişkenlerini işlemek için araçlar ve kütüphane - https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2 - - popt-devel - - system/boot/efivar/pspec.xml - - - efivar - - /usr/lib - /usr/share/man - /usr/bin - - - - efivar-devel - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-21 - 0.15 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-09-27 - 0.10.8 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - gfxtheme-pisilinux-install - www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - system.boot - Pisi Linux gfxboot install theme - Pisi Linux gfxboot teması - Gfxtheme install package for Pisi Linux - Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. - http://source.pisilinux.org/1.0/gfxtheme-pisilinux-install-0.2.tar.xz - - gfxboot - fribidi-devel - - - chmod-t.patch - - system/boot/gfxtheme-pisilinux-install/pspec.xml - - - gfxtheme-pisilinux-install - - /usr/share/gfxtheme/pisilinux/install - - - - - 2014-08-04 - 0.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-14 - 0.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 0.1 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-04-06 - 0.1 - First release. - Serdar Soytetir - kaptan@pisilinux.org - - - - - - efibootmgr - https://github.com/vathpela/efibootmgr - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL2 - app:console - system.boot - Tool to modify UEFI Firmware Boot Manager Variables - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - http://source.pisilinux.org/1.0/efibootmgr.tar.gz - - pciutils-devel - zlib-devel - efivar - efivar-devel - - system/boot/efibootmgr/pspec.xml - - - efibootmgr - - /usr/sbin - /usr/share/man - /usr/lib/* - - - - efibootmgr-devel - - /usr/include - - - - - 2014-09-27 - 0.7.0.16 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - syslinux - http://syslinux.zytor.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - SysLinux, IsoLinux and PXELinux bootloader - SysLinux, IsoLinux ve PXELinux önyükleyicileri - Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. - Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. - https://www.kernel.org/pub/linux/utils/boot/syslinux/4.xx/syslinux-4.07.tar.xz - - nasm - libutil-linux-devel - - - nopie.patch - fixisohybrid.patch - - system/boot/syslinux/pspec.xml - - - syslinux - - mtools - libutil-linux - perl-Crypt-PasswdMD5 - perl-Digest-SHA1 - - - /sbin - /usr/bin - /usr/lib/syslinux - /usr/share/doc - /usr/share/man - - - pisi-iso/isolinux.cfg - pisi-iso/background.png - - - - - 2014-06-14 - 4.07 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-13 - 4.07 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 4.06 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-03-24 - 4.06 - Back to 4x line - Erdinç Gültekin - admins@pisilinux.org - - - 2013-02-07 - 5.00 - fix isohybrid - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-08 - 5.00 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - memtest86 - http://www.memtest.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Memory tester - Bellek test edici - Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. - Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. - x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. - http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz - system/boot/memtest86/pspec.xml - - - memtest86 - - /boot - /usr/share/doc - - - - - 2015-01-27 - 5.01 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-14 - 4.20 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-10 - 4.20 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-09-24 - 4.20 - First release - Erdem Artan - admins@pisilinux.org - - - - - - ConsoleKit - https://github.com/Consolekit2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - system.auth - A framework for defining and tracking users, login sessions, and seats - Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı - ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). - ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. - https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.0.0/ConsoleKit2-1.0.0.tar.bz2 - - acl-devel - pam-devel - dbus-devel - eudev-devel - zlib-devel - glib2-devel - libX11-devel - libnih-devel - cgmanager-devel - polkit-devel - libxslt - xmlto - util-linux - - system/auth/ConsoleKit/pspec.xml - - - ConsoleKit - - acl - pam - dbus - zlib - glib2 - libX11 - libnih - cgmanager - polkit - eudev - - - /etc - /usr/lib/tmpfiles.d/ConsoleKit.conf - /usr/bin - /usr/sbin - /usr/libexec - /lib - /usr/lib - /usr/share/dbus-1 - /usr/share/polkit-1/actions - /usr/share/polkit-1/rules.d - /usr/share/man - /usr/share/locale - /usr/share/doc - /var - - - ConsoleKit.conf - 25-consolekit.rules - consolekit.pamd - pam-foreground-compat.ck - - - - ConsoleKit-devel - Development files for ConsoleKit - ConsoleKit için geliştirme dosyaları - - ConsoleKit - dbus-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-07 - 1.0.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-26 - 1.0.0 - readd pam-foreground-compat.ck script. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 1.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-20 - 0.9.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-16 - 0.9.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-15 - 0.9.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-05 - 0.9.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-08-01 - 0.4.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 0.4.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-06 - 0.4.6 - Dep Fix - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-09 - 0.4.6 - Add gentoo patches and ConsoleKit.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-08 - 0.4.6 - /var/run => /run - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-04 - 0.4.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-08-23 - 0.4.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vbetool - http://www.codon.org.uk/~mjg59/vbetool/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.graphics - Alter video hardware state through video BIOS - Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) - vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. - Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. - http://www.codon.org.uk/~mjg59/vbetool/download/vbetool-1.1.tar.gz - - libx86-devel - pciutils-devel - - - vbetool-1.0-build-as-needed.patch - unsigned_int.patch - - hardware/graphics/vbetool/pspec.xml - - - vbetool - - libx86 - pciutils - - - /usr/share/doc - /usr/share/man - /usr/sbin - - - - - 2014-05-24 - 1.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - nvidia-settings - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - hardware.graphics - The NVIDIA X Server Settings tool - NVIDIA X Sunucusu ayarlama aracı - The nvidia-settings utility is a tool for configuring the NVIDIA graphics driver. It operates by communicating with the NVIDIA X driver, querying and updating state as appropriate. - nvidia-settings aracı NVIDIA grafik sürücülerini ayarlamak için kullanılan bir araçtır. NVIDIA X sürücüsü ile iletişime geçerek çalışır, durum bilgisini gerekli olduğu gibi uygular, günceller. - nvidia-settings - ftp://download.nvidia.com/XFree86/nvidia-settings/nvidia-settings-355.11.tar.bz2 - - atk-devel - gtk3-devel - cairo-devel - fontconfig-devel - gtk2-devel - libXext-devel - libXv-devel - gdk-pixbuf-devel - mesa-devel - libvdpau-devel - - hardware/graphics/nvidia-settings/pspec.xml - - - nvidia-settings - - atk - cairo - glib2 - libX11 - freetype - fontconfig - gtk2 - libXext - libXv - gdk-pixbuf - libXxf86vm - pango - - - /usr/bin - /etc/X11/Xsession.d - /usr/lib - /usr/share/applications - /usr/share/pixmaps - /usr/share/man - /usr/share/doc - - - nvidia-settings.desktop - nvidia-settings.png - 21-nvidia-settings.sh - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-29 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-06 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-30 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - nvidia-xconfig - http://www.nvidia.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.graphics - The NVIDIA X Configuration Tool - NVIDIA X yapılandırma araçı - The NVIDIA X Configuration Tool - NVIDIA X yapılandırma araçı - ftp://download.nvidia.com/XFree86/nvidia-xconfig/nvidia-xconfig-355.11.tar.bz2 - hardware/graphics/nvidia-xconfig/pspec.xml - - - nvidia-xconfig - - /usr/bin - /usr/share/man - /usr/share/doc - - - nvidia-bug-report.sh - - - - - 2015-11-20 - 355.11 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-16 - 349.16 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-31 - 349.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-03-13 - 346.47 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 346.35 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-10-24 - 343.22 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-08 - 337.19 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 334.21 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-21 - 331.20 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-03-30 - 313.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-29 - 313.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - irqbalance - http://www.irqbalance.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.cpu - Distribute hardware interrupts across processors - Donanım kesmelerini işlemciler arasında dağıtır - Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. - Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. - https://github.com/Irqbalance/irqbalance/archive/v1.0.9.tar.gz - - numactl-devel - glib2-devel - libcap-ng-devel - - hardware/cpu/irqbalance/pspec.xml - - - irqbalance - - numactl - glib2 - libcap-ng - - - /etc - /usr/sbin - /usr/share/man - /usr/share/doc - - - System.Service - - - irqbalance.confd - - - - - 2015-10-01 - 1.0.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-06 - 1.0.7 - Version bump. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-01-26 - 1.0.4 - Rebuild with new Download Area - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-01 - 1.0.4 - First release - Erdem Artan - admins@pisilinux.org - - - - - - intel-ucode - http://www.intel.com/ + tcltk + http://www.tcl.tk PisiLinux Community admins@pisilinux.org as-is library - hardware.cpu - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - http://downloadmirror.intel.com/23574/eng/microcode-20140122.tgz - - intel-microcode2ucode.c - - hardware/cpu/intel-ucode/pspec.xml - - - intel-ucode - - /usr/share/doc - /lib/firmware - - - LICENSE - - - - - 2014-05-06 - 20140122 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-23 - 20130906 - Version Bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-10-01 - 20120606 - First release - Erdem Artan - admins@pisilinux.org - - - - - - suspend - http://suspend.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A set of tools to support sleep modes - Uyku kiplerini destekleme araçları - suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. - suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. - http://sourceforge.net/projects/suspend/files/suspend/suspend-1.0/suspend-utils-1.0.tar.bz2 + programming.language.tcl + Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. + An X11 toolkit implemented with the Tcl scripting language + Tcl betik dili ile yazılmış X11 araç ve kitaplıkları + Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. + Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. + mirrors://sourceforge/tcl/tk8.6.3-src.tar.gz - lzo-devel - pciutils-devel - libx86-devel - plymouth-devel - - - suse/suspend-comment-configfile-options.diff - suse/suspend-default-compress.diff - suse/suspend-default-splash.diff - suse/suspend-0.80-dont-return-eintr-on-abort.diff - suse/suspend-0.80-keygen-new-defaults.diff - suse/suspend-0.80-vbetool-retry-on-errors.diff - mandriva/suspend-0.8-printf_format.patch - resume-dont-ask-questions.patch - suppress-outputs.patch - - hardware/powermanagement/suspend/pspec.xml - - - suspend - - lzo - libx86 - plymouth-core-libs - pciutils - - - /etc/suspend.conf - /etc/suspend.key - /usr/sbin - /usr/share/doc - - - suse/configure-suspend-encryption.sh - - - - - 2014-03-09 - 1.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-12-29 - 1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - acpica - http://www.acpica.org - - PisiLinux Community - admins@pisilinux.org - - custom - app:console - hardware.powermanagement - ACPI debugging tools written by Intel - Intel ACPI hata ayıklama araçları - acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. - acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. - ftp://gentoo.arcticnetwork.ca/pub/gentoo/distfiles/acpica-unix-20130117.tar.gz - hardware/powermanagement/acpica/pspec.xml - - - acpica - - /usr/share/doc - /usr/bin - /usr/sbin - /usr/share/man/man1 - - - iasl.1 - LICENSE - - - - - 2014-03-05 - 0.0_20130117 - Rebuild for buildhost - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-02 - 0.0_20130117 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-12-22 - 0.0_20130117 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - upower - http://upower.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.powermanagement - Power Management Service - Güç Yönetim Hizmeti - upower provides a daemon, API and command line tools for managing power devices attached to the system. - upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. - http://upower.freedesktop.org/releases/upower-0.9.23.tar.xz - - tr.po - - - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - eudev-devel - libusb-devel - libplist-devel - libimobiledevice-devel - gobject-introspection-devel - docbook-xsl - intltool - - - add-tr.patch - - hardware/powermanagement/upower/pspec.xml - - - upower - - dbus - glib2 - polkit - dbus-glib - eudev - libplist - libimobiledevice - pm-utils - libusb - - - /lib - /usr/lib - /etc/dbus-1 - /usr/share/man - /usr/share/doc - /etc/UPower - /usr/bin - /var/lib/upower - /usr/share/dbus-1 - /usr/libexec - /usr/share/polkit-1 - /usr/share/locale - /usr/share/dbus-1/interfaces/*.xml - /usr/lib/girepository-1.0/*.typelib - - - - upower-devel - Development files for upower - upower için geliştirme dosyaları - - upower - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - eudev-devel - libplist-devel - libimobiledevice-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2015-01-28 - 0.9.23 - Rebuild. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 0.9.23 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 0.9.23 - Rebuild for libplist and libimobiledevice. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-05 - 0.9.23 - Rebuild and builddep docbook-xsl added. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-02 - 0.9.23 - Add patch. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-08 - 0.9.23 - Moved some files to core pack - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-12-19 - 0.9.23 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 0.9.21 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-03 - 0.9.20 - Fix suspend/hibernation issue - Marcin Bojara - marcin@pisilinux.org - - - 2013-03-20 - 0.9.20 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-20 - 0.9.18 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pm-utils - http://pm-utils.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A toolset to suspend and hibernate computers - Askıya alma işlemleri için gerekli araçlar - pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. - pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. - http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz - http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz - - xmlto - libxslt - util-linux - - - pisilinux/check-for-swap-partition.patch - pisilinux/disable-powersave.patch - suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff - suse/pm-utils-1.3.0-suse-smart-uswsusp.patch - suse/pm-utils-1.4.1-suse-config.patch - gentoo/1.4.1-bluetooth-sync.patch - gentoo/1.4.1-disable-sata-alpm.patch - gentoo/1.4.1-fix-intel-audio-powersave-hook.patch - gentoo/1.4.1-logging-append.patch - - hardware/powermanagement/pm-utils/pspec.xml - - - pm-utils - - hdparm - vbetool - - - /etc/pm - /usr/lib - /run/pm-utils - /usr/share/doc - /usr/share/man - /usr/bin - /usr/sbin - /usr/lib/pkgconfig - /usr/lib/pm-utils/video-quirks - /usr/lib/tmpfiles.d/pm-utils.conf - - - tmpfiles.conf - suse/hooks/config.d/rtcwake.config - suse/hooks/sleep.d/30s2disk-check - suse/hooks/sleep.d/45pcmcia - - - - - 2015-07-31 - 1.4.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-01-10 - 1.4.1 - Add tmpfiles.conf - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 1.4.1 - Fix hibernation issue, add some patches. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-03 - 1.4.1 - Fix suspend/hibernation issue - Marcin Bojara - marcin@pisilinux.org - - - 2011-04-05 - 1.4.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - lm_sensors - http://www.lm-sensors.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - library - hardware.powermanagement - Hardware monitoring tools - Donanım sıcaklığı izleyicisi - lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. - lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. - http://dl.lm-sensors.org/lm-sensors/releases/lm_sensors-3.4.0.tar.bz2 - - rrdtool-devel - - - lm_sensors-fancontrol.patch - - hardware/powermanagement/lm_sensors/pspec.xml - - - lm_sensors - - dmidecode - rrdtool - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - lm_sensors-devel - Development files for lm_sensors - lm_sensors için geliştirme dosyaları - - lm_sensors - rrdtool-devel - - - /usr/include - /usr/share/man/man3 - - - - - 2015-10-02 - 3.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-14 - 3.3.5 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-19 - 3.3.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - docker - http://docker.io - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache - app:console - hardware.virtualization - Pack, ship and run any application as a lightweight container - Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer - An open platform for distributed applications for developers and sysadmins - Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform - https://github.com/docker/docker/archive/v1.9.0.tar.gz - - git - golang - btrfs-progs-devel - device-mapper-devel - sqlite-devel - - hardware/virtualization/docker/pspec.xml - - - docker - - git - golang - sqlite - device-mapper - btrfs-progs - bridge-utils - iproute2 - iptables - - - /etc - /usr/bin/ - /usr/lib/docker - /usr/share/ - - - System.Service - System.Package - - - cgroupfs-mount - cgroupfs-umount - docker.confd - - - - - 2015-11-04 - 1.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-10-28 - 1.8.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-12 - 1.8.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-06 - 1.8.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-12 - 1.8.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-24 - 1.7.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 1.7.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-17 - 1.6.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - security - 2015-05-09 - 1.6.1 - Version bump.http://seclists.org/fulldisclosure/2015/May/28 - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-17 - 1.6.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - virt-wrapper - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.virtualization - Wrapper for virtualization software - Sanallaştırma yazılımları için önbetik - virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. - virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. - http://source.pisilinux.org/1.0/virt-wrapper-0.1.1.tar.gz - - pass-options-arg.patch - kmod.patch - change_group.patch - - hardware/virtualization/virt-wrapper/pspec.xml - - - virt-wrapper - - /usr/libexec - /usr/share/locale - /usr/share/doc - - - - - 2014-11-23 - 0.1.1 - Chande group for usb connect issue - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-17 - 0.1.1 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-13 - 0.1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - lirc - http://www.lirc.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - service - hardware.irda - LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). - Linux Infrared Remote Control system - Linux Kızılötesi Uzaktan Kumanda Sistemi - Sistema de control remoto por infrarrojo en Linux - lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. - lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. - LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. - http://downloads.sourceforge.net/project/lirc/LIRC/0.9.3/lirc-0.9.3.tar.bz2 - - alsa-lib-devel - libftdi-devel - libusb-compat-devel + tcl-devel libX11-devel - libxslt - doxygen - - hardware/irda/lirc/pspec.xml - - - lirc - - alsa-lib - libftdi - libusb-compat - libX11 - - - /etc - /lib/udev/rules.d - /usr/bin - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man - /usr/share/lirc - /run - - - System.Service - - - lirc.conf.d - lirc.tmpfiles - lirc.logrotate - - - - lirc-devel - Development files for lirc - lirc için geliştirme dosyaları - - lirc - - - /usr/include - - - - - 2015-10-02 - 0.9.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.9.0 - Rebuild for libftdi - Kamil Atlı - suvarice@gmail.com - - - 2012-10-01 - 0.9.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - usbmuxd - http://marcansoft.com/blog/iphonelinux/usbmuxd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - service - library - hardware.mobile - Daemon for communicating with Apple's iPod Touch and iPhone - Apple iPod Touch ve iPhone iletişim hizmeti - usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. - usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. - http://www.libimobiledevice.org/downloads/libusbmuxd-1.0.9.tar.bz2 - - libplist-devel - - hardware/mobile/usbmuxd/pspec.xml - - - usbmuxd - - libplist - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/sbin - /lib/udev/rules.d - - - - usbmuxd-devel - Development files for usbmuxd - usbmuxd için geliştirme dosyaları - - usbmuxd - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 1.0.9 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-20 - 1.0.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libimobiledevice - http://www.libimobiledevice.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for connecting to mobile devices - libimobiledevice is a library for connecting to mobile devices including phones and music players - http://www.libimobiledevice.org/downloads/libimobiledevice-1.1.7.tar.bz2 - - gnutls-devel - usbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - - hardware/mobile/libimobiledevice/pspec.xml - - - libimobiledevice - - gnutls - usbmuxd - libplist - libtasn1 - libgcrypt - - - /usr/lib - /usr/bin - /usr/share/man/man1 - /usr/share/doc/libimobiledevice - - - - libimobiledevice-devel - Development files for libimobiledevice - - gnutls-devel - usbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - libimobiledevice - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-01-25 - 1.1.7 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-24 - 1.1.6 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.1.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-04 - 1.1.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-12 - 1.1.4 - Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-03-18 - 1.1.4 - fix cython disagreement - Erdinç Gültekin - admins@pisilinux.org - - - 2012-10-20 - 1.1.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libplist - http://matt.colyer.name/projects/iphone-linux - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for manipulating Apple Binary and XML Property Lists - Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane - libplist is a library for manipulating Apple Binary and XML Property Lists. - libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. - http://www.libimobiledevice.org/downloads/libplist-1.11.tar.bz2 - - libxml2-devel - python-devel - cython - - hardware/mobile/libplist/pspec.xml - - - libplist - - libxml2 - python - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libplist-devel - Development files for libplist - libplist için geliştirme dosyaları - - libplist - libxml2-devel - python-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-07-31 - 1.11 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-15 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-02 - 1.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-01 - 1.8 - Cosmetics Fixed - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-20 - 1.8 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gkrellm - http://www.gkrellm.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - service - hardware - A compact and clean system monitoring tool - Sade görünümlü sistem durumu izleyicisi - A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. - Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. - gkrellm - http://members.dslextreme.com/users/billw/gkrellm/gkrellm-2.3.5.tar.gz - - gnutls-devel - gtk2-devel - pango-devel - libX11-devel - glib2-devel - libgcrypt-devel - libICE-devel - libSM-devel - - - drop_privileges.patch - gkrellmd-conf.patch - - hardware/info/gkrellm/pspec.xml - - - gkrellm - - gnutls - gtk2 - pango - glib2 - libX11 - libgcrypt - libICE - gdk-pixbuf - libSM - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - /usr/share/man - - - System.Service - - - gkrellm.desktop - gkrellm.png - - - - gkrellm-devel - Development files for gkrellm - gkrellm için geliştirme dosyaları - - gkrellm - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-17 - 2.3.5 - Rebuild - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-04-07 - 2.3.5 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-23 - 2.3.5 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 2.3.5 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-05-06 - 2.3.5 - Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-15 - 2.3.5 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - dmidecode - http://www.nongnu.org/dmidecode/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware - Tool to analyse BIOS DMI data - BIOS DMI verisi inceleme araçları - Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. - dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. - dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. - http://download.savannah.gnu.org/releases/dmidecode/dmidecode-2.12.tar.gz - hardware/info/dmidecode/pspec.xml - - - dmidecode - - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man - - - laptop-detect - - - - - 2014-01-22 - 2.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-01-25 - 2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - media-player-info - http://cgit.freedesktop.org/media-player-info - - PisiLinux Community - admins@pisilinux.org - - BSD - hardware - Media player capability database - Medya oynatıcısı yetenek veritabanı - media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. - media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. - http://www.freedesktop.org/software/media-player-info/media-player-info-22.tar.gz - - eudev-devel - python3-devel - - hardware/info/media-player-info/pspec.xml - - - media-player-info - - /lib/udev/rules.d - /lib/udev - /usr/share/media-player-info - /usr/share/doc - - - - - 2015-02-16 - 22 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-05 - 21 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-25 - 19 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-02-20 - 17 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2011-10-05 - 15 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - b43-fwcutter - http://bu3sch.de/b43/fwcutter - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.firmware - Firmware Tool for Broadcom 43xx - Broadcom kablosuz sürücüleri için firmware üretme aracı - Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack - b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. - http://bues.ch/b43/fwcutter/b43-fwcutter-018.tar.bz2 - hardware/firmware/b43-fwcutter/pspec.xml - - - b43-fwcutter - - /usr/bin - /usr/share/doc - /usr/share/man/man1 - - - - - 2014-02-04 - 018 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-11-15 - 015 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - b43-firmware - http://www.linuxwireless.org/en/users/Drivers/b43 - - PisiLinux Community - admins@pisilinux.org - - freedist - data - hardware.firmware - Firmware for Broadcom B43 wireless network chips - Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı - Firmware for Broadcom wireless network chips - Broadcom kablosuz ağ çipleri için aygıt yazılımı - http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o - http://www.lwfinger.com/b43-firmware/broadcom-wl-5.100.138.tar.bz2 - - b43-fwcutter - - hardware/firmware/b43-firmware/pspec.xml - - - b43-firmware - - /lib/firmware - - - - - 2014-01-17 - 5.100.138 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-15 - 5.100.138 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - alsa-firmware - http://www.alsa-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv2+ - LGPLv2+ - BSD - data - hardware.firmware - firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). - Firmware for several ALSA-supported sound cards - Çeşitli ALSA destekli ses kartları için firmware dosyaları - alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. - alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. - ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.0.29.tar.bz2 - hardware/firmware/alsa-firmware/pspec.xml - - - alsa-firmware - - /usr/share/alsa/firmware - /lib/firmware - /usr/share/doc - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-12-06 - 1.0.27 - Remove conflicted ctefx.bin file, it is in linux-firmware package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-10 - 1.0.27 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-29 - 1.0.25.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - foomatic-db - http://www.linuxprinting.org/foomatic.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - data - hardware.printer - Database of printers and printer drivers - Yazıcı sürücüleri - foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. - Foomatic yazıcı veritabanı ve sürücüleri - http://www.openprinting.org/download/foomatic/foomatic-db-4.0-20150819.tar.gz - - cleanup-script - - - fedora/foomatic-db-device-ids.patch - fedora/foomatic-db-invalid.patch - - hardware/printer/foomatic-db/pspec.xml - - - foomatic-db - - pnm2ppa - - - /usr/share - - - - - 2015-10-28 - 4.0.20150819 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 4.0_20130103 - Depend on cups-filters. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-24 - 4.0_20130103 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-03 - 4.0_20130103 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cups - http://www.cups.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - service - hardware.printer - Common Unix Printing System - Unix Ortak Yazdırma Sistemi - cups provides a portable printing layer for *nix-based operating systems. - http://www.cups.org/software/2.0.3/cups-2.0.3-source.tar.bz2 - - acl-devel - pam-devel - dbus-devel - zlib-devel - libusb-devel - libgcc - mit-kerberos - libpaper-devel - - - archlinux/cups-no-export-ssllibs.patch - archlinux/cups-no-gzip-man.patch - archlinux/cups-1.6.2-statedir.patch - archlinux/cups-no-gcrypt.patch - fedora/cups-enum-all.patch - fedora/cups-final-content-type.patch - fedora/cups-res_init.patch - gentoo/cups-1.6.0-fix-install-perms.patch - gentoo/cups-2.0.1-rename-systemd-service-files.patch - pisilinux/lib64.patch - pisilinux/nostrip.patch - pisilinux/cups-run.patch - pld-linux/cups-avahi-address.patch - - hardware/printer/cups/pspec.xml - - - cups - - acl - pam - dbus - zlib - libusb - libgcc - libpaper - mit-kerberos - - - /etc/cups/*conf - /usr/lib/tmpfiles.d/cups.conf - /usr/lib - /usr/sbin - /usr/bin - /var/cache/cups/rss - /var/spool/cups/tmp - /run/cups/certs - /var/log/cups - /etc - /lib/udev/rules.d - /lib/systemd/system - /usr/share/cups - /usr/share/icons - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Service - System.Package - - - tmpfiles.conf - cups.logrotate - fedora/textonly.ppd - - - - cups-devel - Development files for cups - cups için geliştirme dosyaları - - cups - - - /usr/include - /usr/bin/cups-config - - - - cups-32bit - 32-bit shared libraries for cups - cups için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - zlib-32bit - openssl-32bit - - - glibc-32bit - zlib-32bit - openssl-32bit - libgcc - cups - - - /usr/bin/cups-config-32bit - /usr/lib32 - - - - - 2015-06-10 - 2.0.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-02-05 - 2.0.1 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-09-25 - 1.7.5 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.7.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-30 - 1.7.1 - Fix comar service. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-18 - 1.7.1 - Add tmpfiles.conf. Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-17 - 1.7.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-1 - 1.7.0 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-10-14 - 1.6.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-13 - 1.6.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-19 - 1.6.1 - Lib64 path correction. - Ertan Güven - ertan@pisilinux.org - - - 2013-03-13 - 1.6.1 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2012-10-18 - 1.5.4 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-10-18 - 1.5.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libpaper - http://packages.debian.org/unstable/source/libpaper - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.printer - Library for handling paper characteristics - Kağıt özelliklerini düzenlemek için kitaplık - Libpaper is a programming library for handling paper characteristics. - libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. - Libpaper es una librería de programación para manejar características de papel. - http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.24.tar.gz - - libpaper-1.1.23-debianbug475683.patch - libpaper-useglibcfallback.patch - - hardware/printer/libpaper/pspec.xml - - - libpaper - - /usr/bin - /usr/sbin - /usr/lib - /etc/ - /usr/share/man - /usr/share/doc - /usr/share/locale - - - papersize - - - - libpaper-devel - Development files for libpaper - libpaper için geliştirme dosyaları - - libpaper - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-21 - 1.1.24 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2010-10-13 - 1.1.24 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - pnm2ppa - http://pnm2ppa.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Driver addons for some Hp Deskjet printers - Bazı Hp Deskjet yazıcılar için sürücü eklentileri - Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. - Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar - mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz - - pnm2ppa-default_config.patch - - hardware/printer/pnm2ppa/pspec.xml - - - pnm2ppa - - enscript - - - /etc - /etc/pdq - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/pnm2ppa - - - - - 2014-02-04 - 1.13 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2010-10-13 - 1.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - foomatic-db-engine - http://www.linuxprinting.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Foomatic printer database engine - Foomatic yazıcı veritabanı motoru - foomatic-db-engine is the layer that provides the database engine to Foomatic. - foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. - http://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0.12.tar.gz - - libxml2-devel - cups-devel - - - foomatic-db-engine-4.0.8-fix-sandbox.patch - 4.0.7-perl-module.patch - 4.0.7-respect-ldflag.patch - - hardware/printer/foomatic-db-engine/pspec.xml - - - foomatic-db-engine - - libxml2 - - - /usr/bin - /usr/sbin - /usr/lib - /etc/foomatic - /usr/share/foomatic/templates - /usr/share/man - /usr/share/doc - - - - - 2015-10-28 - 4.0.12 - v.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-09-13 - 4.0.11 - Rebuild for new perl. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-06-15 - 4.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 4.0.8 - Depend on cups-filters. - PisiLinux Community - admins@pisilinux.org - - - 2013-12-01 - 4.0.8 - Rebuild for new perl. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-19 - 4.0.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cups-filters - http://www.openprinting.org - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - GPLv3 - GPLv2+ - GPLv3+ - LGPLv2+ - MIT - data - library - app:console - hardware.printer - OpenPrinting CUPS filters and backends - Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. - http://www.openprinting.org/download/cups-filters/cups-filters-1.1.0.tar.xz - - cups-devel - glib2-devel - tiff-devel - lcms2-devel - dbus-devel - python-devel - libpng-devel - freetype-devel + libXft-devel fontconfig-devel - libjpeg-turbo-devel - dejavu-fonts - poppler-utils - poppler-cpp-devel - zlib-devel - avahi-devel - avahi-glib-devel - python-cups - qpdf-devel - ghostscript-devel - poppler-devel - hardware/printer/cups-filters/pspec.xml + + tk-8.6.1-conf.patch + tk-8.6.1-fix-xft.patch + tk-8.6.1-make.patch + + programming/language/tcl/tcltk/pspec.xml - cups-filters + tcltk - cups - dbus - tiff - zlib - glib2 - lcms2 - libgcc - libpng + tcl + libX11 + libXft fontconfig - mit-kerberos - libjpeg-turbo - qpdf - ghostscript - poppler - e2fsprogs - avahi-glib - avahi-libs - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/ppd /usr/bin - /usr/share/cups - /etc/cups/cups-browsed.conf - /etc/fonts/conf.d/99pdftoopvp.conf + /usr/lib + /usr/lib/tk8.5 + /usr/share/doc + /usr/share/man - - cups - foomatic-filters - - - foomatic-filters - - cups-filters-devel - Development files for cups-filters - Cups-filters için geliştirme dosyaları + tcltk-devel + Development files for tcltk + tcltk için geliştirme dosyaları - cups-filters + tcltk + libX11-devel + tcl-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/*.a + /usr/lib/tkConfig.sh + /usr/lib/pkgconfig + /usr/share/man/man3 - - 2015-10-28 - 1.1.0 + + 2014-12-14 + 8.6.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-30 + 8.6.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-17 + 8.6.1 + Version bump and add patch. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 8.6.0 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-26 + 8.6.0 + Move pc files to devel pack, increase release no. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-01-26 + 8.6.0 + bump + Erdinç Gültekin + admins@pisilinux.org + + + 2012-09-15 + 8.5.12 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + tcl + http://www.tcl.tk + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.tcl + Tcl programming language + Tcl programlama dili + Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. + Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. + Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks + mirrors://sourceforge/tcl/tcl8.6.4-src.tar.gz + + zlib-devel + + programming/language/tcl/tcl/pspec.xml + + + tcl + + zlib + + + /usr/bin + /usr/lib + /usr/lib/tcl8.5 + /usr/share/doc + /usr/share/man + + + + tcl-devel + Development files for tcl + tcl için geliştirme dosyaları + + tcl + zlib-devel + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/lib/tclConfig.sh + /usr/share/man/man3 + + + + sqlite-tcl + files for sqlite-tcl + + tcl + + + /usr/lib/sqlite3.8.8.3/libsqlite* + /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.3.tm + /usr/share/man/mann/tdbc_sqlite3.n + /usr/share/man/mann/sqlite3.n + + + + + 2015-06-11 + 8.6.4 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2015-02-15 - 1.0.65 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-25 - 1.0.58 - Verison bump. - Serdar Soytetir - kaptan@pisilinux.org - + 2015-03-03 + 8.6.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-12 + 8.6.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-30 + 8.6.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + 2014-05-17 - 1.0.53 - Verison bump. + 8.6.1 + Add patch. Alihan Öztürk alihan@pisilinux.org - - 2014-02-05 - 1.0.44 - Rebuild to replace foomatic-filters. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-28 - 1.0.44 - rebuild for unused and runtime dep. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-18 - 1.0.44 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-11-02 - 1.0.41 - Version bump. + 2014-01-06 + 8.6.1 + Rebuild to fix stripping. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-10-16 - 1.0.40 + 2013-10-24 + 8.6.1 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-10-10 - 1.0.39 - Cersion bump,rebuil for new poppler. + 2013-07-26 + 8.6.0 + Move pc files to devel pack, increase release no. Serdar Soytetir kaptan@pisilinux.org - 2013-07-28 - 1.0.35 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-01 - 1.0.35 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - enscript - http://www.gnu.org/software/enscript/enscript.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Powerful text-to-postscript converter - Metin dosyalarından postscript belge oluşturma aracı - enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. - Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç - http://www.iki.fi/mtr/genscript/enscript-1.6.4.tar.gz - - enscript-1.6.3-security.patch - enscript-1.6.3-language.patch - enscript-catmur.patch - ruby.patch - enscript-1.6.4-CVE-2008-3863-CVE-2008-4306.patch - enscript-1.6.4-config.patch - - hardware/printer/enscript/pspec.xml - - - enscript - - /etc - /usr/bin - /usr/share/doc - /usr/share/enscript - /usr/share/info - /usr/share/locale - /usr/share/man - - - ruby.st - - - - - 2014-01-23 - 1.6.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.6.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sane-backends - http://www.sane-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.scanner - Scanner access software - SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları - Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. - SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. - sane - ftp://ftp.archlinux.org/other/sane/sane-backends-1.0.24.tar.gz - - libieee1284-devel - libusb-compat-devel - libnl-devel - openssl-devel - cups-devel - libgphoto2-devel - libv4l-devel - avahi-devel - libjpeg-turbo-devel - tiff-devel - net-snmp-devel - - - fix-buffer-overflow.patch - sane-backends-1.0.20-open-macro.patch - sane-backends-1.0.23-sane-config-multilib.patch - sane-backends-1.0.23-soname.patch - sane-backends-1.0.21-epson-expression800.patch - sane-backends-1.0.23-udev.patch - suse/fix-mustek_pp_ccd300.c.patch - archlinux/network.patch - archlinux/segfault-avahi-fix-kodakio.patch - - hardware/scannner/sane-backends/pspec.xml - - - sane-backends - - libnl - openssl - libusb-compat - libieee1284 - avahi-libs - libgphoto2 - libv4l - tiff - libjpeg-turbo - net-snmp - cups - libexif - - - /etc/sane.d/dll.d - /etc/env.d - /etc/sane.d - /usr/bin - /usr/share/locale - /usr/sbin - /usr/libexec - /usr/lib - /usr/share/doc/sane-backends/README - /usr/share/doc/sane-backends/COPYING - /usr/share/man - /usr/share/pixmaps - /lib/udev/rules.d - /usr/share/sane - - - sane.png - 30sane - - - - sane-backends-devel - Development files for sane-backends - sane-backends için geliştirme dosyaları - - sane-backends - - - /usr/include - /usr/lib/pkgconfig - - - - sane-backends-docs - Documentation for SANE backends - sane-backends için belgelendirme dosyaları - - /usr/share/doc - - - - - 2014-02-15 - 1.0.24 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-21 - 1.0.23 - Move devel files fix to paths - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-07-28 - 1.0.23 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-10-25 - 1.0.23 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libgphoto2 - http://www.gphoto.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Library that implements support for numerous digital cameras - Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane - Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. - libgphoto2 is the core library designed to allow access to digital camera by external programs. - libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. - Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. - mirrors://sourceforge/gphoto/libgphoto2-2.5.8.tar.bz2 - - doxygen - libxml2-devel - gd-devel - tiff-devel - libjpeg-turbo-devel - libexif-devel - libusb-devel - - hardware/misc/libgphoto2/pspec.xml - - - libgphoto2 - - libxml2 - libtool-ltdl - libusb - gd - libexif - libjpeg-turbo - - - /usr/bin - /lib/udev - /usr/share/doc/libgphoto2/README - /usr/share/doc/libgphoto2/COPYING - /usr/lib - /usr/share/libgphoto2 - /usr/share/hal/fdi - /lib/udev/rules.d - /usr/share/locale - /usr/share/man - - - System.Package - - - - libgphoto2-docs - Documentation for libgphoto2 - libgphoto2 için detaylı belgelendirme - - /usr/share/doc/libgphoto2 - /usr/share/doc/libgphoto2/camlibs - /usr/share/doc/libgphoto2/apidocs.html - /usr/share/doc/libgphoto2/linux-hotplug - - - - libgphoto2-devel - Development files for libgphoto2 - libgphoto2 için geliştirme dosyaları - - libexif-devel - libgphoto2 - - - /usr/bin/gphoto2-config* - /usr/bin/gphoto2-port-config - /usr/include/gphoto2 - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-08-02 - 2.5.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-15 - 2.5.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-30 - 2.5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 2.5.0 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libieee1284 - http://cyberelk.net/tim/libieee1284/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Library to query devices using IEEE1284 - IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane - Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. - Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. - Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. - La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. - mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 - - python-devel - - - libieee1284-strict-aliasing.patch - - hardware/misc/libieee1284/pspec.xml - - - libieee1284 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - python-libieee1284 - Python bindings for libieee1284 - libieee1284 için Python bağlayıcıları - - libieee1284 - - - /usr/lib/python* - - - - libieee1284-devel - Development files for libieee1284 - libieee1284 için geliştirme dosyaları - - libieee1284 - - - /usr/include - /usr/share/man/man3 - - - - - 2014-03-10 - 0.2.11 - Fix rpath - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-03-09 - 0.2.11 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 0.2.11 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 0.2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gpm - http://linux.schottelius.org/gpm/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.misc - Console mouse driver - Konsol tabanlı fare sürücüsü - GPM (short for General Purpose Mouse) brings mouse support to TTYs. - Genel amaçlı fare ve konsolda fare desteği içindir. - http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 - - ncurses-devel - texinfo - - hardware/misc/gpm/pspec.xml - - - gpm - - ncurses - - - /usr/bin - /usr/include - /usr/share/man - /usr/share/info - /usr/share/doc - /usr/lib - /etc - /usr/share/emacs - - - System.Service - - - gpm.conf.d - - - - - 2014-05-20 - 1.20.7 - Rebuild, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-25 - 1.20.7 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 1.20.7 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libmtp - http://libmtp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - An implementation of Microsoft's Media Transfer Protocol (MTP) - Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane - libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. - libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. - libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. - libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. - mirrors://sourceforge/libmtp/1.9/libmtp-1.1.9.tar.gz - - doxygen - libusb-devel - libgcrypt-devel - - hardware/misc/libmtp/pspec.xml - - - libmtp - - libusb - libgcrypt - - - /usr/bin - /usr/lib - /lib/udev - /lib/udev/rules.d - /usr/share/hal - /usr/share/doc - - - - libmtp-devel - Development files for libmtp - libmtp için geliştirme dosyaları - - libmtp - libusb-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-28 - 1.1.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.1.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-05 - 1.1.6 - Rebuild for libgcrypt. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-31 - 1.1.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 1.1.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libx86 - http://www.codon.org.uk/~mjg59/libx86/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - A hardware-independent library for executing real-mode x86 code - Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane - libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. - libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. - A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. - http://www.codon.org.uk/~mjg59/libx86/downloads/libx86-1.1.tar.gz - - libx86-0.99-ifmask.patch - libx86-add-pkgconfig.patch - libx86-mmap-offset.patch - - hardware/misc/libx86/pspec.xml - - - libx86 - - /usr/lib - /usr/share/doc - - - - libx86-devel - - libx86 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-24 - 1.1 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libmtdev - http://bitmath.org/code/mtdev - - PisiLinux Community - admins@pisilinux.org - - MIT - library - hardware.misc - Multitouch Protocol Translation Library - Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi - The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. - Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. - http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz - hardware/misc/libmtdev/pspec.xml - - - libmtdev - - /usr/bin - /usr/lib - /usr/share/doc - - - - libmtdev-devel - Development files of libmtdev - Libmtdev için geliştirme dosyaları - - libmtdev - - - /usr/include - /usr/lib/pkgconfig - - - - libmtdev-32bit - 32-bit shared libraries for libmtdev - emul32 - emul32 - - glibc-32bit - - - libmtdev - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.5 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 1.1.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2012-10-03 - 1.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsmbios - http://linux.dell.com/libsmbios/main/index.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - OSL-2.0 - library - app:console - hardware.misc - Provide access to (SM)BIOS information - (SM)BIOS bilgilerine ulaşabilmeyi sağlar - libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. - http://linux.dell.com/libsmbios/download/libsmbios/libsmbios-2.2.28/libsmbios-2.2.28.tar.bz2 - - libxml2-devel - - hardware/misc/libsmbios/pspec.xml - - - libsmbios - - libgcc - - - /etc - /usr/share - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/locale - - - - libsmbios-devel - Development files for libsmbios - libsmbios için geliştirme dosyaları - - libsmbios - - - /usr/include/smbios - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-02-01 - 2.2.28 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-16 - 2.2.28 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libftdi - http://www.intra2net.com/en/developer/libftdi/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - A library for accessing to FTDI USB chips - FTDI USB entegrelerine erişim kitaplığı - libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. - libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. - http://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.1.tar.bz2 - - doxygen - - - fix-udev-group_and_usb_name.patch - - hardware/misc/libftdi/pspec.xml - - - libftdi - - libusb - - - /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/doc - - - - python-libftdi - Python bindings for libftdi - Python için libftdi bağlayıcıları - - libusb - python3 - libftdi - - - /usr/lib/python* - - - - libftdi-devel - Development files for libftdi - libftdi için geliştirme dosyaları - - libftdi - libusb-devel - - - /usr/bin/libftdi-config - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/doc/libftdi/examples - - - - - 2014-07-05 - 1.1 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 0.20 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-03-09 - 0.20 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-30 - 0.20 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-11-16 - 0.20 - First release - PisiLinux Community - namso-01qhotmail.it - - - - - - libcdio-paranoia - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - GPLv2+ - LGPLv2.1 - library - hardware.optical - CD paranoia libraries from libcdio - An advanced CDDA reader with error correction. - mirrors://gnu/libcdio/libcdio-paranoia-10.2+0.90+1.tar.bz2 - - libcdio-devel - - - libcdio-paranoia-0.90-mkdir_p.patch - - hardware/optical/libcdio-paranoia/pspec.xml - - - libcdio-paranoia - - libcdio - - - /usr/share/info - /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - - - libcdio-paranoia-devel - Development files for libcdio-paranoia - - libcdio-paranoia - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-02-25 - 0.90_p1 - Rebuild for libcdio - Kamil Atlı - suvarice@gmail.com - - - 2014-02-25 - 0.90_p1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-07-28 - 0.90_p1 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-07 - 0.90_p1 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - cdrkit - http://cdrkit.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Suite of programs for CD/DVD recording. - Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. - http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz - - cdparanoia-devel - libcap-devel - zlib-devel - bzip2 - cmake - - hardware/optical/cdrkit/pspec.xml - - - cdrkit - - file - zlib - bzip2 - libcap - - - /usr/bin - /usr/sbin - /usr/include - /usr/lib - /usr/share/man - /usr/share/doc - - - cdrtools - - - - - 2013-09-14 - 1.1.11 - Disable patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-05-16 - 1.1.11 - fixing working - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-11 - 1.1.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cdparanoia - http://www.xiph.org/paranoia/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.optical - An advanced CDDA reader with error correction - Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu - cdparanoia is an advanced CDDA (audio CD) reader with error correction. - http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz - - build_system.patch - cdparanoia-III-05-gcc4.3.patch - - hardware/optical/cdparanoia/pspec.xml - - - cdparanoia - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - cdparanoia-devel - Development files for cdparanoia - cdparanoia için geliştirme dosyaları - - cdparanoia - - - /usr/include - - - - - 2014-05-20 - 3.10.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-10 - 3.10.2 - Rebuild for patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2014-01-01 - 3.10.2 - Release bump and clean - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-09-14 - 3.10.2 - *Release bump. - *Disable patch - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-10-13 - 3.10.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcdio - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.optical - Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. - A library to encapsulate CD-ROM reading and control - CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü - This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. - GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. - mirrors://gnu/libcdio/libcdio-0.92.tar.gz - - libgcc - - - libcdio-0.83-linking.patch - - hardware/optical/libcdio/pspec.xml - - - libcdio - - libgcc - - - /usr/share/info - /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - - - libcdio-devel - Development files for libcdio - libcdio için geliştirme dosyaları - - libcdio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 0.92 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 0.90 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 0.90 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-05-27 - 0.82 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - alsa-utils - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.sound - Advanced Linux Sound Architecture (ALSA) utilities - ALSA araçları - alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). - Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir - ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.0.29.tar.bz2 - - xmlto - util-linux - libxslt - ncurses-devel - libsamplerate-devel - alsa-lib-devel - - hardware/sound/alsa-utils/pspec.xml - - - alsa-utils - - ncurses - alsa-lib - libsamplerate - - - /etc - /sbin - /usr/share/doc - /usr/share/man - /var/lib/alsa - /usr/bin - /usr/share/alsa - /lib/udev/rules.d - /usr/share/sounds - /lib/systemd/system - /usr/share/locale - - - System.Service - - - alsaunmute - 01beep.conf - alsactl.conf - alsaunmute.1 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27.2 - Remove systemd part. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-05 - 1.0.27.2 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-08-22 - 1.0.27.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 1.0.26.20121013 - First release + 2013-01-26 + 8.6.0 + bump Erdinç Gültekin admins@pisilinux.org + + 2012-09-15 + 8.5.12 + First release + Serdar Soytetir + kaptan@pisilinux.org + - alsa-lib - http://www.alsa-project.org/ + mercurial + http://www.selenic.com/mercurial PisiLinux Community admins@pisilinux.org GPLv2 - library app:console - hardware.sound - The Advanced Linux Sound Architecture (ALSA) library - Gelişmiş Linux Ses Mimarisi kütüphanesi - alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. - alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. - ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.0.29.tar.bz2 + programming.scm + A distributed SCM tool + Dağıtık bir kaynak kod yönetim aracı + Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. + A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. + Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi + Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. + http://mercurial.selenic.com/release/mercurial-3.3.3.tar.gz python-devel - hardware/sound/alsa-lib/pspec.xml + programming/scm/mercurial/pspec.xml - alsa-lib + mercurial python - /usr/lib /usr/bin - /usr/share/doc - /usr/share/alsa - - - - alsa-lib-devel - Development files for alsa-lib - alsa-lib için geliştirme dosyaları - - alsa-lib - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include/sys - /usr/include/alsa - /usr/share/aclocal - /usr/share/man/man3 - - - - alsa-lib-32bit - 32-bit shared libraries for alsa-lib - alsa-lib için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - - - /usr/lib32 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27.2 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-05 - 1.0.27.2 - Rebuild for buildhost - PisiLinux Community - admins@pisilinux.org - - - 2013-08-22 - 1.0.27.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 1.0.26.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - alsa-tools - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - hardware.sound - ALSA configuration tools - Gelişmiş Linux Ses Mimarisi araçları - alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. - ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.0.29.tar.bz2 - - gtk2-devel - fltk-devel - alsa-lib-devel - - - usx2yloader_udev.patch - firmware_locations.patch - alsa-tools-1.0.17rc1-fix-link.patch - - hardware/sound/alsa-tools/pspec.xml - - - alsa-tools - ALSA console tools - alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. - - alsa-lib - - - /usr/bin - /usr/sbin - /lib/udev + /etc/bash_completion.d /usr/lib - /lib/udev/rules.d - /usr/share/ld10k1 - /usr/share/sounds - /usr/share/man - /usr/share/doc/alsa-tools - - - 90-alsa-tools-firmware.rules - - - - alsa-tools-gui - Graphical frontends for some ALSA tools - alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. - - fltk - gtk2 - alsa-lib - - - /usr/share/man/man1/envy24control.1 - /usr/share/doc/alsa-tools-gui - /usr/share/applications - /usr/share/pixmaps - /usr/bin/echomixer - /usr/bin/envy24control - /usr/bin/hwmixvolume - /usr/bin/hdspconf - /usr/bin/hdspmixer - /usr/bin/rmedigicontrol - /usr/bin/qlo10k1 - - - alsa-tools.xpm - hwmixvolume.png - echomixer.desktop - envy24control.desktop - hdspmixer.desktop - hdspconf.desktop - hwmixvolume.desktop - rmedigicontrol.desktop - - - - alsa-tools-devel - Development files for alsa-tools - alsa-tools için geliştirme dosyaları - - alsa-tools - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - - - - - 2015-03-04 - 1.0.29 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-08-19 - 1.0.28 - Rebuild version 28. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-19 - 1.0.28 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-26 - 1.0.27 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-22 - 1.0.27 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.27 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-01-29 - 1.0.26.20121013 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - sbc - http://www.bluez.org/ - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - LGPLv2.1 - library - hardware.bluetooth - Bluetooth Subband Codec (SBC) library - An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. - http://www.kernel.org/pub/linux/bluetooth/sbc-1.3.tar.gz - hardware/bluetooth/sbc/pspec.xml - - - sbc - - /usr/bin/* - /usr/lib - /usr/share/doc/sbc/* - - - - sbc-devel - Development files for sbc - - sbc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-12-12 - 1.3 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-27 - 1.0 - R.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-12-19 - 1.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - bluez - http://bluez.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - service - library - app:console - hardware.bluetooth - Official Linux Bluetooth protocol stack - Linux resmi Bluetooth protokol yığını - bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. - Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. - https://www.kernel.org/pub/linux/bluetooth/bluez-5.33.tar.xz - - cups-devel - dbus-devel - libnl-devel - alsa-lib-devel - gstreamer-devel - libsndfile-devel - libical-devel - glib2-devel - eudev-devel - readline-devel - - - 0001-Allow-using-obexd-without-systemd-in-the-user-session.patch - - hardware/bluetooth/bluez/pspec.xml - - - bluez - - dbus - eudev - glib2 - readline - libical - bluez-libs - - - /lib/udev/rules.d - /lib/systemd/system - /usr/share/misc - /usr/bin - /usr/sbin - /lib/udev - /lib/bluetooth/obexd - /lib/bluetooth/bluetoothd - /usr/lib - /usr/libexec - /usr/share/man - /var/lib/bluetooth - /usr/share/alsa/bluetooth.conf - /usr/share/dbus-1 - /etc - - - System.Service - - - - bluez-libs - Libraries for use in Bluetooth applications - Uygulamalar için bluetooth erişim kitaplığı - - libical - - - /usr/lib/libbluetooth.so* - /usr/share/doc - - - - bluez-libs-devel - Development files for bluez-libs - bluez-libs için geliştirme dosyaları - - bluez-libs - - - /usr/include/bluetooth - /usr/lib/pkgconfig - - - - - 2015-08-16 - 5.33 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-29 - 5.27 - rebuild. - Vedat Demir - vedat@pisilinux.org - - - 2015-01-25 - 5.27 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-07-05 - 5.21 - Version bump and bugs fix. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-23 - 5.18 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2014-01-28 - 4.101 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-27 - 4.101 - R.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-06-28 - 4.101 - Add patches, --enable-hid2hci --enable-wiimote - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-09 - 4.101 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libfreebob - http://freebob.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.firewire - FreeBoB firewire audio driver library - FreeBoB firewire ses sürücü kütüphanesi - libfreebob implements a userland driver for BeBoB-based firewire audio devices. - libfreebob BeBoB tabanlı firewire ses aygıtları için sürücü kütüphanesi içerir. - mirrors://sourceforge/freebob/libfreebob-1.0.11.tar.gz - - alsa-lib-devel - libraw1394-devel - libavc1394-devel - libiec61883-devel - - - libfreebob-1.0.11-includes.patch - gcc-4.5.patch - fix_usleep.patch - - hardware/firewire/libfreebob/pspec.xml - - - libfreebob - - alsa-lib - libraw1394 - libavc1394 - libiec61883 - - - /usr/lib - /usr/share/doc - - - - libfreebob-devel - Development files for libfreebob - libfreebob için geliştirme dosyaları - - libfreebob - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-01-30 - 1.0.11 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.0.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libdc1394 - http://sourceforge.net/projects/libdc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Programming interface for IEEE 1394 based cameras - IEEE 1394 tabanlı kameralar için programlama kitaplığı - libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). - libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). - Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. - libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). - http://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.3/libdc1394-2.2.3.tar.gz - - libraw1394-devel - - hardware/firewire/libdc1394/pspec.xml - - - libdc1394 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdc1394-devel - Development files for libdc1394 - libdc1394 için geliştirme dosyaları - - libdc1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-09-13 - 2.2.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-20 - 2.2.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-29 - 2.2.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-20 - 2.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libavc1394 - http://sourceforge.net/projects/libavc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). - library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set - 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane - The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. - mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz - - libraw1394-devel - - - libavc1394-0.5.3-librom.patch - - hardware/firewire/libavc1394/pspec.xml - - - libavc1394 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libavc1394-devel - Development files for libavc1394 - libavc1394 için geliştirme dosyaları - - libavc1394 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-31 - 0.5.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-08 - 0.5.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-28 - 0.5.4 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 0.5.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libiec61883 - http://www.linux1394.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. - libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. - http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz - - libraw1394-devel - - - libiec61883-1.2.0-installtests.patch - libiec61883-channel-allocation-without-local-node-rw.patch - - hardware/firewire/libiec61883/pspec.xml - - - libiec61883 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libiec61883-devel - Development files for libiec61883 - libiec61883 için geliştirme dosyaları - - libiec61883 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-03-09 - 1.2.0 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 1.2.0 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2012-11-15 - 1.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libraw1394 - http://www.linux1394.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library that provides direct access to the IEEE 1394 bus - IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane - IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. - libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. - IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. - IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. - http://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.0.tar.xz - hardware/firewire/libraw1394/pspec.xml - - - libraw1394 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libraw1394-devel - Development files for libraw1394 - libraw1394 için geliştirme dosyaları - - libraw1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-20 - 2.1.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-15 - 2.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libffado - http://www.ffado.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - hardware.firewire - Free firewire audio drivers - Ücretsiz firewire ses sürücüleri - libffado tries to provide open-source drivers for all FireWire based pro-audio devices. - libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. - http://www.ffado.org/files/libffado-2.2.1.tgz - - xdg-utils - glibmm-devel - libxmlpp-devel - alsa-lib-devel - dbus-c++-devel - libsigc++-devel - libconfig-devel - libraw1394-devel - libiec61883-devel - libgcc - - - libffado-api-doc-only.patch - libffado-libconfig145.patch - flags.patch - libffado-2.2.1-jack-detect.patch - libffado-2.2.1-mixer.patch - - hardware/firewire/libffado/pspec.xml - - - libffado - library - - glibmm - libgcc - dbus-c++ - libxmlpp - libconfig - libsigc++ - xdg-utils - libraw1394 - libiec61883 - python-setuptools - - - /usr/bin - /usr/lib - /usr/share/locale - /lib/udev/rules.d - /usr/share/libffado - /usr/share/dbus-1 - /usr/share/man - /usr/share/doc - - - - libffado-devel - Development files for libffado - libffado için geliştirme dosyaları - library - - libffado - - - /usr/include - /usr/lib/pkgconfig - - - - ffado-mixer - Graphical User Interface for FFADO - FFADO için grafik arayüzü - app:gui - hardware.sound - ffado-mixer - - libffado - python-setuptools - - - /usr/bin/ffado-mixer* - /usr/share/applications - /usr/share/pixmaps - - - pisilinux-ffadomixer.desktop - - - - - 2015-04-28 - 2.2.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2013-05-06 - 2.1.0 - Sandbox Fixed. - PisiLinux Community - admins@pisilinux.org - - - 2012-11-15 - 2.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dosfstools - http://www.daniel-baumann.ch/software/dosfstools/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.disk - Tools to create and check DOS and VFAT filesystems - DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar - The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies - Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. - http://daniel-baumann.ch/files/software/dosfstools/dosfstools-3.0.26.tar.xz - hardware/disk/dosfstools/pspec.xml - - - dosfstools - - /sbin /usr/share/doc /usr/share/man - 2014-04-03 - 3.0.26 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-18 - 3.0.25 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-21 - 3.0.23 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-06-13 - 3.0.20 - Version bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-13 - 3.0.13 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gptfdisk - http://www.rodsbooks.com/gdisk/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:console - hardware.disk - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.1/gptfdisk-1.0.1.tar.gz - - util-linux - ncurses-devel - popt-devel - libutil-linux-devel - - hardware/disk/gptfdisk/pspec.xml - - - gptfdisk - - ncurses - popt - libgcc - libutil-linux - - - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2015-10-28 - 1.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-11 - 1.0.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-04 - 0.8.10 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - udisks2 - http://udisks.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.disk - Disk Management Service - Disk Yönetim Hizmeti - udisks provides a daemon, API and command line tools for managing disk devices attached to the system. - udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. - http://udisks.freedesktop.org/releases/udisks-2.1.6.tar.bz2 - - tr.po - - - gtk-doc - acl-devel - glib2-devel - polkit-devel - eudev-devel - parted-devel - libatasmart-devel - device-mapper-devel - lvm2-devel - gobject-introspection-devel - sg3_utils-devel - ntfsprogs - dosfstools - docbook-xsl - libxslt - intltool - - - udisks-2.x-ntfs-3g.patch - - hardware/disk/udisks2/pspec.xml - - - udisks2 - - acl - glib2 - polkit - eudev - lvm2 - mdadm - parted - libatasmart - device-mapper - ntfsprogs - dosfstools - sg3_utils - - - /etc/udisks2 - /etc/dbus-1 - /lib/udev/rules.d - /usr/bin - /usr/sbin - /usr/lib - /usr/libexec - /usr/share/bash-completion/completions - /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/gtk-doc/ - /usr/share/locale - /usr/share/polkit-1/ - /usr/share/man - /var/lib/ - /run/udisks - - - - udisks2-devel - Development files for udisks2 - udisks için geliştirme dosyaları - - udisks2 - - - /usr/include - /usr/share/dbus-1/interfaces/*.xml - /usr/lib/pkgconfig - - - - - 2015-08-19 - 2.1.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-07 - 2.1.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-25 - 2.1.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-05 - 2.1.3 - add builddep docbook-xsl. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-03-29 - 2.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-20 - 2.1.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-15 - 2.1.0 - V.bump - PisiLinux Community - admins@pisilinux.org - - - 2013-08-13 - 2.0.0 - fix path - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-26 - 2.0.0 - Release bump for rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2012-10-22 - 2.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dmraid - http://people.redhat.com/~heinzm/sw/dmraid - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Device-Mapper Software RAID support tool and library - ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı - Device-Mapper Software RAID support tool and library - ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. - http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 - - device-mapper-event-devel - device-mapper-devel - - - dmraid-diet.patch - dmraid-1.0.0_rc16-return-all-sets.patch - dmraid-1.0.0_rc16-static-build-fixes.patch - dmraid-1.0.0_rc16-undo-p-rename.patch - - hardware/disk/dmraid/pspec.xml - - - dmraid - - device-mapper - device-mapper-event - - - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmraid-devel - Development files for dmraid - dmraid için geliştirme dosyaları - - dmraid - - - /usr/include - - - - - 2014-02-17 - 1.0.0_rc16 - Release. - PisiLinux Community - admins@pisilinux.org - - - 2013-03-15 - 1.0.0_rc16 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 1.0.0_rc15 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dmapi - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - Librairie de l'API de gestion de données XFS. - XFS data management API library - XFS veri yönetimi kütüphanesi - The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. - ftp://oss.sgi.com/projects/xfs/cmd_tars/dmapi-2.2.12.tar.gz - - xfsprogs-devel - - hardware/disk/dmapi/pspec.xml - - - dmapi - - xfsprogs - - - /lib - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmapi-devel - Development files for dmapi - dmapi için geliştirme dosyaları - - dmapi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2014-05-22 - 2.2.12 - rebuild - Kamil Atlı - suvarice@gmail.com - - - 2013-11-02 - 2.2.12 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-03-16 - 2.2.10 - URL Fixed - PisiLinux Community - admins@pisilinux.org - - - 2010-10-13 - 2.2.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - ntfs-3g - http://www.tuxera.com/community/ntfs-3g-download - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - library - app:console - hardware.disk - Userspace driver for NTFS read/write support - NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü - ntfs-3g allows regular users read/write access to NTFS filesystems. - ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. - http://tuxera.com/opensource/ntfs-3g_ntfsprogs-2015.3.14.tgz - - fuse-devel - libutil-linux-devel - - hardware/disk/ntfs-3g/pspec.xml - - - ntfs-3g - - fuse - - - /bin - /sbin - /lib - /usr/lib - /usr/include - /usr/lib/pkgconfig - /usr/share/hal/fdi - /usr/share/doc/ntfs-3g - /usr/share/man/man8/mount* - /usr/share/man/man8/ntfs-3g* - - - - ntfsprogs - Userspace tools for NTFS filesystems - NTFS dosya sistemi için kullanıcı araçları - Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. - NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. - hardware.disk - - ntfs-3g - fuse - libutil-linux - - - /sbin/mkfs.ntfs - /usr/bin - /usr/sbin - /usr/share/doc/ntfsprogs - /usr/share/man/man8 - - - - - 2015-05-06 - 2015.3.14 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 2014.2.15 + 2015-04-04 + 3.3.3 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2014-05-11 - 2013.1.13 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-30 - 2013.1.13 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-30 - 2013.1.13 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-14 - 0.0_2012.01.15 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libatasmart - http://git.0pointer.de/?p=libatasmart.git - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - app:console - hardware.disk - ATA S.M.A.R.T. Disk Health Monitoring Library - ATA S.M.A.R.T. disk sağlığı izleme kitaplığı - A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. - libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. - http://0pointer.de/public/libatasmart-0.19.tar.xz - - eudev-devel - - - libatasmart-uninitialized-var.patch - - hardware/disk/libatasmart/pspec.xml - - - libatasmart - - eudev - - - /usr/sbin/skdump - /usr/sbin/sktest - /usr/lib/libatasmart.so* - /usr/share/doc/libatasmart/README - /usr/share/doc/libatasmart/LGPL - - - - libatasmart-devel - Development files for libatasmart - libatasmart için geliştirme dosyaları - - libatasmart - eudev-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - /usr/share/doc - - - - - 2014-05-25 - 0.19 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-29 - 0.19 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-02 - 0.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xfsprogs - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - XFS filesystem utilities - XFS dosya sistemi araçları - xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. - xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. - ftp://oss.sgi.com/projects/xfs/cmd_tars/xfsprogs-3.2.4.tar.gz - - libutil-linux-devel - readline-devel - - hardware/disk/xfsprogs/pspec.xml - - - xfsprogs - - libutil-linux - readline - - - /lib - /sbin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - xfsprogs-devel - Development headers for xfsprogs - - xfsprogs - - - /usr/include - /usr/share/man/man3 - - - - - 2015-08-04 + 2015-01-10 3.2.4 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2013-11-01 - 3.1.11 - Version bump - Burak Fazıl Erturk - burakerturk@pisilinux.org - - - 2012-10-05 - 3.1.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - reiserfsprogs - http://www.kernel.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Tools to work with Reiserfs filesystems - Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar - Contains tools designed to create, modify and check Reiserfs filesystems. - Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. - http://ftp.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.24/reiserfsprogs-3.6.24.tar.xz - hardware/disk/reiserfsprogs/pspec.xml - - - reiserfsprogs - - /sbin - /usr/share/doc - /usr/share/man - - - - 2014-12-13 - 3.6.24 + 2014-03-07 + 2.9.1 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2014-02-10 - 3.6.21 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2014-02-01 + 2.8 + Ver. bump + Kamil Atlı + suvarice@gmail.com - 2010-10-13 - 3.6.21 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - btrfs-progs - http://btrfs.wiki.kernel.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace utilities for btrfs - btrfs dosya sistemi araçları - btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. - btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. - http://source.pisilinux.org/1.0/btrfs-progs-v4.1.2.tar.xz - - xmlto - asciidoc - lzo-devel - zlib-devel - libutil-linux-devel - util-linux - libxslt - e2fsprogs-devel - - hardware/disk/btrfs-progs/pspec.xml - - - btrfs-progs - - lzo - zlib - libutil-linux - e2fsprogs - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - btrfs-progs-devel - Development files for btrfs-progs - - btrfs-progs - - - /usr/include - - - - - 2015-07-20 - 4.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-23 - 3.19.1 - Version bump, fix deps - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-23 - 3.17.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-30 - 3.14.2 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-01-19 - 3.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-19 - 0.19.20121005 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-13 - 0.19.20121005 + 2012-10-06 + 2.3.1 First release Osman Erkan osman.erkan@pisilinux.org @@ -53131,1047 +79394,630 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - hdparm - http://sourceforge.net/projects/hdparm/ + subversion + http://subversion.apache.org/ PisiLinux Community admins@pisilinux.org - as-is + Subversion app:console - hardware.disk - Utility to change hard drive performance parameters - Sabit disk parametrelerini değiştirmekte kullanılan araç - le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. - hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. - hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. - http://downloads.sourceforge.net/hdparm/hdparm-9.43.tar.gz - hardware/disk/hdparm/pspec.xml - - - hdparm - - /sbin - /usr/share/doc - /usr/share/man - /etc/conf.d - - - hdparm.confd - - - - - 2014-05-24 - 9.43 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2011-02-02 - 9.42 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - mtools - http://mtools.linux.lu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Utilities to access MS-DOS disks without mounting them - MS-DOS (Windows) disketlerinize -mount ile bağlamadan- erişim araçları - Mtools are utilities to access MS-DOS disks without mounting them. - Mtools diskinizdeki MS-DOS (Windows) bölümlerine -mount komutu ile bağlamadan- erişebilmek için gereken araç setidir. - mirrors://gnu/mtools/mtools-4.0.18.tar.gz - hardware/disk/mtools/pspec.xml - - - mtools - - /usr/bin - /etc - /usr/share/doc - /usr/share/info - /usr/share/man - - - - - 2014-02-12 - 4.0.18 - Fix mtools.conf syntax. - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-20 - 4.0.18 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-22 - 4.0.17 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - parted - http://www.gnu.org/software/parted - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - hardware.disk - Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. - Create, destroy, resize, check, copy partitions and file systems - GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. - The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. - http://ftp.gnu.org.ua/gnu/parted/parted-3.2.tar.xz + service + programming.scm + A compelling replacement for CVS + Bir sürüm kontrol sistemi + SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. + SVN is a version controlling system to store files and control their change history in a repository. + Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. + http://archive.apache.org/dist/subversion/subversion-1.9.1.tar.bz2 - libutil-linux-devel - device-mapper-devel - readline-devel - - hardware/disk/parted/pspec.xml - - - parted - - libutil-linux - ncurses - device-mapper - readline - util-linux - - - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - - - - parted-devel - Development files for parted - parted için geliştirme dosyaları - - parted - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-08-09 - 3.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-25 - 3.1 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-02-02 - 3.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-05 - 3.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - thin-provisioning-tools - http://github.com/jthornber/thin-provisioning-tools" - - Ali Algul - alialgul@pisilinux.org - - GPLv2 - hardware.disk - A suite of tools for thin provisioning on Linux - A suite of tools for thin provisioning on Linux - https://codeload.github.com/jthornber/thin-provisioning-tools/tar.gz/v0.5.3 - - libaio-devel - boost-devel + apache expat-devel - libgcc + zlib-devel + ruby-devel + serf-devel + sqlite-devel + jdk7-openjdk + apr-util-devel + cyrus-sasl-devel + python-devel + dbus-devel + glib2-devel + openssl-devel + swig - hardware/disk/thin-provisioning-tools/pspec.xml + + subversion-swig-perl-install_vendor.patch + subversion.rpath.fix.patch + dont_compile_pyc.patch + + programming/scm/subversion/pspec.xml - thin-provisioning-tools + subversion + file + zlib expat libgcc - libaio + sqlite + apr + serf + apr-util + cyrus-sasl - /usr/sbin/ - /usr/share/man/man8/ - - - - - 2015-07-20 - 0.5.3 - First Build - Ali Algul - alialgul@pisilinux.org - - - - - - sg3_utils - http://sg.danny.cz/sg/sg3_utils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - app:console - library - hardware.disk - Utilities for devices that use SCSI command sets - SCSI komut setini kullanan aygıtlar için araçlar - sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. - sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. - http://sg.danny.cz/sg/p/sg3_utils-1.41.tar.xz - hardware/disk/sg3_utils/pspec.xml - - - sg3_utils - + /etc/conf.d + /etc/subversion + /etc/bash_completion.d + /usr/share/build /usr/bin /usr/lib /usr/share/doc - /usr/share/man - - - rescan-scsi-bus.sh - - - - sg3_utils-devel - Development files for sg3_utils - sg3_utils için geliştirme dosyaları - - sg3_utils - - - /usr/include - - - - - 2015-08-19 - 1.41 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 1.38 - Version bump - Kamil Atlı - suvarice@gmail.com - - - 2012-11-14 - 1.34 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - squashfs-tools - http://squashfs.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace tools to create squashfs compressed filesystem - squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı - Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. - squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. - http://sourceforge.net/projects/squashfs/files/squashfs/squashfs4.2/squashfs4.2.tar.gz - - lzo-devel - xz-devel - zlib-devel - - hardware/disk/squashfs-tools/pspec.xml - - - squashfs-tools - - lzo - zlib - xz - - - /usr/sbin - /usr/share/doc - - - - - 2014-03-09 - 4.2 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-02-12 - 4.2 - Change compression type to xz, and some other enhancements. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-14 - 4.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pisido - http://www.pisilinux.org - - Harun Gültekin - hrngultekin@gmail.com - - GPLv3+ - app:gui - util.admin - A pisi packager from GUI - Grafik arayüzde çalışan pisi paketçisi. - You can make pisi packages with a GUI. Also, you can import your existing build files.Warning:Alfa version. Ported Qt5. - Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. - https://github.com/hrngultekin/pisido/archive/pisido-v2.3.3.tar.gz - - qscintilla2-devel - qtermwidget5-devel - - util/admin/pisido/pspec.xml - - - pisido - A pisi packager from GUI - - libgcc - qt5-base - qscintilla2 - qtermwidget5 - - - / - - - - - 2015-10-26 - 2.3.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-30 - 2.3.1 - Qt5 rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-08-26 - 2.2.1 - rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-08-01 - 2.2.0 - Rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-27 - 2.2.0 - Version bump - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-24 - 2.1.0 - Version bump - Harun Gültekin - hrngultekin@gmail.com - - - 2015-07-09 - 2.0.1 - added multipackage support - Harun Gültekin - hrngultekin@gmail.com - - - 2014-07-05 - 2.0b - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-02-04 - 2.0b - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-03-10 - 2.0b - Inıtial import. - Serdar Soytetir - kaptan@pisilinux.org - - - - - - utempter - http://www.redhat.com/ - - PisiLinux Community - admins@pisilinux.org - - MIT - LGPLv2.1 - app:console - util.admin - Application that allows non-privileged applications to write utmp (login) info - utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. - Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. - Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. - ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 - - libutempter-pierelro.patch - - util/admin/utempter/pspec.xml - - - utempter - - /usr/libexec - /usr/lib - /usr/share/doc - /usr/share/man - - - System.Package - - - - utempter-devel - Development files for utempter - utempter için geliştirme dosyaları - - utempter - - - /usr/include - - - - - 2014-05-25 - 1.1.6 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-20 - 1.1.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-12 - 0.5.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - logrotate - https://fedorahosted.org/releases/l/o/logrotate - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.admin - Rotates, compresses, removes and emails system log files - Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç - logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. - Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. - https://fedorahosted.org/releases/l/o/logrotate/logrotate-3.8.8.tar.gz - - popt-devel - acl-devel - - util/admin/logrotate/pspec.xml - - - logrotate - - popt - acl - - - /etc - /usr/sbin - /usr/share/doc - /usr/share/man - - - - - 2015-01-26 - 3.8.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-18 - 3.8.7 - v.bump - Ayhan Yalçınsoy - ayhanyacinsoy@gmail.com - - - 2014-03-09 - 3.7.9 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2011-09-29 - 3.7.9 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - pisilinux-dev-tools - http://www.pisilinux.org - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - app:console - util.admin - A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier - Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. - http://source.pisilinux.org/1.0/pisilinux-dev-tools-0.0.2.tar.xz - - fix_detect_mesa.patch - spped_up.patch - ignore_glibc-32bit.patch - - util/admin/pisilinux-dev-tools/pspec.xml - - - pisilinux-dev-tools - - chrpath - binutils - - - /usr/bin - /usr/share/doc - - - - - 2015-06-28 - 0.0.2 - fix runtime deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-21 - 0.0.2 - checkelf: ignore glibc-32bit - Marcin Bojara - marcin@pisilinux.org - - - 2014-07-01 - 0.0.2 - rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2014-06-19 - 0.0.2 - Speed up checkelf. - Marcin Bojara - marcin@pisilinux.org - - - 2014-06-16 - 0.0.2 - checkelf: fix detect mesa. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-11 - 0.0.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-03 - 0.0.1 - Use re.search() for checking command file output. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-29 - 0.0.1 - Rebuild - Pisi Linux Admins - admins@pisilinux.org - - - 2011-05-23 - 0.0.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - htop - http://htop.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - util.admin - Visionneur de processus pour Linux - An interactive process viewer for Linux - Linux için etkileşimli bir süreç izleyici - htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. - htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. - htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. - htop - http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz - - ncurses-devel - gettext-devel - - - desktop_tr.patch - - util/admin/htop/pspec.xml - - - htop - - ncurses - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/pixmaps - - - - - 2014-06-17 - 1.0.3 - Version bump - Kamil Atlı - burakerturk@pisilinux.org - - - 2013-12-31 - 1.0.2 - Release bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-01-31 - 1.0.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - inxi - http://code.google.com/p/inxi/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv1 - app:console - util.admin - script to get system information - script to get system information - script voor het opvragen van systeem informatie - Script para la información del sistema - script to get system information - script to get system information - Script voor het opvragen van systeem informatie - Inxi es un completo script que muestra la información del sistema - http://inxi.googlecode.com/svn/tarballs/inxi_2.2.19.tar.gz - util/admin/inxi/pspec.xml - - - inxi - - /usr/bin - /usr/share/kde4/apps/konversation/scripts/inxi - /usr/share/man - /usr/share/doc - - - - - 2015-07-23 - 2.2.19 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-01-26 - 2.2.17 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-17 - 2.1.28 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-05-03 - 2.1.27 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2013-12-16 - 1.9.17 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-0 - 1.9.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-08 - 1.9.12 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-27 - 1.8.45 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-20 - 1.8.34 - Distro list added PisiLinux - Ertan Güven - ertan@pisilinux.org - - - 2013-02-23 - 1.8.34 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-01-28 - 1.8.32 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - sudo - http://www.sudo.ws/ - - PisiLinux Community - admins@pisilinux.org - - Sudo - app:console - util.admin - Allows restricted root access for specified users - Yönetici haklarıyla komut çalıştırma uygulaması - sudo allows certain users/groups to run commands with root user privileges. - sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. - http://www.sudo.ws/sudo/dist/sudo-1.8.13.tar.gz - - nss-devel - audit-devel - pam-devel - zlib-devel - cyrus-sasl-devel - openldap-client - - util/admin/sudo/pspec.xml - - - sudo - - nss - audit - pam - zlib - cyrus-sasl - openldap-client - - - /etc - /usr/lib/tmpfiles.d/sudo.conf - /usr/bin - /usr/sbin - /usr/libexec - /usr/share/doc + /usr/share/info /usr/share/locale /usr/share/man - /run/sudo - /var/db/sudo + /var/svn + + + System.Service + System.Package + + + svnserve.confd + subversion.config + + + + subversion-devel + Development files for subversion + Subversion için geliştirme dosyaları + + openssl-devel + apr-devel + serf-devel + sqlite-devel + apr-util-devel + subversion + + /usr/include + /usr/share/pkgconfig + + + + mod_dav_svn + server.web + + apr + apache + apr-util + subversion + + + /usr/lib/apache2 + /usr/libexec/mod_dav_svn.so + /usr/libexec/mod_authz_svn.so + /etc/apache2/modules.d + /var/www/localhost/htdocs System.Package - sudoers - sudo.pamd - sudo-i.pamd - sudo.tmpfiles.conf + 47_mod_dav_svn.conf - - 2015-04-17 + + 2015-09-04 + 1.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-04-04 1.8.13 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2014-12-01 - 1.8.11_p2 + + 2014-09-14 + 1.8.10 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - - 2014-12-01 - 1.8.11p2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-18 - 1.8.10_p3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-03-29 - 1.8.10_p2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-13 + + 2014-06-21 1.8.9 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - - 2014-01-09 + + 2014-04-03 1.8.8 Version bump. - Marcin Bojara - marcin@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-03 + 1.8.5 + rebuild for openjdk + Kamil Atlı + suvarice@gmail.com + + + 2014-01-11 + 1.8.5 + rebuild for cyrus-sasl + Kamil Atlı + suvarice@gmail.com + + + 2013-12-28 + 1.8.5 + Fix Deps + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-24 + 1.8.5 + Version bump, fix deps, add mandatory serf dependency. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-30 + 1.8.1 + rebuild for perl-svn-simple + Kamil Atlı + suvarice@gmail.com + + + 2013-08-17 + 1.8.1 + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org - 2013-06-21 - 1.8.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2013-08-03 + 1.8.1 + *Version bump to 1.8.1 + *Disable neon as suggested in http://subversion.apache.org/docs/release-notes/1.8.html#neon-deleted + Fatih Turgel + hitaf@pisilinux.org - security - 2011-02-04 - 1.7.4_p6 + 2012-10-24 + 1.7.7 First release - Pisi Linux Admins - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - cgmanager - https://github.com/lxc/cgmanager + libgit2 + https://libgit2.github.com - Aydın Demirel - aydin.demirel@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - GPL - app:console - util.admin - Central cgroup management daemon - Merkezi cgroup yönetimi uygulamacığı - CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. - CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. - https://github.com/lxc/cgmanager/archive/v0.39.tar.gz + GPLv2 + app:gui + programming.scm + git c dili kütüphanesi + A linkable library for Git + git için c kütüphanesi + A plain C library to interface with the git version control system + libgit2 + https://github.com/libgit2/libgit2/archive/v0.23.0.tar.gz - libnih-devel - pam-devel - help2man + zlib-devel + openssl-devel + python + cmake - util/admin/cgmanager/pspec.xml + programming/scm/libgit2/pspec.xml - cgmanager + libgit2 - libnih - pam - dbus + zlib + openssl + + + /usr/lib + + + + libgit2-devel + + libgit2 + zlib + openssl + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-08-01 + 0.23.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + git + http://git-scm.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + programming.scm + Fast Version Control System + Hızlı Sürüm Denetim Sistemi + Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. + Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. + GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. + https://www.kernel.org/pub/software/scm/git/git-2.4.4.tar.xz + + tcltk-devel + openssl-devel + libpcre-devel + curl-devel + zlib-devel + expat-devel + xmlto + asciidoc + perl-Error + perl + libxslt + util-linux + + + project-root.patch + gitk-fonts.patch + git-1.5-gitweb-home-link.patch + git-cvsps-ignore.patch + fix-gitwebdir.patch + + programming/scm/git/pspec.xml + + + git + app:console + + perl-String-ShellQuote + perl-Net-SMTP-SSL + perl-Authen-SASL + perl-libwww + libpcre + perl-Git + openssh + openssl + rsync + expat + zlib + curl /usr/bin - /lib/security + /usr/libexec/git-core + /etc/bash_completion.d + /usr/share/git-core + /usr/share/locale /usr/share/man - /usr/share/cgmanager - /usr/lib/libcgmanager* + /usr/share/doc + + + + git-daemon + GIT protocol daemon + GIT protokolü hizmeti + service + + zlib + libpcre + git + + + /etc/conf.d/git-daemon + /usr/libexec/git-core/git-daemon + /usr/share/man/man1/*daemon*.1* + /pub/scm System.Service + + git-daemon.confd + - cgmanager-devel + perl-Git + Perl interface to GIT + GIT için perl arayüzü + library + programming.language.perl - cgmanager - libnih + perl-Error + perl + + + /usr/lib/perl5 + /usr/share/man/man3/Git.3pm + + + + gitk + Git revision tree visualiser + Git sürüm ağacı görüntüleyici + app:gui + + git + tcltk + + + /usr/bin/gitk + /usr/share/gitk + /usr/share/man/man1/*gitk*.1* + + + + git-gui + Git GUI tool + GIT için basit bir grafik arayüz + app:gui + + git + gitk + tcltk + + + /usr/libexec/git-core/git-gui* + /usr/libexec/git-core/git-citool + /usr/share/git-gui + /usr/share/man/man1/git-gui.1* + /usr/share/man/man1/git-citool.1* + + + + gitweb + Simple web interface to GIT repositories + GIT için Web arayüzü + interfaz web para GIT + app:web + server.web + + git + + + /var/www/localhost + /etc/conf.d/gitweb + /etc/apache2/conf.d + + + gitweb.confd + git.conf.httpd + + + + + 2015-06-20 + 2.4.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-04-04 + 2.3.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-07 + 2.3.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-19 + 2.2.2 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-13 + 2.1.0 + Rebuild for new perl. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-16 + 2.1.0 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-25 + 2.0.1 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-01 + 2.0.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-15 + 1.9.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-11 + 1.8.5.4 + Version bump and new rsync + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-21 + 1.8.4.4 + Version bump. + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-29 + 1.8.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-21 + 1.8.3.2 + fix dep + Kamil Atlı + suvarice@gmail.com + + + 2013-07-04 + 1.8.3.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-08 + 1.8.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-29 + 1.8.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-28 + 1.8.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + vte + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + x11.terminal + Widget terminal utilisant Xft + Xft powered terminal widget + The VTE package contains a termcap file implementation for terminal emulators. + Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. + mirrors://gnome/vte/0.28/vte-0.28.2.tar.xz + + gobject-introspection-devel + fontconfig-devel + gtk2-devel + pango-devel + cairo-devel + gtk-doc + gdk-pixbuf-devel + atk-devel + ncurses-devel + glib2-devel + libX11-devel + + + vte-0.28.2-limit-arguments.patch + vte-alt-meta-confusion.patch + vte-python-bugfixes.patch + vte-0.28.0-link.patch + vte-0.28.2-scale.patch + + x11/terminal/vte/pspec.xml + + + vte + library + + gobject-introspection + gtk2 + atk + cairo + gdk-pixbuf + pango + ncurses + glib2 + libX11 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/vte + /usr/share/pygtk + /usr/share/gir-1.0/Vte-0.0.gir + + + + vte-docs + GTK reference documents for vte + data:doc + + /usr/share/gtk-doc + + + + vte-devel + Development files for vte + vte için geliştirme dosyaları + + vte + gtk2-devel + pango-devel + cairo-devel /usr/include @@ -54179,3268 +80025,132 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - 2015-09-10 - 0.39 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 0.38 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-12 - 0.36 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-27 - 0.23 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - nss - http://www.mozilla.org/projects/security/pki/nss/ - - Erdinç Gültekin - admins@pisilinux.org - - MPL-2.0 - GPLv2 - LGPLv2.1 - library - util.crypt - Network Security Services - Ağ Güvenlik Servisleri - Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. - 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_19_4_RTM/src/nss-3.19.4.tar.gz - - nss.pc.in - nss-config.in - generate-pc-config.sh - - - nspr-devel - sqlite-devel - zlib-devel - - - nss-3.18.1-standalone-1.patch - add_spi+cacert_ca_certs.patch - ssl-renegotiate-transitional.patch - fedora/add-relro-linker-option.patch - fedora/nss-539183.patch - - util/crypt/nss/pspec.xml - - - nss - - zlib - sqlite - nspr - - - /usr/lib - /usr/bin - /etc - - - ld.so.conf - nssdb/cert8.db - nssdb/key3.db - nssdb/secmod.db - - - - nss-devel - Development files for nss - nss için geliştirme dosyaları - - nspr-devel - - - /usr/bin/nss-config - /usr/include - /usr/lib/pkgconfig - /usr/lib/nss/*.a - - - - - 2015-11-19 - 3.19.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-07-15 - 3.19.2 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-05-01 - 3.18.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-28 - 3.17.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-12-13 - 3.17.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-02 - 3.17.2 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-10 - 3.16.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-20 - 3.16.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-11 - 3.16 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-04 - 3.15.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-11-18 - 3.15.3 - Version bump. - Richard de Bruin - richdb@pisilinux.org - - - 2013-11-11 - 3.15.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-18 - 3.15.1 - Version bump. + 2014-05-16 + 0.28.2 + Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-05-19 - 3.14.3 - vbump - Erdinç Gültekin - admins@pisilinux.org - - - 2013-03-01 - 3.14.3 - vbump - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-10 - 3.14.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - qca2-qt5 - http://download.kde.org/stable/qca-qt5 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - util.crypt - Cryptographic Architecture for QT4 - QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. - http://download.kde.org/stable/qca/2.1.1/src/qca-2.1.1.tar.xz - - qt5-base-devel - nss-devel - doxygen - cmake - - util/crypt/qca2-qt5/pspec.xml - - - qca2-qt5 - - qt5-base - nss - libgcc - - - /usr/bin - /usr/qt/4/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/qca - - - - qca2-qt5-devel - Development files for qca2 - - qca2-qt5 - qt5-base-devel - - - /usr/include/qt5/Qca-qt5/QtCrypto - /usr/lib/pkgconfig/qca2.pc - /usr/share/qt4/mkspecs/features - - - - - 2015-11-06 - 2.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-10-18 - 2.1.0.3 - First release,rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - p11-kit - http://p11-glue.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - util.crypt - Library to work with PKCS#11 modules - Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 - The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. - p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). - http://p11-glue.freedesktop.org/releases/p11-kit-0.23.1.tar.gz - - libtasn1-devel - libffi-devel - - util/crypt/p11-kit/pspec.xml - - - p11-kit - - libtasn1 - libffi - - - /usr/bin - /usr/share/doc - /usr/share/gtk-doc - /usr/share/p11-kit - /usr/lib - /etc/pkcs11 - - - - p11-kit-devel - p11-kit için geliştirme dosyaları - p11-kit için geliştirme dosyaları. - Pliki nagłówkowe do biplioteki p11-kit. - - p11-kit - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - p11-kit-32bit - 32-bit shared libraries for p11-kit - emul32 - emul32 - - libtasn1-32bit - libffi-32bit - glibc-32bit - - - p11-kit - libffi-32bit - libtasn1-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-04-28 - 0.23.1 - Version bump. + + 2014-01-25 + 0.28.2 + rebuild for unused Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2014-12-13 - 0.22.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + + 2013-11-06 + 0.28.2 + Fix deps + Serdar Soytetir + kaptan@pisilinux.org - - 2014-05-24 - 0.20.2 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-20 - 0.20.2 - Version bump. + + 2013-08-25 + 0.28.2 + Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-10-26 - 0.20.1 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-31 - 0.19.3 - version bump - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-07-26 - 0.15.2 - Move pc files to devel pack,rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - 2013-02-23 - 0.15.2 - Version bump - Ertan Güven - ertan@pisilinux.org + 2013-07-30 + 0.28.2 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org - 2012-11-02 - 0.14 + 2012-11-24 + 0.28.2 First release - Marcin Bojara - marcin@pisilinux.org - - - - - - pinentry - http://www.gnupg.org/aegypten/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - util.crypt - Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol - Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri - Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. - Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. - ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-0.9.5.tar.bz2 - - libsecret-devel - libgpg-error-devel - libassuan-devel - gtk2-devel - pango-devel - libcap-devel - ncurses-devel - glib2-devel - - util/crypt/pinentry/pspec.xml - - - pinentry - - glib2 - libassuan - libsecret - libgpg-error - libcap - ncurses - - - /usr/bin - /usr/share/info - /usr/share/doc - - - pinentry-wrapper - - - - pinentry-gtk - pinentry for GTK toolkit - GTK+ ile yazılmış pinentry arayüzü - - pinentry - ncurses - libcap - libassuan - libsecret - libgpg-error - glib2 - gtk2 - pango - - - /usr/bin/pinentry-gtk* - - - - - 2015-08-21 - 0.9.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-13 - 0.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-04 - 0.8.3 - Rebuid. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-04 - 0.8.3 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2012-10-04 - 0.8.2 - First release - PisiLinux Community + Osman Erkan namso-0"@hotmail.it - skey - http://www.openbsd.org/faq/faq8.html#SKey + xterm + http://invisible-island.net/xterm PisiLinux Community admins@pisilinux.org - BSD - app:console - library - util.crypt - Linux Port of OpenBSD Single-key Password System - Linux için OpenBSD tek anahtarlı parola sistemi - skey is an S/Key implementation ported from OpenBSD. S/Key provides One Time Password functionality, and can be used to increase system security. - skey, OpenBSD'den Linux'a aktarılan S/Key sistemidir. S/Key sistemi Tek Seferlik Parola özelilği ile sistem güvenliğini arttırmak için kullanılabilir. - http://source.pisilinux.org/1.0/skey-1.1.5.tar.bz2 - - cracklib-devel - zlib-devel - perl - - - skey-1.1.5-gentoo.diff - skey-login_name_max.diff - skey-1.1.5-fPIC.patch - skey-1.1.5-bind-now.patch - skey-1.1.5-otp.diff - skey-1.1.5-binary-search.patch - confdir.patch - zeroed_entries.patch - default_hash.patch - fix_library_info.patch - - util/crypt/skey/pspec.xml - - - skey - - cracklib - zlib - - - /etc/skey - /lib - /usr/bin - /usr/lib - /usr/sbin - /usr/share/doc/skey - /usr/share/man - - - - skey-devel - Development files for skey - skey için geliştirme dosyaları - system.devel - - skey - - - /usr/include - /usr/share/man/man3 - - - - - 2014-05-21 - 1.1.5 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 1.1.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-10-11 - 1.1.5 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - keyutils - http://people.redhat.com/~dhowells/keyutils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - library - app:console - util.crypt - Linux key management utilities - Linux anahtar yönetim araçları - keyutils contains utilities to control the kernel key management facility and to provide a mechanism by which the kernel call back to userspace to get a key instantiated. - keyutils, Linux çekirdeğindeki anahtar yönetim kolaylıklarını denetlemek ve çekirdek ile kullanıcı uzayı arasında iletişim kurmak için gereken araçları içerir. - http://people.redhat.com/~dhowells/keyutils/keyutils-1.5.9.tar.bz2 - util/crypt/keyutils/pspec.xml - - - keyutils - - /etc - /bin - /sbin - /usr/include - /usr/lib - /lib - /usr/share/man - /usr/share/doc - /usr/share/keyutils - - - - - 2014-05-22 - 1.5.9 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2014-04-03 - 1.5.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-13 - 1.5.8 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-10-12 - 1.5.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libtasn1 - http://www.gnutls.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - util.crypt - ASN.1 library used in GNUTLS - GNUTLS için kullanılan ASN.1 kütüphanesi - libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. - libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. - http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.5.tar.gz - util/crypt/libtasn1/pspec.xml - - - libtasn1 - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libtasn1-devel - Development files for libtasn1 - libtasn1 için geliştirme dosyaları - - libtasn1 - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libtasn1-32bit - 32-bit shared libraries for libtasn1 - libtasn1 için 32bit kütüphanesi - emul32 - emul32 - - glibc-32bit - - - libtasn1 - glibc-32bit - - - /usr/lib32/ - - - - - 2015-07-13 - 4.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-28 - 4.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-31 - 4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 3.5 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-20 - 3.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 3.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-27 - 3.3 - Move pc files to devel pack, rebuild + v.bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-18 - 2.14 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libksba - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - app:console - util.crypt - rends les certificats X.509 et le CMS facilement accessible aux applications. - Library handling X.509 certificates and CMS data - Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık - libksba is a library designed to build software based on the X.509 and CMS protocols. - libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. - ftp://ftp.gnupg.org/gcrypt/libksba/libksba-1.3.3.tar.bz2 - - libgpg-error-devel - - util/crypt/libksba/pspec.xml - - - libksba - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libksba-devel - Development files for libksba - libksba için geliştirme dosyaları - - libksba - - - /usr/include - /usr/share/aclocal - - - - - 2015-04-12 - 1.3.3 - Version Bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-01-31 - 1.3.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-29 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnutls - http://www.gnutls.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - util.crypt - GNU TLS Library - GNU TLS Kütüphanesi - Biblioteka GNU TLS (Transport Layer Security) - GnuTLS est un projet dont l'objectif est de développer une librairie fournissant une couche de sécurité au dessus d'une couche de transport fiable. Actuellement la librairie GnuTLS implémente les standards proposés par le groupe de travail TLs de l'IETF. - gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group. - GnuTLS, erişilebilir bir gönderim katmanı üzerinde güvenli katman oluşturmayı amaçlayan bir projedir. GnuTLS kütüphanesi halen IETF TLS çalışma grubunun öngördüğü standartları uygulamaya geçirmektedir. - GnuTLS es un proyecto que apunta al desarrollo de una librería, que facilite una capa segura, a través de una capa de transporte fiable. Actualmente la librería GnuTLS implementa los estándares propuestos del grupo de trabajo de TLS de IETF. - GnuTLS to projekt mający na celu stworzenie biblioteki udostępniającej powłokę bezpieczeństwa ponad powłoką transportową (np. TCP/IP). Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez grupę roboczą IETF TLS. - http://mirror.tje.me.uk/pub/mirrors/ftp.gnupg.org/gnutls/v3.3/gnutls-3.3.16.tar.xz - - gc-devel - gmp-devel - nettle-devel - autogen-devel - p11-kit-devel - libidn-devel - zlib-devel - libtasn1-devel - - util/crypt/gnutls/pspec.xml - - - gnutls - - zlib - libidn - gmp - nettle - autogen - p11-kit - libgcc - libtasn1 - - - /usr/share - /usr/lib - /usr/bin - - - - gnutls-devel - Development files for gnutls - gnutls için geliştirme dosyaları - Pliki nagłówkowe do gnutls. - - nettle-devel - p11-kit-devel - libtasn1-devel - zlib-devel - gnutls - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/info/gnutls* - /usr/bin/libgnutls*-config - - - libgnutls-config - libgnutls-config - - - - gnutls-32bit - 32-bit shared libraries for gnutls - gnutls için 32-bit paylaşımlı kitaplıklar - 32-bitowe biblioteki GnuTLS. - emul32 - emul32 - - gmp-32bit - zlib-32bit - libidn-32bit - nettle-32bit - p11-kit-32bit - libtasn1-32bit - - - libgcc - glibc-32bit - gmp-32bit - zlib-32bit - nettle-32bit - p11-kit-32bit - libtasn1-32bit - - - /usr/lib32 - - - - - 2015-07-13 - 3.3.16 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-20 - 3.3.15 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 3.3.11 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-06 - 3.3.5 - Version bump and security update(CVE-2014-3466) - Vedat Demir - vedat@pisilinux.org - - - 2014-05-24 - 3.3.2 - Rebuild for gcc. - PisiLinux Community - admins@pisilinux.org - - - 2014-05-21 - 3.3.2 - Version bump, rm unneed deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-04-20 - 3.3.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-06 - 3.2.5 - Rebuild to fix stripping. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-27 - 3.2.5 - Version bump, clean up, enable tests. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-30 - 3.1.9 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-03-04 - 3.1.9 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-11-02 - 3.1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gnupg - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - util.crypt - The GNU Privacy Guard, a PGP replacement - GNU Gizlilik Koruması - GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. - GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. - ftp://ftp.gnupg.org/gcrypt/gnupg/gnupg-2.1.7.tar.bz2 - - openldap-client - pinentry - npth-devel - libassuan-devel - libksba-devel - zlib-devel - bzip2 - texinfo - gnutls-devel - readline-devel - libgcrypt-devel - libgpg-error-devel - libusb-compat-devel - - util/crypt/gnupg/pspec.xml - - - gnupg - - openldap-client - npth - libassuan - pinentry - libksba - zlib - bzip2 - gnutls - readline - libgcrypt - libgpg-error - libusb-compat - - - /usr/bin - /usr/sbin - /usr/libexec - /usr/share/doc - /usr/share/doc/html - /usr/share/gnupg - /usr/share/info - /usr/share/locale - /usr/share/man - - - dirmngr - - - dirmngr - - - System.Package - - - - gnupg-docs - Documentation files for GnuPG - GnuPG paketine ait API dokümantasyonu - - gnupg - - - /usr/share/doc/gnupg/html - /usr/share/gnupg/help.* - /usr/share/doc/gnupg/faq.html - - - - - 2015-08-21 - 2.1.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-26 - 2.1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-08-16 - 2.0.26 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-30 - 2.0.25 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-04 - 2.0.23 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-04-05 - 2.0.22 - Rebuild for libgcrypt and some other system.base packs. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-02 - 2.0.22 - new pcsc-lite and pinentry - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-27 - 2.0.22 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-09-29 - 2.0.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gpgme - http://www.gnupg.org/gpgme.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - util.crypt - GnuPG Made Easy is a library for making GnuPG easier to use - GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir - GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. - GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. - GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. - GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. - ftp://ftp.gnupg.org/gcrypt/gpgme/gpgme-1.5.5.tar.bz2 - - gnupg - libgpg-error-devel - libassuan-devel - - util/crypt/gpgme/pspec.xml - - - gpgme - - gnupg - libgpg-error - libassuan - - - /usr/bin - /usr/lib - /usr/share/common-lisp - /usr/share/doc - /usr/share/info - - - - gpgme-devel - Development files for gpgme - gpgme için geliştirme dosyaları - - gpgme - libgpg-error-devel - libassuan-devel - - - /usr/include - /usr/share/aclocal - - - - - 2015-08-21 - 1.5.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-14 - 1.5.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-13 - 1.5.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-31 - 1.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-29 - 1.5.0 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-01-25 - 1.4.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-09-30 - 1.3.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ibus - http://code.google.com/p/ibus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app - util.misc - Intelligent Input Bus for Linux / Unix OS - IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. - https://github.com/ibus/ibus/releases/download/1.5.10/ibus-1.5.10.tar.gz - - gtk2-devel - gtk3-devel - glib2-devel - dconf-devel - vala-devel - libnotify-devel - libxkbcommon-devel - intltool - iso-codes - libxslt - docbook-xsl - - util/misc/ibus/pspec.xml - - - ibus - - glib2 - libX11 - atk - gtk2 - gtk3 - cairo - libXi - pango - dconf - libnotify - gdk-pixbuf - libxkbcommon - wayland-client - - - /etc/bash_completion.d/ - /etc/gconf/schemas/ibus.schemas - /etc/dconf/ - /usr/bin - /usr/lib - /usr/share - - - - ibus-gtk2 - ibus için gtk2 desteği - - ibus - glib2 - gtk2 - pango - - - /usr/lib/gtk-2.0/2.10.0/immodules/ - - - - ibus-gtk3 - ibus için gtk3 desteği - - ibus - glib2 - gtk3 - pango - - - /usr/lib/gtk-3.0/3.0.0/immodules/ - - - - ibus-devel - ibus için geliştirme dosyaları - ibus için geliştirme dosyaları - - ibus - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-06-16 - 1.5.10 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-02-26 - 1.5.4 - Delete Unused Deps. - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-25 - 1.5.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-12-08 - 1.5.4 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-07-27 - 1.5.3 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-04-30 - 1.5.2 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-04 - 1.4.99.20120917 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lsof - http://people.freebsd.org/~abe/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Lists open files for running Unix processes - Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç - Lista archivos abiertos por procesos unix en ejecución - lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. - lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. - Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. - http://source.pisilinux.org/1.0/lsof_4.84_src.tar - util/misc/lsof/pspec.xml - - - lsof - - /usr/sbin - /usr/share/doc - /usr/share/lsof - /usr/share/man - - - - - 2014-03-09 - 4.84 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2010-10-12 - 4.84 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - tree - http://mama.indstate.edu/users/ice/tree/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Recursive directory listing tool - Dizin listeleme aracı - Tree lists directories recursively, and produces an indented listing of files. - Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. - ftp://mama.indstate.edu/linux/tree/tree-1.7.0.tgz - util/misc/tree/pspec.xml - - - tree - - /usr/bin - /usr/share/bash-completion - /usr/share/doc - /usr/share/man - - - tree.bashcomp - - - - - 2015-01-25 - 1.7.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-09 - 1.6.0 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2012-10-20 - 1.6.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - mc - http://www.midnight-commander.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - GNU Midnight Commander cli-based file manager - GNU Midnight Commander konsol kip dosya yöneticisi - Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. - GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. - http://www.midnight-commander.org/downloads/mc-4.8.15.tar.xz - - gpm - check-devel - glib2-devel - doxygen - slang-devel - libpcre-devel - samba-devel - libICE-devel - libutil-linux-devel - - util/misc/mc/pspec.xml - - - mc - - gpm - glib2 - slang - samba - libutil-linux - - - /etc/profile.d - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/locale - /usr/share/man - /usr/share/mc - /etc/mc - - - mc.profile - u7z - mc.ini - - - - - 2015-11-09 - 4.8.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-05 - 4.8.14 - Version bump, add samba - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-21 - 4.8.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-05 - 4.8.12 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-02-18 - 4.8.11 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-04 - 4.8.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-01 - 4.8.8 - Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-30 - 4.8.8 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-12-29 - 4.8.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - tidy - http://tidy.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - HTML and XML error checking - HTML ve XML hata denetleme aracı - tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. - tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. - http://anduin.linuxfromscratch.org/sources/BLFS/svn/t/tidy-cvs_20101110.tar.bz2 - util/misc/tidy/pspec.xml - - - tidy - - /usr/bin - /usr/lib - /usr/share/doc - - - - tidy-devel - Development files for tidy - tidy için geliştirme dosyaları - - tidy - - - /usr/include - - - - - 2012-10-04 - 20101110 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - strace - http://sourceforge.net/projects/strace/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - util.misc - Tracks and displays system calls associated with a running process - Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç - Herramienta útil para diagnostico, aprendizaje y depuración - strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. - strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. - mirrors://sourceforge/strace/strace-4.9.tar.xz - - libaio-devel - libunwind-devel - - util/misc/strace/pspec.xml - - - strace - - libunwind - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2015-01-25 - 4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-03-09 - 4.8 - Version bump - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-04-20 - 4.7 - Versrion bump - Ertan Güven - ertan@pisilinux.org - - - 2011-04-18 - 4.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - screen - http://www.gnu.org/software/screen/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Terminal multiplexer (to have multiple sessions in a single terminal window) - Screen bir terminal(komut penceresi) çoğaltıcıdır. - GNU Screen is a free terminal multiplexer developed by the GNU Project. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. - screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. - http://ftp.gnu.org/gnu/screen/screen-4.3.1.tar.gz - util/misc/screen/pspec.xml - - - screen - - ncurses - - - /run - /etc - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/info - /usr/share/screen - /usr/share/terminfo - /usr/lib/tmpfiles.d/screen.conf - - - System.Package - - - screenrc - screen.pam.system-auth - tmpfiles.conf - - - - - 2015-08-07 - 4.3.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-10 - 4.0.3 - Add tmpfiles.conf - Osman Erkan - osman.erkan@pisilinux.org - - - 2010-10-12 - 4.0.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - quazip - http://quazip.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - library - app:console - util.archive - A C++/Qt ZIP library - A Qt/C++ wrapper for Gilles Vollant's ZIP/UNZIP C package (minizip). Provides access to ZIP archives from Qt programs using QIODevice API. - http://sourceforge.net/projects/quazip/files/quazip/0.7.1/quazip-0.7.1.tar.gz - - qt5-base-devel - zlib-devel - cmake - - - qt5.patch - - util/archive/quazip/pspec.xml - - - quazip - - zlib - libgcc - - - /usr/lib - /usr/share/doc - /usr/share/cmake/Modules/FindQuaZip5.cmake - - - - quazip-devel - Development files for quazip - quazip paketi için geliştirme dosyaları - - quazip - - - /usr/include - - - - - 2015-11-05 - 0.7.1 - Version Bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-08-8 - 0.7 - Version Bump - Vedat Demir - vedat@pisilinux.org - - - 2014-03-10 - 0.5.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-05-14 - 0.5.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - - - - libzip - http://www.nih.at/libzip/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - util.archive - A C library for reading, creating, and modifying zip archives - Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı - libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. - libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. - http://www.nih.at/libzip/libzip-1.0.1.tar.gz - - zlib-devel - - util/archive/libzip/pspec.xml - - - libzip - - zlib - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libzip-devel - Development files for libzip - libzip için geliştirme dosyaları - - zlib-devel - libzip - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2015-07-28 - 1.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-25 - 0.11.2 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-04 - 0.11.2 - preserve old header path for compatibility. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-01 - 0.11.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-09 - 0.10.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - areca - http://www.areca-backup.org/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 + MIT app:gui - util.archive - Easy to use and reliable backup solution for Linux. - Easy to use and reliable backup solution for Linux. - Areca Backup is very versatile and as simple as possible. - Areca Backup is very versatile and as simple as possible. - areca - http://sourceforge.net/projects/areca/files/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz - util/archive/areca/pspec.xml - - - areca - - acl - - - /usr/bin/ - /usr/share/applications - /usr/share/pixmaps - /opt/areca/ - /usr - - - areca - areca.desktop - areca.png - - - - - 2015-11-23 - 7.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-25 - 7.4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-09-27 - 7.4.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-19 - 7.4.6 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2014-03-03 - 7.4.1 - Rebuild for openjdk - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-01-17 - 7.4.1 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-03 - 7.3.9 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - unrar - http://www.rarsoft.com/rar_add.htm - - PisiLinux Community - admins@pisilinux.org - - unRAR - app:console - util.archive - RAR decompressor - RAR açma uygulaması - unrar is a program to decompress RAR archives. - Unrar, RAR biçimli sıkıştırılmış dosyaları açar. - http://www.rarlab.com/rar/unrarsrc-5.3.4.tar.gz - - unrar-5.3.4-soname.patch - - util/archive/unrar/pspec.xml - - - unrar - - /usr/bin - /usr/share/doc - - - - - 2015-01-25 - 5.3.4 - Version bump. - yusuf Aydemir - yuısuf.aydemir@pisilinux.org - - - 2015-01-25 - 5.2.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-11-19 - 5.0.13 - Rebuild - Richard de Bruin - admins@pisilinux.org - - - 2013-11-18 - 5.0.13 - Version bump - Richard de Bruin - admins@pisilinux.org - - - 2012-10-31 - 4.2.4 - First release - Richard de Bruin - admins@pisilinux.org - - - - - - cabextract - http://www.cabextract.org.uk/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.archive - A program to extract from Microsoft Cabinet files - Microsoft Cabinet dosyalarını açan bir program - cabextract is a program to extract files from Microsoft Cabinet files. - cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. - http://www.cabextract.org.uk/cabextract-1.6.tar.gz - util/archive/cabextract/pspec.xml - - - cabextract - - /usr/bin - /usr/share/man - - - - - 2015-11-23 - 1.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-02-16 - 1.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-06-19 - 1.4 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-01-19 - 1.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-06-07 - 1.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libtar - http://www.feep.net/libtar/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - util.archive - tar file manipulation API - tar dosyalarını işlemek için bir API - libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. - libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. - http://pkgbuild.com/~giovanni/libtar/libtar-1.2.20.tar.gz - util/archive/libtar/pspec.xml - - - libtar - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libtar-devel - Development files for libtar - libtar için geliştirme dosyaları - - libtar - - - /usr/include - /usr/share/man/man3 - - - - - 2014-06-20 - 1.2.20 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2010-10-12 - 1.2.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - bash-completion - http://bash-completion.alioth.debian.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.shell - Programmable completion for bash - Bash kabuğu için otomatik tamamlama - A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. - Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. - http://bash-completion.alioth.debian.org/files/bash-completion-2.1.tar.bz2 - util/shell/bash-completion/pspec.xml - - - bash-completion - - /etc - /usr/share/doc - /usr/share - /var - - - System.Package - - - pisilinux - - - - - 2014-02-23 - 2.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2013-07-14 - 2.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2011-06-20 - 1.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - bashdb - http://bashdb.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.shell - A Debugger for Bash - Bash Kabuğu için bir hata ayıklayıcısı - bashdb is a comprehensive source-code debugger for bash. - bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. - mirrors://sourceforge/bashdb/bashdb-4.3-0.91.tar.gz - util/shell/bashdb/pspec.xml - - - bashdb - - /usr/bin - /usr/share/doc - /usr/share/bashdb - /usr/share/info - /usr/share/man - - - - - 2015-01-22 - 0.91 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-19 - 4.2.0.8 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-05-27 - 4.2.0.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dash - http://gondor.apana.org.au/~herbert/dash/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - util.shell - Small and fast POSIX-compliant shell - Ufak ve hızlı POSIX uyumlu kabuk - DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. - DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. - http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.8.tar.gz - util/shell/dash/pspec.xml - - - dash - - /bin/dash - /usr/share/man - /usr/share/doc - - - - - 2015-11-21 - 0.5.8 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-01-22 - 0.5.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-02-17 - 0.5.7 - Release. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-30 - 0.5.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2010-12-31 - 0.5.6.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - emacs-color-theme - http://www.emacswiki.org/cgi-bin/wiki?ColorTheme - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - Emacs-Lisp color theme package - Emacs-List renk paketi - Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. - Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. - http://download.gna.org/color-theme/color-theme-6.6.0.tar.gz - editor/emacs/emacs-color-theme/pspec.xml - - - emacs-color-theme - - emacs - - - /usr/share/doc - /etc/emacs/site-lisp - /usr/share/emacs/site-lisp/color-theme - - - 80-color-theme.el - - - - - 2014-05-24 - 6.6.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 6.6.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 6.6.0 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - emacs - http://www.gnu.org/software/emacs - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:gui - app:console - editor.emacs - An extensible console-mode editor - Genişletilebilir bir metin düzenleyici - Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. - Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. - emacs - ftp://mirrors.kernel.org/gnu/emacs/emacs-24.5.tar.xz + x11.terminal + Terminal emulator for the X Window System + X Pencere Sistemi için uçbirim emülatörü + The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. + xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. + terminal + ftp://invisible-island.net/xterm/xterm-304.tgz - gtk2-devel - alsa-lib-devel fontconfig-devel - giflib-devel - gpm - libjpeg-turbo-devel libICE-devel - libSM-devel + libXaw-devel libXft-devel - libXpm-devel - libXrender-devel - libpng-devel - librsvg-devel - tiff-devel - - editor/emacs/emacs /pspec.xml - - - emacs - - gpm - tiff - gtk3 - cairo - pango - libSM - libXft - libICE - giflib - libXpm - gnutls - librsvg - alsa-lib - gdk-pixbuf - fontconfig - libXrender - imagemagick - libjpeg-turbo - - - /etc - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/share/emacs - /usr/share/icons - /var/games/emacs - /usr/share/pixmaps - /usr/share/applications - /usr/libexec/emacs - - - System.PackageHandler - - - site-start.el - pisi-spec.rnc - 80-nxml-mode.el - emacs.desktop - - - - - 2015-11-22 - 24.5 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 24.1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-29 - 24.3 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-23 - 24.2 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-26 - 24.2 - Dep Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 24.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - emacs-mmm-mode - http://mmm-mode.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - Multiple Major Mode module for Emacs - Emacs Çoklu Ana Kip eklentisi - MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. - MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. - http://sourceforge.net/projects/mmm-mode/files/mmm-mode/mmm-mode-0.5.4.tar.gz - editor/emacs/emacs-mmm-mode/pspec.xml - - - emacs-mmm-mode - - emacs - - - /etc - /usr/share/doc - /usr/share/info - /usr/share/emacs - - - 80-mmm-mode.el - - - - - 2015-12-07 - 0.5.4 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 0.5.1 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 0.5.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 0.4.8 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - emacs-php-mode - http://php-mode.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - PHP mode for Emacs - Emacs için PHP kipi - php-mode is an add-on for Emacs to help work with PHP files more efficiently. - php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. - http://stable.melpa.org/packages/php-mode-1.17.0.tar - - emacs - - editor/emacs/emacs-php-mode/pspec.xml - - - emacs-php-mode - - emacs - - - /etc - /usr/share/emacs - - - 80-php-mode.el - - - - - 2015-12-05 - 1.17.0 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 1.5.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 1.5.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-13 - 1.5.0 - First release - Gökcen Eraslan - admins@pisilinux.org - - - - - - emacs-python - http://python-mode.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - editor.emacs - Emacs major mode for editing Python source code - Python kaynak kodlarını düzenlemek için emacs kipi - emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. - Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. - https://launchpad.net/python-mode/trunk/6.2.1/+download/python-mode.el-6.2.1.tar.gz - editor/emacs/emacs-python/pspec.xml - - - emacs-python - - pymacs - emacs - - - /etc/emacs - /usr/share/emacs - - - 80-python.el - - - - - 2015-12-05 - 6.2.1 - Release bump. - Ilker Manap - ilkermanap@gmail.com - - - 2014-05-24 - 6.1.2 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-23 - 6.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-09 - 6.1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - vim - http://www.vim.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - editor.vi - Vi IMproved, an advanced text editor - Vi Improved, gelişmiş metin editörü - Vi IMproved – klon edytora Vi - Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. - VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. - Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. - https://github.com/vim/vim/archive/v7.4.909.tar.gz - - gpm - ctags - python-devel - acl-devel - gtk2-devel - libSM-devel + libXmu-devel libXt-devel - pango-devel - libICE-devel - ruby-devel + utempter-devel + xorg-app + libXpm-devel ncurses-devel + libX11-devel - vim-fix-xml-crash.patch - pisilinux/grub_conf.patch - pisilinux/xorg_conf.patch - vim-7.0-warning.patch - vim-7.3-interix-link.patch + 16colors.txt.diff + defaults.patch - editor/vi/vim/pspec.xml + x11/terminal/xterm/pspec.xml - vim - app:console + xterm - gpm - ctags - perl - ruby - acl - ncurses - - - /usr/bin/vi* - /usr/bin/rvi* - /usr/bin/ex - /usr/bin/xxd - /bin - /usr/share/vim - /usr/share/man - /usr/share/doc - /etc/vim - - - vimrc - pisilinux/actions.vim - pisilinux/pspec.vim - pisilinux/translations.vim - plugins/taglist.vim - plugins/kde-devel-vim.vim - plugins/newpythonfile.vim - plugins/redstring.vim - - - - gvim - app:gui - gvim - gui - - acl - perl - glib2 - libX11 - ncurses - gtk2 - gpm - libSM - libXt - pango + fontconfig libICE - vim - ruby - gdk-pixbuf - - - /usr/bin/ggvi* - /usr/bin/gvi* - /usr/bin/egvi* - /usr/bin/rggvi* - /usr/bin/rgvi* - /usr/bin/gvimtutor - /usr/share/pixmaps - /usr/share/applications - - - gvimtutor - gvim.xpm - gvim.desktop - - - - - 2015-11-05 - 0.7.4.909 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-12 - 0.7.4.692 - Rebuild for ruby - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-09-28 - 0.7.4.461 - Update official patches to current 461. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-27 - 0.7.4.307 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-02-17 - 0.7.3.843 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 7.3.843 - Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-07-28 - 7.3.843 - Fix gvim desps. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-03-03 - 7.3.843 - Release no bump for ruby 2.0 - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-01-06 - 7.3.762 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - bluefish - http://bluefish.openoffice.nl/index.html - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app:gui - programming.environment - Bluefish is a powerful editor targeted towards programmers and webdevelopers - Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici - Bluefish is a powerful editor targeted towards programmers and webdevelopers, with many options to write websites, scripts and programming code. Bluefish supports many programming and markup languages. - Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. - mirrors://sourceforge/bluefish/2.2.7/bluefish-2.2.7.tar.gz - - enchant - glib2-devel - gtk2-devel - libxml2-devel - intltool - gettext-devel - - editor/bluefish/pspec.xml - - - Bluefish - - atk - desktop-file-utils - cairo - gdk-pixbuf - gtk3 - pango - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - - - 2015-10-19 - 2.2.7 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-02-11 - 2.2.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-05 - 2.2.4 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-01-10 - 2.2.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - nano - http://www.nano-editor.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - editor - GNU GPL'd Pico clone with more functionality - Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. - Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". - Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". - Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. - http://www.nano-editor.org/dist/v2.3/nano-2.3.5.tar.gz - - ncurses-devel - gettext-devel - - editor/nano/pspec.xml - - - nano - + libXaw + libXft + libXmu + libXt + utempter + xorg-app + libXpm ncurses - file + libX11 - /etc - /usr/share/locale - /usr/share/doc/nano - /usr/share/man - /usr/share/info - /usr/share/nano /usr/bin - /bin + /usr/share/X11 + /usr/share/doc + /usr/share/man - - 2014-07-11 - 2.3.5 - Version bump. - Vedat Demir - vedat@pisilinux.org - - 2014-05-11 - 2.3.1 + 2014-05-13 + 304 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 287 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-07-26 - 2.3.1 - Fix dep, release bump. - Serdar Soytetir - kaptan@pisilinux.org - - 2011-06-27 - 2.3.1 + 2012-12-12 + 287 First release - Pisi Linux Admins + Erdinç Gültekin admins@pisilinux.org - - - medit - http://mooedit.sourceforge.net/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - app:gui - editor - Multiplatform GTK text editor - Sekme özelliğine sahip bir metin düzenleyicisi - Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. - Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. - medit - mirrors://sourceforge/mooedit/medit-1.2.0.tar.bz2 - - python-gtk-devel - python-devel - intltool - gtk2-devel - atk-devel - cairo-devel - gettext-devel - pkgconfig - glib2-devel - libX11-devel - python3-devel - libxml2-devel - gtk2-devel - pango-devel - lua-devel - libSM-devel - libICE-devel - gdk-pixbuf-devel - - - desktop-tr.patch - fix_help_dir.patch - - editor/medit/pspec.xml - - - medit - - gtk2 - atk - glib2 - libX11 - libgcc - python - libxml2 - cairo - pango - libSM - libICE - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/medit - /usr/share/pixmaps - /usr/share/doc - /usr/share/man - - - - - 2014-06-04 - 1.2.0 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-11-20 - 1.1.96 - Update - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-01-10 - 1.1.92 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - xorg-server @@ -57869,32 +80579,2296 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-image - http://xcb.freedesktop.org + xorg-input-mouse + http://www.x.org PisiLinux Community admins@pisilinux.org MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 + driver + x11.driver + X.Org mouse input driver + X.Org mouse giriş aygıtı sürücüsü + xorg-input-mouse contains the X.Org driver for mice. + xorg-input-mouse, fareler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2 + xorg-server-devel util-macros - libxcb-devel - xcb-util-devel - x11/library/xcb-util-image/pspec.xml + + 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch + + x11/driver/xorg-input-mouse/pspec.xml - xcb-util-image + xorg-input-mouse + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-mouse-devel + Development files for xorg-input-mouse - xcb-util + xorg-input-mouse + + + /usr/include/xorg/xf86-mouse-properties.h + /usr/lib/pkgconfig/xorg-mouse.pc + + + + + 2015-05-08 + 1.9.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.9.1 + Rebuild xorg-server 1.6.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.9.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.9.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.9.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.9.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.8.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-vmware + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vmware video driver + X.Org vmware ekran kartı sürücüsü + xorg-video-vmware contains the X.Org driver for VMWare virtual machines. + xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vmware-13.1.0.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-vmware/pspec.xml + + + xorg-video-vmware + + mesa + libdrm + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 13.1.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 13.1.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 13.0.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 13.0.2 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 13.0.1 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 13.0.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 13.0.1 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-21 + 13.0.1 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 13.0.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 13.0.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 12.0.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-i128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i128 video driver + X.Org i128 ekran kartı sürücüsü + xorg-video-i128 contains the X.Org driver for Number Nine chipsets. + xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i128-1.3.6.tar.bz2 + + xorg-server-devel + + + git-fixes.diff + 1600sw-range-hack.patch + + x11/driver/xorg-video-i128/pspec.xml + + + xorg-video-i128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.3.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-void + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org void input driver + X.Org void giriş aygıtı sürücüsü + xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. + xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. + mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-input-void/pspec.xml + + + xorg-input-void + + /usr/lib/xorg + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.4.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.4.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.4.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.4.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 1.4.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-input-synaptics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org synaptics input driver + X.Org synaptics giriş aygıtı sürücüsü + xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. + xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. + http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 + + libXi-devel + libXtst-devel + libmtdev-devel + xorg-server-devel + libevdev + util-macros + + + add_tapbuttons.diff + + x11/driver/xorg-input-synaptics/pspec.xml + + + xorg-input-synaptics + + libXi + libXtst + libX11 + libevdev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 50-synaptics.conf + 70-touchpad-quirks.rules + + + + xorg-input-synaptics-devel + Development files for xorg-input-synaptics + xorg-input-synaptics için geliştirme dosyaları + + xorg-input-synaptics + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.8.2 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.8.1 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 1.7.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.7.5 + version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 1.7.3 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 1.7.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 1.7.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-26 + 1.7.1 + Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-21 + 1.7.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.7.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-evdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org evdev input driver + X.Org evdev giriş aygıtı sürücüsü + xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-evdev-2.9.2.tar.bz2 + + xorg-server-devel + libmtdev-devel + libevdev + util-macros + eudev-devel + + x11/driver/xorg-input-evdev/pspec.xml + + + xorg-input-evdev + + libmtdev + libevdev + eudev + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-evdev-devel + Development files for evdev driver + evdev sürücüsü için geliştirme dosyaları + + xorg-input-evdev + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 2.9.2 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 2.9.1 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-08-31 + 2.9.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.8.4 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-08 + 2.8.2 + Rebuild for xserver 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 2.8.2 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-11 + 2.8.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.8.0 + Add patch + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.8.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 2.8.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 2.7.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libva-intel-driver + http://freedesktop.org/wiki/Software/vaapi + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + driver + x11.driver + VA-API implementation for Intel G45 and HD Graphics family + libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. + http://freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.5.1.tar.bz2 + + libdrm-devel + libX11-devel + libva-devel + + x11/driver/libva-intel-driver/pspec.xml + + + libva-intel-driver + + libdrm + libdrm-intel + libva + + + /usr/lib + /usr/share/doc + + + + + 2015-05-08 + 1.5.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.5.0 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.3.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + xorg-video-vesa + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vesa video driver + X.Org vesa ekran kartı sürücüsü + xorg-input-vesa contains the X.Org driver for Generic VESA cards. + xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vesa-2.3.3.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-vesa/pspec.xml + + + xorg-video-vesa + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 2.3.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 2.3.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.3.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 2.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.3.2 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.3.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 2.3.2 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 2.3.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-intel + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org intel video driver + X.Org intel ekran kartı sürücüsü + xorg-video-intel contains the X.Org driver for Intel video chipsets. + xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2 + + libX11-devel + libxcb-devel + libXv-devel + libdrm-devel + pixman-devel + libXext-devel + libXtst-devel + libXvMC-devel + xcb-util-devel + libXrandr-devel + libXfixes-devel + libXcursor-devel + libXrender-devel + libXdamage-devel + libXinerama-devel + libdrm-intel + eudev-devel + util-macros + libpciaccess-devel + xorg-server-devel + libxshmfence-devel + + x11/driver/xorg-video-intel/pspec.xml + + + xorg-video-intel + + libX11 libxcb + libXv + libdrm + pixman + libXext + libXtst + libXvMC + xcb-util + libXrandr + libXfixes + libXcursor + libXrender + libXdamage + libXinerama + libdrm-intel + libpciaccess + eudev + libxshmfence + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2015-05-10 + 2.99.917 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 2.99.917 + Version bump. + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.99.914 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.99.911 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-12 + 2.21.15 + Add xserver 1.15 xompat patch. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.21.15 + Version bump for xorg-server 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 2.21.9 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.21.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.21.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.21.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-08 + 2.21.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 2.20.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-elographics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org Elographics TouchScreen input driver + X.Org Elographics dokunmatik ekran sürücüsü + xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-elographics-1.4.1.tar.bz2 + + xorg-server-devel + libmtdev-devel + util-macros + + x11/driver/xorg-input-elographics/pspec.xml + + + xorg-input-elographics + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.4.1 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.1 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xorg-video-fbdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org fbdev video driver + X.Org fbdev ekran kartı sürücüsü + xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. + xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-fbdev/pspec.xml + + + xorg-video-fbdev + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.4.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 0.4.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.4.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.4.4 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.4.3 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.4.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.4.3 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.4.3 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.4.3 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-r128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org r128 video driver + X.Org r128 ekran kartı sürücüsü + xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. + xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-r128/pspec.xml + + + xorg-video-r128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 6.10.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 6.9.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 6.9.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 6.9.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 6.9.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 6.9.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 6.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.8.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.8.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-neomagic + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org neomagic video driver + X.Org neomagic ekran kartı sürücüsü + xorg-video-neomagic contains the X.Org driver for NeoMagic cards. + xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-neomagic/pspec.xml + + + xorg-video-neomagic + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.2.9 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.2.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.8 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.7 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.7 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-sisusb + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sisusb video driver + X.Org sisusb ekran kartı sürücüsü + xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. + xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.6.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-sisusb/pspec.xml + + + xorg-video-sisusb + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.9.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.9.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.9.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.9.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.9.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.9.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.9.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.9.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.9.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-tga + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org tga video driver + X.Org tga ekran kartı sürücüsü + xorg-video-tga contains the X.Org driver for DEC Tga cards. + xorg-video-tga, DEC Tga ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-tga-1.2.2.tar.bz2 + + xorg-server-devel + + + xf86-video-tga-1.2.2-remove-mibstore_h.patch + + x11/driver/xorg-video-tga/pspec.xml + + + xorg-video-tga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-08 + 1.2.2 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.2.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.2 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-cirrus + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org cirrus video driver + X.Org cirrus ekran kartı sürücüsü + xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. + xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 + + libpciaccess-devel + xorg-server-devel + + x11/driver/xorg-video-cirrus/pspec.xml + + + xorg-video-cirrus + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.5.3 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.5.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.5.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.5.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.5.2 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.5.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.5.2 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.5.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.5.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.5.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-dummy + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org dummy video driver + X.Org dummy ekran kartı sürücüsü + xorg-video-dummy is a dummy video driver for X.Org. + xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. + mirrors://xorg/individual/driver/xf86-video-dummy-0.3.7.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-dummy/pspec.xml + + + xorg-video-dummy + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-08 + 0.3.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 0.3.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.3.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.7 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-voodoo + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org voodoo video driver + X.Org voodoo ekran kartı sürücüsü + xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. + xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-voodoo/pspec.xml + + + xorg-video-voodoo + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-12 + 1.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-siliconmotion + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org siliconmotion video driver + X.Org siliconmotion ekran kartı sürücüsü + xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. + xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-siliconmotion/pspec.xml + + + xorg-video-siliconmotion + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.7.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.7.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.7.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.7.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.7.7 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.7.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.7.7 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 1.7.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-i740 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i740 video driver + X.Org i740 ekran kartı sürücüsü + xorg-video-i740 contains the X.Org driver for Intel i740 cards. + xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i740-1.3.4.tar.bz2 + + xorg-server-devel + + + git-fix.diff + + x11/driver/xorg-video-i740/pspec.xml + + + xorg-video-i740 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.3.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.4 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.4 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.4 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.3.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-tdfx + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org tdfx video driver + X.Org tdfx ekran kartı sürücüsü + xorg-video-tdfx contains the X.Org driver for Voodoo cards. + xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-tdfx/pspec.xml + + + xorg-video-tdfx + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.4.6 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.4.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.4.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.4.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.4.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.4.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.4.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.4.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xvba-video + http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ + + PisiLinux Community + admins@pisilinux.org + + freedist + driver + x11.driver + XvBA backend for VA API + VA API için XvBA arka ucu + xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. + xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + http://source.pisilinux.org/1.0/xvba-video-0.7.8.i686.tar.gz + http://source.pisilinux.org/1.0/xvba-video-0.7.8.x86_64.tar.gz + x11/driver/xvba-video/pspec.xml + + + xvba-video + + libva + libXext + mesa /usr/lib @@ -57902,78 +82876,257 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-image-devel - Development files for xcb-util - xcb-util-image için geliştirme dosyaları - - xcb-util-image - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-image-32bit - 32-bit shared libraries for xcb-util - xcb-util-image için 32-bit paylaşımlı kitaplıklar + xvba-video-32bit + 32-bit shared libraries for xvba-video + xvba-video için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libxcb-32bit - xcb-util-32bit - glibc-32bit + mesa-32bit + libX11-32bit + libXext-32bit - glibc-32bit - xcb-util-32bit - libxcb-32bit + mesa-32bit + xvba-video + libX11-32bit + libXext-32bit /usr/lib32 + + 2015-05-08 + 0.7.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.7.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + - 2015-12-13 - 0.4.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org + 2014-09-01 + 0.7.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org 2014-05-16 - 0.3.9 + 0.7.8 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. + 2014-03-09 + 0.7.8 + Rebuild for xserver 1.15. Serdar Soytetir kaptan@pisilinux.org - 2013-08-25 - 0.3.9 - Release bump. + 2013-08-26 + 0.7.8 + Fix emul32. Marcin Bojara marcin@pisilinux.org - 2013-07-30 - 0.3.9 - Rebuild - PisiLinux Community - admins@pisilinux.org + 2013-05-29 + 0.7.8 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2012-12-08 - 0.3.9 + 2012-05-31 + 0.7.8 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + xorg-video-rendition + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org rendition video driver + X.Org rendition ekran kartı sürücüsü + xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. + xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-rendition-4.2.5.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-rendition/pspec.xml + + + xorg-video-rendition + + xorg-server + + + /usr/lib/xorg/modules/drivers + /usr/lib/xorg/modules/*.uc + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 4.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 4.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 4.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 4.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 4.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 4.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 4.2.5 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 4.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 4.2.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 4.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-aiptek + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org Aiptek USB Digital Tablet input driver + X.Org aiptek Dijital Tablet giriş aygıtı sürücüsü + xorg-input-aiptek contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-aiptek, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-aiptek-1.4.1.tar.bz2 + + libX11-devel + libmtdev-devel + util-macros + + x11/driver/xorg-input-aiptek/pspec.xml + + + xorg-input-aiptek + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.4.1 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.4.1 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.4.1 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -57982,90 +83135,2863 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libexplain - http://libexplain.sourceforge.net/ + xorg-input-vmmouse + http://www.x.org - erdinc gültekin + PisiLinux Community admins@pisilinux.org - LGPLv2 - library - x11.library - Explain errno values returned by libc functions - Libc fonksiyonları tarafından döndürülen errno değerleri açıklar - The libexplain package provides a library which may be used to explain Unix and Linux system call errors - Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. - http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz + MIT + driver + x11.driver + X.Org vmmouse input driver + X.Org vmmouse giriş aygıtı sürücüsü + xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. + xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-vmmouse-13.0.0.tar.bz2 - acl-devel - libcap-devel - lsof - libtool - bison - groff + xorg-server-devel - x11/library/libexplain/pspec.xml + + xf86-input-vmmouse-13.0.0-build_fix-1.patch + + x11/driver/xorg-input-vmmouse/pspec.xml - libexplain - - acl - libcap - + xorg-input-vmmouse + /lib/udev /usr/bin - /usr/lib + /usr/libexec + /usr/lib/xorg + /usr/share/X11 /usr/share/man - /usr/share/locale - /usr/share/doc - - - - libexplain-devel - Development files for libexplain. - libexplain için geliştirme dosyaları - - libexplain - - - /usr/lib/pkgconfig - /usr/include + + 2015-05-08 + 13.0.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-27 + 13.0.0 + Rebuild for xorg-server-1.16.3 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-01 + 13.0.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 13.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + - 2014-11-24 - 1.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2014-03-09 + 13.0.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org - 2013-10-07 - 1.2 + 2013-08-25 + 13.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 13.0.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 12.9.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 12.9.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-video-mga + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mga video driver + X.Org mga ekran kartı sürücüsü + xorg-video-mga contains the X.Org driver for Matrox cards. + xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-mga-1.6.3.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + mga-1.4.5-no-hal-advertising.patch + mga-1.4.12-bigendian.patch + mga-1.6.2-shadowfb.patch + + x11/driver/xorg-video-mga/pspec.xml + + + xorg-video-mga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.6.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.6.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.6.3 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.6.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.6.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.2 Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.6.2 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-geode + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org geode video driver + X.Org geode ekran kartı sürücüsü + xorg-video-geode contains the X.Org driver for AMD Geode video cards. + xorg-video-geode, AMD Geode ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-geode-2.11.16.tar.bz2 + + xorg-server-devel + + + xf86-video-geode-2.11.16-glibc-2.20.patch + build-fix-1.17.patch + + x11/driver/xorg-video-geode/pspec.xml + + + xorg-video-geode + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2015-05-10 + 2.11.16 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-02-10 + 2.11.16 + Rebuild xorg-server 1.6.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.11.16 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.11.15 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.11.15 + Version bump. Serdar Soytetir kaptan@pisilinux.org 2013-08-25 - 1.2 + 2.11.14 Release bump. Marcin Bojara marcin@pisilinux.org - 2012-05-27 - 1.2 - V.Bump + 2013-06-21 + 2.11.14 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.11.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 2.11.14 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 2.11.13 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-savage + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org savage video driver + X.Org savage ekran kartı sürücüsü + xorg-video-savage contains the X.Org driver for S3 Savage cards. + xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-savage/pspec.xml + + + xorg-video-savage + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 2.3.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 2.3.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 2.3.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.3.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 2.3.7 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 2.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 2.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + vdpau-video + http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + driver + x11.driver + VDPAU backend for VA API + VA API için VDPAU arka ucu + vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. + vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 + + libvdpau-devel + libva-devel + mesa-devel + libX11-devel + + + libva-vdpau-driver-0.7.4-libvdpau-0.8.patch + libva-vdpau-driver-0.7.4-glext-85.patch + libva-vdpau-driver-0.7.4-drop-h264-api.patch + + x11/driver/vdpau-video/pspec.xml + + + vdpau-video + + libX11 + libvdpau + mesa + + + /usr/lib + /usr/share/doc + + + + + 2015-05-08 + 0.7.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 0.7.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.7.4 + Rebuild for xorg-server-1.16.0 and libvdpau-0.8 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.7.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 0.7.4 + Rebuild for xserver 1.15 + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-08 + 0.7.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 0.7.4 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.7.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.7.4 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.7.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-nouveau + http://nouveau.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org nouveau video driver + X.Org nouveau ekran kartı sürücüsü + xorg-video-nouveau contains the X.Org driver for NVIDIA cards. + xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 + + libdrm-nouveau + libpciaccess-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-nouveau/pspec.xml + + + xorg-video-nouveau + + libdrm + libdrm-nouveau + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.0.11 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.0.11 + Rebuild for xorg-server 1.6.3 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-09-04 + 1.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-09-01 + 1.0.10 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.0.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.0.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-09-05 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.0.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.0.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-10 + 1.0.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-sis + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sis video driver + X.Org sis ekran kartı sürücüsü + xorg-video-sis contains the X.Org driver for SiS cards. + xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + 0001-Disable-UploadToScreen-and-DownloadFromScreen.patch + git-fixes.patch + Xi.patch + + x11/driver/xorg-video-sis/pspec.xml + + + xorg-video-sis + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 0.10.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 0.10.7 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.10.7 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.10.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.10.7 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.10.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.10.7 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 0.10.7 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 0.10.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-apm + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org apm video driver + X.Org apm ekran kartı sürücüsü + xorg-video-apm contains the X.Org driver for Alliance Promotion cards. + xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-apm-1.2.5.tar.bz2 + + xorg-server-devel + util-macros + xorg-proto + + + git-fix.diff + + x11/driver/xorg-video-apm/pspec.xml + + + xorg-video-apm + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.2.5 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.5 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.5 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.5 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.5 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.5 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-openchrome + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org openchrome video driver + X.Org openchrome ekran kartı sürücüsü + xorg-video-openchrome contains the X.Org driver for VIA video chipsets. + xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 + + libdrm-devel + libXext-devel + libXv-devel + libXvMC-devel + xorg-server-devel + + + openchrome-0.2.904-fix_tvout_flickering.patch + fixed.patch + + x11/driver/xorg-video-openchrome/pspec.xml + + + xorg-video-openchrome + + libX11 + libdrm + libXext + libXv + libXvMC + xorg-server + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2015-05-08 + 0.3.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-02-10 + 0.3.3 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.3.3 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.3.3 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-02 + 0.3.3 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-25 + 0.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.3.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.3.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-v4l + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org v4l video driver + X.Org v4l ekran kartı sürücüsü + v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. + v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. + mirrors://xorg/individual/driver/xf86-video-v4l-0.2.0.tar.bz2 + + xorg-server-devel + + + xorg-x11-drv-v4l-support_v4l2_only_drivers.patch + xf86-video-v4l-0.2.0-build-fix.patch + + x11/driver/xorg-video-v4l/pspec.xml + + + xorg-video-v4l + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-15 + 0.2.0 + Release bump. Osman Erkan osman.erkan@pisilinux.org + + 2015-01-23 + 0.2.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.2.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 0.2.0 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.2.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.2.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.2.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2012-05-27 - 1.0 + 2012-05-31 + 0.2.0 First release - erdinc gültekin + Erdem Artan + admins@pisilinux.org + + + + + + xorg-video-trident + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org trident video driver + X.Org trident ekran kartı sürücüsü + xorg-video-trident contains the X.Org driver for Trident cards. + xorg-video-trident, Trident ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-trident-1.3.7.tar.bz2 + + xorg-server-devel + + x11/driver/xorg-video-trident/pspec.xml + + + xorg-video-trident + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.3.7 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.3.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.3.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.3.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.3.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.3.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.3.6 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-12 + 1.3.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-radeon + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org radeon video driver + X.Org radeon ekran kartı sürücüsü + xorg-video-radeon contains the X.Org driver for ATI video chipsets. + xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 + + libdrm-devel + libpciaccess-devel + mesa-devel + pixman-devel + xorg-server-devel + + x11/driver/xorg-video-radeon/pspec.xml + + + xorg-video-radeon + + libdrm-radeon + libpciaccess + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 7.5.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 7.5.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-10-18 + 7.5.0 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2014-09-01 + 7.4.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 7.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 7.3.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-02 + 7.1.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 7.1.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 7.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 7.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.14.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.14.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-joystick + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org joystick input driver + X.Org joystick giriş aygıtı sürücüsü + xorg-input-joystick contains the X.Org driver for joysticks. + xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-joystick/pspec.xml + + + xorg-input-joystick + + /usr/lib/xorg + /usr/share/man + + + + xorg-input-joystick-devel + Development files for xorg-input-joystick + xorg-input-joystick için geliştirme dosyaları + + xorg-input-joystick + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.6.2 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.6.2 + Rebuild for xorg-server-1.16.3 + Ergün Salman + poyraz76@pisilinux.org + + + 2014-09-01 + 1.6.2 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.6.2 + Rebuild for xserver 1.15. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.6.1 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-05-30 + 1.6.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xorg-input-wacom + http://linuxwacom.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + driver + x11.driver + Input driver for Wacom tablets and drawing devices + Wacom tabletleri ve çizim aygıtları için giriş sürücüsü + xorg-input-wacom includes the drivers and tools for Wacom devices. + xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. + mirrors://sourceforge/linuxwacom/xf86-input-wacom/xf86-input-wacom-0.29.0.tar.bz2 + + libXi-devel + libXrandr-devel + xorg-server-devel + libXinerama-devel + eudev-devel + + x11/driver/xorg-input-wacom/pspec.xml + + + xorg-input-wacom + + libX11 + libXi + libXrandr + libXinerama + xorg-server + eudev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 70-wacom.rules + + + + xorg-input-wacom-devel + Development files for xorg-input-wacom + xorg-input-wacom için geliştirme dosyaları + + xorg-input-wacom + + + /usr/bin/isdv4-serial-debugger + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 0.29.0 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2015-01-23 + 0.24.0 + Version bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 0.24.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.24.0 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.23.0 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 0.23.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-05 + 0.22.1 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.22.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-21 + 0.22.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-21 + 0.21.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 0.17.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 0.17.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-glint + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org glint video driver + X.Org glint ekran kartı sürücüsü + xorg-video-glint contains the X.Org driver for 3DLabs Permedia cards. + xorg-video-glint, 3DLabs Permedia ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-glint-1.2.8.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + + git-fix.diff + + x11/driver/xorg-video-glint/pspec.xml + + + xorg-video-glint + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.2.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-01-23 + 1.2.8 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.2.8 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.2.8 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.8 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.2.8 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-05-03 + 1.2.8 + Fix build with xorg-server-1.14.x + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.2.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-video-s3virge + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org s3virge video driver + X.Org s3virge ekran kartı sürücüsü + xorg-video-s3virge contains the X.Org driver for S3 Virge cards. + xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-s3virge-1.10.6.tar.bz2 + + xorg-server-devel + + + git-fixes.patch + + x11/driver/xorg-video-s3virge/pspec.xml + + + xorg-video-s3virge + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.10.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 1.10.6 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.10.6 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.10.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 1.10.6 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.10.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.10.6 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.10.6 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 1.10.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-acecad + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org acecad tablet input driver + X.Org acecad tablet giriş aygıtı sürücüsü + xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 + + xorg-server-devel + libmtdev-devel + sysfsutils-devel + util-macros + + + assign-local-private-after-allocating.patch + + x11/driver/xorg-input-acecad/pspec.xml + + + xorg-input-acecad + + sysfsutils + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-acecad-devel + Development files for ececad driver + acecad sürücüsü için geliştirme dosyaları + + xorg-input-acecad + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-05-08 + 1.5.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-22 + 1.5.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.5.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.5.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.5.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xorg-video-mach64 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mach64 video driver + X.Org mach64 ekran kartı sürücüsü + xorg-video-mach64 contains the X.Org driver for ATI Mach64 (Rage) video cards. + xorg-video-mach64, ATI Mach64 (Rage) ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + + x11/driver/xorg-video-mach64/pspec.xml + + + xorg-video-mach64 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 6.9.5 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-23 + 6.9.4 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 6.9.4 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 6.9.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-09 + 6.9.4 + Rebuild for xserver 1.15. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 6.9.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 6.9.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 6.9.3 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-10-11 + 6.9.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-input-kbd + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org kbd input driver + X.Org kbd giriş aygıtı sürücüsü + xorg-input-kbd contains the X.Org driver for keyboards. + xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-keyboard-1.8.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-kbd/pspec.xml + + + xorg-input-kbd + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2015-05-08 + 1.8.0 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.8.0 + Rebuild for xorg-server-1.16.3 + Ergün Salman + Poyraz76@pisilinux.org + + + 2014-09-01 + 1.8.0 + Rebuild for xorg-server-1.16.0 + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 1.8.0 + Rebuild for xserver 1.15. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-08 + 1.8.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 1.7.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.7.0 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 1.7.0 + build for xorg 1.14 + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-14 + 1.7.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-11 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-font + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + data:font + x11.misc + Fichiers de fontes d'écrans graphiques (X.Org) + X.Org font files + X.Org yazı tipi dosyaları + Grafische Oberfläche (X.Org) Schrift Dateien + xorg-font contains base X.Org fonts. + mirrors://xorg/individual/font/encodings-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 + + font-util + xorg-app + + x11/misc/xorg-font/pspec.xml + + + xorg-font + + xorg-app + + + /etc/X11/fontpath.d + /usr/share/fonts + /etc/fonts/conf.avail/42-luxi-mono.conf + /etc/fonts/conf.d/42-luxi-mono.conf + + + + xorg-font-extra + X.Org additional font files + X.Org ek yazı tipi dosyaları + + xorg-app + + + /etc/X11/fontpath.d/75dpi:unscaled + /etc/X11/fontpath.d/100dpi:unscaled + /usr/share/fonts/75dpi + /usr/share/fonts/100dpi + + + + + 2015-11-17 + 7.6 + Release Bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-05-16 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-01 + 7.6 + Add fonts. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-11-01 + 7.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xkeyboard-config + http://freedesktop.org/wiki/Software/XKeyboardConfig + + PisiLinux Community + admins@pisilinux.org + + MIT + data + x11.misc + X keyboard configuration database + X klavye yapılandırma veritabanı + xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. + xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. + mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.14.tar.bz2 + + intltool + xorg-proto + xorg-app + libxslt-devel + libX11-devel + + + xkeyboard-config-1.4-jp-tilde.patch + + x11/misc/xkeyboard-config/pspec.xml + + + xkeyboard-config + + xorg-app + libxslt + libX11 + + + /etc/X11/xorg.conf.d + /lib/udev/rules.d + /usr/share/X11/xkb + /usr/share/doc + /usr/share/locale + /usr/share/pkgconfig + /usr/share/man + + + 10-keyboard.conf + 95-xkb.rules + + + + + 2015-05-14 + 2.14 + Release bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-29 + 2.14 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-21 + 2.13 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2014-08-31 + 2.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-15 + 2.11 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 2.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 2.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 2.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xorg-app + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + app:gui + x11.misc + Applications de X.Org + X.Org applications + X.Org uygulamaları + X.Org Anwendungen + xorg-app contains base Xorg applications. + mirrors://xorg/individual/app/appres-1.0.4.tar.bz2 + mirrors://xorg/individual/app/bdftopcf-1.0.5.tar.bz2 + mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 + mirrors://xorg/individual/app/bitmap-1.0.8.tar.bz2 + mirrors://xorg/individual/app/editres-1.0.6.tar.bz2 + mirrors://xorg/individual/app/fonttosfnt-1.0.4.tar.bz2 + mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 + mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 + mirrors://xorg/individual/app/iceauth-1.0.7.tar.bz2 + mirrors://xorg/individual/app/ico-1.0.4.tar.bz2 + mirrors://xorg/individual/app/listres-1.0.3.tar.bz2 + mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 + mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 + mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 + mirrors://xorg/individual/app/mkfontscale-1.1.2.tar.bz2 + mirrors://xorg/individual/app/oclock-1.0.3.tar.bz2 + mirrors://xorg/individual/app/rendercheck-1.4.tar.bz2 + mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 + mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 + mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 + mirrors://xorg/individual/app/sessreg-1.1.0.tar.bz2 + mirrors://xorg/individual/app/setxkbmap-1.3.0.tar.bz2 + mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 + mirrors://xorg/individual/app/smproxy-1.0.5.tar.bz2 + mirrors://xorg/individual/app/twm-1.0.8.tar.bz2 + mirrors://xorg/individual/app/viewres-1.0.4.tar.bz2 + mirrors://xorg/individual/app/x11perf-1.5.4.tar.bz2 + mirrors://xorg/individual/app/xauth-1.0.9.tar.bz2 + mirrors://xorg/individual/app/xbacklight-1.2.1.tar.bz2 + mirrors://xorg/individual/app/xbiff-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xcalc-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xclock-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xcmsdb-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xcompmgr-1.1.6.tar.bz2 + mirrors://xorg/individual/app/xconsole-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xcursorgen-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xditview-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xdpyinfo-1.3.1.tar.bz2 + mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xev-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xeyes-1.1.1.tar.bz2 + mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xfd-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xfontsel-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xfs-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xfsinfo-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xhost-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xinput-1.6.1.tar.bz2 + mirrors://xorg/individual/app/xkbcomp-1.3.0.tar.bz2 + mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xkbprint-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xkill-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xload-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xlogo-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xlsatoms-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xlsclients-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xlsfonts-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xmag-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xman-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xmessage-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xmodmap-1.0.9.tar.bz2 + mirrors://xorg/individual/app/xmore-1.0.2.tar.bz2 + mirrors://xorg/individual/app/xpr-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xprop-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xrandr-1.4.3.tar.bz2 + mirrors://xorg/individual/app/xrdb-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xrefresh-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xset-1.2.3.tar.bz2 + mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 + mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 + mirrors://xorg/individual/app/xsetroot-1.1.1.tar.bz2 + mirrors://xorg/individual/app/xsm-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xstdcmap-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xvinfo-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xwd-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xwininfo-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xwud-1.0.4.tar.bz2 + + fontconfig-devel + libdmx-devel + libfontenc-devel + libFS-devel + libICE-devel + libpng-devel + libSM-devel + libXaw-devel + libXcomposite-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXfixes-devel + libXfont-devel + libXft-devel + libXi-devel + libXinerama-devel + libxkbfile-devel + libXmu-devel + libXrandr-devel + libXrender-devel + libXScrnSaver-devel + libXt-devel + libXtst-devel + libXv-devel + libXxf86dga-devel + libXxf86vm-devel + xbitmaps + xcb-util-devel + libXxf86misc-devel + xorg-proto + util-macros + xtrans + + x11/misc/xorg-app/pspec.xml + + + xorg-app + + zlib + libX11 + libXau + libpng + libxcb + freetype + libFS + libSM + libXi + libXt + libXv + libdmx + libXmu + libXaw + libICE + libXft + libXtst + libXext + xcb-util + libXfont + libXrandr + libXfixes + libXrender + fontconfig + libfontenc + libXxf86vm + libXcursor + libXdamage + libxkbfile + libXxf86dga + libXinerama + libXxf86misc + libXcomposite + libXScrnSaver + + + /etc + /usr/bin + /usr/include + /usr/lib + /usr/sbin + /usr/share/X11 + /usr/share/man + + + System.PackageHandler + + + + xorg-app-devel + + libxkbfile-devel + xorg-app + + + /usr/lib/pkgconfig + + + + + 2015-05-10 + 7.6 + Update. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-08-31 + 7.6 + Update. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 7.6 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-06 + 7.6 + Split devel package to prevent lots of devel pack installation. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 7.6 + Update: xfwp, xload, xprop, xset, xwd, xclipboard, twm, xman, xclock, xfindproxy, xkill, xlsclients, xmodmap, xrdb + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-05 + 7.6 + Add missing method to pakhandler.py + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 7.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-17 + 7.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-07-31 + 7.6 + Update some apps, fix build luit + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 7.6 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 7.6 + Update + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-13 + 7.6 + Update + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 7.6 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xbitmaps + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.misc + Utilitaire Xbitmaps de X.Org + X.Org static graphics + X.Org statik grafikleri + X.Org xbitmaps Werkzeug + xbitmaps provides static graphics needed by Xorg applications to draw screen elements. + xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. + mirrors://xorg/individual/data/xbitmaps-1.1.1.tar.bz2 + x11/misc/xbitmaps/pspec.xml + + + xbitmaps + + /usr/include/X11/bitmaps + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + + + 2014-05-15 + 1.1.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-08-25 + 1.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2010-12-14 + 1.1.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + xinit + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.misc + X Window System session initializer + X Pencere Sistemi oturum hazırlayıcı + xinit initializes X Window System server and runs the first client application. + xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. + mirrors://xorg/individual/app/xinit-1.3.4.tar.bz2 + + util-macros + xorg-proto + libX11-devel + + + 06_move_serverauthfile_into_tmp.diff + fs25361.patch + + x11/misc/xinit/pspec.xml + + + xinit + + libX11 + xorg-app + dbus-x11 + + + /etc/X11/Xresources + /etc/X11/Xdefaults + /etc/X11/xinit + /usr/bin + /usr/lib/X11/xinit + /usr/share/doc + /usr/share/man + + + Xsession + xinitrc + xserverrc + xserverrc + Xresources + Xdefaults + xinitrc.d/localuser.sh + xinitrc.d/xdg-runtime-dir.sh + xinitrc.d/Xresources.sh + xinitrc.d/Xdefaults.sh + xinitrc.d/xkb.sh + xinitrc.d/startup.sh + xinitrc.d/environment.sh + xinitrc.d/dbus.sh + xinitrc.d/ssh-agent.sh + + + + + 2015-11-30 + 1.3.4 + add patchs. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-10 + 1.3.4 + Version Bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-07-28 + 1.3.3 + add xdg runtime dir fix localuser dir + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-16 + 1.3.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-12 + 1.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-26 + 1.3.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + font-util + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.util + Utilitaires de fontes de X.Org + X.Org font utilities + X.Org font araçları + X.Org Schrift Werkzeuge + font-util package contains core font utilities for the Xorg XWindow system. + mirrors://xorg/individual/font/font-util-1.3.1.tar.bz2 + + zlib-devel + + x11/util/font-util/pspec.xml + + + font-util + + /usr/bin + /usr/lib/pkgconfig + /usr/share/fonts + /usr/share/aclocal + /usr/share/doc + /usr/share/man + + + + + 2015-05-10 + 1.3.1 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2014-05-16 + 1.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-06 + 1.3.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.3.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-25 + 1.3.0 + First release + Erdem Artan admins@pisilinux.org @@ -58204,7 +86130,79 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXrender + libepoxy + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + MIT + library + x11.library + OpenGL function pointer management library + Epoxy is a library for handling OpenGL function pointer management for you. + https://github.com/anholt/libepoxy/archive/v1.2.tar.gz + + libX11-devel + mesa-devel + util-macros + + x11/library/libepoxy/pspec.xml + + + libepoxy + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + libepoxy-devel + Development files for libepoxy + + libepoxy + + + /usr/include + /usr/lib/pkgconfig + + + + libepoxy-32bit + 32-bit shared libraries for libeproxy + emul32 + emul32 + + glibc-32bit + libX11-32bit + mesa-32bit + + + glibc-32bit + + + /lib32 + /usr/lib32 + + + + + 2015-05-27 + 1.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libXv http://www.x.org/ PisiLinux Community @@ -58213,21 +86211,145 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xrender de X.Org - X.Org Xrender library - X.Org Xrender kitaplığı - X.Org Xrender Bibliothek - The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. - mirrors://xorg/individual/lib/libXrender-0.9.9.tar.bz2 + Librairie Xv de X.Org + X.Org Xv library + X.Org Xv kitaplığı + X.Org Xv Bibliothek + LibXv is the X Window System video extension library. + mirrors://xorg/individual/lib/libXv-1.0.10.tar.bz2 libX11-devel - xorg-proto + libXext-devel util-macros - x11/library/libXrender/pspec.xml + x11/library/libXv/pspec.xml - libXrender + libXv + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXv-devel + Development files for libXv + libXv için geliştirme dosyaları + + libXv + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXv-32bit + 32-bit shared libraries for libXv + libXv için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXext-32bit + + + libXv + glibc-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.0.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.10 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.0.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.0.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXcomposite + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie composite X.Org + X.Org composite library + X.Org composite kitaplığı + X.Org composite Bibliothek + libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. + libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. + mirrors://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2 + + libX11-devel + libXfixes-devel + util-macros + + x11/library/libXcomposite/pspec.xml + + + libXcomposite libX11 @@ -58237,78 +86359,158 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXrender-devel - Development files for libXrender - libXrender için geliştirme dosyaları + libXcomposite-devel + Development files for libXcomposite + libXcomposite için geliştirme dosyaları - libXrender - libX11-devel + libXcomposite + libXfixes-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/libXrender/libXrender.txt + /usr/share/man - libXrender-32bit - 32-bit shared libraries for libXrender - libXrender için 32-bit paylaşımlı kitaplıklar + libXcomposite-32bit + 32-bit shared libraries for libXcomposite + libXcomposite için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glibc-32bit libX11-32bit + glibc-32bit - libXrender - glibc-32bit + libXcomposite libX11-32bit + glibc-32bit /usr/lib32 - - 2015-08-15 - 0.9.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - 2014-05-16 - 0.9.8 + 0.4.4 Release bump. Marcin Bojara marcin@pisilinux.org 2013-10-07 - 0.9.8 + 0.4.4 Rebuild. Serdar Soytetir kaptan@pisilinux.org 2013-08-25 - 0.9.8 + 0.4.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.4.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 0.4.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libdmx + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie dmx de X.Org + X.Org dmx library + X.Org dmx kitaplığı + X.Org dmx Bibliothek + libdmx is the X Window System DMX (Distributed Multihead X) extension library. + mirrors://xorg/individual/lib/libdmx-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libdmx/pspec.xml + + + libdmx + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libdmx-devel + Development files for libdmx + libdmx için geliştirme dosyaları + + libdmx + libXext-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man + + + + + 2014-05-16 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 Release bump. Marcin Bojara marcin@pisilinux.org 2013-06-21 - 0.9.8 + 1.1.3 Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 0.9.7 + 1.1.2 First release Erdem Artan admins@pisilinux.org @@ -58317,7 +86519,131 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-renderutil + libX11 + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie X11 de X.Org. + X.Org X11 library + X.Org X11 kitaplığı + X.Org X11 Bibliothek + Core X11 protocol client library. + mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2 + + libxcb-devel + xorg-proto + util-macros + xtrans + + x11/library/libX11/pspec.xml + + + libX11 + + libxcb + + + /usr/lib/libX11* + /usr/lib/X11 + /usr/share/X11 + /usr/share/doc/libX11 + + + + libX11-devel + Development files for X11 library + libX11 için geliştirme dosyaları + + libX11 + libxcb-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libX11-32bit + 32-bit shared libraries for libX11 + libX11 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + libX11 + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-05-22 + 1.6.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.6.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.6.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.6.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.6.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.6.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-24 + 1.5.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xcb-util http://xcb.freedesktop.org PisiLinux Community @@ -58328,17 +86654,17 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol x11.library A number of libraries which sit on top of libxcb libxcb temelli birtakım kitaplıklar - The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 + The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 util-macros libxcb-devel - x11/library/xcb-util-renderutil/pspec.xml + x11/library/xcb-util/pspec.xml - xcb-util-renderutil + xcb-util libxcb @@ -58348,11 +86674,12 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-renderutil-devel - Development files for xcb-util-renderutil - xcb-util-renderutil için geliştirme dosyaları + xcb-util-devel + Development files for xcb-util + xcb-util için geliştirme dosyaları - xcb-util-renderutil + xcb-util + libxcb-devel /usr/include @@ -58361,18 +86688,115 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xcb-util-renderutil-32bit - 32-bit shared libraries for xcb-util-renderutil - xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar + xcb-util-32bit + 32-bit shared libraries for xcb-util + xcb-util için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glibc-32bit libxcb-32bit + glibc-32bit - glibc-32bit + xcb-util libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-12-13 + 0.4.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2013-10-07 + 0.3.9 + Clean actions.py emul32 build. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 0.3.9 + First release + Erdem Artan + admins@pisilinux.org + + + + + + mesa-glu + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Mesa OpenGL Utility library + Mesa implementation of the standard GLU OpenGL utility API. + ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.0.tar.gz + + mesa-devel + libgcc + + x11/library/mesa-glu/pspec.xml + + + mesa-glu + + mesa + libgcc + + + /usr/lib + + + + mesa-glu-devel + Development files for mesa-glu + mesa-glu için geliştirme dosyaları + + mesa-glu + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-glu-32bit + 32-bit shared libraries for mesa-glu + mesa-glu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libgcc + glibc-32bit + + + mesa-glu + mesa-32bit + libgcc + glibc-32bit /usr/lib32 @@ -58380,42 +86804,2479 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2014-09-01 - 0.3.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2015-01-22 + 9.0.0 + Release bump. + Ergün Salman + Poyraz76@pisilinux.org 2014-05-16 - 0.3.8 + 9.0.0 Release bump. Marcin Bojara marcin@pisilinux.org 2013-10-07 - 0.3.8 + 9.0.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 9.0.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 9.0.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXft + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xft de X.Org + X.Org Xft library + X.Org Xft kitaplığı + X.Org Xft Bibliothek + libXft is the X FreeType interface library. + mirrors://xorg/individual/lib/libXft-2.3.2.tar.bz2 + + util-macros + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel + + x11/library/libXft/pspec.xml + + + libXft + + libX11 + freetype + fontconfig + libXrender + + + /usr/lib + /usr/share/doc + + + + libXft-devel + Development files for libXft + libXft için geliştirme dosyaları + + libXft + freetype-devel + fontconfig-devel + libXrender-devel + + + /usr/bin + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXft-32bit + 32-bit shared libraries for libXft + libXft için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + freetype-32bit + fontconfig-32bit + libXrender-32bit + zlib-32bit + libX11-32bit + glibc-32bit + + + libXft + freetype-32bit + fontconfig-32bit + libXrender-32bit + zlib-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-08-31 + 2.3.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 2.3.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-01 + 2.3.1 + Rebuild for freetype. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 2.3.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 2.3.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 2.3.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXaw + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X Athena Widgets Library + X Athena Parçacıkları kitaplığı + Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. + mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 + + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + util-macros + libICE-devel + libSM-devel + libX11-devel + + x11/library/libXaw/pspec.xml + + + libXaw + + libX11 + libXext + libXmu + libXpm + libXt + + + /usr/lib + /usr/share/doc + + + + libXaw-devel + Development files for libXaw + libXaw için geliştirme dosyaları + + libXaw + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXaw-32bit + 32-bit shared libraries for libSM + libXaw için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + libXaw + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 1.0.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.0.12 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.0.12 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.0.11 + Revert back to 1.0.11. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.0.12 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.11 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.0.11 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.0.11 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2012-11-22 + 1.0.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxkbcommon + http://xkbcommon.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + x11.library + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.5.0.tar.gz + + util-macros + libxcb-devel + + x11/library/libxkbcommon/pspec.xml + + + libxkbcommon + + libxcb + + + /usr/share/doc/libxkbcommon/ + /usr/lib/lib*.so* + + + + libxkbcommon-devel + Development files for libxkbcommon + libxkbcommon için geliştirme dosyaları + + libxkbcommon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libxkbcommon-32bit + 32-bit shared libraries for libxkbcommon + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + libxkbcommon + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-03-04 + 0.5.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-16 + 0.4.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 0.3.1 + Rebuild, clean emul32 installation. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-02 + 0.3.1 + First release. + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libexplain + http://libexplain.sourceforge.net/ + + erdinc gültekin + admins@pisilinux.org + + LGPLv2 + library + x11.library + Explain errno values returned by libc functions + Libc fonksiyonları tarafından döndürülen errno değerleri açıklar + The libexplain package provides a library which may be used to explain Unix and Linux system call errors + Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. + http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz + + acl-devel + libcap-devel + lsof + libtool + bison + groff + + x11/library/libexplain/pspec.xml + + + libexplain + + acl + libcap + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/doc + + + + libexplain-devel + Development files for libexplain. + libexplain için geliştirme dosyaları + + libexplain + + + /usr/lib/pkgconfig + /usr/include + + + + + 2014-11-24 + 1.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 1.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-05-27 + 1.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-05-27 + 1.0 + First release + erdinc gültekin + admins@pisilinux.org + + + + + + libomxil-bellagio + http://omxil.sourceforge.net + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + x11.library + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz + + glibc-devel + + + fedora-fixes.patch + + x11/library/libomxil-bellagio/pspec.xml + + + libomxil-bellagio + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + libomxil-bellagio-devel + Development files for mesa + + libomxil-bellagio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-07 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXinerama + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + librairie Xinerama de X.Org + X.Org Xinerama library + X.Org Xinerama kitaplığı + X.Org Xinerama Bibliothek + Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. + mirrors://xorg/individual/lib/libXinerama-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXinerama/pspec.xml + + + libXinerama + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXinerama-devel + Development files for libXinerama + libXinerama için geliştirme dosyaları + + libXinerama + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXinerama-32bit + 32-bit shared libraries for libXinerama + libXinerama için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libX11-32bit + glibc-32bit + + + libXinerama + libX11-32bit + libXext-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.1.3 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 1.1.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + freeglut + http://freeglut.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + The OpenGL Utility Toolkit (Freeglut) + OpenGL Araç Kiti (Freeglut) + Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. + Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. + Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. + Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. + mirrors://sourceforge/freeglut/freeglut-3.0.0.tar.gz + + mesa-devel + mesa-glu-devel + libX11-devel + libXi-devel + libXxf86vm-devel + libXext-devel + libXrandr-devel + cmake + + x11/library/freeglut/pspec.xml + + + freeglut + + mesa + libX11 + libXi + libXxf86vm + libXrandr + + + /usr/lib + /usr/share/doc/freeglut + + + + freeglut-devel + Development files for freeglut + freeglut için geliştirme dosyaları + + freeglut + + + /usr/include + + + + freeglut-32bit + 32-bit shared libraries for freeglut + freeglut için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + mesa-glu-32bit + libXi-32bit + libX11-32bit + libXxf86vm-32bit + libXrandr-32bit + + + freeglut + glibc-32bit + mesa-32bit + libXi-32bit + libXxf86vm-32bit + libX11-32bit + libXrandr-32bit + + + /usr/lib32 + + + + + 2015-04-27 + 3.0.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-16 + 2.8.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-25 + 2.8.1 + rebuild unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-08 + 2.8.1 + verbump to 2.8.1 , Rebuild, clean emul32 installation. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 2.8.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-13 + 2.8.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxcb + http://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + The X protocol C-language Binding (XCB) + X protokolü için C dili bağlayıcısı (XCB) + The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. + http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2 + + libXau-devel + libXdmcp-devel + libxslt + util-macros + xcb-proto + + + libxcb-1.1-no-pthread-stubs.patch + + x11/library/libxcb/pspec.xml + + + libxcb + + libXau + libXdmcp + glibc + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libxcb-devel + Development files for libxcb + libxcb için geliştirme dosyaları + + libxcb + libXau-devel + libXdmcp-devel + + + /usr/include/xcb + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + pthread-stubs.pc + + + + libxcb-32bit + 32-bit shared libraries for libxcb + libxcb için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + libxcb + libXau-32bit + libXdmcp-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-12-13 + 1.11.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2015-05-22 + 1.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-11 + 1.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-08 + 1.9.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-28 + 1.9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-18 + 1.9 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + mesa + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + x11.library + Mesa graphics libraries and utilities + Mesa grafik kitaplıkları ve yardımcı uygulamalar + Mesa biblioteki graficzne i narzędzia + Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. + Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. + Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. + ftp://ftp.freedesktop.org/pub/mesa/10.5.5/mesa-10.5.5.tar.gz + + llvm + llvm-libs + llvm-clang-devel + xorg-proto + expat-devel + libdrm-devel + libXext-devel + wayland-devel + wayland-server + wayland-client + libvdpau-devel + libXfixes-devel + libtalloc-devel + libXdamage-devel + libomxil-bellagio-devel + libXxf86vm-devel + libXvMC-devel + libXv-devel + eudev-devel + python-mako + libxshmfence-devel + + x11/library/mesa/pspec.xml + + + mesa + + alternatives + llvm-libs + llvm-clang + libX11 + libgcc + libxcb + expat + libdrm + libXext + libXfixes + libXdamage + libXxf86vm + libXv + libXvMC + libdrm-intel + libdrm-radeon + libdrm-nouveau + wayland-client + wayland-server + libxshmfence + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + + + System.Package + + + drirc + + + + mesa-devel + Development files for mesa + mesa için geliştirme dosyaları + + libdrm-devel + libXext-devel + wayland-devel + libXfixes-devel + libXdamage-devel + libXxf86vm-devel + libxshmfence-devel + mesa + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-32bit + 32-bit shared libraries for mesa + mesa için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + expat-32bit + libXt-devel + libXv-32bit + libX11-32bit + libcap-32bit + libdrm-32bit + libXext-32bit + libXvMC-32bit + eudev-32bit + wayland-32bit + libvdpau-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libdrm-intel-32bit + libdrm-radeon-32bit + libdrm-nouveau-32bit + libxshmfence-32bit + + + alternatives + glibc-32bit + libgcc + libxcb-32bit + expat-32bit + libX11-32bit + libdrm-32bit + libxcb-32bit + libXext-32bit + wayland-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libXv-32bit + libXvMC-32bit + libdrm-intel-32bit + libxshmfence-32bit + libdrm-radeon-32bit + libdrm-nouveau-32bit + wayland-32bit + mesa + + + /usr/lib32 + + + System.Package + + + + + 2015-05-16 + 10.5.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-05 + 10.5.4 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2015-01-28 + 10.4.3 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2015-01-20 + 10.4.2 + Version bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2014-09-24 + 10.3.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-08-31 + 10.2.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-07-08 + 10.1.6 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-24 + 10.1.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-16 + 10.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-10 + 10.1.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-23 + 10.1.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 10.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 9.2.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-02 + 9.2.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 9.1.5 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-18 + 9.1.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-14 + 9.1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-01 + 9.1 + add missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-28 + 9.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-04 + 9.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxkbfile + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie xkbfile de X.Org + X.Org xkbfile library + X.Org xkbfile kitaplığı + X.Org xkbfile Bibliothek + Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. + mirrors://xorg/individual/lib/libxkbfile-1.0.9.tar.bz2 + + util-macros + libX11-devel + xorg-proto + + x11/library/libxkbfile/pspec.xml + + + libxkbfile + + libX11 + + + /usr/lib + /usr/share/doc + + + + libxkbfile-devel + Development files for libxkbfile + libxkbfile için geliştirme dosyaları + + libxkbfile + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2015-08-15 + 1.0.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.8 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXrandr + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org Xrandr library + Librairie Xrand de X.Org. + Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. + X.Org Xrand kitaplığı. + X.Org Xrand Bibliothek + mirrors://xorg/individual/lib/libXrandr-1.5.0.tar.bz2 + + libXext-devel + libXrender-devel + libX11-devel + util-macros + + x11/library/libXrandr/pspec.xml + + + libXrandr + + libXext + libXrender + libX11 + + + /usr/lib + /usr/share/doc + + + + libXrandr-devel + Development files for libXrandr + libXrandr için geliştirme dosyaları + + libXrandr + libXrender-devel + libXext-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXrandr-32bit + 32-bit shared libraries for libXrandr + libXrandr için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXext-32bit + libXrender-32bit + + + libXrandr + glibc-32bit + libX11-32bit + libXext-32bit + libXrender-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 1.5.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-09-15 + 1.4.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.4.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.4.1 + Revert back to 1.4.1. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.4.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.4.1 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.4.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 1.4.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + glew + http://glew.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + BSD + GLX + SGI-B + GPLv2 + app:console + library + x11.library + OpenGL Extension Wrangler Library + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı + OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. + mirrors://sourceforge/glew/1.12.0/glew-1.12.0.tgz + + mesa-glu-devel + + + add_bin_target.patch + + x11/library/glew/pspec.xml + + + glew + + mesa + libX11 + + + /usr/lib + /usr/share/doc + /usr/bin + + + + glew-devel + Development files for glew + glew için geliştirme dosyaları + + mesa-glu-devel + glew + + + /usr/include/GL + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + glew-32bit + 32-bit shared libraries for glew + glew için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libX11-32bit + + + mesa-32bit + glibc-32bit + libX11-32bit + glew + + + /usr/lib32 + + + + + 2015-08-15 + 1.12.0 + Version bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-01-27 + 1.10.0 + Release bump + Dep Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-16 + 1.10.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.10.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 1.9.0 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-08 + 1.9.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.9.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.9.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-10-30 + 1.9.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXvMC + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie XvMC de X.Org + X.Org XvMC library + X.Org XvMC kitaplığı + X.Org XvMC Bibliothek + LibXvMC is the X-Video Motion Compensation Library. + mirrors://xorg/individual/lib/libXvMC-1.0.8.tar.bz2 + + libX11-devel + libXext-devel + libXv-devel + xorg-proto + util-macros + + x11/library/libXvMC/pspec.xml + + + libXvMC + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXvMC-devel + Development files for libXvMC + libXvMC için geliştirme dosyaları + + libXv-devel + libXext-devel + libXvMC + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXvMC/XvMC_API.txt + + + + libXvMC-32bit + 32-bit shared libraries for libXvMC + libXvMC için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXv-32bit + libX11-32bit + libXext-32bit + + + libX11-32bit + libXext-32bit + libXvMC + + + /usr/lib32 + + + + + 2014-05-16 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-19 + 1.0.8 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 1.0.8 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-02 + 1.0.8 + Split 32bit. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.0.8 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-06-21 + 1.0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.0.7 + First release + Erdem Artan + admins@pisilinux.org + + + + + + wayland + http://wayland.freedesktop.org/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + library + x11.library + Wayland Compositor Infrastructure + Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. + http://wayland.freedesktop.org/releases/wayland-1.9.0.tar.xz + + libffi-devel + expat-devel + + x11/library/wayland/pspec.xml + + + wayland + + expat + + + /usr/bin + /usr/share/doc/ + /usr/share/aclocal + /usr/share/wayland + /usr/share/man + + + + wayland-client + Wayland client library + + libffi + wayland + + + /usr/lib/libwayland-client* + + + + wayland-cursor + Wayland cursor library + + wayland + wayland-client + + + /usr/lib/libwayland-cursor* + + + + wayland-server + Wayland server library + + libffi + wayland + + + /usr/lib/libwayland-server* + + + + wayland-devel + Development files for wayland + + wayland + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/pkgconfig + + + + wayland-32bit + 32-bit shared libraries for wayland + emul32 + emul32 + + libffi-32bit + glibc-32bit + expat-32bit + + + wayland + expat-32bit + libffi-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-11-05 + 1.9.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-16 + 1.7.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-25 + 1.6.0 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-07-06 + 1.5.0 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-16 + 1.4.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-13 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-27 + 1.2.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-06 + 1.2.1 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-31 + 1.2.1 + First release. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXfixes + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xfixes de X.Org + X.Org Xfixes library + X.Org Xfixes kitaplığı + X.Org Xfixes Bibliothek + libXfixes is a library to provide augmented versions of core protocol requests. + mirrors://xorg/individual/lib/libXfixes-5.0.1.tar.bz2 + + xorg-proto + libX11-devel + util-macros + + x11/library/libXfixes/pspec.xml + + + libXfixes + + /usr/lib + /usr/share/doc + + + + libXfixes-devel + Development files for libXfixes + libXfixes için geliştirme dosyaları + + libXfixes + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXfixes-32bit + 32-bit shared libraries for libXfixes + libXfixes için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + glibc-32bit + + + libXfixes + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 5.0.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 5.0.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 5.0.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 5.0.1 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 5.0.1 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + + + 2013-06-21 + 5.0.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 5.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXxf86dga + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86dga de X.Org + X.Org Xxf86dga library + X.Org Xxf86dga kitaplığı + X.Org Xxf86dga Bibliothek + LibXxf86dga is the client library for the XFree86-DGA extension. + mirrors://xorg/individual/lib/libXxf86dga-1.1.4.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86dga/pspec.xml + + + libXxf86dga + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXxf86dga-devel + Development files for libXxf86dga + libXxf86dga için geliştirme dosyaları + + libXxf86dga + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86dga-32bit + 32-bit shared libraries for libXxf86dga + libXxf86dga için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86dga + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.3 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libxshmfence + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org libxshmfence library + libxshmfence is the X Window System video extension library. + mirrors://xorg/individual/lib/libxshmfence-1.2.tar.bz2 + + libXext-devel + util-macros + + x11/library/libxshmfence/pspec.xml + + + libxshmfence + + libXext + + + /usr/lib + /usr/share/doc + + + + libxshmfence-devel + Development files for libxshmfence + + libxshmfence + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libxshmfence-32bit + 32-bit shared libraries for libxshmfence + emul32 + emul32 + + glibc-32bit + libX11-32bit + libXext-32bit + + + libxshmfence + glibc-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2015-05-05 + 1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xcb-util-wm + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-wm module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util-wm/pspec.xml + + + xcb-util-wm + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-wm-devel + Development files for xcb-util-wm + xcb-util-wm için geliştirme dosyaları + + xcb-util-wm + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-wm-32bit + 32-bit shared libraries for xcb-util-wm + xcb-util-wm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + glibc-32bit + + + xcb-util-wm + libxcb-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 0.4.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.4.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-07 + 0.3.9 Clean actions.py emul32 build. Serdar Soytetir kaptan@pisilinux.org 2013-08-25 - 0.3.8 + 0.3.9 Release bump. Marcin Bojara marcin@pisilinux.org 2012-12-08 - 0.3.8 + 0.3.9 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org + + + libva + http://www.freedesktop.org/wiki/Software/vaapi + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Video Acceleration (VA) API for Linux + Linux için video hızlandırma API'si + libva is a library providing the VA API video acceleration API. + libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. + http://www.freedesktop.org/software/vaapi/releases/libva/libva-1.5.1.tar.bz2 + + libdrm-devel + libXext-devel + libXfixes-devel + mesa-devel + wayland-devel + + x11/library/libva/pspec.xml + + + libva + + libX11 + libdrm + libXext + libXfixes + mesa + wayland-client + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libva-devel + Development files for libva + libva için geliştirme dosyaları + + libva + wayland-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libva-32bit + 32-bit shared libraries for libva + libva için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + mesa-32bit + libX11-32bit + glibc-32bit + + + libva + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + libX11-32bit + mesa-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-05-10 + 1.5.1 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-01-21 + 1.5.0 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2014-05-16 + 1.3.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.3.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2014-02-20 + 1.2.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-07 + 1.2.1 + Version bump, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-10 + 1.1.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + libdrm @@ -58786,983 +89647,121 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - mesa - http://www.mesa3d.org + libXcursor + http://www.x.org/ PisiLinux Community admins@pisilinux.org MIT library - app:console x11.library - Mesa graphics libraries and utilities - Mesa grafik kitaplıkları ve yardımcı uygulamalar - Mesa biblioteki graficzne i narzędzia - Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. - Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. - Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. - ftp://ftp.freedesktop.org/pub/mesa/10.5.5/mesa-10.5.5.tar.gz + Librairie Xcursor de X.Org + X.Org Xcursor library + X.Org Xcursor kitaplığı + X.Org Xcursor Bibliothek + libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. + mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2 - llvm - llvm-libs - llvm-clang-devel + util-macros + libX11-devel xorg-proto - expat-devel - libdrm-devel - libXext-devel - wayland-devel - wayland-server - wayland-client - libvdpau-devel libXfixes-devel - libtalloc-devel - libXdamage-devel - libomxil-bellagio-devel - libXxf86vm-devel - libXvMC-devel - libXv-devel - eudev-devel - python-mako - libxshmfence-devel + libXrender-devel - x11/library/mesa/pspec.xml + x11/library/libXcursor/pspec.xml - mesa + libXcursor - alternatives - llvm-libs - llvm-clang libX11 - libgcc - libxcb - expat - libdrm - libXext libXfixes - libXdamage - libXxf86vm - libXv - libXvMC - libdrm-intel - libdrm-radeon - libdrm-nouveau - wayland-client - wayland-server - libxshmfence + libXrender - /etc - /usr/bin /usr/lib /usr/share/doc - - System.Package - - - drirc - - mesa-devel - Development files for mesa - mesa için geliştirme dosyaları + libXcursor-devel + Development files for libXcursor + libXcursor için geliştirme dosyaları - libdrm-devel - libXext-devel - wayland-devel + libXcursor libXfixes-devel - libXdamage-devel - libXxf86vm-devel - libxshmfence-devel - mesa + libX11-devel + libXrender-devel - /usr/include + /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/man - mesa-32bit - 32-bit shared libraries for mesa - mesa için 32-bit paylaşımlı kitaplıklar + libXcursor-32bit + 32-bit shared libraries for libXcursor + libXcursor için 32-bit paylaşımlı kitaplıklar emul32 emul32 - expat-32bit - libXt-devel - libXv-32bit + glibc-32bit libX11-32bit - libcap-32bit - libdrm-32bit - libXext-32bit - libXvMC-32bit - eudev-32bit - wayland-32bit - libvdpau-32bit libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libdrm-intel-32bit - libdrm-radeon-32bit - libdrm-nouveau-32bit - libxshmfence-32bit + libXrender-32bit - alternatives + libXcursor glibc-32bit - libgcc - libxcb-32bit - expat-32bit libX11-32bit - libdrm-32bit - libxcb-32bit - libXext-32bit - wayland-32bit libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libXv-32bit - libXvMC-32bit - libdrm-intel-32bit - libxshmfence-32bit - libdrm-radeon-32bit - libdrm-nouveau-32bit - wayland-32bit - mesa + libXrender-32bit /usr/lib32 - - System.Package - - - 2015-05-16 - 10.5.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-05 - 10.5.4 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2015-01-28 - 10.4.3 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2015-01-20 - 10.4.2 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2014-09-24 - 10.3.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-08-31 - 10.2.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-07-08 - 10.1.6 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-24 - 10.1.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-16 - 10.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-10 - 10.1.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-23 - 10.1.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 10.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 9.2.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-02 - 9.2.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - 2013-08-25 - 9.1.5 + 2014-05-16 + 1.1.14 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-07-18 - 9.1.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-14 - 9.1.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-01 - 9.1 - add missing dep. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-02-28 - 9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-04 - 9.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xcb-util - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util/pspec.xml - - - xcb-util - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-devel - Development files for xcb-util - xcb-util için geliştirme dosyaları - - xcb-util - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-32bit - 32-bit shared libraries for xcb-util - xcb-util için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - xcb-util - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 0.4.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 0.3.9 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libxshmfence - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org libxshmfence library - libxshmfence is the X Window System video extension library. - mirrors://xorg/individual/lib/libxshmfence-1.2.tar.bz2 - - libXext-devel - util-macros - - x11/library/libxshmfence/pspec.xml - - - libxshmfence - - libXext - - - /usr/lib - /usr/share/doc - - - - libxshmfence-devel - Development files for libxshmfence - - libxshmfence - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libxshmfence-32bit - 32-bit shared libraries for libxshmfence - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libxshmfence - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2015-05-05 - 1.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xcb-util-cursor - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - XCB cursor library - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2 - - util-macros - libxcb-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-renderutil-devel - - x11/library/xcb-util-cursor/pspec.xml - - - xcb-util-cursor - - libxcb - xcb-util-image - xcb-util-renderutil - - - /usr/lib - /usr/share/doc - - - - xcb-util-cursor-devel - Development files for xcb-util - - xcb-util-cursor - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-cursor-32bit - 32-bit shared libraries for xcb-util - emul32 - emul32 - - libxcb-32bit - glibc-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - glibc-32bit - libxcb-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - /usr/lib32 - - - - - 2015-08-26 - 0.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libevdev - http://www.freedesktop.org/wiki/Software/libevdev/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv1 - library - x11.library - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - http://www.freedesktop.org/software/libevdev/libevdev-1.3.2.tar.xz - - 0001-Revert-Drop-deprecated-functions.patch - 0001-Revert-Drop-some-leftover-deprecated-constants.patch - - x11/library/libevdev/pspec.xml - - - libevdev - - /usr/bin - /usr/lib - /usr/include - /usr/share - /usr/share/doc - - - - - 2015-01-25 - 1.3.2 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-05-16 - 1.2 - version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-30 - 0.6 - Revert back to 0.6 version. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-30 - 0.9.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-10-11 - 0.4 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libxkbcommon - http://xkbcommon.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - x11.library - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-0.5.0.tar.gz - - util-macros - libxcb-devel - - x11/library/libxkbcommon/pspec.xml - - - libxkbcommon - - libxcb - - - /usr/share/doc/libxkbcommon/ - /usr/lib/lib*.so* - - - - libxkbcommon-devel - Development files for libxkbcommon - libxkbcommon için geliştirme dosyaları - - libxkbcommon - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libxkbcommon-32bit - 32-bit shared libraries for libxkbcommon - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - libxkbcommon - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-03-04 - 0.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-05-16 - 0.4.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-07 - 0.3.1 - Rebuild, clean emul32 installation. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-02 - 0.3.1 - First release. - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libXaw - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X Athena Widgets Library - X Athena Parçacıkları kitaplığı - Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. - mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 - - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - util-macros - libICE-devel - libSM-devel - libX11-devel - - x11/library/libXaw/pspec.xml - - - libXaw - - libX11 - libXext - libXmu - libXpm - libXt - - - /usr/lib - /usr/share/doc - - - - libXaw-devel - Development files for libXaw - libXaw için geliştirme dosyaları - - libXaw - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXaw-32bit - 32-bit shared libraries for libSM - libXaw için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - glibc-32bit - - - libXaw - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 1.0.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.0.12 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.0.12 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 1.0.11 - Revert back to 1.0.11. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.0.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.11 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 1.0.11 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 1.0.11 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2012-11-22 - 1.0.11 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86dga - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86dga de X.Org - X.Org Xxf86dga library - X.Org Xxf86dga kitaplığı - X.Org Xxf86dga Bibliothek - LibXxf86dga is the client library for the XFree86-DGA extension. - mirrors://xorg/individual/lib/libXxf86dga-1.1.4.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86dga/pspec.xml - - - libXxf86dga - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXxf86dga-devel - Development files for libXxf86dga - libXxf86dga için geliştirme dosyaları - - libXxf86dga - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86dga-32bit - 32-bit shared libraries for libXxf86dga - libXxf86dga için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86dga - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.4 + 1.1.14 Rebuild. Serdar Soytetir kaptan@pisilinux.org - + 2013-08-25 - 1.1.4 + 1.1.14 Release bump. Marcin Bojara marcin@pisilinux.org + + 2013-07-30 + 1.1.14 + Rebuild + PisiLinux Community + admins@pisilinux.org + 2013-06-21 - 1.1.4 + 1.1.14 Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.1.3 + 1.1.13 First release Erdem Artan admins@pisilinux.org @@ -59771,7 +89770,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXmu + libSM http://www.x.org/ PisiLinux Community @@ -59780,26 +89779,148 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xmu de X.Org - X.Org Xmu library - X.Org Xmu kitaplığı - X.Org Xmu Bibliothek - libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. - LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. - mirrors://xorg/individual/lib/libXmu-1.1.2.tar.bz2 + Librairie SM de X.Org. + X.Org SM library + X.Org SM kitaplığı. + X.Org SM Bibliothek + libSM is the X Session Management library. + mirrors://xorg/individual/lib/libSM-1.2.2.tar.bz2 - util-macros - libXt-devel libICE-devel - libSM-devel - libXext-devel + libutil-linux-devel + util-macros + xorg-proto + xtrans - x11/library/libXmu/pspec.xml + x11/library/libSM/pspec.xml - libXmu + libSM + + libutil-linux + libICE + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libSM-devel + Development files for libSM + libSM için geliştirme dosyaları + + libICE-devel + libSM + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*.xml + + + + libSM-32bit + 32-bit shared libraries for libSM + libSM için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libICE-32bit + libutil-linux-32bit + + + glibc-32bit + libICE-32bit + libutil-linux-32bit + libSM + + + /usr/lib32 + + + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 1.2.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-06 + 1.2.1 + Fix deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-07 + 1.2.1 + Revert back to 1.2.1, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 1.2.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.2.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.2.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXxf86vm + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86vm de X.Org + X.Org Xxf86vm library + X.Org Xxf86vm kitaplığı + X.Org Xxf86vm Bibliothek + LibXxf86vm is the client library for the XFree86-VidMode X extension. + mirrors://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86vm/pspec.xml + + + libXxf86vm - libXt libX11 libXext @@ -59809,14 +89930,342 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXmu-devel - Development files for libXmu - libXmu için geliştirme dosyaları + libXxf86vm-devel + Development files for libXxf86vm + libXxf86vm için geliştirme dosyaları - libXmu - libXt-devel + libXxf86vm libXext-devel + + /usr/include/X11 + /usr/lib/pkgconfig/ + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86vm-32bit + 32-bit shared libraries for libXxf86vm + libXxf86vm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86vm + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.1.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-26 + 1.1.3 + Move pc files to devel pack, rebuild. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-21 + 1.1.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libXdmcp + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xdmcp de X.Org. + X.Org Xdmcp library + X.Org Xdmcp kitaplığı. + X.Org Xdmcp Bibliothek + LibXdmcp is the X Display Manager Control Protocol library. + LibXdmcp, X Ekran Yöneticisi Denetim Protokolü kitaplığıdır. + http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 + + libxslt + util-macros + xorg-proto + libbsd-devel + + x11/library/libXdmcp/pspec.xml + + + libXdmcp + + libbsd + + + /usr/lib + /usr/share/doc + + + + libXdmcp-devel + Development files for libXdmcp + libXdmcp için geliştirme dosyaları + + xorg-proto + libXdmcp + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*/*.xml + + + + libXdmcp-32bit + 32-bit shared libraries for libXdmcp + libXdmcp için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + libXdmcp + glibc-32bit + + + /usr/lib32 + + + + + 2015-06-06 + 1.1.2 + Runtime dep fixed. + Osman Erkan + osman.erkan@yandex.com + + + 2015-05-22 + 1.1.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-11 + 1.1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-08 + 1.1.1 + Rebuild, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-23 + 1.1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libXxf86misc + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie libXxf86misc de X.Org + X.Org Xxf86misc library + X.Org libXxf86misc kitaplığı + X.Org libXxf86misc Bibliothek + LibXxf86misc is the client library for the XFree86-misc extension. + http://source.pisilinux.org/1.0/libXxf86misc-1.0.3.tar.gz + + libXext-devel + libXxf86miscproto-devel + xorg-proto + util-macros + + x11/library/libXxf86misc/pspec.xml + + + libXxf86misc + + libXext + libXxf86miscproto + + + /usr/lib + /usr/share/doc + + + + libXxf86misc-devel + Development files for libXxf86misc + libXxf86misc için geliştirme dosyaları + + libXxf86misc + libXext-devel + libXxf86miscproto-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86misc-32bit + 32-bit shared libraries for libXxf86misc + libXxf86misc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86misc + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2014-05-16 + 1.0.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 1.0.3 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.0.3 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 1.0.3 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-10-23 + 1.0.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libXpm + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xpm de X.Org + X.Org Xpm library + X.Org Xpm kitaplığı + X.Org Xpm Bibliothek + LibXpm is the X pixmap library. + mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 + + util-macros + libXext-devel + libXt-devel + + x11/library/libXpm/pspec.xml + + + libXpm + + libXext + libXt + libX11 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libXpm-devel + Development files for libXpm + libXpm için geliştirme dosyaları + + libXpm + /usr/include/X11 /usr/lib/pkgconfig @@ -59824,80 +90273,172 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXmu-32bit - 32-bit shared libraries for libXmu - libXmu için 32-bit paylaşımlı kitaplıklar + libXpm-32bit + 32-bit shared libraries for libXpm + libXpm için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libXt-32bit libXext-32bit + libXt-32bit + libX11-32bit glibc-32bit - libXmu - glibc-32bit + libXpm + libXext-32bit libXt-32bit libX11-32bit - libXext-32bit + glibc-32bit /usr/lib32 - + 2014-05-16 - 1.1.2 + 3.5.11 Release bump. Marcin Bojara marcin@pisilinux.org - + 2014-03-07 - 1.1.2 + 3.5.11 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2013-10-07 - 1.1.1 - Revert back to 1.1.1. + + 2013-09-12 + 3.5.10 + Revert back to 3.5.10. Serdar Soytetir kaptan@pisilinux.org - + 2013-09-12 - 1.1.2 + 3.5.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 3.5.10 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 3.5.10 + First release + Erdem Artan + admins@pisilinux.org + + + + + + libICE + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org ICE library + X.Org ICE kitaplığı + Utilitaire ICE de X.Org. + libICE is the Inter-Client Exchange library. + libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. + X.Org ICE Bibliothek + mirrors://xorg/individual/lib/libICE-1.0.9.tar.bz2 + + libbsd-devel + util-macros + xorg-proto + xtrans + libxslt + + x11/library/libICE/pspec.xml + + + libICE + + libbsd + + + /usr/lib + /usr/share/doc + + + + libICE-devel + Development files for libICE + libICE için geliştirme dosyaları + + libICE + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libICE-32bit + 32-bit shared libraries for libICE + libICE için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libICE + + + /usr/lib32 + + + + + 2014-08-31 + 1.0.9 Version bump. Marcin Bojara marcin@pisilinux.org - 2013-08-25 - 1.1.1 + 2014-05-16 + 1.0.8 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-07-27 - 1.1.1 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org + 2013-10-07 + 1.0.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2013-07-27 - 1.1.1 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org + 2013-08-25 + 1.0.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org 2012-06-01 - 1.1.1 + 1.0.8 First release Erdem Artan admins@pisilinux.org @@ -60014,237 +90555,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - pixman - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Pixel manipulation library - Piksel işleme kitaplığı - Pixman contains lowlevel pixel manipulation routines. - Pixman, düşük düzey piksel işleme yordamlarını içerir. - mirrors://xorg/individual/lib/pixman-0.32.6.tar.bz2 - x11/library/pixman/pspec.xml - - - pixman - - /usr/lib - /usr/share/doc - - - - pixman-devel - Development files for pixman - pixman için geliştirme dosyaları - - pixman - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - pixman-32bit - 32-bit shared libraries for pixman - pixman için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - pixman - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 0.32.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.32.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 0.32.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 0.30.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 0.30.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.30.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.30.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 0.28.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXfixes - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xfixes de X.Org - X.Org Xfixes library - X.Org Xfixes kitaplığı - X.Org Xfixes Bibliothek - libXfixes is a library to provide augmented versions of core protocol requests. - mirrors://xorg/individual/lib/libXfixes-5.0.1.tar.bz2 - - xorg-proto - libX11-devel - util-macros - - x11/library/libXfixes/pspec.xml - - - libXfixes - - /usr/lib - /usr/share/doc - - - - libXfixes-devel - Development files for libXfixes - libXfixes için geliştirme dosyaları - - libXfixes - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXfixes-32bit - 32-bit shared libraries for libXfixes - libXfixes için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXfixes - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 5.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 5.0.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 5.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 5.0.1 - Move pc files to devel pack, rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 5.0.1 - Move .pc files to devel package - Fatih Turgel - hitaf@pisilinux.org - - - 2013-06-21 - 5.0.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 5.0 - First release - Erdem Artan - admins@pisilinux.org - - - libXt @@ -60379,63 +90689,8 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libomxil-bellagio - http://omxil.sourceforge.net - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - x11.library - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz - - glibc-devel - - - fedora-fixes.patch - - x11/library/libomxil-bellagio/pspec.xml - - - libomxil-bellagio - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - libomxil-bellagio-devel - Development files for mesa - - libomxil-bellagio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-04-07 - 0.9.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libXdmcp - http://x.org/ + xcb-util-keysyms + http://xcb.freedesktop.org PisiLinux Community admins@pisilinux.org @@ -60443,25 +90698,21 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xdmcp de X.Org. - X.Org Xdmcp library - X.Org Xdmcp kitaplığı. - X.Org Xdmcp Bibliothek - LibXdmcp is the X Display Manager Control Protocol library. - LibXdmcp, X Ekran Yöneticisi Denetim Protokolü kitaplığıdır. - http://xorg.freedesktop.org/archive/individual/lib/libXdmcp-1.1.2.tar.bz2 + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 - libxslt util-macros - xorg-proto - libbsd-devel + libxcb-devel - x11/library/libXdmcp/pspec.xml + x11/library/xcb-util-keysyms/pspec.xml - libXdmcp + xcb-util-keysyms - libbsd + libxcb /usr/lib @@ -60469,31 +90720,31 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXdmcp-devel - Development files for libXdmcp - libXdmcp için geliştirme dosyaları + xcb-util-keysyms-devel + Development files for xcb-util-keysyms + xcb-util-keysyms için geliştirme dosyaları - xorg-proto - libXdmcp + xcb-util-keysyms + libxcb-devel - /usr/include/X11 + /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/share/doc/*/*.xml - libXdmcp-32bit - 32-bit shared libraries for libXdmcp - libXdmcp için 32-bit paylaşımlı kitaplıklar + xcb-util-keysyms-32bit + 32-bit shared libraries for xcb-util-keysyms emul32 emul32 + libxcb-32bit glibc-32bit - libXdmcp + xcb-util-keysyms + libxcb-32bit glibc-32bit @@ -60502,39 +90753,506 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2015-06-06 - 1.1.2 - Runtime dep fixed. - Osman Erkan - osman.erkan@yandex.com + 2015-12-13 + 0.4.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org - 2015-05-22 - 1.1.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2014-05-16 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org - 2014-05-11 - 1.1.1 + 2013-10-07 + 0.3.9 + Clean actions.py emul32 build. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.3.9 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-08 + 0.3.9 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libXext + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xext de X.Org + X.Org Xext library + X.Org Xext kitaplığı + X.Org Xext Bibliothek + LibXext provides an X Window System client interface to several extensions to the X protocol. + LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. + mirrors://xorg/individual/lib/libXext-1.3.3.tar.bz2 + + xorg-proto + util-macros + libX11-devel + libxslt + + x11/library/libXext/pspec.xml + + + libXext + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXext-devel + Development files for libXext + libXext için geliştirme dosyaları + + libX11-devel + libXext + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXext-32bit + 32-bit shared libraries for libXext + libXext için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + glibc-32bit + + + libXext + libX11-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2014-08-31 + 1.3.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 1.3.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 1.3.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.3.2 Release bump. Marcin Bojara marcin@pisilinux.org - 2013-10-08 - 1.1.1 - Rebuild, clean actions.py. + 2013-06-21 + 1.3.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.3.1 + First release + Erdem Artan + admins@pisilinux.org + + + + + + xcb-util-renderutil + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util-renderutil/pspec.xml + + + xcb-util-renderutil + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-renderutil-devel + Development files for xcb-util-renderutil + xcb-util-renderutil için geliştirme dosyaları + + xcb-util-renderutil + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-renderutil-32bit + 32-bit shared libraries for xcb-util-renderutil + xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libxcb-32bit + + + glibc-32bit + libxcb-32bit + + + /usr/lib32 + + + + + 2014-09-01 + 0.3.9 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.3.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.3.8 + Clean actions.py emul32 build. Serdar Soytetir kaptan@pisilinux.org + + 2013-08-25 + 0.3.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + - 2012-08-23 - 1.1.1 + 2012-12-08 + 0.3.8 First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libvdpau + http://freedesktop.org/wiki/Software/VDPAU + PisiLinux Community admins@pisilinux.org + + MIT + library + x11.library + Wrapper library for the Video Decode and Presentation API + Video kodu çözme ve sunma API'si için ara kitaplık + VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. + VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. + http://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.1.tar.gz + + libXext-devel + + x11/library/libvdpau/pspec.xml + + + libvdpau + + libXext + + + /etc + /usr/lib + /usr/share/doc + + + + libvdpau-devel + Development files for libvdpau + libvdpau için geliştirme dosyaları + + libvdpau + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libvdpau-32bit + 32-bit shared libraries for libvdpau + libvdpau için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libXext-32bit + + + libvdpau + glibc-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2015-11-20 + 1.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-22 + 0.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-09-01 + 0.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.7 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-20 + 0.7 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-07 + 0.7 + Version bump, clean actions.py. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 0.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-10 + 0.5 + First release + Marcinn Bojara + marcin@pisilinux.org + + + + + + libXtst + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xtst de X.Org + X.Org Xtst library + X.Org Xtst kitaplığı + X.Org Xtst Bibliothek + libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. + mirrors://xorg/individual/lib/libXtst-1.2.2.tar.bz2 + + libXext-devel + libXi-devel + util-macros + + x11/library/libXtst/pspec.xml + + + libXtst + + libXext + libX11 + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libXtst-32bit + 32-bit shared libraries for libXtst + libXtst için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXi-32bit + libX11-32bit + glibc-32bit + + + libX11-32bit + libXext-32bit + glibc-32bit + libXtst + + + /usr/lib32 + + + + libXtst-devel + Development files for libXtst + libXtst için geliştirme dosyaları + + libXi-devel + libXext-devel + libXtst + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/doc/*/*.xml + /usr/share/man + + + + + 2014-05-16 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-19 + 1.2.2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-25 + 1.2.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 1.2.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 1.2.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 1.2.1 + First release + Erdem Artan + admins@pisilinux.org @@ -60674,138 +91392,111 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - glew - http://glew.sourceforge.net + xcb-util-image + http://xcb.freedesktop.org PisiLinux Community admins@pisilinux.org - BSD - GLX - SGI-B - GPLv2 - app:console + MIT library x11.library - OpenGL Extension Wrangler Library - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı - OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. - mirrors://sourceforge/glew/1.12.0/glew-1.12.0.tgz + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 - mesa-glu-devel + util-macros + libxcb-devel + xcb-util-devel - - add_bin_target.patch - - x11/library/glew/pspec.xml + x11/library/xcb-util-image/pspec.xml - glew + xcb-util-image - mesa - libX11 + xcb-util + libxcb /usr/lib /usr/share/doc - /usr/bin - glew-devel - Development files for glew - glew için geliştirme dosyaları + xcb-util-image-devel + Development files for xcb-util + xcb-util-image için geliştirme dosyaları - mesa-glu-devel - glew + xcb-util-image + libxcb-devel - /usr/include/GL + /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - glew-32bit - 32-bit shared libraries for glew - glew için 32-bit paylaşımlı kitaplıklar + xcb-util-image-32bit + 32-bit shared libraries for xcb-util + xcb-util-image için 32-bit paylaşımlı kitaplıklar emul32 emul32 - mesa-32bit - libX11-32bit + libxcb-32bit + xcb-util-32bit + glibc-32bit - mesa-32bit glibc-32bit - libX11-32bit - glew + xcb-util-32bit + libxcb-32bit /usr/lib32 - - 2015-08-15 - 1.12.0 + + 2015-12-13 + 0.4.0 Version bump. - Osman Erkan - osman.erkan@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - - 2015-01-27 - 1.10.0 - Release bump + Dep Fixed - Osman Erkan - osman.erkan@pisilinux.org - - + 2014-05-16 - 1.10.0 + 0.3.9 Release bump. Marcin Bojara marcin@pisilinux.org - - 2014-03-07 - 1.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 1.9.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - 2013-10-08 - 1.9.0 - Rebuild. + 2013-10-07 + 0.3.9 + Clean actions.py emul32 build. Serdar Soytetir kaptan@pisilinux.org 2013-08-25 - 1.9.0 + 0.3.9 Release bump. Marcin Bojara marcin@pisilinux.org 2013-07-30 - 1.9.0 + 0.3.9 Rebuild PisiLinux Community admins@pisilinux.org - 2012-10-30 - 1.9.0 + 2012-12-08 + 0.3.9 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -60814,7 +91505,85 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libfontenc + xcb-util-cursor + http://xcb.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + XCB cursor library + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + http://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.2.tar.bz2 + + util-macros + libxcb-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-renderutil-devel + + x11/library/xcb-util-cursor/pspec.xml + + + xcb-util-cursor + + libxcb + xcb-util-image + xcb-util-renderutil + + + /usr/lib + /usr/share/doc + + + + xcb-util-cursor-devel + Development files for xcb-util + + xcb-util-cursor + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-cursor-32bit + 32-bit shared libraries for xcb-util + emul32 + emul32 + + libxcb-32bit + glibc-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + glibc-32bit + libxcb-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + /usr/lib32 + + + + + 2015-08-26 + 0.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXmu http://www.x.org/ PisiLinux Community @@ -60823,24 +91592,28 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie fontenc de X.Org - X.Org fontenc library - X.Org fontenc kitaplığı - X.Org fontenc Bibliothek - libfontenc is the X Window System font encoding library. - mirrors://xorg/individual/lib/libfontenc-1.1.3.tar.bz2 + Librairie Xmu de X.Org + X.Org Xmu library + X.Org Xmu kitaplığı + X.Org Xmu Bibliothek + libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. + LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. + mirrors://xorg/individual/lib/libXmu-1.1.2.tar.bz2 - zlib-devel util-macros - font-util - xorg-proto + libXt-devel + libICE-devel + libSM-devel + libXext-devel - x11/library/libfontenc/pspec.xml + x11/library/libXmu/pspec.xml - libfontenc + libXmu - zlib + libXt + libX11 + libXext /usr/lib @@ -60848,53 +91621,92 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libfontenc-devel - Development files for libfontenc - libfontenc için geliştirme dosyaları + libXmu-devel + Development files for libXmu + libXmu için geliştirme dosyaları - libfontenc + libXmu + libXt-devel + libXext-devel /usr/include/X11 /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXmu-32bit + 32-bit shared libraries for libXmu + libXmu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXt-32bit + libXext-32bit + glibc-32bit + + + libXmu + glibc-32bit + libXt-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 - - 2015-08-15 - 1.1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - + 2014-05-16 1.1.2 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-10-07 + + 2014-03-07 1.1.2 - Rebuild. + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 1.1.1 + Revert back to 1.1.1. Serdar Soytetir kaptan@pisilinux.org - - 2013-08-25 - 1.1.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 + + 2013-09-12 1.1.2 Version bump. Marcin Bojara marcin@pisilinux.org + + 2013-08-25 + 1.1.1 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 1.1.1 + Move .pc files to devel package + Fatih Turgel + hitaf@pisilinux.org + 2012-06-01 1.1.1 @@ -60906,7 +91718,77 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXinerama + libevdev + http://www.freedesktop.org/wiki/Software/libevdev/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv1 + library + x11.library + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + http://www.freedesktop.org/software/libevdev/libevdev-1.3.2.tar.xz + + 0001-Revert-Drop-deprecated-functions.patch + 0001-Revert-Drop-some-leftover-deprecated-constants.patch + + x11/library/libevdev/pspec.xml + + + libevdev + + /usr/bin + /usr/lib + /usr/include + /usr/share + /usr/share/doc + + + + + 2015-01-25 + 1.3.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-16 + 1.2 + version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-30 + 0.6 + Revert back to 0.6 version. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-30 + 0.9.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-10-11 + 0.4 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libFS http://www.x.org/ PisiLinux Community @@ -60915,345 +91797,304 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - librairie Xinerama de X.Org - X.Org Xinerama library - X.Org Xinerama kitaplığı - X.Org Xinerama Bibliothek - Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. - mirrors://xorg/individual/lib/libXinerama-1.1.3.tar.bz2 + Librairie FS de X.Org + X.Org FS library + X.Org FS kitaplığı + X.Org FS Bibliothek + libFS is the interface library to the X Font Server. + mirrors://xorg/individual/lib/libFS-1.0.7.tar.bz2 - libXext-devel - libX11-devel util-macros + xorg-proto + xtrans - x11/library/libXinerama/pspec.xml + x11/library/libFS/pspec.xml - libXinerama - - libXext - libX11 - + libFS /usr/lib /usr/share/doc - libXinerama-devel - Development files for libXinerama - libXinerama için geliştirme dosyaları + libFS-devel + Development files for libFS + libFS için geliştirme dosyaları - libXinerama - libXext-devel + libFS /usr/include/X11 /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXinerama-32bit - 32-bit shared libraries for libXinerama - libXinerama için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libX11-32bit - glibc-32bit - - - libXinerama - libX11-32bit - libXext-32bit - glibc-32bit - - - /usr/lib32 - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org + 2015-08-15 + 1.0.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + 2014-05-16 + 1.0.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + 2013-10-07 - 1.1.3 + 1.0.5 Rebuild. Serdar Soytetir kaptan@pisilinux.org - + 2013-08-25 - 1.1.3 + 1.0.5 Release bump. Marcin Bojara marcin@pisilinux.org - - 2013-07-30 - 1.1.3 - Rebuild - PisiLinux Community - admins@pisilinux.org - 2013-06-21 - 1.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 1.1.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - freeglut - http://freeglut.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - The OpenGL Utility Toolkit (Freeglut) - OpenGL Araç Kiti (Freeglut) - Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. - Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. - Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. - Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. - mirrors://sourceforge/freeglut/freeglut-3.0.0.tar.gz - - mesa-devel - mesa-glu-devel - libX11-devel - libXi-devel - libXxf86vm-devel - libXext-devel - libXrandr-devel - cmake - - x11/library/freeglut/pspec.xml - - - freeglut - - mesa - libX11 - libXi - libXxf86vm - libXrandr - - - /usr/lib - /usr/share/doc/freeglut - - - - freeglut-devel - Development files for freeglut - freeglut için geliştirme dosyaları - - freeglut - - - /usr/include - - - - freeglut-32bit - 32-bit shared libraries for freeglut - freeglut için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - mesa-glu-32bit - libXi-32bit - libX11-32bit - libXxf86vm-32bit - libXrandr-32bit - - - freeglut - glibc-32bit - mesa-32bit - libXi-32bit - libXxf86vm-32bit - libX11-32bit - libXrandr-32bit - - - /usr/lib32 - - - - - 2015-04-27 - 3.0.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-16 - 2.8.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 2.8.1 - rebuild unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-08 - 2.8.1 - verbump to 2.8.1 , Rebuild, clean emul32 installation. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 2.8.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86vm - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86vm de X.Org - X.Org Xxf86vm library - X.Org Xxf86vm kitaplığı - X.Org Xxf86vm Bibliothek - LibXxf86vm is the client library for the XFree86-VidMode X extension. - mirrors://xorg/individual/lib/libXxf86vm-1.1.3.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86vm/pspec.xml - - - libXxf86vm - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXxf86vm-devel - Development files for libXxf86vm - libXxf86vm için geliştirme dosyaları - - libXxf86vm - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig/ - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86vm-32bit - 32-bit shared libraries for libXxf86vm - libXxf86vm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86vm - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-26 - 1.1.3 - Move pc files to devel pack, rebuild. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-06-21 - 1.1.3 + 1.0.5 Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.1.2 + 1.0.4 + First release + Erdem Artan + admins@pisilinux.org + + + + + + pixman + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Pixel manipulation library + Piksel işleme kitaplığı + Pixman contains lowlevel pixel manipulation routines. + Pixman, düşük düzey piksel işleme yordamlarını içerir. + mirrors://xorg/individual/lib/pixman-0.32.6.tar.bz2 + x11/library/pixman/pspec.xml + + + pixman + + /usr/lib + /usr/share/doc + + + + pixman-devel + Development files for pixman + pixman için geliştirme dosyaları + + pixman + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + pixman-32bit + 32-bit shared libraries for pixman + pixman için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + pixman + glibc-32bit + + + /usr/lib32 + + + + + 2014-08-31 + 0.32.6 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-16 + 0.32.4 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-07 + 0.32.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-07 + 0.30.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-09-12 + 0.30.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-25 + 0.30.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.30.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-22 + 0.28.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXrender + http://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xrender de X.Org + X.Org Xrender library + X.Org Xrender kitaplığı + X.Org Xrender Bibliothek + The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. + mirrors://xorg/individual/lib/libXrender-0.9.9.tar.bz2 + + libX11-devel + xorg-proto + util-macros + + x11/library/libXrender/pspec.xml + + + libXrender + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXrender-devel + Development files for libXrender + libXrender için geliştirme dosyaları + + libXrender + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXrender/libXrender.txt + + + + libXrender-32bit + 32-bit shared libraries for libXrender + libXrender için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libX11-32bit + + + libXrender + glibc-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2015-08-15 + 0.9.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-16 + 0.9.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-10-07 + 0.9.8 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-08-25 + 0.9.8 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-06-21 + 0.9.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-06-01 + 0.9.7 First release Erdem Artan admins@pisilinux.org @@ -61350,1756 +92191,6 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - - - libXxf86misc - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie libXxf86misc de X.Org - X.Org Xxf86misc library - X.Org libXxf86misc kitaplığı - X.Org libXxf86misc Bibliothek - LibXxf86misc is the client library for the XFree86-misc extension. - http://source.pisilinux.org/1.0/libXxf86misc-1.0.3.tar.gz - - libXext-devel - libXxf86miscproto-devel - xorg-proto - util-macros - - x11/library/libXxf86misc/pspec.xml - - - libXxf86misc - - libXext - libXxf86miscproto - - - /usr/lib - /usr/share/doc - - - - libXxf86misc-devel - Development files for libXxf86misc - libXxf86misc için geliştirme dosyaları - - libXxf86misc - libXext-devel - libXxf86miscproto-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86misc-32bit - 32-bit shared libraries for libXxf86misc - libXxf86misc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86misc - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.0.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.3 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.0.3 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2012-10-23 - 1.0.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXrandr - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org Xrandr library - Librairie Xrand de X.Org. - Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. - X.Org Xrand kitaplığı. - X.Org Xrand Bibliothek - mirrors://xorg/individual/lib/libXrandr-1.5.0.tar.bz2 - - libXext-devel - libXrender-devel - libX11-devel - util-macros - - x11/library/libXrandr/pspec.xml - - - libXrandr - - libXext - libXrender - libX11 - - - /usr/lib - /usr/share/doc - - - - libXrandr-devel - Development files for libXrandr - libXrandr için geliştirme dosyaları - - libXrandr - libXrender-devel - libXext-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXrandr-32bit - 32-bit shared libraries for libXrandr - libXrandr için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - libXrender-32bit - - - libXrandr - glibc-32bit - libX11-32bit - libXext-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2015-08-15 - 1.5.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-09-15 - 1.4.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-07 - 1.4.1 - Revert back to 1.4.1. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.4.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.4.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.4.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 1.4.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXft - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xft de X.Org - X.Org Xft library - X.Org Xft kitaplığı - X.Org Xft Bibliothek - libXft is the X FreeType interface library. - mirrors://xorg/individual/lib/libXft-2.3.2.tar.bz2 - - util-macros - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel - - x11/library/libXft/pspec.xml - - - libXft - - libX11 - freetype - fontconfig - libXrender - - - /usr/lib - /usr/share/doc - - - - libXft-devel - Development files for libXft - libXft için geliştirme dosyaları - - libXft - freetype-devel - fontconfig-devel - libXrender-devel - - - /usr/bin - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXft-32bit - 32-bit shared libraries for libXft - libXft için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - glibc-32bit - - - libXft - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 2.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-01 - 2.3.1 - Rebuild for freetype. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 2.3.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 2.3.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXv - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xv de X.Org - X.Org Xv library - X.Org Xv kitaplığı - X.Org Xv Bibliothek - LibXv is the X Window System video extension library. - mirrors://xorg/individual/lib/libXv-1.0.10.tar.bz2 - - libX11-devel - libXext-devel - util-macros - - x11/library/libXv/pspec.xml - - - libXv - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXv-devel - Development files for libXv - libXv için geliştirme dosyaları - - libXv - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXv-32bit - 32-bit shared libraries for libXv - libXv için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libXv - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.0.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.10 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.0.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.7 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libvdpau - http://freedesktop.org/wiki/Software/VDPAU - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Wrapper library for the Video Decode and Presentation API - Video kodu çözme ve sunma API'si için ara kitaplık - VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. - VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. - http://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.1.tar.gz - - libXext-devel - - x11/library/libvdpau/pspec.xml - - - libvdpau - - libXext - - - /etc - /usr/lib - /usr/share/doc - - - - libvdpau-devel - Development files for libvdpau - libvdpau için geliştirme dosyaları - - libvdpau - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libvdpau-32bit - 32-bit shared libraries for libvdpau - libvdpau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libXext-32bit - - - libvdpau - glibc-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2015-11-20 - 1.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-01-22 - 0.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-09-01 - 0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-20 - 0.7 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-07 - 0.7 - Version bump, clean actions.py. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 0.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-10 - 0.5 - First release - Marcinn Bojara - marcin@pisilinux.org - - - - - - libxkbfile - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie xkbfile de X.Org - X.Org xkbfile library - X.Org xkbfile kitaplığı - X.Org xkbfile Bibliothek - Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. - mirrors://xorg/individual/lib/libxkbfile-1.0.9.tar.bz2 - - util-macros - libX11-devel - xorg-proto - - x11/library/libxkbfile/pspec.xml - - - libxkbfile - - libX11 - - - /usr/lib - /usr/share/doc - - - - libxkbfile-devel - Development files for libxkbfile - libxkbfile için geliştirme dosyaları - - libxkbfile - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2015-08-15 - 1.0.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-16 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.8 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libva - http://www.freedesktop.org/wiki/Software/vaapi - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Video Acceleration (VA) API for Linux - Linux için video hızlandırma API'si - libva is a library providing the VA API video acceleration API. - libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. - http://www.freedesktop.org/software/vaapi/releases/libva/libva-1.5.1.tar.bz2 - - libdrm-devel - libXext-devel - libXfixes-devel - mesa-devel - wayland-devel - - x11/library/libva/pspec.xml - - - libva - - libX11 - libdrm - libXext - libXfixes - mesa - wayland-client - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libva-devel - Development files for libva - libva için geliştirme dosyaları - - libva - wayland-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libva-32bit - 32-bit shared libraries for libva - libva için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - mesa-32bit - libX11-32bit - glibc-32bit - - - libva - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - libX11-32bit - mesa-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-05-10 - 1.5.1 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.5.0 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - - 2014-05-16 - 1.3.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.3.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2014-02-20 - 1.2.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-10-07 - 1.2.1 - Version bump, clean actions.py. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-10 - 1.1.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libdmx - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie dmx de X.Org - X.Org dmx library - X.Org dmx kitaplığı - X.Org dmx Bibliothek - libdmx is the X Window System DMX (Distributed Multihead X) extension library. - mirrors://xorg/individual/lib/libdmx-1.1.3.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libdmx/pspec.xml - - - libdmx - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libdmx-devel - Development files for libdmx - libdmx için geliştirme dosyaları - - libdmx - libXext-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man - - - - - 2014-05-16 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.3 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.1.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libepoxy - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - MIT - library - x11.library - OpenGL function pointer management library - Epoxy is a library for handling OpenGL function pointer management for you. - https://github.com/anholt/libepoxy/archive/v1.2.tar.gz - - libX11-devel - mesa-devel - util-macros - - x11/library/libepoxy/pspec.xml - - - libepoxy - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - libepoxy-devel - Development files for libepoxy - - libepoxy - - - /usr/include - /usr/lib/pkgconfig - - - - libepoxy-32bit - 32-bit shared libraries for libeproxy - emul32 - emul32 - - glibc-32bit - libX11-32bit - mesa-32bit - - - glibc-32bit - - - /lib32 - /usr/lib32 - - - - - 2015-05-27 - 1.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libSM - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie SM de X.Org. - X.Org SM library - X.Org SM kitaplığı. - X.Org SM Bibliothek - libSM is the X Session Management library. - mirrors://xorg/individual/lib/libSM-1.2.2.tar.bz2 - - libICE-devel - libutil-linux-devel - util-macros - xorg-proto - xtrans - - x11/library/libSM/pspec.xml - - - libSM - - libutil-linux - libICE - - - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libSM-devel - Development files for libSM - libSM için geliştirme dosyaları - - libICE-devel - libSM - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/*.xml - - - - libSM-32bit - 32-bit shared libraries for libSM - libSM için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libICE-32bit - libutil-linux-32bit - - - glibc-32bit - libICE-32bit - libutil-linux-32bit - libSM - - - /usr/lib32 - - - - - 2014-05-16 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.2.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 1.2.1 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 1.2.1 - Revert back to 1.2.1, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.2.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.2.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libICE - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org ICE library - X.Org ICE kitaplığı - Utilitaire ICE de X.Org. - libICE is the Inter-Client Exchange library. - libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. - X.Org ICE Bibliothek - mirrors://xorg/individual/lib/libICE-1.0.9.tar.bz2 - - libbsd-devel - util-macros - xorg-proto - xtrans - libxslt - - x11/library/libICE/pspec.xml - - - libICE - - libbsd - - - /usr/lib - /usr/share/doc - - - - libICE-devel - Development files for libICE - libICE için geliştirme dosyaları - - libICE - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libICE-32bit - 32-bit shared libraries for libICE - libICE için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - - - glibc-32bit - libICE - - - /usr/lib32 - - - - - 2014-08-31 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.8 - First release - Erdem Artan - admins@pisilinux.org - - - - - - wayland - http://wayland.freedesktop.org/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv2 - library - x11.library - Wayland Compositor Infrastructure - Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. - http://wayland.freedesktop.org/releases/wayland-1.9.0.tar.xz - - libffi-devel - expat-devel - - x11/library/wayland/pspec.xml - - - wayland - - expat - - - /usr/bin - /usr/share/doc/ - /usr/share/aclocal - /usr/share/wayland - /usr/share/man - - - - wayland-client - Wayland client library - - libffi - wayland - - - /usr/lib/libwayland-client* - - - - wayland-cursor - Wayland cursor library - - wayland - wayland-client - - - /usr/lib/libwayland-cursor* - - - - wayland-server - Wayland server library - - libffi - wayland - - - /usr/lib/libwayland-server* - - - - wayland-devel - Development files for wayland - - wayland - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/pkgconfig - - - - wayland-32bit - 32-bit shared libraries for wayland - emul32 - emul32 - - libffi-32bit - glibc-32bit - expat-32bit - - - wayland - expat-32bit - libffi-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-11-05 - 1.9.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-02-16 - 1.7.0 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-25 - 1.6.0 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-07-06 - 1.5.0 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-16 - 1.4.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-13 - 1.4.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-27 - 1.2.1 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 1.2.1 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-31 - 1.2.1 - First release. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libXext - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xext de X.Org - X.Org Xext library - X.Org Xext kitaplığı - X.Org Xext Bibliothek - LibXext provides an X Window System client interface to several extensions to the X protocol. - LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. - mirrors://xorg/individual/lib/libXext-1.3.3.tar.bz2 - - xorg-proto - util-macros - libX11-devel - libxslt - - x11/library/libXext/pspec.xml - - - libXext - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXext-devel - Development files for libXext - libXext için geliştirme dosyaları - - libX11-devel - libXext - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXext-32bit - 32-bit shared libraries for libXext - libXext için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXext - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-08-31 - 1.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.3.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xcb-util-keysyms - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util-keysyms/pspec.xml - - - xcb-util-keysyms - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-keysyms-devel - Development files for xcb-util-keysyms - xcb-util-keysyms için geliştirme dosyaları - - xcb-util-keysyms - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-keysyms-32bit - 32-bit shared libraries for xcb-util-keysyms - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - xcb-util-keysyms - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 0.4.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-16 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-08 - 0.3.9 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mesa-glu - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Mesa OpenGL Utility library - Mesa implementation of the standard GLU OpenGL utility API. - ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.0.tar.gz - - mesa-devel - libgcc - - x11/library/mesa-glu/pspec.xml - - - mesa-glu - - mesa - libgcc - - - /usr/lib - - - - mesa-glu-devel - Development files for mesa-glu - mesa-glu için geliştirme dosyaları - - mesa-glu - mesa-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mesa-glu-32bit - 32-bit shared libraries for mesa-glu - mesa-glu için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libgcc - glibc-32bit - - - mesa-glu - mesa-32bit - libgcc - glibc-32bit - - - /usr/lib32 - - - - - 2015-01-22 - 9.0.0 - Release bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-05-16 - 9.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 9.0.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 9.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-13 - 9.0.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - libXau @@ -63196,7 +92287,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXScrnSaver + libXres http://www.x.org/ PisiLinux Community @@ -63205,24 +92296,24 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie XScrnSaver de X.Org - X.Org XScrnSaver library - X.Org XScrnSaver kitaplığı - X.Org XScrnSaver Bibliothek - LibXScrnSaver allows using screensavers in X clients. - mirrors://xorg/individual/lib/libXScrnSaver-1.2.2.tar.bz2 + Librairie Xres de X.Org + X.Org Xres library + X.Org Xres kitaplığı + X.Org Xres Bibliothek + X-Resource is an extension that allows a client to query the X server about its usage of various resources. + mirrors://xorg/individual/lib/libXres-1.0.7.tar.bz2 - libXext-devel libX11-devel + libXext-devel util-macros - x11/library/libXScrnSaver/pspec.xml + x11/library/libXres/pspec.xml - libXScrnSaver + libXres - libXext libX11 + libXext /usr/lib @@ -63230,66 +92321,51 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXScrnSaver-devel - Development files for libXScrnSaver - libXScrnSaver için geliştirme dosyaları + libXres-devel + Development files for libXres + libXres için geliştirme dosyaları - libXScrnSaver + libXres libXext-devel /usr/include/X11 /usr/lib/pkgconfig - /usr/lib32/pkgconfig /usr/share/man - - libXScrnSaver-32bit - 32-bit shared libraries for libXScrnSaver - libXScrnSaver için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXext-32bit - - - libXScrnSaver - glibc-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - + 2014-05-16 - 1.2.2 + 1.0.7 Release bump. Marcin Bojara marcin@pisilinux.org - + 2013-10-07 - 1.2.2 + 1.0.7 Rebuild. Serdar Soytetir kaptan@pisilinux.org - + 2013-08-25 - 1.2.2 + 1.0.7 Release bump. Marcin Bojara marcin@pisilinux.org + + 2013-06-21 + 1.0.7 + Version bump. + Marcin Bojara + marcin@pisilinux.org + 2012-06-01 - 1.2.2 + 1.0.6 First release Erdem Artan admins@pisilinux.org @@ -63298,7 +92374,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libFS + libfontenc http://www.x.org/ PisiLinux Community @@ -63307,32 +92383,36 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie FS de X.Org - X.Org FS library - X.Org FS kitaplığı - X.Org FS Bibliothek - libFS is the interface library to the X Font Server. - mirrors://xorg/individual/lib/libFS-1.0.7.tar.bz2 + Librairie fontenc de X.Org + X.Org fontenc library + X.Org fontenc kitaplığı + X.Org fontenc Bibliothek + libfontenc is the X Window System font encoding library. + mirrors://xorg/individual/lib/libfontenc-1.1.3.tar.bz2 + zlib-devel util-macros + font-util xorg-proto - xtrans - x11/library/libFS/pspec.xml + x11/library/libfontenc/pspec.xml - libFS + libfontenc + + zlib + /usr/lib /usr/share/doc - libFS-devel - Development files for libFS - libFS için geliştirme dosyaları + libfontenc-devel + Development files for libfontenc + libfontenc için geliştirme dosyaları - libFS + libfontenc /usr/include/X11 @@ -63342,404 +92422,42 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol 2015-08-15 - 1.0.7 + 1.1.3 Version bump. Ertuğrul Erata ertugrulerata@gmail.com 2014-05-16 - 1.0.6 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 1.1.2 + Release bump. + Marcin Bojara + marcin@pisilinux.org 2013-10-07 - 1.0.5 + 1.1.2 Rebuild. Serdar Soytetir kaptan@pisilinux.org 2013-08-25 - 1.0.5 + 1.1.2 Release bump. Marcin Bojara marcin@pisilinux.org 2013-06-21 - 1.0.5 + 1.1.2 Version bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 1.0.4 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xcb-util-wm - http://xcb.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-wm module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util-wm/pspec.xml - - - xcb-util-wm - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-wm-devel - Development files for xcb-util-wm - xcb-util-wm için geliştirme dosyaları - - xcb-util-wm - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-wm-32bit - 32-bit shared libraries for xcb-util-wm - xcb-util-wm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - xcb-util-wm - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 0.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.4.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-07 - 0.3.9 - Clean actions.py emul32 build. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.3.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-08 - 0.3.9 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libXtst - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xtst de X.Org - X.Org Xtst library - X.Org Xtst kitaplığı - X.Org Xtst Bibliothek - libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. - mirrors://xorg/individual/lib/libXtst-1.2.2.tar.bz2 - - libXext-devel - libXi-devel - util-macros - - x11/library/libXtst/pspec.xml - - - libXtst - - libXext - libX11 - - - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libXtst-32bit - 32-bit shared libraries for libXtst - libXtst için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXi-32bit - libX11-32bit - glibc-32bit - - - libX11-32bit - libXext-32bit - glibc-32bit - libXtst - - - /usr/lib32 - - - - libXtst-devel - Development files for libXtst - libXtst için geliştirme dosyaları - - libXi-devel - libXext-devel - libXtst - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/doc/*/*.xml - /usr/share/man - - - - - 2014-05-16 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-19 - 1.2.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-25 - 1.2.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.2.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXvMC - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie XvMC de X.Org - X.Org XvMC library - X.Org XvMC kitaplığı - X.Org XvMC Bibliothek - LibXvMC is the X-Video Motion Compensation Library. - mirrors://xorg/individual/lib/libXvMC-1.0.8.tar.bz2 - - libX11-devel - libXext-devel - libXv-devel - xorg-proto - util-macros - - x11/library/libXvMC/pspec.xml - - - libXvMC - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXvMC-devel - Development files for libXvMC - libXvMC için geliştirme dosyaları - - libXv-devel - libXext-devel - libXvMC - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libXvMC/XvMC_API.txt - - - - libXvMC-32bit - 32-bit shared libraries for libXvMC - libXvMC için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXv-32bit - libX11-32bit - libXext-32bit - - - libX11-32bit - libXext-32bit - libXvMC - - - /usr/lib32 - - - - - 2014-05-16 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-19 - 1.0.8 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 1.0.8 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 1.0.8 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-02 - 1.0.8 - Split 32bit. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.0.8 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.7 + 1.1.1 First release Erdem Artan admins@pisilinux.org @@ -63871,7 +92589,7 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libXcursor + libXScrnSaver http://www.x.org/ PisiLinux Community @@ -63880,6311 +92598,91 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol MIT library x11.library - Librairie Xcursor de X.Org - X.Org Xcursor library - X.Org Xcursor kitaplığı - X.Org Xcursor Bibliothek - libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. - mirrors://xorg/individual/lib/libXcursor-1.1.14.tar.bz2 + Librairie XScrnSaver de X.Org + X.Org XScrnSaver library + X.Org XScrnSaver kitaplığı + X.Org XScrnSaver Bibliothek + LibXScrnSaver allows using screensavers in X clients. + mirrors://xorg/individual/lib/libXScrnSaver-1.2.2.tar.bz2 - util-macros - libX11-devel - xorg-proto - libXfixes-devel - libXrender-devel - - x11/library/libXcursor/pspec.xml - - - libXcursor - - libX11 - libXfixes - libXrender - - - /usr/lib - /usr/share/doc - - - - libXcursor-devel - Development files for libXcursor - libXcursor için geliştirme dosyaları - - libXcursor - libXfixes-devel - libX11-devel - libXrender-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcursor-32bit - 32-bit shared libraries for libXcursor - libXcursor için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glibc-32bit - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - libXcursor - glibc-32bit - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 1.1.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.1.14 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.1.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.1.14 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 1.1.14 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.1.13 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libxcb - http://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - The X protocol C-language Binding (XCB) - X protokolü için C dili bağlayıcısı (XCB) - The X protocol C-language Binding (XCB) is a replacement for Xlib featuring a small footprint, latency hiding, direct access to the protocol, improved threading support, and extensibility. - http://xcb.freedesktop.org/dist/libxcb-1.11.1.tar.bz2 - - libXau-devel - libXdmcp-devel - libxslt - util-macros - xcb-proto - - - libxcb-1.1-no-pthread-stubs.patch - - x11/library/libxcb/pspec.xml - - - libxcb - - libXau - libXdmcp - glibc - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libxcb-devel - Development files for libxcb - libxcb için geliştirme dosyaları - - libxcb - libXau-devel - libXdmcp-devel - - - /usr/include/xcb - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - pthread-stubs.pc - - - - libxcb-32bit - 32-bit shared libraries for libxcb - libxcb için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXau-32bit - libXdmcp-32bit - glibc-32bit - - - libxcb - libXau-32bit - libXdmcp-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-12-13 - 1.11.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2015-05-22 - 1.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-11 - 1.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 1.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-08 - 1.9.1 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-28 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-18 - 1.9 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - libXcomposite - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie composite X.Org - X.Org composite library - X.Org composite kitaplığı - X.Org composite Bibliothek - libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. - libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. - mirrors://xorg/individual/lib/libXcomposite-0.4.4.tar.bz2 - - libX11-devel - libXfixes-devel - util-macros - - x11/library/libXcomposite/pspec.xml - - - libXcomposite - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXcomposite-devel - Development files for libXcomposite - libXcomposite için geliştirme dosyaları - - libXcomposite - libXfixes-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcomposite-32bit - 32-bit shared libraries for libXcomposite - libXcomposite için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - glibc-32bit - - - libXcomposite - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-16 - 0.4.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 0.4.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.4.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-17 - 0.4.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 0.4.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXpm - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xpm de X.Org - X.Org Xpm library - X.Org Xpm kitaplığı - X.Org Xpm Bibliothek - LibXpm is the X pixmap library. - mirrors://xorg/individual/lib/libXpm-3.5.11.tar.bz2 - - util-macros libXext-devel - libXt-devel + libX11-devel + util-macros - x11/library/libXpm/pspec.xml + x11/library/libXScrnSaver/pspec.xml - libXpm + libXScrnSaver libXext - libXt libX11 - /usr/bin /usr/lib /usr/share/doc - /usr/share/man - libXpm-devel - Development files for libXpm - libXpm için geliştirme dosyaları + libXScrnSaver-devel + Development files for libXScrnSaver + libXScrnSaver için geliştirme dosyaları - libXpm + libXScrnSaver + libXext-devel /usr/include/X11 /usr/lib/pkgconfig /usr/lib32/pkgconfig + /usr/share/man - libXpm-32bit - 32-bit shared libraries for libXpm - libXpm için 32-bit paylaşımlı kitaplıklar + libXScrnSaver-32bit + 32-bit shared libraries for libXScrnSaver + libXScrnSaver için 32-bit paylaşımlı kitaplıklar emul32 emul32 - libXext-32bit - libXt-32bit - libX11-32bit glibc-32bit + libX11-32bit + libXext-32bit - libXpm - libXext-32bit - libXt-32bit - libX11-32bit + libXScrnSaver glibc-32bit + libX11-32bit + libXext-32bit /usr/lib32 - + 2014-05-16 - 3.5.11 + 1.2.2 Release bump. Marcin Bojara marcin@pisilinux.org - - 2014-03-07 - 3.5.11 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-12 - 3.5.10 - Revert back to 3.5.10. + + 2013-10-07 + 1.2.2 + Rebuild. Serdar Soytetir kaptan@pisilinux.org - - 2013-09-12 - 3.5.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - 2013-08-25 - 3.5.10 + 1.2.2 Release bump. Marcin Bojara marcin@pisilinux.org 2012-06-01 - 3.5.10 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libXres - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xres de X.Org - X.Org Xres library - X.Org Xres kitaplığı - X.Org Xres Bibliothek - X-Resource is an extension that allows a client to query the X server about its usage of various resources. - mirrors://xorg/individual/lib/libXres-1.0.7.tar.bz2 - - libX11-devel - libXext-devel - util-macros - - x11/library/libXres/pspec.xml - - - libXres - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXres-devel - Development files for libXres - libXres için geliştirme dosyaları - - libXres - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/share/man - - - - - 2014-05-16 - 1.0.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.0.7 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.0.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.0.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-01 - 1.0.6 - First release - Erdem Artan - admins@pisilinux.org - - - - - - libX11 - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie X11 de X.Org. - X.Org X11 library - X.Org X11 kitaplığı - X.Org X11 Bibliothek - Core X11 protocol client library. - mirrors://xorg/individual/lib/libX11-1.6.3.tar.bz2 - - libxcb-devel - xorg-proto - util-macros - xtrans - - x11/library/libX11/pspec.xml - - - libX11 - - libxcb - - - /usr/lib/libX11* - /usr/lib/X11 - /usr/share/X11 - /usr/share/doc/libX11 - - - - libX11-devel - Development files for X11 library - libX11 için geliştirme dosyaları - - libX11 - libxcb-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libX11-32bit - 32-bit shared libraries for libX11 - libX11 için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - glibc-32bit - - - libX11 - libxcb-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-05-22 - 1.6.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-11 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-07 - 1.6.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 1.6.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-24 - 1.5.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - xorg-video-nouveau - http://nouveau.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org nouveau video driver - X.Org nouveau ekran kartı sürücüsü - xorg-video-nouveau contains the X.Org driver for NVIDIA cards. - xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.11.tar.bz2 - - libdrm-nouveau - libpciaccess-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-nouveau/pspec.xml - - - xorg-video-nouveau - - libdrm - libdrm-nouveau - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.0.11 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.0.11 - Rebuild for xorg-server 1.6.3 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-04 - 1.0.11 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-09-01 - 1.0.10 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.0.10 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.0.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 1.0.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.0.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.0.8 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.0.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.0.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-10 - 1.0.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-trident - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org trident video driver - X.Org trident ekran kartı sürücüsü - xorg-video-trident contains the X.Org driver for Trident cards. - xorg-video-trident, Trident ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-trident-1.3.7.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-trident/pspec.xml - - - xorg-video-trident - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.7 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.3.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-dummy - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org dummy video driver - X.Org dummy ekran kartı sürücüsü - xorg-video-dummy is a dummy video driver for X.Org. - xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. - mirrors://xorg/individual/driver/xf86-video-dummy-0.3.7.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-dummy/pspec.xml - - - xorg-video-dummy - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-08 - 0.3.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 0.3.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.3.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.3.7 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libva-intel-driver - http://freedesktop.org/wiki/Software/vaapi - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - driver - x11.driver - VA-API implementation for Intel G45 and HD Graphics family - libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. - http://freedesktop.org/software/vaapi/releases/libva-intel-driver/libva-intel-driver-1.5.1.tar.bz2 - - libdrm-devel - libX11-devel - libva-devel - - x11/driver/libva-intel-driver/pspec.xml - - - libva-intel-driver - - libdrm - libdrm-intel - libva - - - /usr/lib - /usr/share/doc - - - - - 2015-05-08 - 1.5.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.5.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-23 - 1.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xorg-video-neomagic - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org neomagic video driver - X.Org neomagic ekran kartı sürücüsü - xorg-video-neomagic contains the X.Org driver for NeoMagic cards. - xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-neomagic-1.2.9.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-neomagic/pspec.xml - - - xorg-video-neomagic - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.2.9 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.2.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.8 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.2.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.7 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.7 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-sis - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sis video driver - X.Org sis ekran kartı sürücüsü - xorg-video-sis contains the X.Org driver for SiS cards. - xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sis-0.10.7.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - 0001-Disable-UploadToScreen-and-DownloadFromScreen.patch - git-fixes.patch - Xi.patch - - x11/driver/xorg-video-sis/pspec.xml - - - xorg-video-sis - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.10.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.10.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.10.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.10.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.10.7 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.10.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.10.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.10.7 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.10.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-rendition - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org rendition video driver - X.Org rendition ekran kartı sürücüsü - xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. - xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-rendition-4.2.5.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-rendition/pspec.xml - - - xorg-video-rendition - - xorg-server - - - /usr/lib/xorg/modules/drivers - /usr/lib/xorg/modules/*.uc - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 4.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 4.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 4.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 4.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 4.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 4.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 4.2.5 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 4.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 4.2.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 4.2.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-vmmouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmmouse input driver - X.Org vmmouse giriş aygıtı sürücüsü - xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. - xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-vmmouse-13.0.0.tar.bz2 - - xorg-server-devel - - - xf86-input-vmmouse-13.0.0-build_fix-1.patch - - x11/driver/xorg-input-vmmouse/pspec.xml - - - xorg-input-vmmouse - - /lib/udev - /usr/bin - /usr/libexec - /usr/lib/xorg - /usr/share/X11 - /usr/share/man - - - - - 2015-05-08 - 13.0.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-27 - 13.0.0 - Rebuild for xorg-server-1.16.3 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-01 - 13.0.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 13.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 13.0.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 13.0.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 13.0.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 12.9.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 12.9.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-input-evdev - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org evdev input driver - X.Org evdev giriş aygıtı sürücüsü - xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-evdev-2.9.2.tar.bz2 - - xorg-server-devel - libmtdev-devel - libevdev - util-macros - eudev-devel - - x11/driver/xorg-input-evdev/pspec.xml - - - xorg-input-evdev - - libmtdev - libevdev - eudev - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-evdev-devel - Development files for evdev driver - evdev sürücüsü için geliştirme dosyaları - - xorg-input-evdev - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 2.9.2 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 2.9.1 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 2.9.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.8.4 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 2.8.2 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 2.8.2 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-11 - 2.8.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.8.0 - Add patch - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.8.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 2.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 2.7.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-apm - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org apm video driver - X.Org apm ekran kartı sürücüsü - xorg-video-apm contains the X.Org driver for Alliance Promotion cards. - xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-apm-1.2.5.tar.bz2 - - xorg-server-devel - util-macros - xorg-proto - - - git-fix.diff - - x11/driver/xorg-video-apm/pspec.xml - - - xorg-video-apm - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-vesa - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vesa video driver - X.Org vesa ekran kartı sürücüsü - xorg-input-vesa contains the X.Org driver for Generic VESA cards. - xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vesa-2.3.3.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-vesa/pspec.xml - - - xorg-video-vesa - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 2.3.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 2.3.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.3.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 2.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.3.2 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.3.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 2.3.2 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 2.3.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-elographics - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org Elographics TouchScreen input driver - X.Org Elographics dokunmatik ekran sürücüsü - xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-elographics-1.4.1.tar.bz2 - - xorg-server-devel - libmtdev-devel - util-macros - - x11/driver/xorg-input-elographics/pspec.xml - - - xorg-input-elographics - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.4.1 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.1 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - vdpau-video - http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - driver - x11.driver - VDPAU backend for VA API - VA API için VDPAU arka ucu - vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. - vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 - - libvdpau-devel - libva-devel - mesa-devel - libX11-devel - - - libva-vdpau-driver-0.7.4-libvdpau-0.8.patch - libva-vdpau-driver-0.7.4-glext-85.patch - libva-vdpau-driver-0.7.4-drop-h264-api.patch - - x11/driver/vdpau-video/pspec.xml - - - vdpau-video - - libX11 - libvdpau - mesa - - - /usr/lib - /usr/share/doc - - - - - 2015-05-08 - 0.7.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 0.7.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.7.4 - Rebuild for xorg-server-1.16.0 and libvdpau-0.8 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.7.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 0.7.4 - Rebuild for xserver 1.15 - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-08 - 0.7.4 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 0.7.4 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.7.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.7.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.7.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-i128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i128 video driver - X.Org i128 ekran kartı sürücüsü - xorg-video-i128 contains the X.Org driver for Number Nine chipsets. - xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i128-1.3.6.tar.bz2 - - xorg-server-devel - - - git-fixes.diff - 1600sw-range-hack.patch - - x11/driver/xorg-video-i128/pspec.xml - - - xorg-video-i128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.3.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-mga - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mga video driver - X.Org mga ekran kartı sürücüsü - xorg-video-mga contains the X.Org driver for Matrox cards. - xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-mga-1.6.3.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - mga-1.4.5-no-hal-advertising.patch - mga-1.4.12-bigendian.patch - mga-1.6.2-shadowfb.patch - - x11/driver/xorg-video-mga/pspec.xml - - - xorg-video-mga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.6.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.6.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.6.3 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.6.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.6.3 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.2 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.6.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.6.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-void - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org void input driver - X.Org void giriş aygıtı sürücüsü - xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. - xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. - mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-input-void/pspec.xml - - - xorg-input-void - - /usr/lib/xorg - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.4.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.4.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.4.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 1.4.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-tga - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org tga video driver - X.Org tga ekran kartı sürücüsü - xorg-video-tga contains the X.Org driver for DEC Tga cards. - xorg-video-tga, DEC Tga ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-tga-1.2.2.tar.bz2 - - xorg-server-devel - - - xf86-video-tga-1.2.2-remove-mibstore_h.patch - - x11/driver/xorg-video-tga/pspec.xml - - - xorg-video-tga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-08 1.2.2 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.2.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.2 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.2.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xvba-video - http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ - - PisiLinux Community - admins@pisilinux.org - - freedist - driver - x11.driver - XvBA backend for VA API - VA API için XvBA arka ucu - xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. - xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - http://source.pisilinux.org/1.0/xvba-video-0.7.8.i686.tar.gz - http://source.pisilinux.org/1.0/xvba-video-0.7.8.x86_64.tar.gz - x11/driver/xvba-video/pspec.xml - - - xvba-video - - libva - libXext - mesa - - - /usr/lib - /usr/share/doc - - - - xvba-video-32bit - 32-bit shared libraries for xvba-video - xvba-video için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libX11-32bit - libXext-32bit - - - mesa-32bit - xvba-video - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2015-05-08 - 0.7.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.7.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.7.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.7.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.7.8 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.7.8 - Fix emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.7.8 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-31 - 0.7.8 - First release - Fatih Turgel - admins@pisilinux.org - - - - - - xorg-video-radeon - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org radeon video driver - X.Org radeon ekran kartı sürücüsü - xorg-video-radeon contains the X.Org driver for ATI video chipsets. - xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-ati-7.5.0.tar.bz2 - - libdrm-devel - libpciaccess-devel - mesa-devel - pixman-devel - xorg-server-devel - - x11/driver/xorg-video-radeon/pspec.xml - - - xorg-video-radeon - - libdrm-radeon - libpciaccess - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 7.5.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 7.5.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-10-18 - 7.5.0 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - - 2014-09-01 - 7.4.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 7.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 7.3.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-02 - 7.1.0 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-06 - 7.1.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 7.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 7.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.14.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.14.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-geode - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org geode video driver - X.Org geode ekran kartı sürücüsü - xorg-video-geode contains the X.Org driver for AMD Geode video cards. - xorg-video-geode, AMD Geode ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-geode-2.11.16.tar.bz2 - - xorg-server-devel - - - xf86-video-geode-2.11.16-glibc-2.20.patch - build-fix-1.17.patch - - x11/driver/xorg-video-geode/pspec.xml - - - xorg-video-geode - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2015-05-10 - 2.11.16 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-02-10 - 2.11.16 - Rebuild xorg-server 1.6.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.11.16 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.11.15 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.11.15 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.11.14 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.11.14 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.11.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 2.11.14 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 2.11.13 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-joystick - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org joystick input driver - X.Org joystick giriş aygıtı sürücüsü - xorg-input-joystick contains the X.Org driver for joysticks. - xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-joystick-1.6.2.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-joystick/pspec.xml - - - xorg-input-joystick - - /usr/lib/xorg - /usr/share/man - - - - xorg-input-joystick-devel - Development files for xorg-input-joystick - xorg-input-joystick için geliştirme dosyaları - - xorg-input-joystick - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 1.6.2 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.6.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - poyraz76@pisilinux.org - - - 2014-09-01 - 1.6.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.6.2 - Rebuild for xserver 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.6.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.6.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.6.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-30 - 1.6.1 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-tdfx - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org tdfx video driver - X.Org tdfx ekran kartı sürücüsü - xorg-video-tdfx contains the X.Org driver for Voodoo cards. - xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-tdfx-1.4.6.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-tdfx/pspec.xml - - - xorg-video-tdfx - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.4.6 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.4.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.4.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.4.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.4.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.4.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.4.5 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 1.4.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-aiptek - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org Aiptek USB Digital Tablet input driver - X.Org aiptek Dijital Tablet giriş aygıtı sürücüsü - xorg-input-aiptek contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-aiptek, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-aiptek-1.4.1.tar.bz2 - - libX11-devel - libmtdev-devel - util-macros - - x11/driver/xorg-input-aiptek/pspec.xml - - - xorg-input-aiptek - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.4.1 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.4.1 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.4.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.4.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xorg-video-glint - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org glint video driver - X.Org glint ekran kartı sürücüsü - xorg-video-glint contains the X.Org driver for 3DLabs Permedia cards. - xorg-video-glint, 3DLabs Permedia ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-glint-1.2.8.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - - git-fix.diff - - x11/driver/xorg-video-glint/pspec.xml - - - xorg-video-glint - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.2.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.2.8 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.8 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.8 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.8 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.8 - Rebuild - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.8 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.2.8 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.2.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-mach64 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mach64 video driver - X.Org mach64 ekran kartı sürücüsü - xorg-video-mach64 contains the X.Org driver for ATI Mach64 (Rage) video cards. - xorg-video-mach64, ATI Mach64 (Rage) ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-mach64-6.9.5.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-mach64/pspec.xml - - - xorg-video-mach64 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 6.9.5 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 6.9.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 6.9.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 6.9.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 6.9.4 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 6.9.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 6.9.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.9.3 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.9.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-siliconmotion - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org siliconmotion video driver - X.Org siliconmotion ekran kartı sürücüsü - xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. - xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.8.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-siliconmotion/pspec.xml - - - xorg-video-siliconmotion - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.7.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.7.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.7.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.7.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.7.7 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.7.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.7.7 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.7.7 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 1.7.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-openchrome - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org openchrome video driver - X.Org openchrome ekran kartı sürücüsü - xorg-video-openchrome contains the X.Org driver for VIA video chipsets. - xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-openchrome-0.3.3.tar.bz2 - - libdrm-devel - libXext-devel - libXv-devel - libXvMC-devel - xorg-server-devel - - - openchrome-0.2.904-fix_tvout_flickering.patch - fixed.patch - - x11/driver/xorg-video-openchrome/pspec.xml - - - xorg-video-openchrome - - libX11 - libdrm - libXext - libXv - libXvMC - xorg-server - - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2015-05-08 - 0.3.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-02-10 - 0.3.3 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.3.3 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.3.3 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-02 - 0.3.3 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-25 - 0.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.3.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.3.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-intel - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org intel video driver - X.Org intel ekran kartı sürücüsü - xorg-video-intel contains the X.Org driver for Intel video chipsets. - xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-intel-2.99.917.tar.bz2 - - libX11-devel - libxcb-devel - libXv-devel - libdrm-devel - pixman-devel - libXext-devel - libXtst-devel - libXvMC-devel - xcb-util-devel - libXrandr-devel - libXfixes-devel - libXcursor-devel - libXrender-devel - libXdamage-devel - libXinerama-devel - libdrm-intel - eudev-devel - util-macros - libpciaccess-devel - xorg-server-devel - libxshmfence-devel - - x11/driver/xorg-video-intel/pspec.xml - - - xorg-video-intel - - libX11 - libxcb - libXv - libdrm - pixman - libXext - libXtst - libXvMC - xcb-util - libXrandr - libXfixes - libXcursor - libXrender - libXdamage - libXinerama - libdrm-intel - libpciaccess - eudev - libxshmfence - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2015-05-10 - 2.99.917 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 2.99.917 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.99.914 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.99.911 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-12 - 2.21.15 - Add xserver 1.15 xompat patch. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.21.15 - Version bump for xorg-server 1.15. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 2.21.9 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.21.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.21.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.21.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-08 - 2.21.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 2.20.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-cirrus - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org cirrus video driver - X.Org cirrus ekran kartı sürücüsü - xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. - xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 - - libpciaccess-devel - xorg-server-devel - - x11/driver/xorg-video-cirrus/pspec.xml - - - xorg-video-cirrus - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.5.3 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.5.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.5.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.5.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.5.2 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.5.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.5.2 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.5.2 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.5.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.5.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-vmware - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmware video driver - X.Org vmware ekran kartı sürücüsü - xorg-video-vmware contains the X.Org driver for VMWare virtual machines. - xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vmware-13.1.0.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-vmware/pspec.xml - - - xorg-video-vmware - - mesa - libdrm - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 13.1.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 13.1.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 13.0.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 13.0.2 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 13.0.1 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 13.0.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 13.0.1 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-21 - 13.0.1 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 13.0.1 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 13.0.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-12 - 12.0.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-mouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mouse input driver - X.Org mouse giriş aygıtı sürücüsü - xorg-input-mouse contains the X.Org driver for mice. - xorg-input-mouse, fareler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-mouse-1.9.1.tar.bz2 - - xorg-server-devel - util-macros - - - 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch - - x11/driver/xorg-input-mouse/pspec.xml - - - xorg-input-mouse - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-mouse-devel - Development files for xorg-input-mouse - - xorg-input-mouse - - - /usr/include/xorg/xf86-mouse-properties.h - /usr/lib/pkgconfig/xorg-mouse.pc - - - - - 2015-05-08 - 1.9.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.9.1 - Rebuild xorg-server 1.6.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.9.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.9.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.9.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.9.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.9.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.9.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.8.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-s3virge - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org s3virge video driver - X.Org s3virge ekran kartı sürücüsü - xorg-video-s3virge contains the X.Org driver for S3 Virge cards. - xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-s3virge-1.10.6.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-s3virge/pspec.xml - - - xorg-video-s3virge - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.10.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.10.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.10.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.10.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.10.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.10.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.10.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.10.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 1.10.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-savage - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org savage video driver - X.Org savage ekran kartı sürücüsü - xorg-video-savage contains the X.Org driver for S3 Savage cards. - xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-savage-2.3.8.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-savage/pspec.xml - - - xorg-video-savage - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 2.3.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 2.3.7 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 2.3.7 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 2.3.7 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 2.3.7 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 2.3.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.3.6 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 2.3.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 2.3.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-fbdev - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org fbdev video driver - X.Org fbdev ekran kartı sürücüsü - xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. - xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-fbdev-0.4.4.tar.bz2 - - xorg-server-devel - - x11/driver/xorg-video-fbdev/pspec.xml - - - xorg-video-fbdev - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.4.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 0.4.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.4.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.4.4 - Version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.4.3 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.4.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.4.3 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.4.3 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.4.3 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.4.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-v4l - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org v4l video driver - X.Org v4l ekran kartı sürücüsü - v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. - v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. - mirrors://xorg/individual/driver/xf86-video-v4l-0.2.0.tar.bz2 - - xorg-server-devel - - - xorg-x11-drv-v4l-support_v4l2_only_drivers.patch - xf86-video-v4l-0.2.0-build-fix.patch - - x11/driver/xorg-video-v4l/pspec.xml - - - xorg-video-v4l - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-15 - 0.2.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-23 - 0.2.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.2.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.2.0 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.2.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 0.2.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.2.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-05-31 - 0.2.0 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-video-i740 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i740 video driver - X.Org i740 ekran kartı sürücüsü - xorg-video-i740 contains the X.Org driver for Intel i740 cards. - xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i740-1.3.4.tar.bz2 - - xorg-server-devel - - - git-fix.diff - - x11/driver/xorg-video-i740/pspec.xml - - - xorg-video-i740 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.3.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-01-23 - 1.3.4 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.3.4 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.3.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.3.4 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.4 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.3.4 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.3.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 1.3.4 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.3.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-acecad - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org acecad tablet input driver - X.Org acecad tablet giriş aygıtı sürücüsü - xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 - - xorg-server-devel - libmtdev-devel - sysfsutils-devel - util-macros - - - assign-local-private-after-allocating.patch - - x11/driver/xorg-input-acecad/pspec.xml - - - xorg-input-acecad - - sysfsutils - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-acecad-devel - Development files for ececad driver - acecad sürücüsü için geliştirme dosyaları - - xorg-input-acecad - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 1.5.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.5.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.5.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.5.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.5.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xorg-video-sisusb - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sisusb video driver - X.Org sisusb ekran kartı sürücüsü - xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. - xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.6.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-sisusb/pspec.xml - - - xorg-video-sisusb - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 0.9.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 0.9.6 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.9.6 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.9.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 0.9.6 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 0.9.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.9.6 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-03 - 0.9.6 - Fix build with xorg-server-1.14.x - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 0.9.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-synaptics - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org synaptics input driver - X.Org synaptics giriş aygıtı sürücüsü - xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. - xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. - http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.8.2.tar.bz2 - - libXi-devel - libXtst-devel - libmtdev-devel - xorg-server-devel - libevdev - util-macros - - - add_tapbuttons.diff - - x11/driver/xorg-input-synaptics/pspec.xml - - - xorg-input-synaptics - - libXi - libXtst - libX11 - libevdev - - - /lib/udev - /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - 50-synaptics.conf - 70-touchpad-quirks.rules - - - - xorg-input-synaptics-devel - Development files for xorg-input-synaptics - xorg-input-synaptics için geliştirme dosyaları - - xorg-input-synaptics - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 1.8.2 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-22 - 1.8.1 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-31 - 1.7.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.7.5 - version bump. - Kamil Atlı - suvarice@gmail.com - - - 2014-03-08 - 1.7.3 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 1.7.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 1.7.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-26 - 1.7.1 - Fixed. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-21 - 1.7.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.7.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.7.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-wacom - http://linuxwacom.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - driver - x11.driver - Input driver for Wacom tablets and drawing devices - Wacom tabletleri ve çizim aygıtları için giriş sürücüsü - xorg-input-wacom includes the drivers and tools for Wacom devices. - xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. - mirrors://sourceforge/linuxwacom/xf86-input-wacom/xf86-input-wacom-0.29.0.tar.bz2 - - libXi-devel - libXrandr-devel - xorg-server-devel - libXinerama-devel - eudev-devel - - x11/driver/xorg-input-wacom/pspec.xml - - - xorg-input-wacom - - libX11 - libXi - libXrandr - libXinerama - xorg-server - eudev - - - /lib/udev - /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - 70-wacom.rules - - - - xorg-input-wacom-devel - Development files for xorg-input-wacom - xorg-input-wacom için geliştirme dosyaları - - xorg-input-wacom - - - /usr/bin/isdv4-serial-debugger - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-08 - 0.29.0 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2015-01-23 - 0.24.0 - Version bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 0.24.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 0.24.0 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 0.23.0 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 0.23.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 0.22.1 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.22.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-21 - 0.22.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-21 - 0.21.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 0.17.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 0.17.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-r128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org r128 video driver - X.Org r128 ekran kartı sürücüsü - xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. - xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-r128-6.10.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - - x11/driver/xorg-video-r128/pspec.xml - - - xorg-video-r128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 6.10.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 6.9.2 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 6.9.2 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 6.9.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 6.9.2 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 6.9.1 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 6.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 6.8.4 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-11 - 6.8.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-video-voodoo - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org voodoo video driver - X.Org voodoo ekran kartı sürücüsü - xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. - xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 - - xorg-server-devel - - - git-fixes.patch - - x11/driver/xorg-video-voodoo/pspec.xml - - - xorg-video-voodoo - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-23 - 1.2.5 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.2.5 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-09 - 1.2.5 - Rebuild for xserver 1.15. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.2.5 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.2.5 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.2.5 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-12 - 1.2.5 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xorg-input-kbd - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org kbd input driver - X.Org kbd giriş aygıtı sürücüsü - xorg-input-kbd contains the X.Org driver for keyboards. - xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-keyboard-1.8.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-kbd/pspec.xml - - - xorg-input-kbd - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2015-05-08 - 1.8.0 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-01-21 - 1.8.0 - Rebuild for xorg-server-1.16.3 - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-09-01 - 1.8.0 - Rebuild for xorg-server-1.16.0 - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 1.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 1.8.0 - Rebuild for xserver 1.15. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-08 - 1.8.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 1.7.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 1.7.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 1.7.0 - build for xorg 1.14 - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-14 - 1.7.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-10-11 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xbitmaps - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.misc - Utilitaire Xbitmaps de X.Org - X.Org static graphics - X.Org statik grafikleri - X.Org xbitmaps Werkzeug - xbitmaps provides static graphics needed by Xorg applications to draw screen elements. - xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. - mirrors://xorg/individual/data/xbitmaps-1.1.1.tar.bz2 - x11/misc/xbitmaps/pspec.xml - - - xbitmaps - - /usr/include/X11/bitmaps - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - - - 2014-05-15 - 1.1.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-25 - 1.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-12-14 - 1.1.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - xorg-app - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - app:gui - x11.misc - Applications de X.Org - X.Org applications - X.Org uygulamaları - X.Org Anwendungen - xorg-app contains base Xorg applications. - mirrors://xorg/individual/app/appres-1.0.4.tar.bz2 - mirrors://xorg/individual/app/bdftopcf-1.0.5.tar.bz2 - mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 - mirrors://xorg/individual/app/bitmap-1.0.8.tar.bz2 - mirrors://xorg/individual/app/editres-1.0.6.tar.bz2 - mirrors://xorg/individual/app/fonttosfnt-1.0.4.tar.bz2 - mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 - mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 - mirrors://xorg/individual/app/iceauth-1.0.7.tar.bz2 - mirrors://xorg/individual/app/ico-1.0.4.tar.bz2 - mirrors://xorg/individual/app/listres-1.0.3.tar.bz2 - mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 - mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 - mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 - mirrors://xorg/individual/app/mkfontscale-1.1.2.tar.bz2 - mirrors://xorg/individual/app/oclock-1.0.3.tar.bz2 - mirrors://xorg/individual/app/rendercheck-1.4.tar.bz2 - mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 - mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 - mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 - mirrors://xorg/individual/app/sessreg-1.1.0.tar.bz2 - mirrors://xorg/individual/app/setxkbmap-1.3.0.tar.bz2 - mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 - mirrors://xorg/individual/app/smproxy-1.0.5.tar.bz2 - mirrors://xorg/individual/app/twm-1.0.8.tar.bz2 - mirrors://xorg/individual/app/viewres-1.0.4.tar.bz2 - mirrors://xorg/individual/app/x11perf-1.5.4.tar.bz2 - mirrors://xorg/individual/app/xauth-1.0.9.tar.bz2 - mirrors://xorg/individual/app/xbacklight-1.2.1.tar.bz2 - mirrors://xorg/individual/app/xbiff-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xcalc-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xclock-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xcmsdb-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xcompmgr-1.1.6.tar.bz2 - mirrors://xorg/individual/app/xconsole-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xcursorgen-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xditview-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xdpyinfo-1.3.1.tar.bz2 - mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xev-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xeyes-1.1.1.tar.bz2 - mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xfd-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xfontsel-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xfs-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xfsinfo-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xhost-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xinput-1.6.1.tar.bz2 - mirrors://xorg/individual/app/xkbcomp-1.3.0.tar.bz2 - mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xkbprint-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xkill-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xload-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xlogo-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xlsatoms-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xlsclients-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xlsfonts-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xmag-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xman-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xmessage-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xmodmap-1.0.9.tar.bz2 - mirrors://xorg/individual/app/xmore-1.0.2.tar.bz2 - mirrors://xorg/individual/app/xpr-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xprop-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xrandr-1.4.3.tar.bz2 - mirrors://xorg/individual/app/xrdb-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xrefresh-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xset-1.2.3.tar.bz2 - mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 - mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 - mirrors://xorg/individual/app/xsetroot-1.1.1.tar.bz2 - mirrors://xorg/individual/app/xsm-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xstdcmap-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xvinfo-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xwd-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xwininfo-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xwud-1.0.4.tar.bz2 - - fontconfig-devel - libdmx-devel - libfontenc-devel - libFS-devel - libICE-devel - libpng-devel - libSM-devel - libXaw-devel - libXcomposite-devel - libXcursor-devel - libXdamage-devel - libXext-devel - libXfixes-devel - libXfont-devel - libXft-devel - libXi-devel - libXinerama-devel - libxkbfile-devel - libXmu-devel - libXrandr-devel - libXrender-devel - libXScrnSaver-devel - libXt-devel - libXtst-devel - libXv-devel - libXxf86dga-devel - libXxf86vm-devel - xbitmaps - xcb-util-devel - libXxf86misc-devel - xorg-proto - util-macros - xtrans - - x11/misc/xorg-app/pspec.xml - - - xorg-app - - zlib - libX11 - libXau - libpng - libxcb - freetype - libFS - libSM - libXi - libXt - libXv - libdmx - libXmu - libXaw - libICE - libXft - libXtst - libXext - xcb-util - libXfont - libXrandr - libXfixes - libXrender - fontconfig - libfontenc - libXxf86vm - libXcursor - libXdamage - libxkbfile - libXxf86dga - libXinerama - libXxf86misc - libXcomposite - libXScrnSaver - - - /etc - /usr/bin - /usr/include - /usr/lib - /usr/sbin - /usr/share/X11 - /usr/share/man - - - System.PackageHandler - - - - xorg-app-devel - - libxkbfile-devel - xorg-app - - - /usr/lib/pkgconfig - - - - - 2015-05-10 - 7.6 - Update. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-08-31 - 7.6 - Update. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-16 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-07 - 7.6 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-06 - 7.6 - Split devel package to prevent lots of devel pack installation. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-12 - 7.6 - Update: xfwp, xload, xprop, xset, xwd, xclipboard, twm, xman, xclock, xfindproxy, xkill, xlsclients, xmodmap, xrdb - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-05 - 7.6 - Add missing method to pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-17 - 7.6 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-31 - 7.6 - Update some apps, fix build luit - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 7.6 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2013-06-21 - 7.6 - Update - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-13 - 7.6 - Update - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 7.6 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xorg-font - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - data:font - x11.misc - Fichiers de fontes d'écrans graphiques (X.Org) - X.Org font files - X.Org yazı tipi dosyaları - Grafische Oberfläche (X.Org) Schrift Dateien - xorg-font contains base X.Org fonts. - mirrors://xorg/individual/font/encodings-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 - - font-util - xorg-app - - x11/misc/xorg-font/pspec.xml - - - xorg-font - - xorg-app - - - /etc/X11/fontpath.d - /usr/share/fonts - /etc/fonts/conf.avail/42-luxi-mono.conf - /etc/fonts/conf.d/42-luxi-mono.conf - - - - xorg-font-extra - X.Org additional font files - X.Org ek yazı tipi dosyaları - - xorg-app - - - /etc/X11/fontpath.d/75dpi:unscaled - /etc/X11/fontpath.d/100dpi:unscaled - /usr/share/fonts/75dpi - /usr/share/fonts/100dpi - - - - - 2015-11-17 - 7.6 - Release Bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-05-16 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-01 - 7.6 - Add fonts. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 7.6 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2010-11-01 - 7.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - xkeyboard-config - http://freedesktop.org/wiki/Software/XKeyboardConfig - - PisiLinux Community - admins@pisilinux.org - - MIT - data - x11.misc - X keyboard configuration database - X klavye yapılandırma veritabanı - xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. - xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. - mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.14.tar.bz2 - - intltool - xorg-proto - xorg-app - libxslt-devel - libX11-devel - - - xkeyboard-config-1.4-jp-tilde.patch - - x11/misc/xkeyboard-config/pspec.xml - - - xkeyboard-config - - xorg-app - libxslt - libX11 - - - /etc/X11/xorg.conf.d - /lib/udev/rules.d - /usr/share/X11/xkb - /usr/share/doc - /usr/share/locale - /usr/share/pkgconfig - /usr/share/man - - - 10-keyboard.conf - 95-xkb.rules - - - - - 2015-05-14 - 2.14 - Release bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-29 - 2.14 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-21 - 2.13 - Version bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2014-08-31 - 2.12 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-15 - 2.11 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-25 - 2.9 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-21 - 2.9 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-22 - 2.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xinit - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - x11.misc - X Window System session initializer - X Pencere Sistemi oturum hazırlayıcı - xinit initializes X Window System server and runs the first client application. - xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. - mirrors://xorg/individual/app/xinit-1.3.4.tar.bz2 - - util-macros - xorg-proto - libX11-devel - - - 06_move_serverauthfile_into_tmp.diff - fs25361.patch - - x11/misc/xinit/pspec.xml - - - xinit - - libX11 - xorg-app - dbus-x11 - - - /etc/X11/Xresources - /etc/X11/Xdefaults - /etc/X11/xinit - /usr/bin - /usr/lib/X11/xinit - /usr/share/doc - /usr/share/man - - - Xsession - xinitrc - xserverrc - xserverrc - Xresources - Xdefaults - xinitrc.d/localuser.sh - xinitrc.d/xdg-runtime-dir.sh - xinitrc.d/Xresources.sh - xinitrc.d/Xdefaults.sh - xinitrc.d/xkb.sh - xinitrc.d/startup.sh - xinitrc.d/environment.sh - xinitrc.d/dbus.sh - xinitrc.d/ssh-agent.sh - - - - - 2015-11-30 - 1.3.4 - add patchs. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-05-10 - 1.3.4 - Version Bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-28 - 1.3.3 - add xdg runtime dir fix localuser dir - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-16 - 1.3.3 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-09-12 - 1.3.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-25 - 1.3.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-26 - 1.3.2 - First release - Erdem Artan - admins@pisilinux.org - - - - - - xterm - http://invisible-island.net/xterm - - PisiLinux Community - admins@pisilinux.org - - MIT - app:gui - x11.terminal - Terminal emulator for the X Window System - X Pencere Sistemi için uçbirim emülatörü - The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. - xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. - terminal - ftp://invisible-island.net/xterm/xterm-304.tgz - - fontconfig-devel - libICE-devel - libXaw-devel - libXft-devel - libXmu-devel - libXt-devel - utempter-devel - xorg-app - libXpm-devel - ncurses-devel - libX11-devel - - - 16colors.txt.diff - defaults.patch - - x11/terminal/xterm/pspec.xml - - - xterm - - fontconfig - libICE - libXaw - libXft - libXmu - libXt - utempter - xorg-app - libXpm - ncurses - libX11 - - - /usr/bin - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - - - 2014-05-13 - 304 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-25 - 287 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-12 - 287 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - vte - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - x11.terminal - Widget terminal utilisant Xft - Xft powered terminal widget - The VTE package contains a termcap file implementation for terminal emulators. - Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. - mirrors://gnome/vte/0.28/vte-0.28.2.tar.xz - - gobject-introspection-devel - fontconfig-devel - gtk2-devel - pango-devel - cairo-devel - gtk-doc - gdk-pixbuf-devel - atk-devel - ncurses-devel - glib2-devel - libX11-devel - - - vte-0.28.2-limit-arguments.patch - vte-alt-meta-confusion.patch - vte-python-bugfixes.patch - vte-0.28.0-link.patch - vte-0.28.2-scale.patch - - x11/terminal/vte/pspec.xml - - - vte - library - - gobject-introspection - gtk2 - atk - cairo - gdk-pixbuf - pango - ncurses - glib2 - libX11 - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/locale - /usr/share/vte - /usr/share/pygtk - /usr/share/gir-1.0/Vte-0.0.gir - - - - vte-docs - GTK reference documents for vte - data:doc - - /usr/share/gtk-doc - - - - vte-devel - Development files for vte - vte için geliştirme dosyaları - - vte - gtk2-devel - pango-devel - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-16 - 0.28.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-25 - 0.28.2 - rebuild for unused - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-06 - 0.28.2 - Fix deps - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 0.28.2 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 0.28.2 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-24 - 0.28.2 - First release - Osman Erkan - namso-0"@hotmail.it - - - - - - font-util - http://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - x11.util - Utilitaires de fontes de X.Org - X.Org font utilities - X.Org font araçları - X.Org Schrift Werkzeuge - font-util package contains core font utilities for the Xorg XWindow system. - mirrors://xorg/individual/font/font-util-1.3.1.tar.bz2 - - zlib-devel - - x11/util/font-util/pspec.xml - - - font-util - - /usr/bin - /usr/lib/pkgconfig - /usr/share/fonts - /usr/share/aclocal - /usr/share/doc - /usr/share/man - - - - - 2015-05-10 - 1.3.1 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2014-05-16 - 1.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-11-06 - 1.3.0 - Fix deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-25 - 1.3.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 1.3.0 First release Erdem Artan admins@pisilinux.org @@ -70307,101 +92805,567 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - dconf - http://live.gnome.org/dconf + gfxboot + https://github.com/openSUSE/gfxboot - Pisi Linux Admins - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv2 app:console - desktop.gnome.base - Simple low-level configuration system - Düşük seviyeli yapılandırma sistemi - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - FIXME - http://ftp.gnome.org/pub/gnome/sources/dconf/0.24/dconf-0.24.0.tar.xz + system.boot + Tools to create graphical boot logos + Grafik açılış logosu oluşturma araçları + Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. + Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. + gfxboot + https://github.com/openSUSE/gfxboot/archive/4.5.7.tar.gz - dbus-devel - glib2-devel - docbook-xsl + xmlto + freetype-devel + util-linux libxslt - intltool - gtk-doc + lynx - desktop/gnome/base/dconf/pspec.xml + + productname.patch + no-theme-no-git.patch + + system/boot/gfxboot/pspec.xml - dconf + gfxboot - dbus - glib2 + perl-HTML-Parser + freetype - /usr/share - /usr/lib + /usr/sbin + /usr/share/gfxboot/bin + /usr/share/gfxboot /usr/share/doc - /usr/bin - /usr/libexec - - - - dconf-devel - Development files for dconf - - dconf - dbus-devel - glib2-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - - - - dconf-docs - Reference files for dconf - data:doc - - dconf - - - /usr/share/gtk-doc + + 2015-08-05 + 4.5.7 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-14 + 4.5.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 4.5.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-01-13 + 4.5.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + memtest86 + http://www.memtest.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + Memory tester + Bellek test edici + Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. + Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. + x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. + http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz + system/boot/memtest86/pspec.xml + + + memtest86 + + /boot + /usr/share/doc + + + + + 2015-01-27 + 5.01 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-14 + 4.20 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-10 + 4.20 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2012-09-24 + 4.20 + First release + Erdem Artan + admins@pisilinux.org + + + + + + syslinux + http://syslinux.zytor.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + SysLinux, IsoLinux and PXELinux bootloader + SysLinux, IsoLinux ve PXELinux önyükleyicileri + Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. + Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. + https://www.kernel.org/pub/linux/utils/boot/syslinux/4.xx/syslinux-4.07.tar.xz + + nasm + libutil-linux-devel + + + nopie.patch + fixisohybrid.patch + + system/boot/syslinux/pspec.xml + + + syslinux + + mtools + libutil-linux + perl-Crypt-PasswdMD5 + perl-Digest-SHA1 + + + /sbin + /usr/bin + /usr/lib/syslinux + /usr/share/doc + /usr/share/man + + + pisi-iso/isolinux.cfg + pisi-iso/background.png + + + + + 2014-06-14 + 4.07 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + - 2015-08-12 - 0.24.0 + 2014-04-13 + 4.07 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 4.06 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-03-24 + 4.06 + Back to 4x line + Erdinç Gültekin + admins@pisilinux.org + + + 2013-02-07 + 5.00 + fix isohybrid + Erdinç Gültekin + admins@pisilinux.org + + + 2013-01-08 + 5.00 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gfxtheme-pisilinux-install + www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + system.boot + Pisi Linux gfxboot install theme + Pisi Linux gfxboot teması + Gfxtheme install package for Pisi Linux + Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. + http://source.pisilinux.org/1.0/gfxtheme-pisilinux-install-0.2.tar.xz + + gfxboot + fribidi-devel + + + chmod-t.patch + + system/boot/gfxtheme-pisilinux-install/pspec.xml + + + gfxtheme-pisilinux-install + + /usr/share/gfxtheme/pisilinux/install + + + + + 2014-08-04 + 0.2 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-06-14 + 0.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-23 + 0.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-06 + 0.1 + First release. + Serdar Soytetir + kaptan@pisilinux.org + + + + + + efivar + https://github.com/vathpela/efivar + + Aydın Demirel + aydin.demirel@pisilinux.org + + LGPL2.1 + app:console + system.boot + Tools and library to manipulate EFI variables + EFI değişkenlerini işlemek için araçlar ve kütüphane + Tools and library to manipulate EFI variables. + EFI değişkenlerini işlemek için araçlar ve kütüphane + https://github.com/rhinstaller/efivar/releases/download/0.15/efivar-0.15.tar.bz2 + + popt-devel + + system/boot/efivar/pspec.xml + + + efivar + + /usr/lib + /usr/share/man + /usr/bin + + + + efivar-devel + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-02-21 + 0.15 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-09-27 + 0.10.8 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + efibootmgr + https://github.com/vathpela/efibootmgr + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL2 + app:console + system.boot + Tool to modify UEFI Firmware Boot Manager Variables + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + http://source.pisilinux.org/1.0/efibootmgr.tar.gz + + pciutils-devel + zlib-devel + efivar + efivar-devel + + system/boot/efibootmgr/pspec.xml + + + efibootmgr + + /usr/sbin + /usr/share/man + /usr/lib/* + + + + efibootmgr-devel + + /usr/include + + + + + 2014-09-27 + 0.7.0.16 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + ConsoleKit + https://github.com/Consolekit2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.auth + A framework for defining and tracking users, login sessions, and seats + Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı + ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). + ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. + https://github.com/ConsoleKit2/ConsoleKit2/releases/download/1.0.0/ConsoleKit2-1.0.0.tar.bz2 + + acl-devel + pam-devel + dbus-devel + eudev-devel + zlib-devel + glib2-devel + libX11-devel + libnih-devel + cgmanager-devel + polkit-devel + libxslt + xmlto + util-linux + + system/auth/ConsoleKit/pspec.xml + + + ConsoleKit + + acl + pam + dbus + zlib + glib2 + libX11 + libnih + cgmanager + polkit + eudev + + + /etc + /usr/lib/tmpfiles.d/ConsoleKit.conf + /usr/bin + /usr/sbin + /usr/libexec + /lib + /usr/lib + /usr/share/dbus-1 + /usr/share/polkit-1/actions + /usr/share/polkit-1/rules.d + /usr/share/man + /usr/share/locale + /usr/share/doc + /var + + + ConsoleKit.conf + 25-consolekit.rules + consolekit.pamd + pam-foreground-compat.ck + + + + ConsoleKit-devel + Development files for ConsoleKit + ConsoleKit için geliştirme dosyaları + + ConsoleKit + dbus-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-07 + 1.0.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-26 + 1.0.0 + readd pam-foreground-compat.ck script. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-10 + 1.0.0 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2014-06-14 - 0.20 + + 2015-07-20 + 0.9.5 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - - 2013-10-29 - 0.18 + + 2015-06-16 + 0.9.4 Version bump. - Richard de Bruin - richdb@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - - 2013-07-31 - 0.16.1 + + 2015-06-15 + 0.9.3 Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-05 + 0.9.2 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-08-01 + 0.4.6 + Rebuild. Marcin Bojara marcin@pisilinux.org + + 2014-05-11 + 0.4.6 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-06 + 0.4.6 + Dep Fix + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-09 + 0.4.6 + Add gentoo patches and ConsoleKit.conf + Marcin Bojara + marcin@pisilinux.org + + + 2013-09-08 + 0.4.6 + /var/run => /run + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-04 + 0.4.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2012-11-21 - 0.15.2 + 2012-08-23 + 0.4.5 First release PisiLinux Community admins@pisilinux.org @@ -70410,50 +93374,2534 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - accountsservice - http://www.freedesktop.org/ + handbrake + http://handbrake.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv1 + app + multimedia.editor + Multithreaded video transcoder + Çoklu görev destekli video kodlama/düzenleme aracı + The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. + Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. + HandBrake + https://handbrake.fr/rotation.php?file=HandBrake-0.10.2.tar.bz2 + + bzip2 + python + intltool + gtk3-devel + lame-devel + gtk3-devel + x264-devel + libogg-devel + libass-devel + fribidi-devel + libxml2-devel + libbluray-devel + libnotify-devel + libvorbis-devel + libtheora-devel + dbus-glib-devel + fontconfig-devel + libsamplerate-devel + gst-plugins-base-next-devel + + multimedia/editor/handbrake/pspec.xml + + + handbrake + + gtk3 + lame + x264 + cairo + pango + libass + libogg + fribidi + libbluray + libnotify + gst-libav-next + libvorbis + libtheora + gdk-pixbuf + libsamplerate + gstreamer-next + gst-plugins-base-next + zlib + bzip2 + eudev + glib2 + libgcc + libxml2 + freetype + dbus-glib + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/lib/python2.7 + /usr/share/locale + + + + + 2015-09-26 + 0.10.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-04-30 + 0.10.1 + Version bump. + Idris KALP + idriskalp@gmail.com + + + 2015-02-20 + 0.10.0 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-18 + 0.9.9 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-07 + 0.9.9 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2013-12-05 + 0.9.9 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + blender + http://www.blender.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.editor + 3D modeling, animation, rendering and post-production application + 3D animasyon sistemi + blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. + Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. + blender + http://download.blender.org/source/blender-2.75a.tar.gz + + boost-devel + cmake + ffmpeg-devel + fftw3-devel + freetype-devel + glew-devel + icu4c-devel + ilmbase-devel + jack-audio-connection-kit-devel + libdc1394-devel + libgomp + libjpeg-turbo-devel + libpng-devel + libsdl-devel + libsndfile-devel + libspnav-devel + libX11-devel + libXi-devel + libXxf86vm-devel + mesa-devel + mesa-glu-devel + openal-devel + openexr-devel + openjpeg-devel + python3-devel + tiff-devel + openimageio-devel + webp-devel + zlib-devel + + + 06-blender-2.68-fix-install-rules.patch + + multimedia/editor/blender/pspec.xml + + + blender + + boost + ffmpeg + fftw3 + freetype + glew + ilmbase + jack-audio-connection-kit + libgcc + libdc1394 + libgomp + libjpeg-turbo + libpng + libsdl + libsndfile + libspnav + libX11 + libXi + libXxf86vm + mesa + mesa-glu + openal + openexr-libs + openjpeg + python3 + tiff + openimageio + zlib + + + /usr/bin + /usr/lib/python3.3/ + /usr/share/blender/ + /usr/share/doc + /usr/share/pixmaps/ + /usr/share/man/man1 + /usr/share/icons + /usr/share/applications + /usr/share/mime + /usr/share/locale + + + blender.xml + blender-wrapper + blender.desktop + + + + + 2015-07-24 + 2.75a + Version bump. + Ali Algul + alialgul@pisilinux.org + + + 2015-01-24 + 2.75 + Version bump. + Ali Algul + alialgul@pisilinux.org + + + 2015-01-24 + 2.73a + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-01-08 + 2.73 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-30 + 2.72b + Rebuild, remove opencolorio dependency + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-10 + 2.72b + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-08 + 2.72 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-27 + 2.71 + Version bump. + Nikolay Semenov + tribunal@pisilinux.org + + + 2014-05-28 + 2.70a + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-23 + 2.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-03-25 + 2.7.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-26 + 2.69 + Rebuild for ffmpeg. + Kamil Atlı + suvarice@gmail.com + + + 2013-11-09 + 2.69 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-31 + 2.69 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-14 + 2.68a + rebuild for icu4c. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-08-17 + 2.68a + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-07-25 + 2.68 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-04-20 + 2.66 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-01 + 2.65 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + ladspa-sdk + http://www.ladspa.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.plugin + The Linux Audio Developer's Simple Plugin API + Ses geliştiricisinin temel eklenti kütüphanesi + La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. + The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications + ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. + El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. + http://pkgs.fedoraproject.org/repo/pkgs/ladspa/ladspa_sdk_1.13.tgz/671be3e1021d0722cadc7fb27054628e/ladspa_sdk_1.13.tgz + + ladspa-sdk-1.12-gcc4.patch + properbuild.patch + asneeded.patch + notests.patch + + multimedia/plugin/ladspa-sdk/pspec.xml + + + ladspa-sdk + + /usr/bin + /usr/lib + /etc + /usr/share/doc/ladspa-sdk + + + 60ladspa + + + + ladspa-sdk-devel + Development files for ladspa-sdk + ladspa-sdk için geliştirme dosyaları + + ladspa-sdk + + + /usr/include + /usr/share/doc/ladspa-sdk/html + + + + + 2014-05-25 + 1.13 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-29 + 1.13 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.13 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libchromaprint + http://acoustid.org/chromaprint + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.plugin + Chromaprint is the core component of the Acoustid project. + Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. + https://bitbucket.org/acoustid/chromaprint/downloads/chromaprint-1.2.tar.gz + + ffmpeg-devel + + multimedia/plugin/libchromaprint/pspec.xml + + + libchromaprint + + ffmpeg + + + /usr/share + /usr/lib + + + + libchromaprint-devel + libchromaprint için geliştirme dosyaları + + libchromaprint + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-18 + 1.2 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-25 + 1.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-25 + 1.1 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.7 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-17 + 0.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libid3tag + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + La librairie id3tag MAD. + The MAD id3tag library + MAD id3tag kütüphanesi + Die MAD id3tag Bibliothek + libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. + mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz + + zlib-devel + + + libid3tag-0.15.1b-fix_overflow.patch + libid3tag-0.15.1b-unknown-encoding.patch + libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch + + multimedia/misc/libid3tag/pspec.xml + + + libid3tag + + zlib + + + /usr/lib + /usr/share/doc + + + + libid3tag-devel + + libid3tag + + + /usr/include + /usr/lib/pkgconfig + + + id3tag.pc + + + + + 2014-05-20 + 0.15.1b + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.15.1b + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.15.1b + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdvdcss + http://www.videolan.org/libdvdcss/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A portable abstraction library for DVD decryption + DVD çözmek için soyutlanmış taşınabilir bir kütüphane + libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. + libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. + Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. + libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. + http://download.videolan.org/pub/libdvdcss/1.3.0/libdvdcss-1.3.0.tar.bz2 + multimedia/misc/libdvdcss/pspec.xml + + + libdvdcss + + /usr/lib + /usr/share/doc + + + + libdvdcss-devel + Development files for libdvdcss + libdvdcss için geliştirme dosyaları + + libdvdcss + + + /usr/include/dvdcss + /usr/lib/pkgconfig + + + + + 2014-09-29 + 1.3.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-21 + 1.2.13 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 1.2.13 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.2.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gd + http://www.libgd.org + + PisiLinux Community + admins@pisilinux.org + + as-is + BSD + library + multimedia.misc + Une librairie rapide pour créer des graphiques en images. + A fast library for creating graphic images + Hızlı bir şekilde resim oluşturmak için bir kütüphane + The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. + https://github.com/libgd/libgd/archive/gd-2.1.1.tar.gz + + fontconfig-devel + zlib-devel + freetype-devel + libpng-devel + libjpeg-turbo-devel + tiff-devel + libvpx-devel + + + gd-2.1.1-libvpx-1.4.0.patch + + multimedia/misc/gd/pspec.xml + + + gd + + fontconfig + tiff + libvpx + libjpeg-turbo + zlib + freetype + libpng + + + /usr/bin + /usr/lib + /usr/share/doc/gd + + + + gd-devel + Development files for gd + gd için geliştirme dosyaları + + gd + + + /usr/include + /usr/lib/pkgconfig + /usr/bin/gdlib-config + + + + gd-docs + Documents for gd + gd için geliştirme belgeleri + + /usr/share/doc/gd/html + + + + + 2014-08-02 + 2.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 2.1.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-25 + 2.0.35 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.0.35 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libpano13 + http://sourceforge.net/projects/panotools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.misc + Library for manipulating panoramic images + Panoramik görüntü kitaplığı + libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. + libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. + mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz + + zlib-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + + multimedia/misc/libpano13/pspec.xml + + + libpano13 + + tiff + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + libpano13-devel + Development files for libpano13 + libpano13 için geliştirme dosyaları + + libpano13 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-11-10 + 2.9.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 2.9.18 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-22 + 2.9.18 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-28 + 2.9.18 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-06-13 + 2.9.18 + First release + Ertuğrul Erata + admins@pisilinux.org + + + + + + libkate + http://code.google.com/p/libkate + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.misc + A text codec for embedding in Ogg + Ogg için karaoke ve metin kitaplığı + Kate is a codec for karaoke and text encapsulation for Ogg. + Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. + http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz + + libogg-devel + libpng-devel + doxygen + + multimedia/misc/libkate/pspec.xml + + + libkate + + libogg + libpng + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libkate-devel + Development files for libkate + libkate için geliştirme dosyaları + + libkate + libogg-devel + libpng-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libkate-docs + API documentation for libkate + libkate paketine ait API belgeleri + + libkate + + + /usr/share/doc/libkate/html + /usr/share/doc/libkate/examples + + + + + 2014-05-24 + 0.4.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.4.1 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-31 + 0.4.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 0.4.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + taglib-extras + http://amarok.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Taglib extras library from Amarok team + Amarok takımından taglib ekstraları kütüphanesi + Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. + Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. + http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz + + pkgconfig + cmake + taglib-devel + + multimedia/misc/taglib-extras/pspec.xml + + + taglib-extras + + taglib + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + taglib-extras-devel + Development files for taglib-extras + taglib-extras için geliştirme dosyaları + + taglib-extras + + + /usr/include/taglib-extras + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.0.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.0.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2010-10-12 + 1.0.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libspnav + http://spacenav.sourceforge.net Osman Erkan osman.erkan@pisilinux.org - GPLv3 + BSD library - desktop.gnome.base - D-Bus Service to Manipulate User Account Information - accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. - http://www.freedesktop.org/software/accountsservice/accountsservice-0.6.40.tar.xz + multimedia.misc + Open source alternative to 3DConnextion drivers + The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. + http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz - intltool - glib2-devel - polkit-devel + libX11-devel - desktop/gnome/base/accountsservice/pspec.xml + + Makefile.patch + + multimedia/misc/libspnav/pspec.xml - accountsservice + libspnav + + libX11 + + + /usr/lib/ + /usr/share/doc + + + + libspnav-devel + Development files for libspnav + libspnav için geliştirme dosyaları + + libspnav + + + /usr/include + /usr/lib/libspnav.so + + + + + 2015-09-16 + 0.2.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 0.2.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 0.2.2 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-04-28 + 0.2.2 + Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-01 + 0.2.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libebml + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie de format binaire extensible (un peu comme XML). + Extensible binary format library (kinda like XML) + Genişletilebilir ikilik biçimlendirme kütüphanesi + Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. + http://dl.matroska.org/downloads/libebml/libebml-1.3.1.tar.bz2 + multimedia/misc/libebml/pspec.xml + + + libebml + + libgcc + + + /usr/lib + /usr/share/doc + + + + libebml-devel + Development files for libebml + libebml için geliştirme dosyaları + + libebml + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-20 + 1.3.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-24 + 1.3.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-16 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-07 + 1.2.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + liboil + http://www.schleef.org/liboil/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Liboil is a library of simple functions that are optimized for various CPUs + Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir + Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. + Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. + liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. + Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. + http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz + + 02_amd64-cpuid.patch + 03_stride-segfaults.patch + + multimedia/misc/liboil/pspec.xml + + + liboil + + /usr/lib + /usr/share/doc + + + + liboil-devel + Development files for liboil + liboil için geliştirme dosyaları + + liboil + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.3.17 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.3.17 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-05 + 0.3.17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libexif + http://libexif.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie pour analyser, éditer et sauvegarder des données EXIF. + Library for parsing, editing, and saving EXIF data + EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. + mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 + + doxygen + + + libexif-0.6.13-pkgconfig.patch + + multimedia/misc/libexif/pspec.xml + + + libexif + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libexif-devel + Development files for libexif + libexif için geliştirme dosyaları + + libexif + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libexif/libexif-api.html + + + + + 2014-05-24 + 0.6.21 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-30 + 0.6.21 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.6.21 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + musicbrainz5 + http://www.musicbrainz.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Client library to access metadata of mp3/vorbis/CD media + Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. + MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. + MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. + MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. + MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. + ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz + + neon-devel + libxml2-devel + cmake + + multimedia/misc/musicbrainz5/pspec.xml + + + musicbrainz5 + + libgcc + libxml2 + neon + + + /usr/lib + /usr/share/doc + + + + musicbrainz5-devel + Development files for musicbrainz5 + musicbrainz5 için geliştirme dosyaları + + musicbrainz5 + neon-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 5.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-29 + 5.0.1 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2014-03-10 + 5.0.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 5.0.1 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-01-06 + 5.0.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + frei0r-plugins + http://www.piksel.org/frei0r + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A plugin API for video sources and filters + Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü + frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. + frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. + http://distfiles.macports.org/frei0r-plugins/frei0r-plugins-1.4.tar.gz + + libgcc + + + explicitly-link-with-lm.patch + + multimedia/misc/frei0r-plugins/pspec.xml + + + frei0r-plugins + + libgcc + + + /usr/lib + /usr/share/doc + + + + frei0r-plugins-devel + Development files for frei0r-plugins + frei0r-plugins için geliştirme dosyaları + + frei0r-plugins + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 1.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-01 + 1.4 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-30 + 1.4 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-31 + 1.4 + missing dep. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-28 + 1.4 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2011-09-13 + 1.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + orc + http://code.entropywave.com/projects/orc/ + + PisiLinux Community + admins@pisilinux.org + + BSD + BSD-2 + app:console + multimedia.misc + The Oil Runtime Compiler + Optimized Inner Loop Runtime Compiler + http://gstreamer.freedesktop.org/src/orc/orc-0.4.19.tar.gz + multimedia/misc/orc/pspec.xml + + + orc + + /usr/bin/ + /usr/lib/ + /usr/share/ + + + + orc-32bit + 32-bit shared libraries for orc + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + orc + + + /usr/lib32 + + + + orc-devel + orc için geliştirme dosyaları + orc için geliştirme dosyaları + + orc + + + /usr/include/ + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2014-05-20 + 0.4.19 + Version bump, fix version. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-24 + 4.18 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-02-14 + 4.16 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 4.16 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdvdnav + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + libdvdnav is a library for developers of multimedia applications + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane + libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. + libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz + libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. + http://download.videolan.org/pub/videolan/libdvdnav/5.0.3/libdvdnav-5.0.3.tar.bz2 + + libdvdread-devel + + multimedia/misc/libdvdnav/pspec.xml + + + libdvdnav + + libdvdread + + + /usr/lib + /usr/share/doc/libdvdnav + + + + libdvdnav-devel + Development files for libdvdnav + libdvdnav için geliştirme dosyaları + + libdvdnav + libdvdread-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-01-31 + 5.0.3 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-28 + 5.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-29 + 5.0.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-24 + 4.2.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 4.2.0 + Rebuild. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-31 + 4.2.0 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-08 + 4.2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 0.0_20100819 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libopus + http://www.opus-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + Opus is a totally open, royalty-free, highly versatile audio codec + Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir + Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. + Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. +Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. + http://downloads.xiph.org/releases/opus/opus-1.1.tar.gz + multimedia/misc/libopus/pspec.xml + + + libopus + + /usr/bin + /usr/lib + /usr/share + + + + libopus-devel + Development files for libopus + Libopus için geliştirme dosyaları + + libopus + + + /usr/include + /usr/lib/pkgconfig + + + + libopus-docs + document files for libopus + + libopus + + + /usr/share/doc/ + + + + + 2014-05-22 + 1.1 + enable-custom-modes. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-22 + 1.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-10-09 + 1.0.4 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 1.0.2 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-12 + 1.0.2 + First release + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + + + + sdl-image + http://www.libsdl.org/projects/SDL_image/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie SDL de chargement de fichier d'image. + SDL image file loading library + SDL resim yükleme kitaplığı + SDL_image is an image file loader for SDL. + SDL_image, SDL için resim yükleme kitaplığıdır. + http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz + + libsdl-devel + tiff-devel + libjpeg-turbo-devel + + + gif-overflow.patch + + multimedia/misc/sdl-image/pspec.xml + + + sdl-image + + libsdl + tiff + zlib + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib/ + /usr/share/doc + + + + sdl-image-devel + Development files for sdl-image + sdl-image için geliştirme dosyaları + + sdl-image + libsdl-devel + tiff-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-image-32bit + 32-bit shared libraries for sdl-image + sdl-image için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + + + sdl-image + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + zlib-32bit + glibc-32bit + + + /usr/lib32/ + + + + + 2014-05-31 + 1.2.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.2.12 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2012-08-29 + 1.2.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdvdread + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Provides a simple foundation for reading DVD-Video images + DVD videolarını okumak için basit bir kütüphane + Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. + A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. + GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. + DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. + http://download.videolan.org/pub/videolan/libdvdread/5.0.2/libdvdread-5.0.2.tar.bz2 + + libdvdcss-devel + git + + multimedia/misc/libdvdread/pspec.xml + + + libdvdread + + libdvdcss + glibc + + + /usr/lib + /usr/share/doc/libdvdread + + + + libdvdread-devel + Development files for libdvdread + libdvdread için geliştirme dosyaları + + libdvdread + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2015-01-31 + 5.0.2 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-01-28 + 5.0.1 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-29 + 5.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-24 + 4.9.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-03-08 + 4.2.0 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 0.0_20100819 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libbluray + http://www.videolan.org/developers/libbluray.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Library to access Blu-Ray disks for video playback + Blu-Ray disklere ulaşmak için kitaplık + Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. + Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. + ftp://ftp.videolan.org/pub/videolan/libbluray/0.5.0/libbluray-0.5.0.tar.bz2 + + libxml2-devel + freetype-devel + + multimedia/misc/libbluray/pspec.xml + + + libbluray + + libxml2 + freetype + + + /usr/bin + /usr/lib + + + + libbluray-devel + Development files for libbluray + Libbluray için geliştirme dosyaları + + libbluray + + + /usr/include + /usr/lib/pkgconfig + + + + libbluray-docs + document files for libbluray + + libbluray + + + /usr/share/doc/ + + + + + 2014-05-20 + 0.5.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-03 + 0.5.0 + Rebuild for openjdk + PisiLinux Community + admins@pisilinux.org + + + 2014-02-23 + 0.5.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-06 + 0.3.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-11 + 0.2.3 + First release + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + + + + liblqr + http://liblqr.wikidot.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.misc + An easy to use C/C++ seam carving library + Görüntü boyutlandırma kütüphanesi + liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. + liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. + http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 + + glib2-devel + + multimedia/misc/liblqr/pspec.xml + + + liblqr - polkit glib2 /usr/lib /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/gtk-doc - /usr/share/polkit-1 - /usr/share/vala/vapi - /etc/dbus-1/system.d - /usr/share/locale - /var/lib/AccountsService/ - accountsservice-devel - accountsservice için geliştirme dosyaları - accountsservice için geliştirme dosyaları + liblqr-devel + Development files for liblqr + liblqr için geliştirme dosyaları - accountsservice + liblqr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.4.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 0.4.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.4.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libsdl + http://www.libsdl.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Simple Direct Media Layer (Couche Média Simple et Directe). + Simple Direct Media Layer + Basit bir direk ortam erişim katmanı + Einfachee direkte Medien-Schicht + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. + http://www.libsdl.org/release/SDL-1.2.15.tar.gz + + DirectFB-devel + alsa-lib-devel + aalib-devel + + + sdl-1.2.14-disable-mmx.patch + sdl_x11sym.patch + SDL-1.2.14-dont-propagate-lpthread.patch + SDL-1.2.14-noproc.patch + SDL-1.2.13-rh484362.patch + libsdl-1.2.15-sdl-config.patch + libsdl-1.2.15-resizing.patch + libsdl-1.2.15-joystick.patch + + multimedia/misc/libsdl/pspec.xml + + + libsdl-docs + libsdl reference documents + libsdl başvuru belgeleri + + libsdl + + + /usr/share/man + /usr/share/doc + + + + libsdl + + DirectFB + aalib + + + /usr/lib + + + + libsdl-devel + Development files for libsdl + libsdl için geliştirme dosyaları + + libsdl + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/libSDLmain.a + /usr/share/aclocal + + + + libsdl-32bit + 32-bit shared libraries for libsdl + libsdl için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + libsdl + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 1.2.15 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-10-14 + 1.2.15 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.2.15 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libcdr + http://www.freedesktop.org/wiki/Software/libcdr + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + MPLv1.1 + library + multimedia.misc + Library parsing the Corel cdr documents + Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. + http://dev-www.libreoffice.org/src/libcdr-0.1.0.tar.bz2 + + doxygen + zlib-devel + lcms2-devel + icu4c-devel + libwpd-devel + boost-devel + librevenge-devel + + multimedia/misc/libcdr/pspec.xml + + + libcdr + + lcms2 + icu4c + zlib + libgcc + librevenge + + + /usr/lib + /usr/bin + /usr/share/doc/libcdr + + + + libcdr-devel + Development files for libcdr + libcdr için geliştirme dosyaları + + icu4c-devel + zlib-devel + lcms2-devel + librevenge-devel + libcdr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-01-02 + 0.1.1 + Dep Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2014-09-26 + 0.1.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-05-24 + 0.0.16 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-25 + 0.0.11 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 0.0.11 + Rebuild for icu4c + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-31 + 0.0.11 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-03-14 + 0.0.11 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-17 + 0.0.10 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-20 + 0.0.9 + First Release. + PisiLinux Community + admins@pisilinux.org + + + + + + DirectFB + http://www.directfb.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Thin library on top of the Linux framebuffer devices + Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane + DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. + DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. + http://www.directfb.org/downloads/Core/DirectFB-1.7/DirectFB-1.7.1.tar.gz + + libgcc + giflib-devel + libX11-devel + zlib-devel + tiff-devel + jasper-devel + freetype-devel + libpng-devel + libXext-devel + mesa-devel + webp-devel + mesa-glu-devel + libdrm-devel + libjpeg-turbo-devel + libmng-devel + lcms2-devel + libvdpau-devel + libmad-devel + libvorbis-devel + + multimedia/misc/DirectFB/pspec.xml + + + DirectFB-docs + + DirectFB + + + /usr/share/doc + + + + DirectFB + + zlib + libgcc + libpng + freetype + libX11 + libXext + mesa + libdrm + libjpeg-turbo + libvdpau + webp + tiff + jasper + libkms + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share + + + + DirectFB-devel + Development files for DirectFB + DirectFB için geliştirme dosyaları + + DirectFB + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-21 + 1.7.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-23 + 1.7.1 + Rebuild for webp + Kamil Atlı + suvarice@gmail.com + + + 2014-01-28 + 1.7.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 1.7.1 + version bump + Erdinç >Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.5.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libass + http://code.google.com/p/libass/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Subtitle rendering library + Altyazı çizim kitaplığı + libass is a portable subtitle rendering library for the ASS/SSA. + libass ASS/SSA altyazı çizim kitaplığıdır. + https://github.com/libass/libass/releases/download/0.11.2/libass-0.11.2.tar.xz + + fontconfig-devel + freetype-devel + fribidi-devel + + multimedia/misc/libass/pspec.xml + + + libass + + fontconfig + freetype + fribidi + + + /usr/lib + /usr/share/doc/libass + + + + libass-devel + Development files for libass + libass için geliştirme dosyaları + + libass + harfbuzz-devel + fontconfig-devel + freetype-devel + fribidi-devel /usr/include @@ -70462,202 +95910,96 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2015-10-11 - 0.6.40 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-07-15 - 0.6.35 - Rebuild for gcc. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-08 - 0.6.35 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-08-30 - 0.6.34 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libsecret - http://projects.gnome.org/libsecret - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - The libsecret package contains a GObject based library - The libsecret package contains a GObject based library for accessing the Secret Service API. - mirrors://gnome/libsecret/0.18/libsecret-0.18.tar.xz - - gtk-doc - vala-devel - libxslt-devel - libgcrypt-devel - glib2-devel - xmlto - - desktop/gnome/base/libsecret/pspec.xml - - - libsecret - - libxslt - libgcrypt - glib2 - xmlto - - - /usr/share - /usr/lib - /usr/bin - - - - libsecret-devel - Development files for libsecret - libsecret için geliştirme dosyaları - - libsecret - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-06-14 - 0.18 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-04-23 - 0.18 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-04-05 - 0.16 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-20 - 0.16 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-09-05 - 0.16 - Release bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-08-26 - 0.15 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-30 - 0.15 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-21 - 0.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnome-common - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.gnome.base - Common files for development of GNOME packages - GNOME uygulamalarının geliştirmede kullandığı yaygın dosyalar - gnome-common package contains aclocal macros, makefile headers and documents tools in order to build GNOME sources. - mirrors://gnome/gnome-common/3.10/gnome-common-3.10.0.tar.xz - desktop/gnome/base/gnome-common/pspec.xml - - - gnome-common - - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/share/gnome-common - - - - - 2014-06-14 - 3.10.0 - Rebuild for gcc - PisiLinux Community - admins@pisilinux.org - - - 2014-05-21 - 3.12.0 + 2014-05-22 + 0.11.2 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2013-10-27 - 3.10.0 - V.Bump - PisiLinux Community - admins@pisilinux.org + 2014-03-08 + 0.10.1 + rebuild + Kamil Atlı + suvarice@gmail.com - 2013-08-26 - 2.34.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org + 2013-07-07 + 0.10.1 + Rebuild + Marcin Bojara + marcin@pisilinux.org - 2010-12-22 - 2.34.0 + 2012-10-25 + 0.10.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + fribidi + http://fribidi.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.misc + A free implementation of the unicode bidirectional algorithm + Çift yönlü unikod algoritmanın özgür bir uyarlaması + GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. + GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. + GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. + GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. + http://fribidi.org/download/fribidi-0.19.6.tar.bz2 + multimedia/misc/fribidi/pspec.xml + + + fribidi + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fribidi-devel + Development files for fribidi + fribidi için geliştirme dosyaları + + fribidi + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2014-02-23 + 0.19.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-06 + 0.19.5 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 0.19.4 First release PisiLinux Community admins@pisilinux.org @@ -70666,92 +96008,1007 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - dconf-editor - http://live.gnome.org/dconf + taglib + http://developer.kde.org/~wheeler/taglib.html - Pisi Linux Admins - admin@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org GPLv2 - app:gui - desktop.gnome.base - Gui editor for dconf; simple low-level configuration system - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - ftp://ftp.gnome.org/pub/gnome/sources/dconf-editor/3.16/dconf-editor-3.16.1.tar.xz + library + multimedia.misc + A library for reading and editing audio meta data + Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi + TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. + TagLib is a library for reading and editing the meta data of several popular audio formats. + TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. + http://taglib.github.io/releases/taglib-1.9.1.tar.gz - dconf-devel - libxml2-devel - gtk3-devel - pango-devel - docbook-xsl - libepoxy-devel - at-spi2-core-devel - vala-devel - libxslt - intltool - gtk-doc + cmake + zlib-devel - desktop/gnome/base/dconf-editor/pspec.xml + multimedia/misc/taglib/pspec.xml - dconf-editor + taglib - dconf - glib2 - libxml2 - gtk3 - pango + zlib + libgcc - /etc - /usr/share /usr/lib - /usr/share/doc /usr/bin - /usr/libexec + /usr/share/doc + + + + taglib-devel + Development files for taglib + taglib için geliştirme dosyaları + + taglib + + + /usr/include + /usr/lib/pkgconfig + + 2014-05-25 + 1.9.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-24 + 1.9.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + - 2015-08-12 - 3.16.1 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com + 2012-10-22 + 1.8 + First release + Marcin Bojara + marcin@pisilinux.org - libgnome-keyring - http://live.gnome.org/GnomeKeyring + openexr + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + library + multimedia.misc + A high dynamic-range (HDR) image file format library + OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. + OpenEXR is a high dynamic-range (HDR) image file format for use in computer imaging applications. OpenEXR's features include: Higher dynamic range and color precision than existing 8- and 10-bit image file formats; support for 16-bit floating-point, 32-bit floating-point, and 32-bit integer pixels; multiple lossless image compression algorithms; extensibility. + OpenEXR, bilgisayar görüntüleme uygulamalarında kullanılan yüksek dinamik görüntü erimidir. OpenEXR özellikleri şunları içerir: Mevcut 8 ve 10 bitlik görüntü dosya formatlarından daha yüksek dinamik görüntü erişimi, 16 ya da 32 bit piksel desteği ve kayıpsız görüntü sıkıştırma algoritması + OpenEXR es un formato de archivo de imagen de alto fango dinámico (HDR) para uso en aplicaciones de computación de imágenes. OpenEXR contiene facilidades: rango dinámico y precisión de colores más alto que formatos existentes de 8- y 10-bit; soporta para punto flotante 16-bit, punto flotante 32-bit, y entero 32-bit pixels; algoritmos de compresión múltiple sin pérdida; extensible. + http://download.savannah.nongnu.org/releases/openexr/openexr-2.2.0.tar.gz + + ilmbase-devel + zlib-devel + mesa-glu-devel + + multimedia/misc/openexr/pspec.xml + + + openexr + + ilmbase + libgcc + openexr-libs + + + /usr/bin + + + + openexr-libs + OpenEXR runtime libraries + OpenEXR çalışma zamanı kitaplıkları + + ilmbase + zlib + libgcc + + + /usr/lib/lib* + /usr/share/doc + + + + openexr-docs + OpenEXR example files + OpenEXR örnek dosyalar + + /usr/share/doc/openexr/examples + + + + openexr-devel + Development files for openexr + OpenEXR için geliştirme dosyaları + + openexr + mesa-glu-devel + ilmbase-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-08-28 + 2.2.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 2.1.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-16 + 2.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2010-10-12 + 1.7.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + exiv2 + http://www.exiv2.org PisiLinux Community admins@pisilinux.org GPLv2 library - desktop.gnome.base - Compatibility library for accessing gnome-keyring3 - gnome-keyring'e ulaşmak için uyumluluk kütüphanesidir. - libgnome-keyring is a library that used by applications to integrate with the gnome-keyring system. - libgnome-keyring, gnome-keyring sistemine uyumlu olmak için programlar tarafından kullanılan bir kütüphanedir. - http://ftp.acc.umu.se/mirror/gnome.org/sources/libgnome-keyring/3.12/libgnome-keyring-3.12.0.tar.xz + app:console + multimedia.misc + Another library for parsing, editing, and saving EXIF data + EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık + Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. + exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. + Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. + Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. + http://www.exiv2.org/exiv2-0.25.tar.gz - intltool - glib2-devel - dbus-devel - libgcrypt-devel + zlib-devel + expat-devel - desktop/gnome/base/libgnome-keyring/pspec.xml + + exiv2-0.18-deps.patch + + multimedia/misc/exiv2/pspec.xml - libgnome-keyring + exiv2 - libgcrypt - glib2 - dbus + exiv2-libs + + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + exiv2-libs + + zlib + expat + libgcc + + + /usr/lib + + + + exiv2-devel + Development files for exiv2 + exiv2 için geliştirme dosyaları + + exiv2-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-02 + 0.25 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-23 + 0.24 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.23 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libshout + http://www.icecast.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.misc + A library for communicating with and sending data to an icecast server + Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane + Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. + Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. + http://downloads.us.xiph.org/releases/libshout/libshout-2.3.1.tar.gz + + libvorbis-devel + libogg-devel + libtheora-devel + speex-devel + + + pthread_flag.patch + + multimedia/misc/libshout/pspec.xml + + + libshout + + libvorbis + libogg + libtheora + speex + + + /usr/lib + /usr/share/doc + + + + libshout-devel + Development files for libshout + libshout için geliştirme dosyaları + + libshout + libtheora-devel + libvorbis-devel + libogg-devel + speex-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/*.c + + + + + 2014-05-25 + 2.3.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-20 + 2.3.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 2.3.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 2.3.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + zvbi + http://zapping.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.tv + VBI Decoding Library for Zapping + Zapping uygulaması için VBI çözücü kütüphanesi + Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. + Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. + Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. + Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. + mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 + + libpng-devel + libX11-devel + + + zvbi-0.2.31-linkage_fix.diff + zvbi-0.2.7-fix-build.patch + + multimedia/tv/zvbi/pspec.xml + + + zvbi + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc/zvbi + /usr/share/man + /usr/share/locale + + + + zvbi-devel + Development files for zvbi + zvbi için geliştirme dosyaları + + zvbi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/zvbi/html + + + + + 2014-05-27 + 0.2.35 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-16 + 0.2.35 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-11-12 + 0.2.33 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + xawtv + http://linuxtv.org/downloads/xawtv/ + + Erdinc Gultekin + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.tv + TV application + TV uygulaması + xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. + xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. + xawtv + http://linuxtv.org/downloads/xawtv/xawtv-3.103.tar.bz2 + + alsa-lib-devel + aalib-devel + libquicktime-devel + openmotif-devel + zvbi-devel + lirc-devel + libv4l-devel + xorg-font + libXxf86dga-devel + libdv + libXpm-devel + libXrender-devel + libXv-devel + mesa-devel + libXext-devel + libXrandr-devel + libXxf86vm-devel + libXmu-devel + libFS-devel + fontconfig-devel + libXt-devel + libXft-devel + libXaw-devel + zvbi-devel + libXinerama-devel + libSM-devel + libICE-devel + libexplain-devel + libjpeg-turbo-devel + gpm + zlib-devel + libX11-devel + libpng-devel + ncurses-devel + freetype-devel + + + v4l-conf_non-position-independent-executable_fix.patch + xawtv-3.95.patch + + multimedia/tv/xawtv/pspec.xml + + + xawtv + + zvbi + lirc + mesa + aalib + libSM + libdv + libXt + libXv + libXmu + libXaw + libICE + libv4l + libXpm + libXft + libXext + alsa-lib + libXrandr + libXrender + libXxf86vm + fontconfig + libexplain + libXxf86dga + libXinerama + libquicktime + libjpeg-turbo + gpm + zlib + libX11 + libpng + ncurses + freetype + + + /etc + /usr/bin + /usr/lib/xawtv + /usr/share/doc + /usr/share/man + /usr/share/xawtv + /usr/share/applications + /usr/share/pixmaps + + + xawtv.desktop + + + + + 2014-02-17 + 3.103 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-28 + 3.103 + version bump + Erdinc Gultekin + admins@pisilinux.org + + + 2013-07-28 + 3.102_201207 + First release + Erdinc Gultekin + admins@pisilinux.org + + + 2012-11-12 + 3.102_201207 + First release + Erdinc Gultekin + admins@pisilinux.org + + + + + + mlt + http://www.mltframework.org/twiki/bin/view/MLT/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.tv + A multimedia framework, designed and developed for television broadcasting + Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı + MLT is an open source multimedia framework, designed and developed for television broadcasting. + MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. + http://sourceforge.net/projects/mlt/files/mlt/mlt-0.9.8.tar.gz + + alsa-lib-devel + swig + python-devel + glib2-devel + frei0r-plugins-devel + fftw3-devel + jack-audio-connection-kit-devel + qt5-base-devel + qt5-svg-devel + perl + libxml2-devel + libsamplerate-devel + ladspa-sdk-devel + libexif-devel + ffmpeg-devel + sox-devel + + multimedia/tv/mlt/pspec.xml + + + perl-mlt + Perl bindings for MLT + MLT için Perl bağlayıcıları + programming.language.perl + + libgcc + perl + mlt + + + /usr/lib/perl* + + + + python-mlt + Python bindings for MLT + MLT için Python bağlayıcıları + programming.language.python + + libgcc + python + mlt + + + /usr/lib/python* + + + + mlt + + sox + fftw3 + glib2 + ffmpeg + libX11 + libgcc + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libsamplerate + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/mlt + /usr/share/mlt/modules + /usr/share/mlt/modules/lumas/PAL + + + + mlt-devel + Development files for mlt + mlt için geliştirme dosyaları + + mlt + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-11-16 + 0.9.8 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-12-30 + 0.9.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-28 + 0.9.0 + fix build and ver. bump. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 0.8.8 + missing dep.. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-01-29 + 0.8.8 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-18 + 0.8.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + qmmp + http://qmmp.ylsoftware.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + multimedia.sound + An audio-player, written with Qt5 library + Qt tabanlı müzik oynatıcı + Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. + Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. + qmmp + http://qmmp.ylsoftware.com/files/qmmp-1.0.1.tar.bz2 + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + qt5-linguist + libsamplerate-devel + wavpack-devel + flac-devel + faad2-devel + libmodplug-devel + libmms-devel + libcdio-devel + libvorbis-devel + libsndfile-devel + pulseaudio-libs-devel + alsa-lib-devel + mesa-devel + libmad-devel + taglib-devel + ffmpeg-devel + libmpcdec-devel + libcddb-devel + cmake + + multimedia/sound/qmmp/pspec.xml + + + qmmp + + qt5-base + curl + libX11 + libgcc + qt5-x11extras + libsamplerate + wavpack + flac + faad2 + libmodplug + libmms + libvorbis + libsndfile + pulseaudio-libs + alsa-lib + libmad + taglib + ffmpeg + jack-audio-connection-kit + libmpcdec + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + qmmp-devel + qmmp development files + qmmp için geliştirme dosyaları + + qmmp + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/ + + + + + 2015-11-19 + 1.0.1 + Version bump ported to qt5. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-11 + 0.8.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-25 + 0.8.2 + Rebuild for ffmpeg + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-17 + 0.8.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-07-06 + 0.8.0 + Version bump + Nikolay Semenov + tribunal@pisilinux.org + + + 2014-06-04 + 0.7.7 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-30 + 0.7.3 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-10-19 + 0.7.3 + Version Bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-08-30 + 0.7.2 + V.Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-29 + 0.7.1 + missing dep. + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2013-07-27 + 0.7.1 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-08 + 0.7.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-01 + 0.6.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + faac + http://www.audiocoding.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + MPEG-4 audio codecs + Özgür MPEG-4 ses codecleri + Free MPEG-4 audio codecs by AudioCoding.com. + mirrors://sourceforge/faac/faac-1.28.tar.gz + + libmp4v2-devel + + + mp4v2-1.9.patch + mp4v2-2.0.0.patch + altivec.patch + + multimedia/sound/faac/pspec.xml + + + faac + + libmp4v2 + + + /usr/bin + /usr/lib + /usr/share/doc/faac + /usr/share/man + + + + faac-devel + Development files for faac + faac için geliştirme dosyaları + + faac + + + /usr/include + + + + + 2014-12-14 + 1.28 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-20 + 1.28 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-23 + 1.28 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.28 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libvisual + http://libvisual.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + Abstraction library for audio visualisation plugins + Ses canlandırma eklentileri için kütüphane + Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. + libvisual is an abstraction library that comes between applications and audio visualisation plugins. + libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. + Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. + mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 + + disable_altivec.patch + libvisual-0.4.0-inlinedefineconflict.patch + + multimedia/sound/libvisual/pspec.xml + + + libvisual /usr/lib /usr/share/doc @@ -70759,31 +97016,275 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libgnome-keyring-devel - Development files for libgnome-keyring - libgnome-keyring için geliştirme dosyaları + libvisual-32bit + 32-bit shared libraries for libvisual + emul32 + emul32 + + glibc-32bit + - libgnome-keyring + libvisual + glibc-32bit + + + /usr/lib32 + + + + libvisual-devel + Development files for libvisual + libvisual için geliştirme dosyaları + + libvisual + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + + 2014-05-20 + 0.4.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-14 + 0.4.0 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 0.4.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + soundtouch + http://www.surina.net/soundtouch + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + Audio Processing Library + Ses işleme kitaplığı + Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. + soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. + soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. + Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio + http://www.surina.net/soundtouch/soundtouch-1.8.0.tar.gz + multimedia/sound/soundtouch/pspec.xml + + + soundtouch + + /usr/bin + /usr/lib + /usr/share/doc + + + + soundtouch-devel + Development files for soundtouch + soundtouch için geliştirme dosyaları + + soundtouch + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2014-07-05 + 1.8.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-09 + 1.5.0 + Rebuild for buildhost + PisiLinux Community + admins@pisilinux.org + + + 2010-10-12 + 1.5.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libogg + http://www.vorbis.com + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.sound + La librairie pour fichiers au format média Ogg. + The Ogg media file format library + Ogg dosya biçimi kütüphanesi + libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. + libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. + http://downloads.xiph.org/releases/ogg/libogg-1.3.1.tar.xz + multimedia/sound/libogg/pspec.xml + + + libogg + + /usr/lib + /usr/share/doc + + + + libogg-devel + + libogg + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/aclocal + /usr/share/doc/libogg/*html + /usr/share/doc/libogg/*png + /usr/share/doc/libogg/ogg + + + + libogg-32bit + 32-bit shared libraries for libogg + libogg için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libogg + + + /usr/lib32 + + + + + 2014-05-20 + 1.3.1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-16 + 1.3.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-08-31 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + speech-dispatcher + http://www.freebsoft.org/speechd + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + GPLv2 + service + app:console + library + multimedia.sound + speech dispatcher: common interface to speech synthesis + Konuşma sentezi ortak arayüzü + Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). + Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. + http://www.freebsoft.org/pub/projects/speechd/speech-dispatcher-0.8.3.tar.gz + + glib2-devel + libsndfile-devel + dotconf-devel + intltool + gettext-devel + pkgconfig + alsa-lib-devel + pulseaudio-libs-devel + + multimedia/sound/speech-dispatcher/pspec.xml + + + speech-dispatcher + + glib2 + libtool-ltdl + dotconf + libsndfile + alsa-lib + pulseaudio-libs + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /etc/speech-dispatcher + /var/log/speech-dispatcher + /usr/share/speech-dispatcher + + + + speech-dispatcher-devel + Development headers for speech-dispatcher + speech-dispatcher için geliştirme başlıkları + + speech-dispatcher glib2-devel /usr/include - /usr/lib/pkgconfig - - - - libgnome-keyring-docs - Referance documents for libgnome-keyring - libgnome-keyring için başvuru belgeleri - data:doc - - /usr/share/gtk-doc + /usr/lib/pkgconfig/ - 2015-08-25 - 3.12 + 2015-11-22 + 0.8.3 Version bump. Vedat Demir vedat@pisilinux.org @@ -70792,70 +97293,65 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libcroco - http://www.freespiders.org/projects/libcroco/ + libvorbis + http://www.vorbis.com PisiLinux Community admins@pisilinux.org - LGPLv2.1 + BSD library - desktop.gnome.base - Boîte à outils générique d'analyse et de manipulation de Cascading Style Sheet (CSS - feuilles de style). - Generic Cascading Style Sheet (CSS) parsing and manipulation toolkit - CSS ayıklama kitaplığı - libcroco is an effort to build a generic Cascading Style Sheet (CSS) parsing and manipulation toolkit that can be used by GNOME applications in need of CSS support. - libcroco GNOME uygulamaları tarafından CSS desteği için kullanılan genel bir CSS ayıklama kitaplığıdır. - mirrors://gnome/libcroco/0.6/libcroco-0.6.8.tar.xz + multimedia.sound + Librairie de formatage de fichier son Ogg Vorbis libre. + The Vorbis general audio compression codec + Vorbis genel ses sıkıştırma kodlaması + libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. + libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. + http://downloads.xiph.org/releases/vorbis/libvorbis-1.3.4.tar.xz - libxml2-devel - glib2-devel + libogg-devel - - multilib.patch - - desktop/gnome/base/libcroco/pspec.xml + multimedia/sound/libvorbis/pspec.xml - libcroco + libvorbis - glib2 - libxml2 + libogg - /usr/share /usr/lib - /usr/bin + /usr/share/doc/libvorbis/AUTHORS + /usr/share/doc/libvorbis/README - libcroco-devel - Development files for libcroco - libcroco için geliştirme dosyaları + libvorbis-devel - libcroco + libvorbis + libogg-devel /usr/include /usr/lib/pkgconfig /usr/lib32/pkgconfig - /usr/bin/croco-*-config + /usr/share/aclocal + /usr/share/doc/libvorbis - libcroco-32bit - 32-bit shared libraries for libcroco + libvorbis-32bit + 32-bit shared libraries for libvorbis + libvorbis için 32-bit paylaşımlı kitaplıklar emul32 emul32 - glib2-32bit - libxml2-32bit + glibc-32bit + libogg-32bit - glib2-32bit + libvorbis glibc-32bit - libxml2-32bit - libcroco + libogg-32bit /usr/lib32 @@ -70863,22 +97359,22 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2014-08-11 - 0.6.8 - Release bump. + 2014-05-20 + 1.3.4 + Rebuild, cleanup. Serdar Soytetir kaptan@pisilinux.org - 2013-08-26 - 0.6.8 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org + 2014-02-01 + 1.3.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2010-12-22 - 0.6.8 + 2012-08-31 + 1.3.3 First release PisiLinux Community admins@pisilinux.org @@ -70887,627 +97383,8356 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libbonobo - http://www.gnome.org/ + portaudio + http://www.portaudio.com + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.sound + Portable audio library + Ses kütüphanesi + Une API audio multi-plateforme libre. + PortAudio is a free, cross platform, open-source, audio I/O library. + Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi + http://www.portaudio.com/archives/pa_stable_v19_20140130.tgz + + alsa-lib-devel + jack-audio-connection-kit-devel + + multimedia/sound/portaudio/pspec.xml + + + portaudio + + alsa-lib + jack-audio-connection-kit + + + /usr/lib + /usr/share/doc + + + + portaudio-devel + Development files for portaudio + portaudio için geliştirme dosyaları + + portaudio + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/portaudio/html + + + + + 2015-11-21 + 19.20140130 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-06-01 + 19.20140130 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-05 + 19.20140130 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-08-29 + 19 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + faad2 + http://www.audiocoding.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.sound + MPEG2 and MPEG4 AAC decoder + AAC yorumlayıcı + FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. + FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. + mirrors://sourceforge/faac/faad2-2.7.tar.bz2 + + faad2-2.7-libmp4ff-shared-lib.patch + faad2-2.7-man1_MANS.patch + faad2-2.7-libmp4ff-install-mp4ff_int_types_h.patch + + multimedia/sound/faad2/pspec.xml + + + faad2 + + /usr/bin + /usr/lib + /usr/share/doc/faad2 + /usr/share/man + + + + faad2-devel + Development files for faad2 + faad2 için geliştirme dosyaları + + faad2 + + + /usr/include + + + + + 2014-05-20 + 2.7 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-23 + 2.7 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.7 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + flac + http://flac.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + multimedia.sound + An encoder/decoder for the Free Lossless Audio Codec + Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları + flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. + flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. + http://downloads.xiph.org/releases/flac/flac-1.3.1.tar.xz + + libogg-devel + + multimedia/sound/flac/pspec.xml + + + flac + + libogg + libgcc + + + /usr/bin + /usr/lib + /usr/share/man + + + + flac-docs + Documentation for flac + flac ile ilgili belgeler + + flac + + + /usr/share/doc + + + + flac-devel + Development files for flac + flac için geliştirme dosyaları + + libogg-devel + flac + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + flac-32bit + 32-bit shared libraries for flac + flac için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libogg-32bit + glibc-32bit + + + libogg-32bit + libgcc + glibc-32bit + flac + + + /usr/lib32 + + + + + 2014-12-03 + 1.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-21 + 1.3.0 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-16 + 1.3.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2011-03-01 + 1.2.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + wavpack + http://www.wavpack.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + WavPack audio compression tools + WavPack ses sıkıştırma araçları. + WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. + WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. + WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. + http://www.wavpack.com/wavpack-4.75.0.tar.bz2 + multimedia/sound/wavpack/pspec.xml + + + wavpack + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + wavpack-devel + + wavpack + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-20 + 4.75.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-20 + 4.70.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-20 + 4.70.0 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2010-10-12 + 4.60.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + jack-audio-connection-kit + http://jackaudio.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + multimedia.sound + A low-latency audio server + Düşük gecikmeli bir ses sunucu + JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. + GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. + https://dl.dropboxusercontent.com/u/28869550/jack-1.9.10.tar.bz2 + + libsamplerate-devel + alsa-lib-devel + libffado-devel + celt-devel + pkgconfig + eigen3 + libopus-devel + doxygen + libfreebob-devel + libsndfile-devel + readline-devel + + multimedia/sound/jack-audio-connection-kit/pspec.xml + + + jack-audio-connection-kit + + alsa-lib + libsamplerate + libsndfile + libffado + readline + libgcc + celt + libopus + + + /etc/security + /usr/bin + /usr/lib + /usr/share/jack-audio-connection-kit + /usr/share/dbus-1 + /usr/share/doc + + + 99-jack.conf + 40-hpet-permissions.rules + 99-audio.conf + + + + jack-audio-connection-kit-devel + Development files for jack-audio-connection-kit + jack-audio-connection-kit için geliştirme dosyaları + + jack-audio-connection-kit + + + /usr/include + /usr/lib/pkgconfig + + + + jack-audio-connection-kit-docs + Help files and API documents for jack-audio-connection-kit + jack-audio-connection-kit için yardım dosyaları ve API belgeleri + + jack-audio-connection-kit + + + /usr/share/jack-audio-connection-kit/reference + /usr/share/man + + + + + 2015-08-24 + 1.9.10 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + + + + libmikmod + http://mikmod.raphnet.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + A library to play a wide range of module formats + Bir çok modül formatını çalabilen bir kitaplık + libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. + libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. + libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. + libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. + http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.7/libmikmod-3.3.7.tar.gz + + audiofile-devel + alsa-lib-devel + + multimedia/sound/libmikmod/pspec.xml + + + libmikmod + + pulseaudio-libs + + + /usr/lib + /usr/share/doc/libmikmod + /usr/share/info + /usr/share/man + + + + libmikmod-devel + Development files for libmikmod + libmikmod için geliştirme dosyaları + + libmikmod + + + /usr/bin/libmikmod-config + /usr/include + /usr/share/aclocal + + + + libmikmod-32bit + 32-bit shared libraries for libmikmod + libmikmod için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + audiofile-32bit + glibc-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + libmikmod + audiofile-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + /usr/lib32 + + + + + 2015-10-19 + 3.3.7 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2014-05-31 + 3.3.6 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 3.3.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-08-01 + 3.2.0_beta2 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + libsamplerate + http://www.mega-nerd.com/SRC/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.sound + Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). + Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio + libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü + Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. + libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. + http://www.mega-nerd.com/SRC/libsamplerate-0.1.8.tar.gz + + libsndfile-devel + + + dontbuild-tests-examples.patch + + multimedia/sound/libsamplerate/pspec.xml + + + libsamplerate + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libsamplerate-devel + Development files for libsamplerate + libsamplerate için geliştirme dosyaları + libsamplerate için geliştirme dosyaları + + libsamplerate + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 0.1.8 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.1.8 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-10-17 + 0.1.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + twolame + http://www.twolame.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.sound + An optimised MPEG Audio Layer 2 + Optimize edilmiş bir MPEG Ses katman 2 çözücüsü + TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. + TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. + mirrors://sourceforge/twolame/twolame-0.3.13.tar.gz + + libsndfile-devel + + multimedia/sound/twolame/pspec.xml + + + twolame + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc/twolame + /usr/share/man + + + + twolame-devel + Development files for twolame + twolame için geliştirme dosyaları + + twolame + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/twolame/html + + + + + 2014-05-25 + 0.3.13 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-02-17 + 0.3.13 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-26 + 0.3.13 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-28 + 0.3.13 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + libdca + http://developers.videolan.org/libdca.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Library for decoding DTS Coherent Acoustics streams + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. + libdts is a free library for decoding DTS Coherent Acoustics streams. + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts es una librería libre para decodificar flujos acústicos coherentes DTS. + http://download.videolan.org/pub/videolan/libdca/0.0.5/libdca-0.0.5.tar.bz2 + + libdca-0.0.5-cflags.patch + libdca-0.0.5-constant.patch + + multimedia/sound/libdca/pspec.xml + + + libdca + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + libdca-devel + Development files for libdca + libdca için geliştirme dosyaları + + libdca + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.0.5 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-29 + 0.0.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.0.5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + sox + http://sox.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + The swiss army knife of sound processing programs + Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım + SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. + SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. + mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 + + pulseaudio-libs-devel + opencore-amr-devel + libsndfile-devel + ladspa-sdk-devel + libid3tag-devel + libvorbis-devel + alsa-lib-devel + wavpack-devel + libmad-devel + ffmpeg-devel + libogg-devel + libao-devel + lame-devel + gsm-devel + twolame-devel + libgomp + + + sox-dynamic.patch + + multimedia/sound/sox/pspec.xml + + + sox + + gsm + file + lame + libao + libmad + libogg + libgomp + twolame + wavpack + alsa-lib + libvorbis + libsndfile + libtool-ltdl + opencore-amr + pulseaudio-libs + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + + + + sox-devel + Development files for sox + sox için geliştirme dosyaları + + sox + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-11-17 + 14.4.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-02-21 + 14.4.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-02-11 + 14.4.1 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-26 + 14.4.1 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-08-29 + 14.4.1 + missing dep. version bump + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2012-08-28 + 14.4.0 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + libcdaudio + http://libcdaudio.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.sound + A library for controlling CD-ROM devices + CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık + libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. + libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. + mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz + + libcdaudio-0.99.10.config.patch + security-bug-8587.patch + + multimedia/sound/libcdaudio/pspec.xml + + + libcdaudio + + /usr/bin + /usr/lib + /usr/share/doc + + + + libcdaudio-devel + Development files for libcdaudio + libcdaudio için geliştirme dosyaları + + libcdaudio + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2014-05-26 + 0.99.12 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-03-08 + 0.99.12 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.99.12 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lame + http://lame.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + A free MP3 encoder/decoder + MP3 ses çözümleme kütüphanesi + LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. + Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. + mirrors://sourceforge/lame/lame-3.99.5.tar.gz + + ncurses-devel + + multimedia/sound/lame/pspec.xml + + + lame + + ncurses + + + /usr/bin + /usr/lib + /usr/share/man + + + + lame-docs + + /usr/share/doc + + + + lame-devel + Development files for lame + lame için geliştirme dosyaları + + lame + + + /usr/include + /usr/share/man/man3 + + + + + 2014-12-14 + 3.99.5 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 3.99.5 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-29 + 3.99.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-31 + 3.99.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + a52dec + http://liba52.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + DVD ATSC A/52 streams decoder library + DVD'de kullanılan ATSC A/52 akımını çözen kütüphane + liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. + liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. + http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz + + glibc-devel + djbfft-devel + + + a52dec-0.7.4-build.patch + use-djbfft.patch + constant.patch + + multimedia/sound/a52dec/pspec.xml + + + a52dec + + djbfft + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + a52dec-devel + Development files for a52dec + a52dec için geliştirme dosyaları + + a52dec + + + /usr/include + + + + + 2014-05-20 + 0.7.4 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 0.7.4 + some fixes and rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-12 + 0.7.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gsm + http://kbs.cs.tu-berlin.de/~jutta/toast.html + + PisiLinux Community + admins@pisilinux.org + + OSI-Approved + library + multimedia.sound + Lossy speech compression library and tool + Kayıplı ses sıkıştırması kitaplığı ve araçları + Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. + Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding + GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır + Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate + http://osxwinebuilder.googlecode.com/files/gsm-1.0.13.tar.gz + + gsm-1.0.10-dyn.patch + gsm-1.0-pl10-includes.patch + gsm-1.0-pl10-shared.diff + gsm-1.0-pl10-add-includefile.patch + pardusflags.patch + gsm-1.0.12-64bit.patch + + multimedia/sound/gsm/pspec.xml + + + gsm + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + gsm-devel + Development files for gsm + gsm için geliştirme dosyaları + + gsm + + + /usr/include + /usr/share/man/man3 + + + + gsm-32bit + 32-bit shared libraries for gsm + gsm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + gsm + glibc-32bit + + + /usr/lib32 + + + + + 2014-12-14 + 1.0.13 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 1.0.13 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-23 + 1.0.13 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2011-05-04 + 1.0.13 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libmad + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") + "M"peg "A"udio "D"ecoder library + Yüksek kaliteli MPEG ses çözücü kütüphanesi + libmad is an audio decoder library for MPEG based content. + libmad MPEG tabanlı ses çözüm kitaplığıdır. + mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz + + amd64-64bit.diff + libmad-0.15.1b-cflags-O2.patch + libmad-0.15.1b-cflags.patch + + multimedia/sound/libmad/pspec.xml + + + libmad + + /usr/lib + /usr/share/doc + + + + libmad-devel + Development files for libmad + libmad için geliştirme dosyaları + + libmad + + + /usr/include + /usr/lib/pkgconfig + + + mad.pc + + + + + 2014-05-20 + 0.15.1b + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.15.1b + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2010-10-12 + 0.15.1b + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + vorbis-tools + http://www.vorbis.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + multimedia.sound + Tools for using the Ogg Vorbis sound file format + Ogg Vorbis ses dosyaları için araçlar paketi. + This set of tools allow you to play and encode Ogg Vorbis files. + vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. + http://downloads.xiph.org/releases/vorbis/vorbis-tools-1.4.0.tar.gz + + libvorbis-devel + libao-devel + flac-devel + speex-devel + libogg-devel + libkate-devel + curl-devel + + multimedia/sound/vorbis-tools/pspec.xml + + + vorbis-tools + + libvorbis + libao + flac + speex + libogg + libkate + + + /usr/bin + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + + 2014-01-28 + 1.4.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2010-10-12 + 1.4.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + speex + http://www.speex.org/ + + PisiLinux Community + admins@pisilinux.org + + xiph + app:console + multimedia.sound + Audio compression format designed for speech and its converter application + Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları + speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. + speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. + http://downloads.us.xiph.org/releases/speex/speex-1.2rc1.tar.gz + + libogg-devel + + + constant.patch + configure.patch + + multimedia/sound/speex/pspec.xml + + + speex + + libogg + + + /usr/bin + /usr/share/man + /usr/lib + /usr/share/doc + + + + speex-devel + Development files for speex + speex için geliştirme dosyaları + + speex + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + speex-32bit + 32-bit shared libraries for speex + speex için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + speex + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 1.2_rc1 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2011-03-01 + 1.2_rc1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libao + http://www.xiph.org/ao/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + La librairie de rendu (sortie) audio. + The audio output library + Ses çıktısı kütüphanesi + Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. + http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz + + alsa-lib-devel + pulseaudio-libs-devel + + multimedia/sound/libao/pspec.xml + + + libao + + alsa-lib + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libao-devel + Development files for libao + libao için geliştirme dosyaları + + libao + + + /usr/include/ao + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libao/html + + + + + 2014-05-26 + 1.2.0 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 1.1.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-10-14 + 1.1.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-08-31 + 1.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + lash + http://savannah.nongnu.org/projects/lash + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:gui + multimedia.sound + LASH Audio Session Handler + LASH Ses Oturum Yöneticisi + LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. + LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. + lash + http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 + + alsa-lib-devel + gtk2-devel + jack-audio-connection-kit-devel + dmapi-devel + texi2html + + + makefile.patch + docs-Makefile.patch + + multimedia/sound/lash/pspec.xml + + + lash + + alsa-lib + gtk2 + jack-audio-connection-kit + dmapi + libxml2 + libutil-linux + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + + + lash-panel.desktop + + + + lash-devel + Development files for lash + lash için geliştirme dosyaları + + dbus-devel + lash + alsa-lib-devel + libxml2-devel + libutil-linux-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-26 + 0.6.0_rc2 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-02-25 + 0.6.0_rc2 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-08-29 + 0.6.0_rc2 + missing dep,update + Erdinç gültekin + erdincgultekin@pisilinux.org + + + 2012-12-29 + 0.6.0_rc2 + First release + PisiLinux Community + osman.erkan@yandex.xom + + + + + + libmodplug + http://modplug-xmms.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie pour jouer les fichiers son de type MOD. + Library for playing MOD-like music files + MOD-like müzik dosyalarını çalmak için bir kütüphane + libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. + http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.8.5/libmodplug-0.8.8.5.tar.gz + + libgcc + + + libmodplug-0.8.4-timidity-patches.patch + + multimedia/sound/libmodplug/pspec.xml + + + libmodplug + + libgcc + + + /usr/lib + /usr/share/doc + + + + libmodplug-devel + + libmodplug + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.8.8.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 0.8.8.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-31 + 0.8.8.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mpg123 + http://www.mpg123.de/ PisiLinux Community admins@pisilinux.org GPLv2 LGPLv2 - library - desktop.gnome.base - GNOME CORBA framework - GNOME CORBA geliştirme ortamı - Bonobo is a component system based on CORBA, used by the GNOME desktop. - mirrors://gnome/libbonobo/2.32/libbonobo-2.32.1.tar.bz2 + app:console + multimedia.sound + Console MP3 player + Gerçek zamanlı bir mp3 oynatıcı + mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. + mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. + mirrors://sourceforge/mpg123/mpg123-1.22.4.tar.bz2 - orbit2-devel - glib2-devel - libxml2-devel - flex - grep - popt-devel - intltool - perl - gettext-devel - gtk-doc + alsa-lib-devel - - libbonobo-2.32.1-srcdir-macro.patch - libbonobo-multishlib.patch - - desktop/gnome/base/libbonobo/pspec.xml + multimedia/sound/mpg123/pspec.xml - libbonobo + mpg123 - orbit2 - glib2 - libxml2 + alsa-lib + libtool-ltdl - /etc /usr/bin - /usr/sbin - /usr/libexec /usr/lib - /usr/share/man - /usr/share/locale /usr/share/doc - /usr/share/idl + /usr/share/man - libbonobo-devel - Development files for libbonobo - libbonobo için geliştirme dosyaları + mpg123-devel + Development files for mpg123 + mpg123 için geliştirme dosyaları - libbonobo - orbit2-devel - glib2-devel + mpg123 - /usr/lib/pkgconfig /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig - libbonobo-docs - Bonobo referance documents - data:doc + mpg123-32bit + 32-bit shared libraries for mpg123 + mpg123 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + + + mpg123 + glibc-32bit + - /usr/share/gtk-doc + /usr/lib32 + + 2015-11-13 + 1.22.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + - 2014-05-24 - 2.32.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2014-12-03 + 1.21.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-10-29 - 2.32.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-25 + 1.19.0 + Version bump + Kamil Atlı + suvarice@gmail.com - 2013-08-02 - 2.32.1 - Rebuild for RC. - Serdar Soytetir - kaptan@pisilinux.org + 2014-01-08 + 1.17.0 + Version bump + Richard de Bruin + richdb@pisilinux.org - 2013-03-30 - 2.32.1 + 2013-07-06 + 1.15.4 Version bump. Marcin Bojara marcin@pisilinux.org - 2010-10-18 - 2.32.0 + 2012-08-31 + 1.14.4 First release - Burak Çalışkan + Fatih Turgel admins@pisilinux.org - kcharselect - http://utils.kde.org/projects/kcharselect + openal + http://kcat.strangesoft.net/openal.html PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - desktop.kde.utils - A character selector - Bir karakter seçici - 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/applications/15.08.3/src/kcharselect-15.08.3.tar.xz + LGPLv2 + library + multimedia.sound + Open Audio Library is a vendor-neutral API for interactive spatialized audio + Açık ses kütüphanesi + OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). + OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. + OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. + http://kcat.strangesoft.net/openal-releases/openal-soft-1.15.1.tar.bz2 - qt5-base-devel - kdoctools-devel + alsa-lib-devel + pulseaudio-libs-devel cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - mesa-devel - desktop/kde/utils/kcharselect/pspec.xml + + pthread.patch + no-fpuextended.patch + + multimedia/sound/openal/pspec.xml - kcharselect + openal - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kcoreaddons - kconfigwidgets - kwidgetsaddons + alsa-lib - /usr/share/doc /usr/bin - /usr/share + /usr/lib + /usr/share/doc/openal + /usr/share/openal + + + + openal-devel + Development files for openal + openal için geliştirme dosyaları + + openal + pulseaudio + + + /usr/include + /usr/lib/pkgconfig/openal.pc + /usr/lib32/pkgconfig/openal.pc + + + + openal-32bit + 32-bit shared libraries for openal + openal için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + openal + + + /usr/lib32 - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-05-25 + 1.15.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2014-02-01 + 1.15.1 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org - 2014-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org + 2012-08-31 + 1.14 + First release + Fatih Turgel + admins@pisilinux.org - kwalletmanager - http://kde.org/applications/system/kwalletmanager + audiofile + http://www.68k.org/~michael/audiofile/ PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - desktop.kde.utils - 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/applications/15.08.3/src/kwalletmanager-15.08.3.tar.xz + app:console + library + multimedia.sound + An elegant API for accessing audio files + Ses dosyalarına erişim için zarif bir UPA + audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. + audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. + http://audiofile.68k.org/audiofile-0.3.6.tar.gz - qt5-base - kdoctools-devel - cmake - extra-cmake-modules - kcoreaddons-devel - kauth-devel - kwallet-devel - kservice-devel - kcmutils-devel - kdelibs4-support-devel - ki18n-devel - kxmlgui-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - mesa-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel + alsa-lib-devel + flac-devel - desktop/kde/utils/kwalletmanager/pspec.xml + multimedia/sound/audiofile/pspec.xml - kwalletmanager + audiofile - qt5-base - kcmutils - kdelibs4-support - kauth - ki18n - libgcc - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kitemviews - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons + alsa-lib + flac - /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf - /usr/lib - /usr/lib/qt5 - /usr/share/doc /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + audiofile-devel + Development files for audiofile + audiofile için geliştirme dosyaları + + audiofile + + + /usr/bin/audiofile-config + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + audiofile-32bit + 32-bit shared libraries for audiofile + audiofile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + flac-32bit + glibc-32bit + + + alsa-lib-32bit + flac-32bit + audiofile + + + /usr/lib32 + + + + + 2014-05-20 + 0.3.4 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 0.3.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-01-14 + 0.3.4 + First release + Idris Kalp + admins@pisilinux.org + + + + + + pulseaudio + http://pulseaudio.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + GPLv2 + BSD + app:console + library + multimedia.sound + A networked sound server with an advanced plugin system + Gelişmiş eklenti desteğine sahip ağ temelli bir ses sunucusu + pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. + pulseaudio, POSIX ve Win32 sistemler için tasarlanmış, donanım ve uygulamalar arasında gezinen ses verilerinin üzerinde gelişmiş işlemler yapılmasına olanak sağlayan bir ses sunucusudur. + http://freedesktop.org/software/pulseaudio/releases/pulseaudio-6.0.tar.xz + + orc-devel + sbc-devel + fftw3-devel + doxygen + xcb-proto + gtk2-devel + avahi-devel + speex-devel + libSM-devel + libtdb-devel + libICE-devel + libXtst-devel + xcb-util-devel + alsa-lib-devel + libsndfile-devel + libasyncns-devel + libatomic_ops-devel + eudev-devel + dbus-devel + intltool + libcap-devel + json-c-devel + + multimedia/sound/pulseaudio/pspec.xml + + + pulseaudio-libs + Libraries for PulseAudio clients + PulseAudio istemci kitaplığı + + dbus + glib2 + json-c + libX11 + libtdb + libxcb + eudev + libtool-ltdl + orc + sbc + fftw3 + libSM + speex + libICE + libXtst + alsa-lib + avahi-libs + libasyncns + libsndfile + bluez + + + /usr/bin/pa* + /etc/pulse/client.conf + /usr/lib/libpulse.so + /usr/lib/libpulse.so* + /usr/lib/libpulse-simple.so + /usr/lib/libpulse-simple.so* + /usr/lib/pulseaudio/libpulsecommon-* + /usr/lib/libpulse-mainloop-glib.so + /usr/lib/libpulse-mainloop-glib.so* + /usr/lib/pulseaudio/libpulsedsp.* + /usr/lib/pulse/modules + /usr/lib/udev/rules.d + /usr/lib/libpulsecore-*.so + + + + pulseaudio-libs-devel + Development files for pulseaudio-libs + pulseaudio-libs için geliştirme dosyaları + + pulseaudio-libs + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/vala/vapi + /usr/lib/cmake/PulseAudio + + + + pulseaudio-docs + doxygen generated API documentation for PulseAudio + Doxygen tarafından üretilmiş PulseAudio API belgeleri + + /usr/share/doc/pulseaudio/html + + + + pulseaudio + + dbus + libcap + libtool-ltdl + pulseaudio-libs + + + /usr/bin/pulseaudio + /usr/bin/qpaeq + /usr/bin/start-pulseaudio-kde + /usr/bin/esdcompat + /usr/bin/start-pulseaudio-x11 + /usr/lib/pm-utils/sleep.d + /usr/libexec + /usr/lib/pulse-5.0/modules + /etc + /usr/lib/tmpfiles.d/pulseaudio.conf + /lib/udev/rules.d + /usr/share/pulseaudio/alsa-mixer /usr/share /usr/share/icons - /usr/share/applications - /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy - /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service + /var/lib/pulse + /run/pulse + + System.Package + + + pulseaudio.conf + pisilinux/pulseaudio.sysconfig + mandriva/pulseaudio.svg + mandriva/pulseaudio.svg + mandriva/pulseaudio16.png + mandriva/pulseaudio22.png + mandriva/pulseaudio32.png + mandriva/pulseaudio48.png + mandriva/pulseaudio64.png + mandriva/pulseaudio128.png + mandriva/pulseaudio16.png + mandriva/pulseaudio22.png + mandriva/pulseaudio32.png + mandriva/pulseaudio48.png + mandriva/pulseaudio64.png + mandriva/pulseaudio128.png + - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktimer - http://kde.org/applications/utilities/ktimer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A countdown launcher - A countdown launcher - 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/applications/15.08.3/src/ktimer-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kio-devel - kiconthemes-devel - kdbusaddons-devel - knotifications-devel - mesa-devel - - desktop/kde/utils/ktimer/pspec.xml - - ktimer + pulseaudio-libs-32bit + 32-bit shared libraries for pulseaudio-libs + pulseaudio-libs için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + json-c-32bit + dbus-32bit + glib2-32bit + speex-32bit + libcap-32bit + libsndfile-32bit + libtool-ltdl-32bit + glibc-32bit + - qt5-base - kio - ki18n - libgcc - kconfig - kcoreaddons - kdbusaddons - kconfigwidgets - knotifications - kwidgetsaddons + pulseaudio-libs + dbus-32bit + glib2-32bit + libsndfile-32bit + json-c-32bit + glibc-32bit - /usr/share/doc - /usr/bin - /usr/share + /usr/lib32 - - 2015-11-10 - 15.08.3 - Version bump. + + 2015-02-20 + 6.0 + Version bump. Dep fixed + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-07-25 + 5.0 + Rebuild for smplayer + Vedat Demir + vedat@pisilinux.org + + + 2014-05-12 + 5.0 + version bump Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2014-02-14 + 4.0 + add git version + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-11 + 4.0 + Add tmpfiles.con; add updates from git. + Marcin Bojara + marcin@pisilinux.org + - 2015-10-14 - 15.08.2 + 2013-07-06 + 4.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - 2015-09-16 - 15.08.1 - Version bump. + 2013-04-16 + 3.99 + Version bump Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-08-21 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org + 2012-12-18 + 3.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - kfoldersync - http://ur1.ca/hq3ve + sayonara + http://sayonara.luciocarreras.de/index.html - Stefan Gronewold (groni) - groni@pisilinux.org + Pisi Linux Community + admins@pisilinux.org - GPLv2 - system - Folder synchronization and backup tool for KDE - Smart folder comparison, It depends only on KDE Frameworks. - http://kde-apps.org/CONTENT/content-files/164092-kfoldersync-3.0.0.tar.xz + GPLv3 + app:gui + multimedia.sound + Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. + Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. + Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. + Although Sayoanra is considered as a lightweight player, it holds a lot of features to organize even big music collections. + sayonara + http://sayonara-player.com/sw/sayonara-player-r195.tar.gz - extra-cmake-modules - gettext-devel - cmake - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kio-devel - knotifications-devel - kxmlgui-devel qt5-base-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-linguist + gstreamer-next-devel + taglib-devel + libnotify-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-ugly-next + glib2-devel + cmake + gstreamer-next-devel + gst-plugins-base-next-devel - desktop/kde/utils/kfoldersync/pspec.xml + multimedia/sound/sayonara/pspec.xml - kfoldersync - Folder synchronization and backup tool for KDE + sayonara - kcoreaddons - ki18n - kio qt5-base + gst-plugins-bad + gst-plugins-base-next + gst-plugins-good-next + gst-plugins-ugly-next + gstreamer + taglib + libnotify + glib2 libgcc - kconfig - kxmlgui - kitemviews - kdbusaddons - kconfigwidgets - kwidgetsaddons + gstreamer-next + gst-plugins-base-next /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-12-02 - 3.0.0 - Update to stable version - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-11-05 - 3.0.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kcalc - http://kde.org/applications/utilities/kcalc - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A scientific calculator - Bir bilimsel hesap makinesi - 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/applications/15.08.3/src/kcalc-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - gmp-devel - cmake - kconfig-devel - kconfigwidgets-devel - kguiaddons-devel - ki18n-devel - kinit-devel - knotifications-devel - kxmlgui-devel - mesa-devel - - desktop/kde/utils/kcalc/pspec.xml - - - kcalc - - qt5-base - gmp - ki18n - libgcc - kconfig - kxmlgui - kguiaddons - kcoreaddons - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - filelight - http://utils.kde.org/projects/filelight - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - View disk usage information - View disk usage information - 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/applications/15.08.3/src/filelight-15.08.3.tar.xz - - qt5-base-devel - qt5-script-devel - kdoctools-devel - extra-cmake-modules - kio-devel - kparts-devel - solid-devel - kxmlgui-devel - kcoreaddons-devel - ki18n-devel - mesa-devel - docbook-xsl - - desktop/kde/utils/filelight/pspec.xml - - - filelight - - qt5-base - kparts - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - /usr/lib /usr/lib/qt5 - /usr/share/doc - /usr/bin /usr/share - /etc/xdg + /usr/share/pixmaps + /usr/share/applications + /usr/share/doc + + + sayonara.desktop + sayonara.png + + + + + 2015-10-11 + 0.7.1 + Version Bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-09-26 + 0.7.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + celt + http://www.celt-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + multimedia.sound + An audio codec for use in low-delay speech and audio communication + Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği + CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). + CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. + http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz + + libogg-devel + + multimedia/sound/celt/pspec.xml + + + celt + app:console + library + + libogg + + + /usr/bin + /usr/lib + /usr/share/doc + + + + celt-devel + Development files for celt + celt için geliştirme dosyaları + library + + celt + + + /usr/include + /usr/lib/pkgconfig - 2015-11-10 - 15.08.3 + 2014-12-15 + 0.11.3 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-21 + 0.11.3 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-01-20 + 0.11.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-17 + 0.11.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libcanberra + http://0pointer.de/lennart/projects/libcanberra/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + A library for generating event sounds on free desktops + Masaüstü üzerinde bildirim sesleri üretmek için kütüphane + libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. + libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. + http://0pointer.de/lennart/projects/libcanberra/libcanberra-0.30.tar.xz + + libogg-devel + pulseaudio-libs-devel + gstreamer-devel + libvorbis-devel + alsa-lib-devel + glib2-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + eudev-devel + atk-devel + cairo-devel + pango-devel + libogg-devel + libtdb-devel + libvorbis-devel + fontconfig-devel + gstreamer-next-devel + + + fix-pthread.patch + fix-underlinking.patch + + multimedia/sound/libcanberra/pspec.xml + + + libcanberra + + libtdb + libtool-ltdl + glib2 + alsa-lib + libvorbis + pulseaudio-libs + gstreamer-next + + + /usr/lib + /usr/share/doc + /usr/share/gdm + /usr/share/gnome/ + + + + libcanberra-devel + Development files for libcanberra + libcanberra için geliştirme dosyaları + + libcanberra + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + + + + libcanberra-gtk + GTK+ convenience API and utilities for libcanberra + GTK+ için libcanberra araçları ve programlama kitaplığı + + libcanberra + gtk2 + glib2 + libX11 + + + /usr/lib/gtk-2* + /usr/lib/libcanberra-gtk.so* + + + + libcanberra-gtk-devel + Development files for libcanberra-gtk + + libcanberra + libcanberra-devel + gtk2-devel + + + /usr/include/canberra-gtk.h + /usr/lib/pkgconfig/libcanberra-gtk.pc + /usr/share/vala/vapi/libcanberra-gtk.vapi + + + + libcanberra-gtk3-devel + Development files for libcanberra-gtk + + libcanberra-gtk-devel + gtk3-devel + + + /usr/lib/pkgconfig/libcanberra-gtk3.pc + + + + libcanberra-gtk3 + GTK+ convenience API and utilities for libcanberra + + gtk3 + glib2 + eudev + libX11 + libcanberra + + + /usr/lib/gtk-3* + /usr/lib/libcanberra-gtk3* + /usr/share/doc/libcanberra-gtk3 + /usr/bin/canberra-boot + /usr/bin/canberra-gtk-play + + + + + 2015-08-03 + 0.30 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-15 + 0.30 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-07 + 0.29 + Split Package + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-17 + 0.29 + Release Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 0.29 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-31 + 0.29 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libsndfile + http://www.mega-nerd.com/libsndfile/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + A C library for reading and writing files containing sampled sound + Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. + Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. + Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. + Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. + Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. + http://www.mega-nerd.com/libsndfile/files/libsndfile-1.0.25.tar.gz + + flac-devel + libogg-devel + alsa-lib-devel + libvorbis-devel + + + libsndfile-1.0.18-less_strict_tests.patch + libsndfile-1.0.17-regtests-need-sqlite.patch + m4dir.patch + + multimedia/sound/libsndfile/pspec.xml + + + libsndfile + + flac + libogg + alsa-lib + libvorbis + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/octave + + + + libsndfile-devel + Development files for libsndfile + libsndfile için geliştirme dosyaları + + libsndfile + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libsndfile-32bit + 32-bit shared libraries for libsndfile + libsndfile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit + + + glibc-32bit + flac-32bit + alsa-lib-32bit + libogg-32bit + libvorbis-32bit + libsndfile + + + /usr/lib32 + + + + + 2014-05-25 + 1.0.25 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 1.0.25 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-07-17 + 1.0.25 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + fluidsynth + http://fluidsynth.resonance.org/trac + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.sound + A realtime software synthesizer + Gerçek zamanlı bir yazılım birleştirici + FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. + FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. + mirrors://sourceforge/fluidsynth/fluidsynth-1.1.6/fluidsynth-1.1.6.tar.bz2 + + lash-devel + alsa-lib-devel + ladspa-sdk-devel + libsndfile-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel + + multimedia/sound/fluidsynth/pspec.xml + + + fluidsynth + + lash + dbus + glib2 + readline + alsa-lib + ladspa-sdk + libsndfile + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fluidsynth-devel + Development files for fluidsynth + fluidsynth için geliştirme dosyaları + + fluidsynth + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-26 + 1.1.6 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-24 + 1.1.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.1.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmpcdec + http://www.musepack.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + Portable Musepack decoder library + Musepack SV7 kodlama kitaplığı + Librairie de décodage portable Musepack. + Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. + libmpcdec, taşınabilir bir Musepack kodlama kitaplığıdır. + http://files.musepack.net/source/libmpcdec-1.2.6.tar.bz2 + multimedia/sound/libmpcdec/pspec.xml + + + libmpcdec + + /usr/lib + + + + libmpcdec-devel + Development files for libmpcdec + libmpcdec için geliştirme dosyaları + + libmpcdec + + + /usr/include + + + + + 2014-05-20 + 1.2.6 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 1.2.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.2.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + knowthelist + http://qt-apps.org/content/show.php/Knowthelist?content=165335 + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv3 + app:gui + multimedia.sound + Knowthelist the awesome party music player + Knowthelist the awesome party music player + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + knowthelist + https://github.com/knowthelist/knowthelist/archive/v2.3.0.tar.gz + + qt5-base-devel + qt5-xmlpatterns-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-linguist + glib2-devel + alsa-lib-devel + taglib-devel + gstreamer-next-devel + gst-plugins-bad-next-devel + gst-plugins-base-next-devel + + multimedia/sound/knowthelist/pspec.xml + + + knowthelist + + qt5-base + gstreamer-next + taglib + alsa-lib + glib2 + libgcc + + + /usr/bin + /usr/share + /usr/share/applications + /usr/share/icons + /usr/share/doc + + + + + 2015-11-11 + 2.3.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + xvid + http://www.xvid.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + High performance MPEG-4 video de-/encoding solution + Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü + Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. + Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. + Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. + http://downloads.xvid.org/downloads/xvidcore-1.3.3.tar.gz + multimedia/video/xvid/pspec.xml + + + xvid + + /usr/lib + /usr/share/doc/xvid + + + + xvid-devel + + xvid + + + /usr/share/doc/xvid/examples + /usr/include + + + + + 2014-12-14 + 1.3.3 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-10-14 - 15.08.2 - Version bump. + 2014-05-22 + 1.3.2 + Rebuild Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-09-16 - 15.08.1 + 2014-01-17 + 1.3.2 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org + + + 2012-08-29 + 1.3.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-bad-next + http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + A set of GStreamer plug-ins that aren't up to par compared to the rest + GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. + http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-1.4.5.tar.xz + + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + libdvdnav-devel + soundtouch-devel + faac-devel + valgrind + jasper-devel + libdca-devel + gsm-devel + mjpegtools-devel + libdvdnav-devel + libsndfile-devel + DirectFB-devel + libSM-devel + libICE-devel + celt-devel + libdc1394-devel + alsa-lib-devel + libsdl-devel + soundtouch-devel + libtheora-devel + libmodplug-devel + xvid-devel + libdvdread-devel + libvdpau-devel + rtmpdump-devel + schroedinger-devel + gdk-pixbuf-devel + libvo-aacenc-devel + libvo-amrwbenc-devel + + + 02_no-Werror.patch + remove_external_symbols.patch + gst-plugins-bad-0.10.7-wildmidi-timidity.cfg.patch + + multimedia/video/gst-plugins-bad-next/pspec.xml + + + gst-plugins-bad-next + + DirectFB + libdca + libgcc + libxml2 + faac + bzip2 + glib2 + libX11 + gsm + libmodplug + mjpegtools + soundtouch + libdvdnav + libsndfile + libdvdread + libvdpau + schroedinger + gstreamer-next + orc + libvo-aacenc + libvo-amrwbenc + wayland-client + gst-plugins-base-next + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/gstreamer-1.0 + /usr/share/gst-plugins-bad/1.0/ + /usr/share/gtk-doc + /usr/share/gir-1.0/ + /usr/share/doc + + + + gst-plugins-bad-next-devel + Development files for gst-plugins-bad + + gst-plugins-bad-next + gstreamer-next-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-23 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 1.2.3 + Rebuild for webp. + Kamil Atlı + suvarice@gmail.com + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + bump + Osman Erkan + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gst-plugins-good + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. + A set of good-quality plugins for GStreamer + Gstreamer için temel eklentiler paketi + gst-plugins-good contains a set of mature plugins and elements for GStreamer. + http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-0.10.31.tar.bz2 + + gst-plugins-base-devel + gstreamer-devel + cairo-devel + flac-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + libpng-devel + libsoup-devel + libvpx-devel + aalib-devel + libraw1394-devel + pulseaudio-libs-devel + libv4l-devel + libsoup-gnome + speex-devel + gtk2-devel + orc-devel + libXext-devel + valgrind + libXdamage-devel + libXfixes-devel + libXv-devel + libvorbis-devel + libtheora-devel + libogg-devel + libICE-devel + libSM-devel + + + 0001-fix-v4l2_munmap.patch + 0002-clear_DISCONT_flag.patch + 0003-v4l2src-fix.patch + 0004-v4l2object-Don-t-probe-UVC-devices-for-being-interla.patch + 0001-sys-v4l2-Some-blind-compilation-fixes.patch + + multimedia/video/gst-plugins-good/pspec.xml + + + gst-plugins-good + + orc + flac + zlib + speex + libX11 + libpng + libXv + cairo + glib2 + aalib + bzip2 + libv4l + libsoup + libxml2 + libXext + gstreamer + libXfixes + gdk-pixbuf + libXdamage + libjpeg-turbo + libsoup-gnome + pulseaudio-libs + gst-plugins-base + + + /etc/gconf + /usr/bin + /usr/lib + /usr/share/gstreamer-0.10/presets + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + + 2014-05-28 + 0.10.31 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.31 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-0-26 + 0.10.31 + Rebuild + Erdinç Gültekin + admins@pisilinux.org + + + 2013-07-28 + 0.10.31 + missing dep. + Erdinç Gültekin + admins@pisilinux.org + + + 2013-05-09 + 0.10.31 + rebuild for libv4l + Erdinç Gültekin + admins@pisilinux.org + + + 2012-11-09 + 0.10.31 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + crystalhd + http://www.broadcom.com/support/crystal_hd/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + multimedia.video + Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD + Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri + Drivers for Broadcom's BCM70012 and BCM70015 Crystal HD + Broadcom BCM70012 ve BCM70015 için Crystal HD sürücüleri + http://source.pisilinux.org/1.0/crystalhd.tar.xz + multimedia/video/crystalhd/pspec.xml + + + libcrystalhd + Broadcom Crystal HD için kütüphane + + /usr/lib/libcrystalhd.so + /usr/lib/libcrystalhd.so.3 + /usr/lib/libcrystalhd.so.3.6 + /usr/share/doc + + + + libcrystalhd-devel + Broadcom Crystal HD için geliştirici dosyaları + + libcrystalhd + + + /usr/include/libcrystalhd/bc_dts_defs.h + /usr/include/libcrystalhd/bc_dts_types.h + /usr/include/libcrystalhd/libcrystalhd_if.h + /usr/include/libcrystalhd/libcrystalhd_version.h + + + + crystalhd-firmware + Broadcom Crystal HD firmware dosyaları + + /lib/firmware + + + + + 2014-05-20 + 20100703 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-21 + 20100703 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-10-24 + 20100703 + First release + Erdem Artan + erdem.artan@linux.org.tr + + + + + + vo-amrwbenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AMR-WB encoder library + VisualOn AMR-WB encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz + multimedia/video/vo-amrwbenc/pspec.xml + + + vo-amrwbenc + + libvo-amrwbenc + + + /usr/bin/amrwb-enc + + + + libvo-amrwbenc + + /usr/lib + /usr/share/doc + + + + libvo-amrwbenc-devel + + libvo-amrwbenc + + + /usr/include + /usr/lib/pkgconfig/vo-amrwbenc.pc + + + + + 2014-05-27 + 1.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-28 + 1.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-30 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + vo-aacenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AAC encoder library + VisualOn AAC encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download + multimedia/video/vo-aacenc/pspec.xml + + + libvo-aacenc + + /usr/lib + /usr/share/doc + + + + libvo-aacenc-devel + + libvo-aacenc + + + /usr/include + /usr/lib/pkgconfig/vo-aacenc.pc + + + + + 2014-06-18 + 1.3 + Rebuild, remove vo-aacenc binary package. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 1.3 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-30 + 1.1.2 + First release + Erdem Artan + admins@pisilinux.org + + + + + + x264 + http://developers.videolan.org/x264.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H264/AVC encoder + Açık kaynak kodlu H264/AVC çözücü + x264 is a free library for encoding H264/AVC video streams. + x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane + ftp://ftp.videolan.org/pub/videolan/x264/snapshots/x264-snapshot-20141201-2245.tar.bz2 + + yasm-devel + + multimedia/video/x264/pspec.xml + + + x264 + + /usr/bin + /usr/lib + + + + x264-devel + Development files for x264 + x264 için geliştirme dosyaları + + x264 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-12-02 + 2245 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 2245 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-05 + 0.0_20140404 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-17 + 0.0_20130705 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-06 + 0.0_20130705 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2012-09-30 + 0.0_20120929 + First release + Erdem Artan + admins@pisilinux.org + + + + + + gstreamer-next + http://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.video + GStreamer streaming media framework runtime + GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. + http://gstreamer.freedesktop.org/src/gstreamer/gstreamer-1.4.5.tar.xz + + check + valgrind + gobject-introspection-devel + libxml2-devel + ghostscript-devel + + multimedia/video/gstreamer-next/pspec.xml + + + gstreamer-next + + glib2 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/gir-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/locale + /usr/share/man + + + + gstreamer-next-32bit + 32-bit shared libraries for gstreamer + emul32 + emul32 + + glib2-32bit + + + glib2-32bit + glibc-32bit + gstreamer-next + + + /usr/lib32 + + + + gstreamer-next-devel + Development files for gstreamer + + gstreamer-next + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-26 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-11 + 1.2.0 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-ugly-next + http://gstreamer.net/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + Other plugins for gstreamer + GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. + http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-1.4.5.tar.xz + + gst-plugins-base-next-devel + gstreamer-next-devel + x264-devel + lame-devel + opencore-amr-devel + a52dec-devel + libmad-devel + libcdio-devel + libmpeg2-devel + libdvdcss-devel + libid3tag-devel + libdvdread-devel + orc-devel + + multimedia/video/gst-plugins-ugly-next/pspec.xml + + + gst-plugins-ugly-next + + gst-plugins-base-next + gstreamer-next + x264 + glib2 + lame + opencore-amr + a52dec + libmad + libcdio + libmpeg2 + libdvdread + orc + + + /usr/lib/gstreamer-1.0 + /usr/share/doc/ + /usr/share/gtk-doc/html/gst-plugins-ugly-plugins-1.0 + /usr/share/gstreamer-1.0 + /usr/share/locale + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-07 + 1.2.3 + Rebuild for x264. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-23 + 1.2.1 + version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gstreamer + http://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.video + GStreamer streaming media framework runtime + GStreamer ses yayın altyapısı + GStreamer est la librairies principale. Elle contient les entêtes, les fichiers et les éléments centraux. + GStreamer is a streaming media framework, based on graphs of filters which operate on media data. Applications using this library can do anything from real-time sound processing to playing videos, and just about anything else media-related. + gstreamer bir ses yayın altyapısı kütüphanesidir. Bu kütüphaneyi kullanan uygulamalar, gerçek zamanlı ses işleme, görüntü oynatma gibi çokluortam ile ilgili birçok işlem gerçekleştirebilirler. + http://ftp.gnome.org/pub/gnome/sources/gstreamer/0.10/gstreamer-0.10.36.tar.xz + + glib2-devel + gobject-introspection-devel + libxml2-devel + + + wrapper-plugins.patch + bison3.patch + + multimedia/video/gstreamer/pspec.xml + + + gstreamer + + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/gir-1.0 + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + gstreamer-devel + Development files for gstreamer + gstreamer için geliştirme dosyaları + + gstreamer + glib2-devel + gobject-introspection-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + gstreamer-32bit + 32-bit shared libraries for gstreamer + gstreamer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + glibc-32bit + libxml2-32bit + + + gstreamer + glib2-32bit + glibc-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2015-06-26 + 0.10.36 + Rebuild, fixed. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-19 + 0.10.36 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-23 + 0.10.36 + Rebuild for webp + Kamil Atlı + suvarice@gmail.com + + + 2014-02-27 + 0.10.36 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-26 + 0.10.36 + Release Bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-08-20 + 0.10.36 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + schroedinger + http://www.diracvideo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Dirac codec library + Dirac kodek kitaplığı + C-based libraries and GStreamer plugins for the Dirac video codec. + C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri + http://www.diracvideo.org/download/schroedinger/schroedinger-1.0.11.tar.gz + + orc-devel + + + ltmain_as-needed.patch + + multimedia/video/schroedinger/pspec.xml + + + schroedinger + + orc + + + /usr/lib + /usr/share/doc + + + + schroedinger-devel + Development files for schroedinger + schroedinger için geliştirme dosyaları + + schroedinger + orc-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 1.0.11 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-03-10 + 1.0.11 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-29 + 1.0.11 + Rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-07 + 1.0.11 + Rebuild + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 1.0.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + vlc + http://www.videolan.org/vlc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:gui + multimedia.video + VLC media player + VLC çoklu ortam oynatıcısı + Odtwarzacz plików multimedialnych i serwer strumieni + VLC reproductor multimedia + VLC is a famous video player and streamer. + Media oynatıcısı ve yayın dinleyici + VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. + VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia + vlc + http://download.videolan.org/pub/videolan/vlc/2.2.1/vlc-2.2.1.tar.xz + + libcdio + eudev-devel + lua-devel + libgcrypt + xcb-proto + zlib-devel + gtk2-devel + zvbi-devel + faac-devel + flac-devel + lirc-devel + mesa-devel + x265-devel + dbus-devel + avahi-devel + samba-devel + aalib-devel + faad2-devel + speex-devel + libva-devel + libXt-devel + libXv-devel + cairo-devel + util-macros + libxcb-devel + libXau-devel + libtar-devel + libvpx-devel + ffmpeg-devel + libass-devel + libXpm-devel + gnutls-devel + libv4l-devel + libdca-devel + libmtp-devel + libmad-devel + libogg-devel + libsdl-devel + taglib-devel + a52dec-devel + libebml-devel + libxml2-devel + libcddb-devel + libcaca-devel + libXext-devel + librsvg-devel + libcdio-devel + fribidi-devel + libupnp-devel + libkate-devel + freerdp-devel + twolame-devel + minizip-devel + live555-devel + libopus-devel + freetype-devel + libXdmcp-devel + kernel-headers + xcb-util-devel + libmpeg2-devel + alsa-lib-devel + libshout-devel + libdvbpsi-devel + libtheora-devel + libbluray-devel + libgcrypt-devel + libnotify-devel + libssh2-devel + openssl-devel + libvorbis-devel + libdc1394-devel + libid3tag-devel + sdl-image-devel + libmpcdec-devel + libdvdcss-devel + libdvdnav-devel + vcdimager-devel + libraw1394-devel + fluidsynth-devel + libdvdread-devel + fontconfig-devel + libavc1394-devel + libmodplug-devel + libXxf86vm-devel + gdk-pixbuf-devel + libmatroska-devel + libXinerama-devel + schroedinger-devel + crystalhd-firmware + libgpg-error-devel + libvncserver-devel + libsamplerate-devel + libjpeg-turbo-devel + qt5-base-devel + qt5-x11extras-devel + libchromaprint-devel + gstreamer-next-devel + pulseaudio-libs-devel + xcb-util-keysyms-devel + gst-plugins-base-next-devel + + + qt4-select.patch + lc-2.2.0-fix-xcb.patch + vlc-2.2.0-rdp-1.2.0.patch + vlc-2.1.1-desktop.patch + vlc-2.0.4-fix-definition.patch + vlc-2.1.0-TomWij-bisected-PA-broken-underflow.patch + + multimedia/video/vlc/pspec.xml + + + vlc + + qt5-base + qt5-x11extras + libtar + libXpm + fribidi + libXext + minizip + zlib + libX11 + libgcc + freetype + vlc-libs + libXinerama + dejavu-fonts + + + /usr/bin + /usr/lib/vlc/plugins/gui + /usr/share/vlc + /usr/share/applications + /usr/share/icons + /usr/share/kde4/apps/solid/actions + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Package + + + + vlc-lua + Lua scripting for VLC + + lua + vlc-libs + + + /usr/lib/vlc/lua + /usr/lib/vlc/plugins/lua/liblua_plugin.so + + + + vlc-libs + Codec and plugin library files for VLC + vlc için codec ve eklenti kitaplık dosyaları + + libX11 + libgcc + freetype + dbus + zlib + gtk2 + lirc + flac + zvbi + x265 + mesa + libva + faad2 + samba + speex + aalib + cairo + glib2 + eudev + libpng + libxcb + libidn + libmad + libass + gnutls + libdca + libsdl + ffmpeg + a52dec + libmtp + taglib + libogg + libvpx + libxml2 + libssh2 + libcddb + freerdp + libopus + libcaca + twolame + libebml + libcdio + librsvg + live555 + minizip + fribidi + libkate + libupnp + libshout + alsa-lib + libvdpau + libmpeg2 + libdvbpsi + libdc1394 + sdl-image + vcdimager + libbluray + libnotify + libdvdnav + libmpcdec + libtheora + libvorbis + libgcrypt + fontconfig + libraw1394 + fluidsynth + libmodplug + libdvdread + gdk-pixbuf + libavc1394 + libmatroska + schroedinger + libvncserver + libgpg-error + libsamplerate + libjpeg-turbo + gstreamer-next + libchromaprint + pulseaudio-libs + xcb-util-keysyms + crystalhd-firmware + gst-plugins-base-next + + + /usr/lib/libvlc* + /usr/lib/vlc + + + + vlc-devel + Development files for vlc + vlc için geliştirme dosyaları + Pliki nagłówkowe vlc + + vlc-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-01 + 2.2.1 + Version Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-12-15 + 2.1.5 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2014-08-18 + 2.1.5 + Release Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-07-07 + 2.1.5 + Version Bump. + Vedat Demir + vedati@pisilinux.org + + + 2014-06-19 + 2.1.4 + Rebuild for libtar. + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-31 + 2.1.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-07 + 2.1.4 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-23 + 2.1.4 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-05 + 2.1.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-26 + 2.1.1 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-11-16 + 2.1.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-11-10 + 2.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-08-05 + 2.0.8a + V.bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-01 + 2.0.8 + V.bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 2.0.7 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-06-21 + 2.0.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-06-01 + 2.0.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-06-01 + 2.0.6 + Dep Fixed + PisiLinux Community + admins@pisilinux.org + + + 2013-04-11 + 2.0.6 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2012-12-15 + 2.0.5 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gst-plugins-good-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + A set of good-quality plugins for GStreamer + gst-plugins-good contains a set of mature plugins and elements for GStreamer. + http://gstreamer.freedesktop.org/src/gst-plugins-good/gst-plugins-good-1.4.5.tar.xz + + gst-plugins-base-next-devel + pulseaudio-libs-devel + gstreamer-next-devel + libjpeg-turbo-devel + gdk-pixbuf-devel + libraw1394-devel + libXdamage-devel + libXfixes-devel + libsoup-devel + libXext-devel + libv4l-devel + libXv-devel + cairo-devel + aalib-devel + speex-devel + gtk2-devel + flac-devel + orc-devel + + multimedia/video/gst-plugins-good-next/pspec.xml + + + gst-plugins-good-next + + orc + flac + zlib + speex + libX11 + libpng + cairo + glib2 + aalib + bzip2 + libv4l + libXext + libsoup + libXfixes + gdk-pixbuf + libXdamage + libjpeg-turbo + gstreamer-next + pulseaudio-libs + gst-plugins-base-next + + + /etc/gconf + /usr/bin + /usr/lib + /usr/share/gstreamer-1.0/presets + /usr/share/doc + /usr/share/gtk-doc + /usr/share/man + /usr/share/locale + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-23 + 1.2.1 + version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libvpx + http://www.webmproject.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + multimedia.video + WebM VP8 Codec SDK + WebM VP8 geliştirme altyapısı + libvpx is the VP8 development library usually used in WebM and similiar formats. + libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. + http://storage.googleapis.com/downloads.webmproject.org/releases/webm/libvpx-1.4.0.tar.bz2 + + libgcc + + multimedia/video/libvpx/pspec.xml + + + libvpx + + /usr/bin + /usr/lib + /usr/share/doc/libvpx + + + + libvpx-devel + libvpx header files + libvpx için başlık dosyaları + + libvpx + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-07-15 + 1.4.0 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-05-22 + 1.3.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-29 + 1.3.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2014-02-09 + 1.2.0 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-06 + 1.2.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-29 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-libav-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Gstreamer plugin for the libav codec + Gstreamer plugin for the libav codec. + http://gstreamer.freedesktop.org/src/gst-libav/gst-libav-1.4.5.tar.xz + + gst-plugins-base-next-devel + gstreamer-next-devel + liboil-devel + orc-devel + ffmpeg-devel + + multimedia/video/gst-libav-next/pspec.xml + + + gst-libav-next + + gst-plugins-base-next + gstreamer-next + bzip2 + glib2 + ffmpeg + liboil + + + /usr/lib + /usr/share/doc + /usr/share/gtk-doc + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-23 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-26 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-29 + 1.2.1 + Version bump + rebuild for ffmpeg + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-10-14 + 1.2.0 + version bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libquicktime + http://libquicktime.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.video + A library based on quicktime4linux with extensions + quicktime4linux ve eklentileri tabanlı bir kütüphane + Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. + Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. + Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. + Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. + mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz + + mesa-devel + lame-devel + zlib-devel + glib2-devel + libX11-devel + libpng-devel + faac-devel + gtk2-devel + libdv + faad2-devel + libXt-devel + libXv-devel + ffmpeg-devel + libXaw-devel + libXext-devel + alsa-lib-devel + libvorbis-devel + libavc1394-devel + libraw1394-devel + schroedinger-devel + libjpeg-turbo-devel + x264-devel + + + libquicktime-1.2.4+libav-9.patch + libquicktime-1.2.4-ffmpeg2.patch + + multimedia/video/libquicktime/pspec.xml + + + libquicktime + + mesa + lame + zlib + glib2 + libX11 + libpng + faac + gtk2 + libdv + faad2 + libXt + libXv + ffmpeg + libXaw + libXext + alsa-lib + libvorbis + libavc1394 + libraw1394 + schroedinger + libjpeg-turbo + x264 + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + libquicktime-devel + Development files for libquicktime + libquicktime için geliştirme dosyaları + + libquicktime + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2015-11-13 + 1.2.4 + Rebuild version for Pisi 2.0 + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-18 + 1.2.4 + Rebuild version + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-12-16 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2014-04-05 + 1.2.4 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-29 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-11-26 + 1.2.4 + Rebuild for ffmpeg + PisiLinux Community + admins@pisilinux.org + + + 2013-07-08 + 1.2.4 + rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-29 + 1.2.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-base + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Basepack of plugins for gstreamer + Gstreamer için temel eklentiler paketi + Les plug-ins (greffons) de base GStreamer est une collection bien peaufinée et bien maintenues de plug-ins et d'éléments GStreamer, couvrant l'éventail des types d'éléments que quelqu'un pourrait vouloir écrire pour GStreamer. Il contient également des librairies d'aide ainsi que les classes de bases utiles pour l'écriture d'éléments. Un grand nombre de décodeurs, d'encodeurs et de filtres audio et vidéos sont également inclus. + GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. + Bu paket, Gstreamer'ın rahatlıkla genişleyebilmesini sağlayan ve bakımları sürekli yapılan temel eklentileri içerir. Program parçacığı yazmak için yardımcı kütüphaneler ve temel sınıflar da bulunur. + http://ftp.gnome.org/pub/gnome/sources/gst-plugins-base/0.10/gst-plugins-base-0.10.36.tar.xz + + gstreamer-devel + gstreamer-next-devel + pango-devel + libXv-devel + libogg-devel + alsa-lib-devel + libvorbis-devel + libtheora-devel + libvisual-devel + gobject-introspection-devel + orc-devel + libxml2-devel + + multimedia/video/gst-plugins-base/pspec.xml + + + gst-plugins-base + + zlib + glib2 + libX11 + libxml2 + gstreamer + pango + cairo + libXv + libogg + libXext + alsa-lib + libvorbis + libvisual + libtheora + orc + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/gstreamer-0.10 + /usr/lib/libgst* + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/gst-plugins-base + /usr/share/man + /usr/share/locale + + + + gst-plugins-base-32bit + 32-bit shared libraries for gst-plugins-base + emul32 + emul32 + + orc-32bit + zlib-32bit + glib2-32bit + libXv-32bit + cairo-32bit + pango-32bit + libSM-32bit + libogg-32bit + libICE-32bit + libX11-32bit + libxml2-32bit + libXext-32bit + alsa-lib-32bit + gstreamer-32bit + libvorbis-32bit + + + gst-plugins-base + orc-32bit + zlib-32bit + glibc-32bit + glib2-32bit + libXv-32bit + cairo-32bit + pango-32bit + libogg-32bit + libX11-32bit + libxml2-32bit + libXext-32bit + alsa-lib-32bit + gstreamer-32bit + libvorbis-32bit + + + /usr/lib32/gstreamer-0.10 + /usr/lib32/libgst* + + + + gst-plugins-base-devel + Development files for gst-plugins-base + gst-plugins-base için geliştirme dosyaları + + gst-plugins-base + glib2-devel + gstreamer-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/gstreamer*.pc + /usr/share/man/man3 + + + + + 2014-05-20 + 0.10.36 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.36 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-01 + 0.10.36 + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-27 + 0.10.36 + Move pc files to devel pack, rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-07 + 0.10.36 + Rebuild for libcdio-0.90 + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-25 + 0.10.36 + configure fix. + PisiLinux Community + admins@pisilinux.org + + + 2013-02-14 + 0.10.36 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-11-09 + 0.10.36 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmatroska + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Format de conteneur multimédia extensible basé sur EBML. + Extensible multimedia container format based on EBML + EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı + Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). + http://dl.matroska.org/downloads/libmatroska/libmatroska-1.4.2.tar.bz2 + + libebml-devel + + multimedia/video/libmatroska/pspec.xml + + + libmatroska + + libebml + libgcc + + + /usr/lib + /usr/share/doc + + + + libmatroska-devel + Development files for libmatroska + libmatroska için geliştirme dosyaları + + libmatroska + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-08-20 + 1.4.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.4.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-11-16 + 1.4.1 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-08-29 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gst-plugins-ugly + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Other plugins for gstreamer + Gstreamer için diğer eklentiler + les Plug-ins (greffons) Ugly (horribles) de GStreamer est un ensemble de plug-ins de bonne qualité et fonctionnant correctement, mais dont la distribution pose problème. La licence du plug-in ou de librairies nécessaires au plug-in n'est pas forcément tel que l'on aimerait qu'elle soit. Le code peut également être notoirement connu pour présenter un problème patent. + GStreamer Ugly Plug-ins is a set of plug-ins that have good quality and correct functionality, but distributing them might pose problems. The license on either the plugins or the supporting libraries might not be how we'd like. The code might be widely known to present patent problems. + GStreamer Ugly Plug-in'leri kaliteli ve güzel çalışan eklentiler içerir. Fakat bu eklentilerin lisanslarla ilgili sorunları bulunabilir. + http://gstreamer.freedesktop.org/src/gst-plugins-ugly/gst-plugins-ugly-0.10.19.tar.bz2 + + glib2-devel + gstreamer-devel + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + x264-devel + orc-devel + lame-devel + opencore-amr-devel + a52dec-devel + libmad-devel + libcdio-devel + libmpeg2-devel + + + cdio-cd-text-api.patch + opencore-amr.patch + + multimedia/video/gst-plugins-ugly/pspec.xml + + + gst-plugins-ugly + + orc + glib2 + gst-plugins-base + gstreamer + x264 + lame + opencore-amr + a52dec + libmad + libcdio + libmpeg2 + libdvdread + + + /usr/lib/gstreamer-0.10 + /usr/share/doc/gst-plugins-ugly + /usr/share/gstreamer-0.10 + /usr/share/locale + + + + + 2014-05-28 + 0.10.19 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-05 + 0.10.19 + Rebuild for x264 + Marcin Bojara + marcin@pisilinux.org + + + 2014-02-27 + 0.10.19 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-26 + 0.10.19 + Rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 0.10.19 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-07 + 0.10.19 + Rebuild for libcdio and x264 + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-10 + 0.10.19 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmp4v2 + http://code.google.com/p/mp4v2 + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + library + app:console + multimedia.video + MPEG4 library + MPEG4 kütüphanesi + Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. + MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. + Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. + Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. + http://mp4v2.googlecode.com/files/mp4v2-2.0.0.tar.bz2 + + libgcc + + multimedia/video/libmp4v2/pspec.xml + + + libmp4v2 + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/libmp4v2 + /usr/share/man + + + + libmp4v2-devel + Development files for libmp4v2 + libmp4v2 için geliştirme dosyaları + + libmp4v2 + + + /usr/include + + + + + 2014-05-20 + 2.0.0 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-31 + 2.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-11-14 + 2.0.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gst-plugins-bad + http://gstreamer.freedesktop.org/modules/gst-plugins-bad.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + A set of GStreamer plug-ins that aren't up to par compared to the rest + Diğer eklentilerle karşılaştırıldığında çok iyi durumda olmayan gstreamer eklentileri + GStreamer Bad Plug-ins is a set of plug-ins that aren't up to par compared to the rest. They might be close to being good quality, but they're missing something - be it a good code review, some documentation, a set of tests, a real live maintainer, or some actual wide use. + gst-plugins-bad, iyiye yakın kalitede olan ancak gerçek bir geliştirici, belgelendirme, test seti gibi eksikleri bulunan eklentilerdir. + http://gstreamer.freedesktop.org/src/gst-plugins-bad/gst-plugins-bad-0.10.23.tar.bz2 + + gstreamermm-devel + gst-plugins-base-devel + libdvdread-devel + libdvdnav-devel + soundtouch-devel + faac-devel + valgrind + jasper-devel + libdca-devel + gsm-devel + mjpegtools-devel + libdvdnav-devel + libsndfile-devel + DirectFB-devel + libSM-devel + libICE-devel + celt-devel + libdc1394-devel + alsa-lib-devel + libsdl-devel + soundtouch-devel + libtheora-devel + libmodplug-devel + xvid-devel + libdvdread-devel + libvdpau-devel + rtmpdump-devel + schroedinger-devel + gdk-pixbuf-devel + libvo-aacenc-devel + libvo-amrwbenc-devel + + + directfb.patch + + multimedia/video/gst-plugins-bad/pspec.xml + + + gst-plugins-bad + + gst-plugins-base + gstreamer + DirectFB + celt + libdc1394 + libdca + libgcc + libpng + faac + bzip2 + glib2 + jasper + libX11 + gsm + libmodplug + mjpegtools + libsdl + soundtouch + libdvdnav + libsndfile + xvid + libdvdread + libvdpau + schroedinger + orc + libvo-aacenc + libvo-amrwbenc + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/gstreamer-0.10 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/glib-2.0/schemas + + + + gst-plugins-bad-devel + Development files for gst-plugins-bad + gst-plugins-bad için geliştirme dosyaları + + gst-plugins-bad + gstreamer-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2014-05-26 + 0.10.23 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 0.10.23 + Rebuild for mjpegtools + Kamil Atlı + suvarice@gmail.com + + + 2013-10-19 + 0.10.23 + Fix build dependency's. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-10-14 + 0.10.23 + clean build. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-10-14 + 0.10.23 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-28 + 0.10.23 + Dep Fixed. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-05-25 + 0.10.23 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-11-09 + 0.10.23 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libv4l + http://freecode.com/projects/libv4l + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + multimedia.video + V4L wrapper for V4L2 + V4L kitaplığı + Warstwa abstrakcji dla urządzeń video4linux2 + A library to access V4L2 API with V4L1 alike calls. + V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. + libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. + http://linuxtv.org/downloads/v4l-utils/v4l-utils-1.0.1.tar.bz2 + + qt5-base-devel + libjpeg-turbo-devel + glibc-devel + libgcc + + multimedia/video/libv4l/pspec.xml + + + libv4l + + libjpeg-turbo + + + /lib/udev/rules.d + /lib/udev/rc_keymaps + /usr/lib + /usr/share/doc + + + + v4l-utils + Utilities for libv4l + Zbiór narzędzi do urządzeń Video4Linux + + libgcc + libv4l + + + /etc + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/applications + /usr/share/icons + + + + libv4l-devel + Development files for libv4l + libv4l için geliştirme dosyaları + Pliki nagłówkowe bibliotek libv4l + + libv4l + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libv4l/contrib + + + + libv4l-32bit + 32-bit shared libraries for libv4l + libv4l için 32-bit paylaşımlı kitaplıklar + 32-bitowe biblioteki libv4l + emul32 + emul32 + + libjpeg-turbo-32bit + + + libjpeg-turbo-32bit + glibc-32bit + libv4l + + + /usr/lib32 + + + + + 2014-05-20 + 1.0.1 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-20 + 23042013 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-17 + 23042013 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-08-17 + 23042013 + Release Bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 23042013 + missing dep + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-04-23 + 23042013 + bump frome gitsnapshot + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-02-17 + 0.9.3 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-12-03 + 0.8.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + x265 + http://x265.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H265/EVC encoder + Açık kaynak kodlu H265/EVC çözücü + x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. + x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane + https://bitbucket.org/multicoreware/x265/get/1.7.tar.bz2 + + yasm-devel + cmake + + multimedia/video/x265/pspec.xml + + + x265 + + libgcc + + + /usr/bin + /usr/lib + + + + x265-devel + Development files for x265 + x265 için geliştirme dosyaları + + x265 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-23 + 1.7 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-02 + 1.4 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-18 + 1.0 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) + 2014-04-05 + 0.9 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmpeg2 + http://libmpeg2.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams + mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane + libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. + libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. + libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. + http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz + + libmpeg2-0.4.1-use-readelf-for-test.patch + + multimedia/video/libmpeg2/pspec.xml + + + libmpeg2 + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libmpeg2-devel + Development files for libmpeg2 + libmpeg2 için geliştirme dosyaları + + libmpeg2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 0.5.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-31 + 0.5.1 + Rebuild + Stefan Gronewold(groni) groni@pisilinux.org + + 2010-10-12 + 0.5.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdv + http://libdv.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.video + Software codec for dv-format video (camcorders etc) + Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı + Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. + The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. + Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. + El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. + mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz + + libsdl-devel + popt-devel + + + libdv-0.99-2.6.patch + libdv-1.0.0-pic.patch + libdv-1.0.0-dso-linking.patch + libdv-mmxdetect-athlon.patch + + multimedia/video/libdv/pspec.xml + + + libdv + + popt + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdv-devel + Development files for libdv + libdv için geliştirme dosyaları + + libdv + + + /usr/include/libdv + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.0.0 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-29 + 1.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.0.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libtheora + http://www.theora.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.video + Le codec (compresseur / décompresseur) de compression vidéo Theora. + The Theora Video Compression Codec + Theora video sıkıştırma kodlaması + Der Theora Video Kompressions-Codec + libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. + libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. + http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 + + libogg-devel + libvorbis-devel + + + flags.patch + libtheora-1.1.1-libpng16.patch + + multimedia/video/libtheora/pspec.xml + + + libtheora + + libogg + libvorbis + + + /usr/lib + /usr/share/doc + + + + libtheora-32bit + 32-bit shared libraries for libtheora + emul32 + emul32 + + libogg-32bit + glibc-32bit + + + libtheora + libogg-32bit + glibc-32bit + + + /usr/lib32 + + + + libtheora-devel + Development files for libtheora + libtheora için geliştirme dosyaları + + libtheora + libogg-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2014-05-20 + 1.1.1 + Rebuild, add libpng16 patch. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-02-14 + 1.1.1 + Add emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 1.1.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libdvbpsi + http://www.videolan.org/libdvbpsi/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. + Library for MPEG TS/DVB PSI tables decoding and generation + MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık + libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. + libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. + http://download.videolan.org/pub/libdvbpsi/1.1.2/libdvbpsi-1.1.2.tar.bz2 + multimedia/video/libdvbpsi/pspec.xml + + + libdvbpsi + + /usr/lib + /usr/share/doc + + + + libdvbpsi-devel + Development files for libdvbpsi + libdvbpsi için geliştirme dosyaları + + libdvbpsi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-31 + 1.1.2 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-11-20 + 1.1.2 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-08-29 + 0.2.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xine-lib + http://xine.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Librairies centrales pour le lecteur vidéo Xine. + Core libraries for Xine movie player + Xine çokluortam oynatıcısının çekirdek kitaplıkları + This package contains the Xine library. It can be used to play back various media, decode multimedia files from local disk drives, and display multimedia streamed over the Internet. It interprets many of the most common multimedia formats available - and some uncommon formats, too. + xine-lib çeşitli medyaları oynatmak, farklı medya yapılarını birbirine dönüştürmek, Internet üzerinden yayınları işleyip göstermek gibi işlevleri olan bir çokluortam kitaplığıdır. Yaygın çokluortam yapılarının çoğunu desteklediği gibi fazla yaygın olmayan yapıları da desteklemektedir. + http://sourceforge.net/projects/xine/files/xine-lib/1.2.6/xine-lib-1.2.6.tar.xz + + accel_vaapi.h + + + libXext-devel + fontconfig-devel + freetype-devel + zlib-devel + libXinerama-devel + libXv-devel + libXvMC-devel + libogg-devel + libvorbis-devel + mesa-devel + libdvdcss-devel + DirectFB-devel + flac-devel + libsdl-devel + alsa-lib-devel + aalib-devel + libtheora-devel + libvpx-devel + samba-devel + libmad-devel + speex-devel + libmodplug-devel + ffmpeg-devel + a52dec-devel + libv4l-devel + pulseaudio-libs-devel + libdca-devel + libbluray-devel + libmng-devel + libSM-devel + libICE-devel + libcdio-devel + mesa-glu-devel + libvdpau-devel + + + list.patch + multilib.patch + no_autopoint.patch + dmo.patch + tr_segfault_fix.patch + deepbind.patch + lpthread.patch + + multimedia/video/xine-lib/pspec.xml + + + xine-lib + + mesa + zlib + flac + speex + aalib + libXv + libmad + a52dec + libdca + libsdl + libogg + libv4l + ffmpeg + libX11 + libXvMC + libXext + libvpx + libxcb + alsa-lib + freetype + DirectFB + libvdpau + mesa-glu + libtheora + libbluray + libvorbis + fontconfig + libmodplug + pulseaudio-libs + + + /usr/bin + /usr/lib + /usr/share/xine + /usr/share/xine-lib/fonts + /usr/share/man + /usr/share/doc/xine-lib + + + + xine-lib-devel + Development files for xine-lib + xine-lib için geliştirme dosyaları + xine-lib için geliştirme dosyaları + + xine-lib + + + /usr/bin/xine-config + /usr/lib/pkgconfig + /usr/include + /usr/share/aclocal + + + + + 2014-07-07 + 1.2.6 + Rebuild for ffmpeg + Kamil Atlı + suvari@pisilinux.org + + + 2014-07-07 + 1.2.6 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-20 + 1.2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-20 + 1.2.3 + Fix unneeded dependencies, remove DirectBD-devel from runtime deps. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-11-30 + 1.2.3 + Rebuild for ffmpeg. + PisiLinux Community + admins@pisilinux.org + + + 2013-10-14 + 1.2.3 + rebuild for DirectFB. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-07 + 1.2.3 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-30 + 1.2.2 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + gst-plugins-base-next + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Basepack of plugins for gstreamer + GStreamer base plugins are a well-groomed and well-maintained collection of GStreamer plugins and elements, spanning the range of possible types of elements one would want to write for GStreamer. It also contains helper libraries and base classes useful for writing elements. A wide range of video and audio decoders, encoders, and filters are included. + http://gstreamer.freedesktop.org/src/gst-plugins-base/gst-plugins-base-1.4.5.tar.xz + + gstreamer-next-devel + cdparanoia + pango-devel + cairo-devel + libXv-devel + libogg-devel + libXext-devel + alsa-lib-devel + libvorbis-devel + libtheora-devel + libvisual-devel + gobject-introspection-devel + orc-devel + + multimedia/video/gst-plugins-base-next/pspec.xml + + + gst-plugins-base-next + + zlib + glib2 + libX11 + gstreamer-next + cdparanoia + pango + cairo + libXv + libogg + libXext + alsa-lib + libvorbis + libvisual + libtheora + orc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gtk-doc + /usr/share/gir-1.0 + /usr/share/man + /usr/share/locale + /usr/share/gst-plugins-base/1.0 + + + + gst-plugins-base-next-devel + Development files for gst-plugins-base + + gst-plugins-base-next + gstreamer-next-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-04-18 + 1.4.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-08-22 + 1.4.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-28 + 1.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-14 + 1.2.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-20 + 1.2.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-14 + 1.2 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-08-30 + 1.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gstreamer-vaapi + http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ + + Osman Erkan + osman.erkan@pisilinux.org + + LGPLv2.1 + library + multimedia.video + GStreamer Multimedia Framework VA Plugins + gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. + http://freedesktop.org/software/vaapi/releases/gstreamer-vaapi/gstreamer-vaapi-0.6.0.tar.bz2 + + mesa-devel + libva-devel + libdrm-devel + wayland-devel + gstreamer-devel + libXrandr-devel + libXrender-devel + gstreamer-next-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gst-plugins-bad-next-devel + gst-plugins-base-next-devel + + multimedia/video/gstreamer-vaapi/pspec.xml + + + gstreamer-vaapi + + mesa + libva + libdrm + gstreamer + libXrandr + libXrender + wayland-client + gst-plugins-bad + gst-plugins-base + + + /usr/share/doc + /usr/lib/gstreamer-0.10/ + /usr/lib/libgstvaapi*0.10* + + + + gstreamer-vaapi-next + GStreamer-next Multimedia Framework VA Plugins. + + mesa + libva + libdrm + libXrandr + libXrender + gstreamer-next + wayland-client + gst-plugins-bad-next + gst-plugins-base-next + + + /usr/lib/gstreamer-1.0/ + /usr/lib/libgstcodecparsers_vpx* + /usr/lib/libgstvaapi*1.4* + + + + gstreamer-vaapi-devel + Development files for gstreamer-vaapi + gstreamer için geliştirme dosyaları + + libva-devel + gstreamer-devel + gstreamer-vaapi + + + /usr/include/gstreamer-1.0/gst/vaapi/ + /usr/lib/pkgconfig/gstreamer-*0.10* + + + + gstreamer-vaapi-next-devel + Development files for gstreamer-vaapi-next + + libva-devel + gstreamer-next-devel + gstreamer-vaapi-next + + + /usr/include/gstreamer-1.4/ + /usr/lib/pkgconfig/gstreamer-vaapi-wayland-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-x11-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-1.0.pc + /usr/lib/pkgconfig/gstreamer-vaapi-glx-1.0.pc + + + + + 2015-07-23 + 0.6.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-28 + 0.5.8 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-04-24 + 0.5.8 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + opencore-amr + http://opencore-amr.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + multimedia.video + AMR speech codec implementation + AMR ses kodek sistemi + Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. + Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. + http://sourceforge.net/projects/opencore-amr/files/opencore-amr/opencore-amr-0.1.3.tar.gz + multimedia/video/opencore-amr/pspec.xml + + + opencore-amr + + /usr/lib + /usr/share/doc/opencore-amr + + + + opencore-amr-devel + Development files for opencore-amr + opencore-amr için geliştirme dosyaları + + opencore-amr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.1.3 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-01 + 0.1.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-08-29 + 0.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ffmpeg + http://ffmpeg.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + LGPLv2 + LGPLv3 + app:console + multimedia.video + A command-line tool to record, convert and stream audio and video + FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu + FFmpeg is a complete solution to record, convert and stream audio and video. + FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. + http://ffmpeg.org/releases/ffmpeg-2.7.2.tar.bz2 + + freetype-devel + faac-devel + lame-devel + x264-devel + x265-devel + libva-devel + libsdl-devel + libvpx-devel + libass-devel + libopus-devel + alsa-lib-devel + libvdpau-devel + libtheora-devel + libvorbis-devel + gnutls-devel + celt-devel + gsm-devel + libbluray-devel + opencore-amr-devel + libmodplug-devel + pulseaudio-libs-devel + openjpeg-devel + frei0r-plugins-devel + rtmpdump-devel + schroedinger-devel + speex-devel + libv4l-devel + libvo-amrwbenc-devel + libvo-aacenc-devel + xvid-devel + libdc1394-devel + libnut-devel + libcdio-paranoia-devel + libXv-devel + + multimedia/video/ffmpeg/pspec.xml + + + ffmpeg + + gsm + celt + faac + lame + x264 + x265 + xvid + zlib + bzip2 + speex + libva + libXv + gnutls + libX11 + libnut + libsdl + libv4l + libvpx + libxcb + libass + libopus + libXext + alsa-lib + freetype + libvdpau + openjpeg + rtmpdump + libbluray + libdc1394 + libtheora + libvorbis + fontconfig + libmodplug + libvo-aacenc + opencore-amr + schroedinger + libvo-amrwbenc + pulseaudio-libs + libcdio-paranoia + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/ffmpeg + + + + ffmpeg-devel + Development files for ffmpeg + ffmpeg için geliştirme dosyaları + Pliki nagłówkowe ffmpeg + + ffmpeg + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-07-29 + 2.7.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-13 + 2.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-05 + 2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-06-24 + 2.2.4 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-06-04 + 2.2.3 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-21 + 2.2.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-04-05 + 2.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-27 + 2.1.1 + fix dep + Kamil Atlı + suvarice@gmail.com + + + 2013-11-24 + 2.1.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-07-28 + 1.2.1 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2013-07-06 + 1.2.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-01-25 + 1.1.1 + Fixed. + PisiLinux Community + admins@pisilinux.org + + + 2013-01-26 + 1.1.1 + Version bump to 1.1.1 + Idris Kalp + admins@pisilinux.org + + + 2012-09-29 + 1.0 + First release + Erdem Artan + admins@pisilinux.org + + + + + + gstreamermm + http://gstreamer.freedesktop.org/bindings/cplusplus.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + GStreamer C++ bindings + Gstreamer C++ arayüzü + The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. + Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. + http://ftp.gnome.org/pub/gnome/sources/gstreamermm/0.10/gstreamermm-0.10.11.tar.xz + + glib2-devel + gstreamer-devel + libxml2-devel + gst-plugins-base-devel + glibmm-devel + libxmlpp-devel + libsigc++ + libgcc + + multimedia/video/gstreamermm/pspec.xml + + + gstreamermm + + glib2 + libgcc + libxml2 + gstreamer + gst-plugins-base + glibmm + libxmlpp + libsigc++ + + + /usr/lib + /usr/share/devhelp/books/gstreamermm-0.10 + /usr/share/doc + + + + gstreamermm-devel + gstreamermm için geliştirme dosyaları + gstreamermm için geliştirme dosyaları + + glibmm-devel + libxmlpp-devel + gstreamer-devel + gst-plugins-base-devel + gstreamermm + + + /usr/include/gstreamermm-0.10 + /usr/lib/pkgconfig + + + + + 2014-05-28 + 0.10.11 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-27 + 0.10.11 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-26 + 0.10.11 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-08-08 + 0.10.11 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vokoscreen + http://www.kohaupt-online.de/hp/ + + Pisilinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.video + New desktop recording program + Yeni masaüstü kayıt programı + Vokoscreen is a new application you to record your desktop. It’s very simple and it uses a minimalistic GUI + Vokoscreen masaüstü kaydetmek için yeni bir uygulamadır.Çok basit kullanışlı bir arayüz sunar. + vokoscreen + https://github.com/vkohaupt/vokoscreen/archive/2.4.3-beta.tar.gz + + qt5-base-devel + qt5-x11extras-devel + qt5-linguist + qt5-qdbusviewer + libv4l-devel + ffmpeg-devel + opencv-devel + alsa-lib-devel + libX11-devel + opencv-devel + pkgconfig + + + qtlocalpeer.patch + datastream.patch + + multimedia/video/vokoscreen/pspec.xml + + + vokoscreen + + libX11 + libgcc + libv4l + qt5-base + qt5-x11extras + alsa-lib + + + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/man + /usr/share/pixmaps + + + + + 2015-11-15 + 2.4.6 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-08-13 + 2.4.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + smpeg + http://www.lokigames.com/development/smpeg.php3 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:gui + multimedia.video + SDL MPEG kitaplığı + SDL MPEG + SDL MPEG library + SMPEG is a SDL MPEG decoding library. + SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. + http://source.pisilinux.org/1.0/smpeg-0.4.5.tar.xz + + libsdl-devel + freeglut-devel + mesa-devel + mesa-glu-devel + + + smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff + smpeg-0.4.5-fix-header.patch + smpeg-0.4.5-libsupc++.patch + smpeg-0.4.5-link.patch + + multimedia/video/smpeg/pspec.xml + + + smpeg + + libsdl + mesa + mesa-glu + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + smpeg-devel + Development files for smpeg + smpeg için geliştirme dosyaları + + smpeg + + + /usr/bin/smpeg-config + /usr/include + /usr/share/aclocal + + + + smpeg-32bit + 32-bit shared libraries for smpeg + smpeg için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + freeglut-32bit + mesa-32bit + libsdl-32bit + mesa-glu-32bit + + + smpeg + libsdl-32bit + + + /usr/lib32 + + + + + 2014-06-01 + 0.4.5 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 0.4.5 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-31 + 0.4.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-29 + 0.4.4 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-12-30 + 0.4.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + mkvtoolnix + http://www.bunkus.org/videotools/mkvtoolnix/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + multimedia.converter + A set of tools to create, alter and inspect Matroska files + Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar + MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. + mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. + mmg + https://www.bunkus.org/videotools/mkvtoolnix/sources/mkvtoolnix-8.5.2.tar.xz + + qt5-base-devel + zlib-devel + ruby-devel + flac-devel + boost-devel + libogg-devel + libebml-devel + libvorbis-devel + libmatroska-devel + file + imagemagick-devel + + multimedia/converter/mkvtoolnix/pspec.xml + + + mkvtoolnix + + flac + boost + libogg + file + libvorbis + zlib + qt5-base + libgcc + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/pixmaps + /usr/share/mkvtoolnix + /usr/share/applications + /usr/share/locale + + + + + 2015-11-08 + 8.5.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-01-21 + 7.5.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-19 + 7.4.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-10-29 + 7.3.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-05 + 7.2.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-05-28 + 6.9.1 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-18 + 6.7.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-11-14 + 6.5.0 + v. bump rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 6.2.0 + add missing dep. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-09 + 6.2.0 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-27 + 5.7.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + vcdimager + http://www.vcdimager.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.converter + VCD and SVCD image file maker and converter + VCD ve SVDC görüntü dosyası oluşturucu ve çevirici + VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. + VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. + http://ftp.gnu.org/gnu/vcdimager/vcdimager-0.7.24.tar.gz + + libcdio-devel + popt + + multimedia/converter/vcdimager/pspec.xml + + + vcdimager + + libcdio + popt + libxml2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + vcdimager-devel + Development files for vcdimager + vcdimager için geliştirme dosyaları + + vcdimager + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-20 + 0.7.24 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-02-17 + 0.7.24 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-28 + 0.7.24 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2013-07-08 + 0.7.24 + rebuild + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-27 + 0.7.24 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libnut + http://www.nut-container.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.converter + NUT container tools and library + NUT dosya biçemi kitaplığı ve araçları + Library and tools to work with NUT multimedia files. + libnut NUT çokluortam sistemini kullanmak ve düzenlemek için gerekli olan kitaplıkları ve araçları içerir. + http://source.pisilinux.org/1.0/libnut-661.tar.bz2 + + shared.patch + + multimedia/converter/libnut/pspec.xml + + + libnut + + /usr/bin + /usr/lib + /usr/share/doc + + + + libnut-devel + Development files for libnut + libnut için geliştirme dosyaları + + libnut + + + /usr/include + + + + + 2014-05-22 + 0.0_661 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-01 + 0.0_661 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.0_661 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + netpbm + http://netpbm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + A set of utilities to convert to/from the netpbm (and related) formats + Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi + Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. + http://source.pisilinux.org/1.0/netpbm-10.61.02.tar.gz + + config.mk + + + jasper-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + zlib-devel + libX11-devel + libxml2-devel + + + netpbm-CAN-2005-2471.patch + netpbm-security-code.patch + netpbm-security-scripts.patch + library-link.patch + + multimedia/graphics/netpbm/pspec.xml + + + netpbm + + jasper + tiff + libpng + libjpeg-turbo + zlib + libX11 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/netpbm + /usr/share/man + /usr/share/doc + + + + netpbm-devel + Development files for netpbm + netpbm için geliştirme dosyaları + + netpbm + + + /usr/include + /usr/share/man/man3 + + + + + 2015-02-21 + 10.61.02 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-05-17 + 10.61.02 + Library link fixed + Ertan Güven + ertan@pisilinux.org + + + 2013-05-15 + 10.61.02 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2012-08-29 + 10.57.06 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + tiff + http://www.remotesensing.org/libtiff/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Library for manipulation of TIFF (Tag Image File Format) images + TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane + Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. + This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. + Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. + Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. + Biblioteka do manipulacji plikami w formacie TIFF. + ftp://ftp.remotesensing.org/pub/libtiff/tiff-4.0.3.tar.gz + + libjpeg-turbo-devel + jbigkit-devel + + multimedia/graphics/tiff/pspec.xml + + + tiff + + libjpeg-turbo + jbigkit + + + /usr/bin + /usr/lib + + + + tiff-devel + Developement files for tiff + tiff için geliştirme dosyaları + + tiff + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + tiff-docs + Documentation for tiff + tiff için belgelendirme dosyaları + + tiff + + + /usr/share/doc + /usr/share/man + + + + tiff-32bit + 32-bit shared libraries for tiff + tiff için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libjpeg-turbo-32bit + + + tiff + libjpeg-turbo-32bit + glibc-32bit + libgcc + + + /usr/lib32 + + + + + 2014-05-19 + 4.0.3 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-08 + 4.0.3 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-07-26 + 4.0.3 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2012-08-29 + 4.0.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + webp + http://code.google.com/p/webp/downloads/list + + PisiLinux Community + admins@pisilinux.org + + Copyright (c) 2010, Google Inc. All rights reserved. + application + multimedia.graphics + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + http://downloads.webmproject.org/releases/webp/libwebp-0.4.3.tar.gz + + mesa-devel + mesa-glu-devel + libpng-devel + tiff-devel + giflib-devel + freeglut-devel + libjpeg-turbo-devel + + multimedia/graphics/webp/pspec.xml + + + webp + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + + tiff + mesa + giflib + libpng + freeglut + libjpeg-turbo + + + /usr/lib/libwebp* + /usr/bin + /usr/share/man + /usr/share/doc/webp + + + + webp-devel + webp için geliştirme dosyaları + + webp + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-04-06 + 0.4.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-21 + 0.4.0 + rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-04-21 + 0.4.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-25 + 0.3.1 + rebuild for unused + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-19 + 0.3.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-12-11 + 0.2.1 + First release + can + qazsew@mynet.com + + + + + + mjpegtools + http://mjpeg.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + Tools for MJPEG video + MJPEG video dosyaları için kullanılabilecek araçlar + mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. + Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. + http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download + + gtk2-devel + libdv-devel + libsdl-devel + libXxf86dga-devel + libjpeg-turbo-devel + libpng-devel + + multimedia/graphics/mjpegtools/pspec.xml + + + mjpegtools + + gtk2 + glib2 + libdv + libgcc + libsdl + libjpeg-turbo + libpng + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + mjpegtools-devel + Development files for mjpegtools + mjpegtools için geliştirme dosyaları + + mjpegtools + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2014-06-10 + 2.1.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-26 + 2.1.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-13 + 2.1.0 + Version bump + Kamil Atlı + suvarice@gmail.com + + + 2012-10-07 + 2.0.1_rc1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + gegl + http://gegl.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + LGPLv3+ + library + app:console + multimedia.graphics + A graph based image processing framework + Graf tabanlı resim işleme altyapısı + gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. + gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. + http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.0.tar.bz2 + + libspiro-devel + openexr-devel + ffmpeg-devel + libsdl-devel + libv4l-devel + jasper-devel + cairo-devel + pango-devel + exiv2-devel + babl-devel + libjpeg-turbo-devel + gtk2-devel + lua-devel + asciidoc + intltool + ruby + ilmbase-devel + + + gegl-0.2.0-cve-2012-4433-1e92e523.patch + gegl-0.2.0-cve-2012-4433-4757cdf7.patch + gegl-0.2.0-ffmpeg-0.11.patch + + multimedia/graphics/gegl/pspec.xml + + + gegl + + glib2 + gdk-pixbuf + libspiro + jasper + libpng + libsdl + cairo + pango + babl + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale/ + + + + gegl-devel + Development files for gegl + gegl için geliştirme dosyaları + + gegl + glib2-devel + babl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc/html + + + + + 2014-12-20 + 0.2.0 + Rebuild for lua + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 0.2.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-31 + 0.2.0 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-11-29 + 0.2.0 + rebuild for ffmpeg + Kamil Atlı + suvarice@gmail.com + + + 2013-08-23 + 0.2.0 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-20 + 0.2.0 + Configure parameter fixed + Ertan Güven + ertan@pisilinux.org + + + 2012-12-08 + 0.2.0 + First release + marcin bojara + marcin@pisilinux.org + + + + + + openimageio + https://sites.google.com/site/openimageio/home + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics + Library for reading and writing images + Görüntüleri okuma ve yazma için bir kütüphane + OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. + https://github.com/OpenImageIO/oiio/archive/Release-1.5.20.tar.gz + + cmake + boost-devel + openexr-devel + ilmbase-devel + glew-devel + python-devel + txt2man + libpng-devel + tiff-devel + webp-devel + ffmpeg-devel + opencv-devel + freetype-devel + giflib-devel + zlib-devel + jasper-devel + libraw-devel + openjpeg-devel + libjpeg-turbo-devel + + multimedia/graphics/openimageio/pspec.xml + + + openimageio + + tiff + webp + boost + opencv + giflib + ilmbase + openjpeg + openexr-libs + libjpeg-turbo + libraw + zlib + ffmpeg + libpng + python + freetype + libgcc + + + /usr/lib + /usr/bin + /usr/share + + + + openimageio-devel + Development files for openimageio + openimageio için geliştirme başlıkları + + openimageio + tiff-devel + webp-devel + boost-devel + opencv-devel + giflib-devel + ilmbase-devel + openjpeg-devel + openexr-devel + libjpeg-turbo-devel + libraw-devel + zlib-devel + ffmpeg-devel + libpng-devel + python-devel + freetype-devel + + + /usr/include + + + + + 2015-11-06 + 1.5.20 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-09-14 + 1.5.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-12-30 + 1.4.15 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-25 + 1.4.8 + Version bump. + Kamil Atlı + suvarice@gmail.com + + + 2014-04-23 + 1.3.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-20 + 1.3.11 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-11 + 1.2.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 1.1.20130123 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-01-25 + 1.1.20130123 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + giflib + http://sourceforge.net/projects/giflib + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.graphics + Library to handle, display and manipulate GIF images + GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık + libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. + The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. + libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. + mirrors://sourceforge/giflib/giflib-5.0.6.tar.bz2 + multimedia/graphics/giflib/pspec.xml + + + giflib + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + giflib-devel + + giflib + + + /usr/include + /usr/share/doc/giflib/html + + + + giflib-32bit + 32-bit shared libraries for giflib + emul32 + emul32 + + glibc-32bit + + + giflib + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-20 + 5.0.6 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 5.0.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-31 + 4.1.6 + missing dep. + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2011-05-03 + 4.1.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + aalib + http://aa-project.sourceforge.net/aalib/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + An ASCII-graphics Library + Bir ASCII-grafik Kitaplığı + Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. + Aalib is an ASCII-graphics library generating ASCII character outputs. + AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. + Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. + mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz + + gpm + ncurses-devel + + + m4.patch + + multimedia/graphics/aalib/pspec.xml + + + aalib + + gpm + ncurses + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + aalib-devel + Development files for aalib + aalib için geliştirme dosyaları + + aalib + + + /usr/share/aclocal + /usr/include + /usr/share/man/man3 + + + + + 2014-05-20 + 1.4_rc5 + Rebuild, cleanup, fix gpm linking. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-16 + 1.4_rc5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-12-20 + 1.4_rc5 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + imlib2 + http://enlightenment.org/Libraries/Imlib2 + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.graphics + Second version of the general image loading and rendering library + Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu + Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. + Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. + Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. + Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. + http://sourceforge.net/projects/enlightenment/files/imlib2-src/1.4.6/imlib2-1.4.6.tar.gz + + giflib-devel + libid3tag-devel + libXext-devel + libjpeg-turbo-devel + tiff-devel + freetype-devel + + + imlib2-1.4.5-no-my-libs.patch + imlib2-giflib5.patch + + multimedia/graphics/imlib2/pspec.xml + + + imlib2 + + giflib + libid3tag + libXext + libjpeg-turbo + tiff + zlib + bzip2 + libX11 + libpng + freetype + + + /usr/bin + /usr/lib + /usr/share/imlib2 + /usr/share/doc + + + + imlib2-devel + Development files for imlib2 + imlib2 için geliştirme dosyaları + + imlib2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-25 + 1.4.6 + Fix build. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-21 + 1.4.6 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2014-01-26 + 1.4.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 1.4.5 + First release + PisiLinux Community + namsp-01@hotmail.it + + + + + + libart_lgpl + http://www.levien.com/libart + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.graphics + A LGPL version of libart + libart'ın bir LGPL sürümü + Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. + Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. + Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. +  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. + http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 + + noartconfig.patch + libart_lgpl-2.3.21-crosscompile.patch + libart_lgpl-2.3.21-no-test-build.patch + + multimedia/graphics/libart_lgpl/pspec.xml + + + libart_lgpl + + /usr/lib + /usr/share/doc + + + + libart_lgpl-devel + Development files for libart_lgpl + libart_lgpl için geliştirme dosyaları + + libart_lgpl + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 2.3.21 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-29 + 2.3.21 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.3.21 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libwmf + http://wvware.sourceforge.net/libwmf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + Library for reading and converting WMF files + WMF (Windows metafile) okuma ve dönüştürme kitaplığı + Librairie pour convertir les fichiers WMF. + A library for reading and converting Windows MetaFile vector graphics (WMF). + Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. + mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz + + libjpeg-turbo-devel + harfbuzz-devel + freetype-devel + libX11-devel + libxml2-devel + gettext-devel + gdk-pixbuf-devel + + multimedia/graphics/libwmf/pspec.xml + + + libwmf + + zlib + libX11 + libpng + libxml2 + freetype + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libwmf + + + + libwmf-devel + Development files for libwmf + libwmf için geliştirme dosyaları + + libwmf + + + /usr/bin/libwmf-config + /usr/include + /usr/lib/pkgconfig + + + + + 2014-05-24 + 0.2.8.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.2.8.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 0.2.8.4 + First release + Pisi Linux Admins + admins@pisilinux.org + @@ -71520,16 +105745,22 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol LGPLv2+ library - desktop.kde.addon + multimedia.graphics A Library for working with Data Matrix 2D bar-codes Data Matrix 2D barkodlarıyla çalışmak için kitaplık libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. http://sourceforge.net/projects/libdmtx/files/libdmtx/0.7.4/libdmtx-0.7.4.tar.gz - desktop/kde/addon/libdmtx/pspec.xml + + imagemagick-devel + + multimedia/graphics/libdmtx/pspec.xml libdmtx + + imagemagick + /usr/lib /usr/share/doc @@ -71567,31457 +105798,92 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - prison-qt5 - http://www.kde.org + lcms2 + http://www.littlecms.com - Pisi Linux Admins - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org MIT - library - desktop.kde.addon - A barcode API to produce QRCode barcodes and DataMatrix barcode - A barcode API to produce QRCode barcodes and DataMatrix barcode. - http://source.pisilinux.org/1.0/prison-1.1.1_20150821.tar.xz - - qt5-base-devel - libdmtx-devel - qrencode-devel - extra-cmake-modules - mesa-devel - - desktop/kde/addon/prison-qt5/pspec.xml - - - prison-qt5 - - qt5-base - libgcc - mesa - libdmtx - qrencode - - - /usr/lib - /usr/share/doc - - - - prison-qt5-devel - Development files for libepoxy - - prison-qt5 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-08-22 - 1.1.1_20150821 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qrencode - http://fukuchi.org/works/qrencode/index.en.html - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - desktop.kde.addon - A C library for encoding data in a QR code symbol - QR kod sembolüne veri gömmek için bir kitaplık - qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. - qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. - http://fukuchi.org/works/qrencode/qrencode-3.4.4.tar.gz - - libsdl-devel - m4 - gettext-devel - libpng-devel - - desktop/kde/addon/qrencode/pspec.xml - - - qrencode - - libpng - - - /usr/lib - /usr/bin/qrencode - /usr/share/man/man1 - /usr/share/doc - - - - qrencode-devel - Development files for qrencode - qrencode için geliştirme dosyaları - - qrencode - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-02-22 - 3.4.4 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.3.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2012-04-05 - 3.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kgeography - http://edu.kde.org/applications/all/kgeography - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KGeography is a geography learning tool - Bir coğrafya uygulaması - 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 - mirrors://kde/stable/applications/15.08.3/src/kgeography-15.08.3.tar.xz - - qt5-base-devel - kconfig-devel - kdoctools-devel - kxmlgui-devel - kwidgetsaddons-devel - kcoreaddons-devel - ki18n-devel - kitemviews-devel - kiconthemes-devel - kservice-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/application/kgeography/pspec.xml - - - kgeography - - qt5-base - libgcc - kconfig - kxmlgui - kwidgetsaddons - kcoreaddons - ki18n - kitemviews - kiconthemes - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - konversation - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - A user friendly IRC client for KDE - Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. - mirrors://kde/stable/konversation/1.6/src/konversation-1.6.tar.xz - - qt5-base-devel - qt5-phonon-devel - extra-cmake-modules - kdoctools-devel - kitemviews-devel - kbookmarks-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kemoticons-devel - ki18n-devel - kidletime-devel - knotifyconfig-devel - kio-devel - kparts-devel - solid-devel - sonnet-devel - kwallet-devel - kwidgetsaddons-devel - kglobalaccel-devel - kdbusaddons-devel - knotifications-devel - kwindowsystem-devel - kiconthemes-devel - karchive-devel - qca2-qt5-devel - python3-devel - gettext-devel - docbook-xsl - - desktop/kde/application/konversation/pspec.xml - - - konversation - - qt5-base - qca2-qt5 - kemoticons - kidletime - knotifyconfig - kparts - kio - libgcc - ki18n - sonnet - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kbookmarks - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2015-08-29 - 1.6.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkgapi - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - Google API library for KDE - A KDE-based library for accessing various Google services via their public API - mirrors://kde/stable/libkgapi/5.1.0/src/libkgapi-5.1.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcontacts-devel - kwindowsystem-devel - kio-devel - kcalcore-devel - kdoctools-devel - qt5-webkit-devel - qt5-linguist - qt5-location-devel - - desktop/kde/application/libkgapi/pspec.xml - - - libkgapi - - qt5-base - kcalcore - kcontacts - kio - libgcc - qt5-webkit - kwindowsystem - kdelibs4-support - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkgapi-devel - Development files for libkgapi - - qt5-base-devel - kcalcore-devel - kcontacts-devel - kio-devel - qt5-webkit-devel - kwindowsystem-devel - kdelibs4-support-devel - libkgapi - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-26 - 5.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-08 - 5.0.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmix - http://kde.org/applications/multimedia/kmix/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer. - kmix - mirrors://kde/stable/applications/15.08.3/src/kmix-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - ki18n-devel - kcmutils-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - libcanberra-devel - glib2-devel - alsa-lib-devel - kglobalaccel-devel - extra-cmake-modules - cmake - - desktop/kde/application/kmix/pspec.xml - - - kmix - - qt5-base - alsa-lib - libcanberra - pulseaudio-libs - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libgcc - - - /etc - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/include - /usr/bin - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-13 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kidentitymanagement - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - KDE PIM libraries - Library for the KDE-PIM(Personal-Infomation-Management - mirrors://kde/stable/applications/15.08.3/src/kidentitymanagement-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kpimtextedit-devel - kio-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwidgetsaddons-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - extra-cmake-modules - - desktop/kde/application/kidentitymanagement/pspec.xml - - - kidentitymanagement - - qt5-base - kpimtextedit - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcompletion - kcoreaddons - ktextwidgets - kwidgetsaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kidentitymanagement-devel - Development files for kidentitymanagement - - qt5-base-devel - kpimtextedit-devel - kidentitymanagement - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ksquares - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Connect the dots to create squares - Noktaları birleştirerek kare yapma oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/ksquares-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/ksquares/pspec.xml - - - ksquares - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ark - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE Archiving Tool - Ark is a program for managing various archive formats within the KDE environment. - mirrors://kde/stable/applications/15.08.3/src/ark-15.08.3.tar.xz - - qt5-base-devel - karchive-devel - kconfig-devel - kcrash-devel - kio-devel - kpty-devel - khtml-devel - xz-devel - kdbusaddons-devel - kdoctools-devel - docbook-xsl - libarchive-devel - extra-cmake-modules - - desktop/kde/application/ark/pspec.xml - - - ark - - qt5-base - libarchive - karchive - kconfig - kio - unrar - kpty - khtml - ki18n - libgcc - kxmlgui - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - kwidgetsaddons - kparts - kconfigwidgets - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/locale - /usr/lib - /usr/share/icons - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kcron - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Graphical task scheduler - Görev zamanlayıcı arayüzü. - 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 - http://download.kde.org/stable/applications/15.08.3/src/kcron-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kdoctools-devel - kiconthemes-devel - kio-devel - kxmlgui-devel - kiconthemes-devel - kiconthemes-devel - kiconthemes-devel - - desktop/kde/application/kcron/pspec.xml - - - kcron - - kio - ki18n - libgcc - qt5-base - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - - - kdeadmin - - - kdeadmin - - - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - picmi - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Picmi is a single player logic-based puzzle game - 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. - http://download.kde.org/stable/applications/15.08.3/src/picmi-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - kdoctools-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kio-devel - knewstuff-devel - kxmlgui-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/picmi/pspec.xml - - - picmi - picmi - - ki18n - libgcc - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-12-03 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - katomic - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Sokoban like logic game - Sokoban benzeri mantık oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/katomic-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/katomic/pspec.xml - - - katomic - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-15 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kholidays - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library app:console - desktop.kde.application - KDE library for regional holiday information - KDE library for regional holiday information - mirrors://kde/stable/applications/15.08.3/src/kholidays-15.08.3.tar.xz - - qt5-base-devel - kitemviews-devel - kdoctools-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - extra-cmake-modules - - desktop/kde/application/kholidays/pspec.xml - - - kholidays - - qt5-base - kdelibs4-support - ki18n - libgcc - kitemviews - kcompletion - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kholidays-devel - Development files for kdelibs4-support - - qt5-base-devel - kholidays - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kaccounts-providers - https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - 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 - http://download.kde.org/stable/applications/15.08.3/src/kaccounts-providers-15.08.3.tar.xz - - extra-cmake-modules - intltool - kaccounts-integration-devel - qt5-declarative-devel - qt5-base-devel - kcoreaddons-devel - libaccounts-qt5-devel - libaccounts-glib-devel - signon-devel - - desktop/kde/application/kaccounts-providers/pspec.xml - - - kaccounts-providers - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - - kaccounts-integration - libaccounts-glib - - - /etc - /usr/share - /usr/share/doc - - - - - 2015-11-15 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - cantor - http://edu.kde.org/cantor - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.application - A KDE frontend to mathematical softwares - Matematiksel uygulamalar için bir KDE önyüzü - 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. - cantar - mirrors://kde/stable/applications/15.08.3/src/cantor-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - qt5-xmlpatterns-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ktexteditor-devel - knewstuff-devel - kpty-devel - analitza-devel - libqalculate-devel - cln-devel - - desktop/kde/application/cantor/pspec.xml - - - cantor - - cln - kio - kpty - ki18n - kparts - libgcc - kconfig - kxmlgui - analitza - karchive - kservice - qt5-base - knewstuff - kcompletion - kcoreaddons - kiconthemes - ktexteditor - ktextwidgets - libqalculate - kconfigwidgets - kwidgetsaddons - qt5-xmlpatterns - kdelibs4-support - - - /etc - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - cantor-devel - Development files for cantor - cantor için geliştirme dosyaları - - cantor - - - /usr/include - /usr/share/kde5/apps/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 4.11.2 - Rebuild for icu4c. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-23 - 4.10.2 - Dep fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gpgmepp - https://projects.kde.org/gpgmepp - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - desktop.kde.application - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - mirrors://kde/stable/applications/15.08.3/src/gpgmepp-15.08.3.tar.xz - - boost-devel - qt5-base-devel - gpgme-devel - extra-cmake-modules - - desktop/kde/application/gpgmepp/pspec.xml - - - gpgmepp - - libgcc - qt5-base - gpgme - - - /usr/lib - /usr/share/doc - - - - gpgmepp-devel - - gpgmepp - - - /usr/include - /usr/lib/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libkipi - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 library - desktop.kde.application - Common plugin infrastructure for KDE image applications - 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. - http://source.pisilinux.org/1.0/libkipi-15.04.3_20150731.tar.gz + multimedia.graphics + A color management library. + Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. + http://sourceforge.net/projects/lcms/files/lcms/2.6/lcms2-2.6.tar.gz - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - cmake - extra-cmake-modules - - desktop/kde/application/libkipi/pspec.xml - - - libkipi - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - kcoreaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - - - - libkipi-devel - Development files for libkipi - libkipi için geliştirme dosyaları - - libkipi - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-01 - 15.04.3_20150731 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdepim-runtime - http://community.kde.org/KDE_PIM - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - KDE5 PIM Runtime Environment - KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı - 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/applications/15.08.3/src/kdepim-runtime-15.08.3.tar.xz - - kdoctools-devel - boost-devel - shared-mime-info - akonadi-devel - akonadi-calendar-devel - akonadi-search-devel - kcmutils-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - knotifyconfig-devel - kross-devel - kmailtransport-devel - kidentitymanagement-devel - kalarmcal-devel - kcalutils-devel - kmbox-devel - kimap-devel - libkgapi-devel - kholidays-devel - ksyndication-devel - kdepimlibs-devel - cyrus-sasl-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-xmlpatterns-devel - qt5-webkit-devel - extra-cmake-modules - qt5-location-devel - - desktop/kde/application/kdepim-runtime/pspec.xml - - - kdepim-runtime - - akonadi - libkgapi - kio - ki18n - kimap - kmbox - kmime - libgcc - kcodecs - kconfig - kwallet - kxmlgui - kcalcore - kcmutils - kservice - qt5-base - kalarmcal - kcalutils - kdepimlibs - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kitemmodels - kcontacts - kjobwidgets - knotifyconfig - kwindowsystem - kconfigwidgets - kmailtransport - ktextwidgets - knotifications - kwidgetsaddons - qt5-xmlpatterns - akonadi-calendar - kdelibs4-support - kidentitymanagement - - - /etc/xdg - /usr/lib - /usr/bin - /usr/share/mime - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/knotifications5 - /usr/share/icons - /usr/share/dbus-1 - /usr/share/akonadi - /usr/share/ontology - /usr/share/autostart - /usr/share/applications - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gwenview - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - desktop.kde.application - An image viewer - Resim görüntüleyici - Gwenview is an easy to use image viewer. - Gwenview, kullanımı kolay bir resim görüntüleyicisidir. - gwenview - mirrors://kde/stable/applications/15.08.3/src/gwenview-15.08.3.tar.xz - - exiv2-devel - qt5-base-devel - libkipi-devel - kdoctools-devel - kio-devel - kactivities-devel - kded-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - baloo-devel - libkdcraw-devel - libpng-devel - zlib-devel - mesa-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/gwenview/pspec.xml - - - gwenview - - qt5-base - exiv2-libs - kactivities - libkipi - libkdcraw - kded - kdelibs4-support - kio - ki18n - lcms2 - kparts - libX11 - libgcc - libpng - kconfig - kxmlgui - qt5-svg - kservice - baloo - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - ktextwidgets - libjpeg-turbo - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - kfilemetadata - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - /usr/share/icons - /usr/share/applications - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-12 - 15.08.0 - first release, use stable source. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - akonadi-search - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - Libraries and daemons to implement searching in Akonadi - Libraries and daemons to implement searching in Akonadi - akonadi - mirrors://kde/stable/applications/15.08.3/src/akonadi-search-15.08.3.tar.xz - - qt5-base-devel - kcrash-devel - kconfig-devel - ki18n-devel - akonadi-devel - kcontacts-devel - kmime-devel - kjobwidgets-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdelibs4-support-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kcalcore-devel - libical-devel - kdesignerplugin - kcompletion-devel - kdepimlibs-devel - boost-devel - xapian-core-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/akonadi-search/pspec.xml - - - akonadi-search - app:console - - qt5-base - ki18n - kmime - libgcc - kcodecs - kconfig - kcalcore - kcontacts - kdepimlibs - kcoreaddons - xapian-core - kdelibs4-support - - - /etc/akonadi - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/config - /usr/share/mime - /usr/share/kde4 - /usr/share/doc/ - /usr/share/akonadi - - - - akonadi-search-devel - Development files for akonadi - - akonadi-search - qt5-base-devel - ki18n-devel - kmime-devel - kcodecs-devel - kconfig-devel - kcalcore-devel - kcontacts-devel - kdepimlibs-devel - kcoreaddons-devel - xapian-core-devel - kdelibs4-support-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - baloo-widgets - http://www.kde.org - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/applications/15.08.3/src/baloo-widgets-15.08.3.tar.xz - - baloo-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kfilemetadata-devel - kinit-devel - kio-devel - kitemmodels-devel - kunitconversion-devel - qt5-base-devel - - desktop/kde/application/baloo-widgets/pspec.xml - - - baloo-widgets - Development files for baloo-widgets - - baloo - kconfig - kcoreaddons - kfilemetadata - ki18n - kio - kwidgetsaddons - libgcc - qt5-base - - - /etc - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/locale - - - - baloo-widgets-devel - Development files for baloo-widgets - - baloo-widgets - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-28 - 15.08.0 - First Release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ktp-common-internals - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Common components for KDE-Telepathy - Common components for KDE-Telepathy - http://download.kde.org/stable/applications/15.08.3/src/ktp-common-internals-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - knotifications-devel - kio-devel - kwidgetsaddons-devel - kcmutils-devel - knotifyconfig-devel - ktexteditor-devel - kwallet-devel - kconfig-devel - kwindowsystem-devel - kiconthemes-devel - kpeople-devel - signon-devel - kaccounts-integration-devel - telepathy-logger-qt-devel - libaccounts-qt5-devel - telepathy-qt5-devel - libaccounts-glib-devel - libgcrypt-devel - sqlite-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - telepathy-mission-control-devel - libotr-devel - - desktop/kde/application/ktp-common-internals/pspec.xml - - - ktp-common-internals - Common components for KDE-Telepathy - - ki18n - kparts - libgcc - libotr - signon - kconfig - kpeople - kwallet - kxmlgui - kcmutils - kservice - qt5-base - libgcrypt - kcoreaddons - kiconthemes - ktexteditor - knotifyconfig - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - libaccounts-qt5 - qt5-declarative - telepathy-logger-qt - kaccounts-integration - - - /usr/bin - /usr/lib/libKTpCommonInternals.so.* - /usr/lib/libKTpModels.so.* - /usr/lib/libKTpLogger.so.* - /usr/lib/libKTpWidgets.so.* - /usr/lib/libKTpOTR.so.* - /usr/lib/ktp-proxy - /usr/lib/qt5 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/knotifications5 - /usr/share/config.kcfg - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/icons - /usr/share/katepart5 - /usr/share/doc - - - - ktp-common-internals-devel - Development files for ktp-common-internals - - ktp-common-internals - libotr-devel - - - /usr/include/KTp - /usr/lib/cmake/KTp - /usr/lib/libKTpCommonInternals.so - /usr/lib/libKTpModels.so - /usr/lib/libKTpLogger.so - /usr/lib/libKTpWidgets.so - /usr/lib/libKTpOTR.so - - - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - partitionmanager - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer - 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/partitionmanager/1.2.1/src/partitionmanager-1.2.1.tar.xz - - qt5-base-devel - libatasmart-devel - extra-cmake-modules - parted-devel - libutil-linux-devel - ki18n-devel - kio-devel - kconfig-devel - kxmlgui-devel - kservice-devel - kcoreaddons-devel - kiconthemes-devel - kjobwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdoctools-devel - - desktop/kde/application/partitionmanager/pspec.xml - - - partitionmanager - - qt5-base - libatasmart - libgcc - parted - libutil-linux - kio - ki18n - kconfig - kxmlgui - kservice - kcoreaddons - kiconthemes - kjobwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-09-27 - 1.2.1 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kate - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Advanced Text Editor - Plasma library and runtime components based upon KF5 and Qt5 - mirrors://kde/stable/applications/15.08.3/src/kate-15.08.3.tar.xz - - qt5-base-devel - plasma-framework-devel - kdoctools-devel - knewstuff-devel - kinit-devel - kparts-devel - ktexteditor-devel - threadweaver-devel - kitemmodels-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - docbook-xsl - extra-cmake-modules - kded-devel - - desktop/kde/application/kate/pspec.xml - - - kate - - qt5-base - libgcc - libgit2 - knewstuff - ki18n - kconfig - kded - kguiaddons - kactivities - kjobwidgets - kitemmodels - kio - kparts - ktexteditor - kwindowsystem - kxmlgui - plasma-framework - kwallet - kservice - kbookmarks - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - threadweaver - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/share - /etc/xdg - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - dolphin-plugins - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.application - Extra dolphin plugins - 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/applications/15.08.3/src/dolphin-plugins-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - dolphin-devel - kio-devel - kdelibs4-support-devel - extra-cmake-modules - - desktop/kde/application/dolphin-plugins/pspec.xml - - - dolphin-plugins - - qt5-base - dolphin - kio - ki18n - libgcc - kconfig - kxmlgui - kcompletion - kcoreaddons - ktextwidgets - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-12 - 15.07.90 - First Relase unstable. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ktp-text-ui - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Telepathy handler for Text Chats - Telepathy handler for Text Chats - http://download.kde.org/stable/applications/15.08.3/src/ktp-text-ui-15.08.3.tar.xz - - extra-cmake-modules - karchive-devel - sonnet-devel - kwidgetsaddons-devel - kservice-devel - kemoticons-devel - kio-devel - kcmutils-devel - knotifyconfig-devel - knotifications-devel - ki18n-devel - kdewebkit-devel - kwindowsystem-devel - kxmlgui-devel - kitemviews-devel - ktextwidgets-devel - kiconthemes-devel - kdbusaddons-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - qt5-location-devel - qt5-webkit-devel - - desktop/kde/application/ktp-text-ui/pspec.xml - - - ktp-text-ui - Telepathy handler for Text Chats - - kio - ki18n - libgcc - sonnet - kconfig - kxmlgui - karchive - kcmutils - kservice - qt5-base - kdewebkit - kemoticons - kitemviews - qt5-webkit - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - knotifyconfig - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/lib - /usr/share - /usr/share/ktelepathy - /usr/share/ktp-log-viewer - /usr/share/kxmlgui5 - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ktp-contact-runner - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KRunner plugin for KDE Telepathy - KRunner plugin for KDE Telepathy - http://download.kde.org/stable/applications/15.08.3/src/ktp-contact-runner-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kservice-devel - krunner-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-contact-runner/pspec.xml - - - ktp-contact-runner - KRunner plugin for KDE Telepathy - - ki18n - libgcc - krunner - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libkexiv2 - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - An Exiv2 wrapper library - 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/unstable/applications/15.11.80/src/libkexiv2-15.11.80.tar.xz - - extra-cmake-modules - cmake - exiv2-devel - qt5-base-devel - - desktop/kde/application/libkexiv2/pspec.xml - - - libkexiv2 - - qt5-base - exiv2-libs - - - /usr/lib - /usr/bin - - - - libkexiv2-devel - Development files for libkexiv2 - libkexiv2 için geliştirme dosyaları - - libkexiv2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-26 - 5.11.80 - First Release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdeedu-data - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/application/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - konsole - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.application - KDE Konsole - Konsole for KDE5 - mirrors://kde/stable/applications/15.08.3/src/konsole-15.08.3.tar.xz - - qt5-base-devel - qt5-script-devel - kpty-devel - kio-devel - kinit-devel - knotifyconfig-devel - kparts-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - docbook-xsl - extra-cmake-modules - kdoctools-devel - cmake - - desktop/kde/application/konsole/pspec.xml - - - konsole - - libgcc - qt5-base - kdelibs4-support - kiconthemes - knotifyconfig - knotifications - kparts - kpty - kio - ki18n - kconfig - kxmlgui - kservice - kbookmarks - kguiaddons - kcompletion - kcoreaddons - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-05 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - okular - http://okular.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - A document viewer - Belge gösterici - Okular is a document viewer. - Okular bir belge göstericidir. - okular - http://sourceforge.net/projects/pisilinux/files/source/okular-15.08.02_20151104.tar.xz - - qt5-base-devel - qt5-declarative-devel - kjs-devel - qca2-qt5-devel + libjpeg-turbo-devel tiff-devel - kdelibs4-support-devel - qt5-phonon-devel - poppler-qt5-devel - ebook-tools-devel - libkexiv2-devel - kdoctools-devel - threadweaver-devel - kdesignerplugin - khtml-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kactivities-devel - libkscreen-devel - libspectre-devel - djvu-devel - kpty-devel - extra-cmake-modules - desktop/kde/application/okular/pspec.xml + multimedia/graphics/lcms2/pspec.xml - okular - app:gui + lcms2 - qt5-base - qca2-qt5 + libjpeg-turbo tiff - libkexiv2 - poppler-qt5 - ebook-tools - kactivities - libjpeg-turbo - kdelibs4-support - khtml - kpty - kio - kjs - zlib - ki18n - kparts - libgcc - kcodecs - kconfig - kwallet - kxmlgui - qt5-svg - freetype - karchive - kservice - kbookmarks - kitemviews - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - threadweaver - kwindowsystem - kconfigwidgets - kwidgetsaddons - qt5-declarative - djvu - libspectre - qt5-phonon - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share - - - - okular-devel - Development files for okular - Okular için geliştirme dosyaları - - okular - - - /usr/include - /usr/lib/cmake - - - - - 2015-11-05 - 15.08.02_20151104 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-19 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ktp-contact-list - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Telepathy contact list application - KDE Telepathy contact list application - http://download.kde.org/stable/applications/15.08.3/src/ktp-contact-list-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kio-devel - kcmutils-devel - knotifications-devel - kwindowsystem-devel - knotifyconfig-devel - ki18n-devel - kiconthemes-devel - kxmlgui-devel - kpeople-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - - desktop/kde/application/ktp-contact-list/pspec.xml - - - ktp-contact-list - KDE Telepathy contact list application - - ki18n - libgcc - kconfig - kpeople - kxmlgui - kservice - qt5-base - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals /usr/bin - /usr/share - /usr/share/dbus-1 - /usr/share/applications - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kdepim - http://www.kde.org - - Pisi Linux Admins - vedat@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - KDE Pim different packages with akonadi-console, kadressbook blogilo etc - Provides different Packages for KDE5 - mirrors://kde/stable/applications/15.08.3/src/kdepim-15.08.3.tar.xz - - qt5-base-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - qt5-declarative-devel - qt5-quick1-devel - qt5-phonon-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-location-devel - prison-qt5-devel - openssl-devel - kinit-devel - kross-devel - libassuan-devel - akonadi-devel - akonadi-search-devel - kdnssd-devel - grantlee-qt5-devel - kpimtextedit-devel - kmailtransport-devel - kcalutils-devel - kholidays-devel - ktnef-devel - kimap-devel - ksyndication-devel - gpgmepp-devel - akonadi-calendar-devel - libSM-devel - NetworkManager-devel - kauth-devel - kbookmarks-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kdesignerplugin - kdoctools-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kinit - kio-devel - kitemviews-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kunitconversion-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kcmutils-devel - kdewebkit-devel - khtml-devel - ktexteditor-devel - kidentitymanagement-devel - kldap-devel - cyrus-sasl-devel - kmbox-devel - kontactinterface-devel - kalarmcal-devel - kxmlrpcclient-devel - kblog-devel - kdelibs4-support-devel - kdepimlibs-devel - kidentitymanagement-devel - gpgme-devel - libX11-devel - extra-cmake-modules - qt5-linguist - kemoticons-devel - kitemmodels-devel - knewstuff-devel - knotifyconfig-devel - libkgapi-devel - curl-devel - kdepim-runtime - - desktop/kde/application/kdepim/pspec.xml - - - kdepim - - qt5-base - qt5-phonon - qt5-webkit - qt5-x11extras - gpgme - kross - libassuan - akonadi - akonadi-search - kdnssd - grantlee-qt5 - kpimtextedit - kmailtransport - kcalutils - kholidays - ktnef - kimap - ksyndication - gpgmepp - akonadi-calendar - kauth - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcrash - kdbusaddons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemviews - knotifications - kparts - kservice - ktextwidgets - kunitconversion - kwidgetsaddons - kwindowsystem - kxmlgui - kcmutils - kdewebkit - khtml - ktexteditor - kidentitymanagement - kldap - kcodecs - kwallet - cyrus-sasl - kmbox - kontactinterface - kalarmcal - kxmlrpcclient - karchive - kcalcore - kcontacts - kholidays - knewstuff - sonnet - kblog - kdepimlibs - kcoreaddons - kitemmodels - kjobwidgets - knotifyconfig - kdelibs4-support - libgpg-error - libX11 - libgcc - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - step - http://kde.org/applications/education/step/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Interactive Physical Simulator - Step is an interactive physical simulator. It allows you to explore the physical world through simulations. - mirrors://kde/stable/applications/15.08.3/src/step-15.08.3.tar.xz - - qt5-base-devel - qt5-quick1-devel - qt5-svg-devel - qt5-declarative-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - mesa-devel - khtml-devel - kconfig-devel - kdelibs4-support-devel - knewstuff-devel - kplotting-devel - eigen3 - pkgconfig - libqalculate-devel - cln-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/step/pspec.xml - - - step - - qt5-base - cln - gsl - khtml - knewstuff - kplotting - libqalculate - kparts - kio - libgcc - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - kservice - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kcontacts - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - Address book API for KDE. - Address book for KDE for Contacts. - mirrors://kde/stable/applications/15.08.3/src/kcontacts-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kconfig-devel - kio-devel - extra-cmake-modules - - desktop/kde/application/kcontacts/pspec.xml - - - kcontacts - - qt5-base - ki18n - kcodecs - kconfig - kcoreaddons - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcontacts-devel - Development files for kcontacts - - qt5-base-devel - kcontacts - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kontactinterface - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - 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/applications/15.08.3/src/kontactinterface-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kcoreaddons-devel - kparts-devel - kwindowsystem-devel - ki18n-devel - kxmlgui-devel - kiconthemes-devel - - desktop/kde/application/kontactinterface/pspec.xml - - - kontactinterface - - qt5-base - kio - kparts - libgcc - kxmlgui - kcoreaddons - kiconthemes - kwindowsystem - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kontactinterface-devel - Development files for kontactinterface - - qt5-base-devel - kontactinterface - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kimap - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Job-based API for interacting with IMAP servers - API for interacting with IMAP servers - mirrors://kde/stable/applications/15.08.3/src/kimap-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kmime-devel - boost-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - cyrus-sasl-devel - kunitconversion-devel - extra-cmake-modules - - desktop/kde/application/kimap/pspec.xml - - - kimap - - qt5-base - kmime - kio - ki18n - libgcc - kcodecs - cyrus-sasl - kcoreaddons - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kimap-devel - Development files for kimap - - qt5-base-devel - kimap - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - rocs - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - 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/applications/15.08.3/src/rocs-15.08.3.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-webkit-devel - qt5-base-devel - qt5-xmlpatterns-devel - extra-cmake-modules - kdoctools-devel - kdeclarative-devel - ki18n-devel - gettext-devel - kitemviews-devel - ktexteditor-devel - kxmlgui-devel - kconfig-devel - karchive-devel - kcompletion-devel - kcoreaddons-devel - ktexteditor-devel - kconfigwidgets-devel - kxmlgui-devel - kwidgetsaddons-devel - karchive-devel - cmake - qt5-location-devel - grantlee-qt5-devel - gettext-devel - boost-devel - - desktop/kde/application/rocs/pspec.xml - - - rocs - - qt5-base - qt5-script - qt5-declarative - qt5-xmlpatterns - qt5-webkit - grantlee-qt5 - kdeclarative - ktexteditor - kparts - libgcc - ki18n - kconfig - karchive - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - karchive - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kwidgetsaddons - kxmlgui - kitemviews - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - rocs-devel - Development files for rocs - - rocs - - - /usr/include - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-29 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktnef - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - 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/applications/15.08.3/src/ktnef-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcalcore-devel - kcalutils-devel - kcontacts-devel - - desktop/kde/application/ktnef/pspec.xml - - - ktnef - - qt5-base - kcalutils - ki18n - libgcc - kcalcore - kcontacts - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktnef-devel - Development files for ktnef - - qt5-base-devel - ktnef - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-kded-module - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - 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 - http://download.kde.org/stable/applications/15.08.3/src/ktp-kded-module-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - kdbusaddons-devel - kwidgetsaddons-devel - kconfig-devel - ki18n-devel - kio-devel - knotifications-devel - kconfigwidgets-devel - kidletime-devel - kcmutils-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-kded-module/pspec.xml - - - ktp-kded-module - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - - kio - ki18n - libgcc - kconfig - qt5-base - kidletime - kcoreaddons - kdbusaddons - telepathy-qt5 - kconfigwidgets - knotifications - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - Fİrst Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kpimtextedit - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.application - A textedit with PIM-specific features. - Text Edit with KDE-PIM specific features. - mirrors://kde/stable/applications/15.08.3/src/kpimtextedit-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kconfig-devel - kio-devel - kemoticons-devel - kdesignerplugin - kitemmodels-devel - kinit-devel - kdelibs4-support-devel - kunitconversion-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/kpimtextedit/pspec.xml - - - kpimtextedit - - qt5-base - ki18n - kcodecs - kio - sonnet - libgcc - kemoticons - kcompletion - ktextwidgets - kwidgetsaddons - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpimtextedit-devel - Development files for kpimtextedit - - qt5-base-devel - kpimtextedit - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkdcraw - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.application - A C++ interface around LibRaw library - 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. - http://source.pisilinux.org/1.0/libkdcraw-15.07.90_20150715.tar.xz - - qt5-base-devel - kdoctools-devel - libraw-devel - kconfig-devel - ki18n-devel - cmake - extra-cmake-modules - - desktop/kde/application/libkdcraw/pspec.xml - - - libkdcraw - - qt5-base - libraw - kconfig - ki18n - libgcc - - - /usr/lib - /usr/bin - /usr/share/icons - /usr/share/ - - - - libkdcraw-devel - Development files for libkdcraw - libkdcraw için geliştirme dosyaları - - libkdcraw - qt5-base-devel - libraw-devel - kconfig-devel - ki18n-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/apps/cmake - - - - - 2015-08-13 - 15.07.90_p1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-dev-scripts - https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Scripts and setting files useful during development of KDE software - Scripts and setting files useful during development of KDE software - http://download.kde.org/stable/applications/15.08.3/src/kde-dev-scripts-15.08.3.tar.xz - - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - - desktop/kde/application/kde-dev-scripts/pspec.xml - - - kde-dev-scripts - Scripts and setting files useful during development of KDE software - - qt5-base - kdoctools - kdelibs4-support - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-11-16 - 15.08.3 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kollision - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A simple ball dodging game - Basit bir top sıçratma oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kollision-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kollision/pspec.xml - - - kollision - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kanagram - http://edu.kde.org/applications/all/kanagram - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A letter order game - Bir harf sıralama oyunu - 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/applications/15.08.3/src/kanagram-15.08.3.tar.xz - - qt5-base-devel - qt5-declarative - kdoctools-devel - knewstuff-devel - kdeclarative-devel - ki18n-devel - kio-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kxmlgui - kwidgetsaddons-devel - extra-cmake-modules - libkeduvocdocument-devel - - desktop/kde/application/kanagram/pspec.xml - - - kanagram - - ki18n - libgcc - sonnet - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdeclarative - kconfigwidgets - qt5-declarative - libkeduvocdocument - - - /etc/xdg - /usr/share - /usr/bin - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-desktop-applets - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - The KDE-Telepathy Plasma desktop applets - The KDE-Telepathy Plasma desktop applets - http://download.kde.org/stable/applications/15.08.3/src/ktp-desktop-applets-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kwindowsystem-devel - plasma-framework-devel - - desktop/kde/application/ktp-desktop-applets/pspec.xml - - - ktp-desktop-applets - The KDE-Telepathy Plasma desktop applets - - libgcc - qt5-base - kwindowsystem - qt5-declarative - - - /usr/lib - /usr/share - /usr/share/plasma - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kjumpingcube - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Territory capture game - Alan kapma oyunu - KJumpingCube is a simple tactical game. - KJumpingCube basit bir taktik oyunudur. - kjumpingcube - http://download.kde.org/stable/applications/15.08.3/src/kjumpingcube-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/application/kjumpingcube/pspec.xml - - - kjumpingcube - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-approver - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Channel Approver for Telepathy - KDE Channel Approver for Telepathy - http://download.kde.org/stable/applications/15.08.3/src/ktp-approver-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kconfig-devel - ki18n-devel - knotifications-devel - kservice-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-approver/pspec.xml - - - ktp-approver - - ki18n - libgcc - kconfig - kservice - qt5-base - kcoreaddons - kdbusaddons - telepathy-qt5 - knotifications - - - /etc - /usr/lib - /usr/share - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/dbus-1 - /usr/share/doc - - - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kblackbox - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Blackbox logic game - Blackbox mantık oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kblackbox-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kguiaddons-devel - kiconthemes-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kblackbox/pspec.xml - - - kblackbox - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - karchive - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kteatime - http://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Timer for making tea. - Ç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. - http://download.kde.org/stable/applications/15.08.3/src/kteatime-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - kcrash-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - knotifyconfig-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kxmlgui-devel - - desktop/kde/application/kteatime/pspec.xml - - - kteatime - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kiconthemes - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - - - /usr/bin - /usr/doc - /usr/share - - - kdetoys - - - kdetoys - - - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-03 - 4.11.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - ksnapshot - http://kde.org/applications/graphics/ksnapshot - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A screen capture utility - Ekran görüntüsü yakalama aracı - ksnapshot is a screen capture utility. - ksnapshot bir ekran görüntüsü yakalama aracıdır. - ksnapshot - http://source.pisilinux.org/1.0/ksnapshot-15.04.3_20150731.tar.gz - - qt5-base-devel - libkipi-devel - kdoctools-devel - kio-devel - kparts-devel - libX11-devel - libxcb-devel - docbook-xsl - cmake - extra-cmake-modules - - desktop/kde/application/ksnapshot/pspec.xml - - - ksnapshot - - qt5-base - libkipi - kio - ki18n - libX11 - libgcc - libxcb - kconfig - kxmlgui - kservice - kcoreaddons - kdbusaddons - kjobwidgets - kwindowsystem - qt5-x11extras - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/dbus-1 - /usr/share/applications - - - - - 2015-08-01 - 15.04.3_20150731 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-baseapps - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE-Baseapps: base applications from the official KDE release - Base application for KDE5 such as Dolphin, kfind, plasma-widget-folderview, konqueror etc. - http://sourceforge.net/projects/pisilinux/files/source/kde-baseapps-15.07.90_20151029.tar.xz - - qt5-base-devel - zlib-devel - glib2-devel - libX11-devel - kfilemetadata-devel - qt5-phonon-devel - kactivities-devel - libXrender-devel - libXt-devel - libraw1394-devel - mesa-devel - kdelibs4-support-devel - tidy-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesu-devel - khtml-devel - kdelibs4-support-devel - kcmutils-devel - kconfig-devel - kded-devel - kdoctools-devel - kdesignerplugin - libxslt - docbook-xsl - extra-cmake-modules - - desktop/kde/application/kde-baseapps/pspec.xml - - - kde-baseapps - - qt5-base - zlib - libX11 - libgcc - tidy - kio - kdesu - khtml - ki18n - kparts - kcodecs - kconfig - kxmlgui - karchive - kcmutils - kservice - kbookmarks - kitemviews - qt5-script - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/locale - /usr/lib - /usr/share/doc - - - - kde-baseapps-devel - Development files for kde-baseapps - - kde-baseapps - tidy-devel - qt5-base-devel - zlib-devel - glib2-devel - libX11-devel - kfilemetadata-devel - qt5-phonon-devel - kactivities-devel - libXrender-devel - libXt-devel - libraw1394-devel - mesa-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesu-devel - khtml-devel - kcmutils-devel - kconfig-devel - kded-devel - kdoctools-devel - - - /usr/include - /usr/lib/cmake - - - - - 2015-11-01 - 15.07.90_20151029 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-08-31 - 15.07.90_20150729 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 15.04.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - yakuake - http://extragear.kde.org/apps/yakuake - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Very powerful Quake style Konsole for KDE4 - KDE5 için Quake tarzı oldukça güçlü bir Konsole - The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. - İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. - yakuake - http://source.pisilinux.org/1.0/yakuake-2.9.9_20150703.tar.gz - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - knewstuff-devel - kio-devel - kparts-devel - knotifyconfig-devel - extra-cmake-modules - - desktop/kde/application/yakuake/pspec.xml - - - yakuake - - qt5-base - qt5-x11extras - kio - ki18n - kparts - kconfig - kxmlgui - karchive - kservice - knewstuff - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - knotifyconfig - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libX11 - libgcc - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/locale - /usr/share/doc - - - yakuake.notifyrc - - - - - 2015-08-01 - 2.9.9_20150703 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kblocks - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Falling blocks game - Tetris - 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 - http://download.kde.org/stable/applications/15.08.3/src/kblocks-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kdoctools-devel - ki18n-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kemoticons-devel - - desktop/kde/application/kblocks/pspec.xml - - - kblocks - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - qt5-phonon - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kio-extras - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Additional KIO-slaves for KDE5 applications - Additional KIO-slaves for KDE5 applications - mirrors://kde/stable/applications/15.08.3/src/kio-extras-15.08.3.tar.xz - - exiv2-devel - gettext-devel - karchive-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdnssd-devel - kdoctools-devel - kemoticons-devel - khtml-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - kitemmodels-devel - kpty-devel - kunitconversion-devel - libjpeg-turbo-devel - libmtp-devel - libssh-devel - qt5-base-devel - qt5-phonon-devel - qt5-svg-devel - samba-devel - shared-mime-info - solid-devel - openexr-devel - openslp-devel - docbook-xsl - kdesignerplugin - extra-cmake-modules - cmake - - desktop/kde/application/kio-extras/pspec.xml - - - kio-extras - - exiv2-libs - karchive - kbookmarks - kcodecs - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdelibs4-support - kdnssd - kguiaddons - khtml - ki18n - kiconthemes - kio - kparts - kpty - kservice - kxmlgui - libgcc - libjpeg-turbo - libmtp - libssh - qt5-base - qt5-phonon - qt5-svg - samba - solid - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kfourinline - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Four in a row board game - Bir satırda dört tahta oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kfourinline-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kcompletion-devel - kxmlgui-devel - kdnssd-devel - kio-devel - knotifyconfig-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/application/kfourinline/pspec.xml - - - kfourinline - - ki18n - kdnssd - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-18 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-filetransfer-handler - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - KDE Telepathy file transfer handler - KDE Telepathy file transfer handler - http://download.kde.org/stable/applications/15.08.3/src/ktp-filetransfer-handler-15.08.3.tar.xz - - extra-cmake-modules - kcoreaddons-devel - ki18n-devel - kio-devel - kconfig-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-filetransfer-handler/pspec.xml - - - ktp-filetransfer-handler - KDE Telepathy file transfer handler - - kio - ki18n - libgcc - kconfig - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kldap - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - LDAP access API for KDE - Allows LDAP accessing with a convenient Qt style C++ API. - mirrors://kde/stable/applications/15.08.3/src/kldap-15.08.3.tar.xz - - qt5-base-devel - kcompletion-devel - ki18n-devel - openldap-client - cyrus-sasl-devel - extra-cmake-modules - - desktop/kde/application/kldap/pspec.xml - - - kldap - - qt5-base - kcompletion - ki18n - libgcc - cyrus-sasl - openldap-client - kwidgetsaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kldap-devel - Development files for kdelibs4-support - - qt5-base-devel - kldap - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdiamond - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Three in a row game - Bir satırda üç oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kdiamond-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - knotifications-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kdiamond/pspec.xml - - - kdiamond - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2015-11-17 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kblog - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - A blogging library for KDE - 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/applications/15.08.3/src/kblog-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kcoreaddons-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - qt5-webkit-devel - kcalcore-devel - ksyndication-devel - kxmlrpcclient-devel - - desktop/kde/application/kblog/pspec.xml - - - kblog - - qt5-base - kcalcore - kxmlrpcclient - kio - ki18n - libgcc - kcoreaddons - ksyndication - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kblog-devel - Development files for kblog - - qt5-base-devel - kblog - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kapman - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Pac-Man clone - Pac-Man klonu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kapman-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwindowsystem-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - kdesignerplugin - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - - desktop/kde/application/kapman/pspec.xml - - - kapman - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-15 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkeduvocdocument - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - Common libraries for KDE Edu applications - Libraries for KDE EDU applications. - mirrors://kde/stable/applications/15.08.3/src/libkeduvocdocument-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - ki18n-devel - kio-devel - karchive-devel - mesa-devel - - desktop/kde/application/libkeduvocdocument/pspec.xml - - - libkeduvocdocument - - qt5-base - karchive - libgcc - ki18n - kio - kcoreaddons - - - /usr/lib - /usr/share/doc - - - - libkeduvocdocument-devel - Development files for libkeduvocdocument - - libkeduvocdocument - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-send-file - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - 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 - http://download.kde.org/stable/applications/15.08.3/src/ktp-send-file-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kcmutils-devel - kio-devel - kiconthemes-devel - ki18n-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/application/ktp-send-file/pspec.xml - - - ktp-send-file - A File manager plugin to launch a file transfer job with a specified contact - - kio - ki18n - libgcc - qt5-base - kcoreaddons - kiconthemes - telepathy-qt5 - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2015-11-23 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - klines - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Kolor Lines - Renkli çizgiler - 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 - http://download.kde.org/stable/applications/15.08.3/src/klines-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knewstuff-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/klines/pspec.xml - - - klines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmbox - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - MBox library support. - MBox library support. - mirrors://kde/stable/applications/15.08.3/src/kmbox-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - kmime-devel - boost-devel - - desktop/kde/application/kmbox/pspec.xml - - - kmbox - - qt5-base - kmime - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmbox-devel - Development files for kmbox - - qt5-base-devel - kmbox - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdenlive - http://www.kdenlive.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A video editing GUI for KDE4 using the MLT video framework - MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması - Nieliniowy edytor wideo - Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. - 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. - http://download.kde.org/stable/applications/15.08.3/src/kdenlive-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-script-devel - qt5-svg-devel - karchive-devel - kbookmarks-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - kio-devel - kwidgetsaddons-devel - kplotting-devel - knotifyconfig-devel - knewstuff-devel - kxmlgui-devel - knotifications-devel - kguiaddons-devel - ktextwidgets-devel - kiconthemes-devel - kdoctools-devel - mlt-devel - qt5-declarative-devel - - desktop/kde/application/kdenlive/pspec.xml - - - kdenlive - - kio - mlt - ki18n - solid - libgcc - kconfig - kxmlgui - qt5-svg - karchive - kservice - qt5-base - knewstuff - kplotting - kbookmarks - kguiaddons - kitemviews - qt5-script - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man - - - - - 2015-11-17 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-04-06 - 0.9.10 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-06-18 - 0.9.8 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-26 - 0.9.6 - rebuild for ffmpeg - Kamil Atlı - suvarice@gmail.com - - - 2013-04-08 - 0.9.6 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-29 - 0.9.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-06-03 - 0.9.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knetwalk - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Network construction game - Ağ yapılandırma oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/knetwalk-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/knetwalk/pspec.xml - - - knetwalk - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-20 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kross-interpreters - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Kross interpreter plugins for programming languages - Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/applications/15.08.3/src/kross-interpreters-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - kross-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - python-devel - - desktop/kde/application/kross-interpreters/pspec.xml - - - kross-interpreters - - qt5-base - libgcc - python - kross - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-25 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-29 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - analitza - https://projects.kde.org/projects/kde/kdeedu/analitza - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - desktop.kde.application - A KDE library for mathematical features - Matematiksel özellikler için bir KDE kitaplığı - 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/applications/15.08.2/src/analitza-15.08.2.tar.xz - - cmake - eigen3 - mesa-devel - qt5-svg-devel - extra-cmake-modules - qt5-declarative-devel - - desktop/kde/application/analitza/pspec.xml - - - analitza - - mesa - libgcc - qt5-svg - qt5-base - qt5-declarative - - - /usr/lib - /usr/share/doc - /usr/share/libanalitza/ - - - - analitza-devel - Development files for analitza - analitza için geliştirme dosyaları - - analitza - - - /usr/include - /usr/lib/cmake - - - - - 2015-10-19 - 15.08.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-18 - 15.04.3 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-23 - 4.10.2 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - PIM (Personal Information Management) Storage Service - PIM (Kişisel Bilgi Yönetimi) Depolama Servisi - 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/applications/15.08.3/src/akonadi-15.08.3.tar.xz - - qt5-base-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - sqlite-devel - shared-mime-info - mariadb-client - mariadb-server - postgresql-server - libxslt-devel - boost-devel - extra-cmake-modules - - desktop/kde/application/akonadi/pspec.xml - - - akonadi - app:console - - qt5-base - sqlite - libgcc - mariadb-client - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/mime - /usr/share/kf5 - /usr/share/doc/ - - - - akonadi-devel - Development files for akonadi - akonadi için geliştirme dosyaları - - akonadi - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-12-15 - 1.13.0 - Rebuild - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-08-21 - 1.13.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 1.12.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-03-24 - 1.12.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-18 - 1.11.0 - Dep fixed. - Kamil Atlı - suvarice@gmail.com - - - 2014-01-13 - 1.11.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-09 - 1.10.3 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-06 - 1.10.3 - Version bump. - Fix crash when there are no flags to update during flags change - Fix crash on Akonadi shutdown when using PostgreSQL - Fix notification to clients about database upgrade - Send dummy requests to MySQL from time to time to keep the connection alive - Bug #277839 – Fix problem with too long socket paths - Bug #323977 – Check minimum MySQL version at runtime - Bug #252120, Bug #322931 – Use text instead of bytea column type for QString in PostgreSQL - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-18 - 1.10.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-11 - 1.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-10 - 1.9.80 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-03 - 1.9.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-08 - 1.9.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-08 - 1.9.0 - First release - Idris Kalp - yaralikurt15@hotmail.com - - - - - - kde-servicemenu-rootactions - http://www.kde-apps.org/content/show.php?content=48411 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Root actions servicemenu for Dolphin - Dolphin için yetkili kullanıcı eylemleri menüsü - kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. - kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. - dolphin - http://kde-apps.org/CONTENT/content-files/48411-rootactions_servicemenu_2.8.1.tar.gz - desktop/kde/application/kde-servicemenu-rootactions/pspec.xml - - - kde-servicemenu-rootactions - - /usr/bin - /usr/share/kservices5 - /usr/share/doc - - - - - 2014-05-30 - 2.8.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-09 - 2.8.1 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-11-20 - 2.7.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksyndication - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.application - RSS/Atom parser library - syndication is a parser library for RSS and Atom feeds. - mirrors://kde/stable/applications/15.08.3/src/syndication-15.08.3.tar.xz - - qt5-base-devel - kio-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/ksyndication/pspec.xml - - - ksyndication - - qt5-base - kio - kcodecs - libgcc - kcoreaddons - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ksyndication-devel - Development files for ksyndication - - qt5-base-devel - ksyndication - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kbounce - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Ball bouncing game - Top zıplatma oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kbounce-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kbounce/pspec.xml - - - kbounce - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcalutils - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.application - The KDE calendar utility library - Calendar utility library for KDE - mirrors://kde/stable/applications/15.08.3/src/kcalutils-15.08.3.tar.xz - - qt5-base-devel - kcalcore-devel - kidentitymanagement-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - extra-cmake-modules - - desktop/kde/application/kcalutils/pspec.xml - - - kcalutils - - qt5-base - kcalcore - kidentitymanagement - ki18n - libgcc - kcodecs - kconfig - kcoreaddons - kiconthemes - kwidgetsaddons - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcalutils-devel - Development files for kcalutils - - qt5-base-devel - kcalutils - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmime - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - KDE library for handling mail messages and newsgroup articles. - Kmime library for handling mail messages and newsgroup articles. - mirrors://kde/stable/applications/15.08.3/src/kmime-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - kdelibs4-support-devel - - desktop/kde/application/kmime/pspec.xml - - - kmime - - qt5-base - ki18n - kcodecs - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmime-devel - Development files for kmime - - qt5-base-devel - kmime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - khangman - http://edu.kde.org/applications/all/khangman - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KHangMan is a game for kids based on the well-known hangman game - Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu - 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/applications/15.08.3/src/khangman-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kcrash-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - knotifications-devel - kxmlgui-devel - kwidgetsaddons-devel - kio-devel - qt5-svg-devel - qt5-declarative-devel - extra-cmake-modules - mesa-devel - libkeduvocdocument-devel - - desktop/kde/application/khangman/pspec.xml - - - khangman - - qt5-base - kdeclarative - knewstuff - ki18n - kwidgetsaddons - kconfig - kcoreaddons - kxmlgui - qt5-declarative - libkeduvocdocument - libgcc - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - dragonplayer - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.application - Multimedia player - a multimedia player where the focus is on simplicity, instead of features. - mirrors://kde/stable/applications/15.08.3/src/dragon-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kio-devel - kparts-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/dragonplayer/pspec.xml - - - dragonplayer - - qt5-base - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kservice - qt5-phonon - kcoreaddons - kdbusaddons - kjobwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kparts - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 15.07.80 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - bovo - https://www.kde.org/applications/games/bovo/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - 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/applications/15.08.3/src/bovo-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kxmlgui-devel - kdoctools-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/bovo/pspec.xml - - - bovo - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/icons - /usr/share/kxmlgui5 - /usr/share/applications - /usr/share/bovo - /usr/share/doc - - - org.kde.bovo.desktop - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-18 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kaccounts-integration - https://projects.kde.org/projects/kdereview/kaccounts-integration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - 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 - http://download.kde.org/stable/applications/15.08.3/src/kaccounts-integration-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcmutils-devel - kio-devel - ki18n-devel - kwidgetsaddons-devel - kcoreaddons-devel - kiconthemes-devel - kconfig-devel - kwallet-devel - kdbusaddons-devel - libaccounts-qt5-devel - signon-devel - - desktop/kde/application/kaccounts-integration/pspec.xml - - - kaccounts-integration - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, -Jabber and others - - kio - ki18n - libgcc - signon - kconfig - kwallet - qt5-base - kcoreaddons - kdbusaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - libaccounts-qt5 - qt5-declarative - - - /usr/share - /usr/share/kservices5 - /usr/share/doc - /usr/lib/qt5 - /usr/lib/libkaccounts.so* - - - - kaccounts-integration-devel - Development files for kaccounts-integration - - kaccounts-integration - - - /usr/include - /usr/lib/cmake/KAccounts - - - - - 2015-11-14 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - granatier - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A Bomberman game - Bombalama macera oyunu - 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/applications/15.08.3/src/granatier-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kwidgetsaddons-devel - ki18n-devel - kxmlgui-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/granatier/pspec.xml - - - granatier - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - print-manager - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - KDE print manager - KDE print tool. - print-manager - mirrors://kde/stable/applications/15.08.3/src/print-manager-15.08.3.tar.xz - - kdoctools-devel - extra-cmake-modules - cups-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kservice-devel - qt5-base-devel - kdbusaddons-devel - kiconthemes-devel - kcoreaddons-devel - kwindowsystem-devel - knotifications-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kcmutils-devel - plasma-framework-devel - - desktop/kde/application/print-manager/pspec.xml - - - print-manager - - kio - cups - ki18n - libgcc - kconfig - kservice - qt5-base - kdbusaddons - kiconthemes - kcoreaddons - kwindowsystem - knotifications - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First Release. - Ergün Salman - poyraz76@pisilinux.org - - - - - - kruler - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - A screen ruler and color measurement tool - Ekran cetveli ve renk ölçüm aracı - KRuler is a screen ruler and color measurement tool. - KRuler, bir ekran cetveli ve renk ölçüm aracıdır. - kruler - mirrors://kde/stable/applications/15.08.3/src/kruler-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - knotifications-devel - kwindowsystem-devel - kxmlgui-devel - python-devel - docbook-xsl - - desktop/kde/application/kruler/pspec.xml - - - kruler - - qt5-base - kxmlgui - knotifications - ki18n - libgcc - libxcb - kconfig - kcoreaddons - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kiriki - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Yahtzee like dice game - Yahtzee benzeri zar oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kiriki-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kiriki/pspec.xml - - - kiriki - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - kiconthemes - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - blinken - http://kde.org/applications/education/blinken/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - Memory Enhancement Game - Hafıza geliştirme oyunu. - Memory Enhancement Game - Hafıza geliştirme oyunu. - blinken - mirrors://kde/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kdoctools-devel - kxmlgui-devel - qt5-phonon-devel - - desktop/kde/application/blinken/pspec.xml - - - blinken - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kguiaddons - qt5-phonon - kcoreaddons - kdbusaddons - - - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/blinken - /usr/share/config.kcfg - /usr/share/icons - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kbruch - http://edu.kde.org/applications/mathematics/kbruch - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Practice calculating with fractions and percentages - Ondalık ve kesirli sayılarla pratik yapın - 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/applications/15.08.3/src/kbruch-15.08.3.tar.xz - - qt5-base - kdoctools-devel - kconfig-devel - kcrash-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kcoreaddons-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/application/kbruch/pspec.xml - - - kbruch - - qt5-base - kxmlgui - kconfig - kcrash - ki18n - libgcc - kwidgetsaddons - kcoreaddons - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/man/man1 - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - signon-kwallet-extension - http://kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app - desktop.kde.application - KWallet signon extension - KWallet signon extension - http://download.kde.org/stable/applications/15.08.3/src/signon-kwallet-extension-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - signon-devel - - desktop/kde/application/signon-kwallet-extension/pspec.xml - - - signon-kwallet-extension - KWallet signon extension - - libgcc - signon - kwallet - qt5-base - - - /usr/lib/signon - /usr/share/doc - - - - - 2015-12-03 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kbreakout - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Breakout like game - Breakout benzeri oyun - 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 - http://download.kde.org/stable/applications/15.08.3/src/kbreakout-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - kjobwidgets-devel - kxmlgui-devel - kio-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kbreakout/pspec.xml - - - kbreakout - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-16 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcalcore - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - the KDE calendar access library. - A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information. - mirrors://kde/stable/applications/15.08.3/src/kcalcore-15.08.3.tar.xz - - qt5-base-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libical-devel - extra-cmake-modules - - desktop/kde/application/kcalcore/pspec.xml - - - kcalcore - - qt5-base - kcodecs - kconfig - kcoreaddons - libical - kdelibs4-support - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcalcore-devel - Development files for kcontacts - - qt5-base-devel - libical-devel - kcalcore - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmailtransport - http://pim.kde.org/akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.application - Mail Transport Service - Mail Transport Service - akonadi - mirrors://kde/stable/applications/15.08.3/src/kmailtransport-15.08.3.tar.xz - - qt5-base-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kmime-devel - akonadi-search-devel - akonadi-devel - cyrus-sasl-devel - extra-cmake-modules - - desktop/kde/application/kmailtransport/pspec.xml - - - kmailtransport - app:console - - qt5-base - ki18n - kio - libgcc - kmime - kconfig - kwallet - kcompletion - kdepimlibs - kcoreaddons - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/lib - /usr/lib/qt5 - /usr/share/kservices5 - /usr/share/doc/ - /usr/share/config.kcfg - - - - kmailtransport-devel - Development files for akonadi - - kmailtransport - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-21 - 15.08.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - dolphin - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.application - KDE File Manager - Dolphin is the File Manager for KDE. - mirrors://kde/stable/applications/15.08.3/src/dolphin-15.08.3.tar.xz - - qt5-base-devel - qt5-phonon-devel - kio-devel - kcmutils-devel - knewstuff-devel - kinit-devel - kactivities-devel - baloo-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - baloo-widgets - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/application/dolphin/pspec.xml - - - dolphin - - qt5-base - knewstuff - kio - ki18n - solid - kparts - libgcc - kcodecs - kconfig - kxmlgui - kcmutils - kservice - kbookmarks - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - dolphin-devel - - dolphin - qt5-base-devel - qt5-phonon-devel - kio-devel - kcmutils-devel - knewstuff-devel - kinit-devel - kactivities-devel - baloo-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - - - /usr/include - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-31 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-23 - 14.12 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdepimlibs - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.application - KDE5 PIM libraries - KDE5 PIM kitaplıkları - Contains KDE5 PIM (Personal Information Management) base libraries. - KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıkları içerir. - mirrors://kde/stable/applications/15.08.3/src/kdepimlibs-15.08.3.tar.xz - - qt5-base-devel - boost-devel - gpgme-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - prison-qt5-devel - kmbox-devel - qt5-phonon-devel - akonadi-devel - libical-devel - libqjson-devel - libgpg-error-devel - libxslt-devel - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalcore-devel - kldap-devel - extra-cmake-modules - - desktop/kde/application/kdepimlibs/pspec.xml - - - kdepimlibs - - qt5-base - kio - ki18n - libgcc - kcodecs - kmime - kldap - kxmlgui - kcalcore - kcontacts - kconfig - libxml2 - kservice - kguiaddons - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - ktextwidgets - kconfigwidgets - kwidgetsaddons - kdelibs4-support - qt5-phonon - prison-qt5 - akonadi - cyrus-sasl - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/dbus-1 - /usr/share/config.kcfg - /usr/share/kf5 - /usr/share/config - /usr/share/akonadi - - - - kdepimlibs-devel - Development package for KDE5 PIM libraries - KDE5 PIM kitaplıkları için geliştirme paketi - Contains development tools and header files for KDE5 PIM (Personal Information Management) base libraries. - KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıklarla ilgili geliştirme araçları ve başlık dosyalarını içerir. - - qt5-base-devel - boost-devel - kdepimlibs - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-11 - 15.08.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-14 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-09 - 4.11.4 - Rebuild for cyrus-sasl. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmines - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Minesweeper like game - Mayın tarlası oyunu - 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 - http://download.kde.org/stable/applications/15.08.3/src/kmines-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/kmines/pspec.xml - - - kmines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-19 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kalgebra - http://edu.kde.org/applications/mathematics/kalgebra - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.application - A graph calculator - Bir grafiksel hesap makinesi - 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/applications/15.08.3/src/kalgebra-15.08.3.tar.xz - - mesa-devel - mesa-glu-devel - qt5-base-devel - qt5-quick1-devel - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel - analitza-devel - kdoctools-devel - ncurses-devel - readline-devel - gettext-devel - ki18n-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kio-devel - extra-cmake-modules - - desktop/kde/application/kalgebra/pspec.xml - - - kalgebra - - qt5-base - qt5-declarative - qt5-webkit - qt5-location - analitza - libgcc - kconfig - kxmlgui - readline - kcoreaddons - ki18n - kconfigwidgets - kwidgetsaddons - kio - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kalarmcal - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Library to provides access and handling of KAlarm calendar data - Library to provides access and handling of KAlarm calendar data - mirrors://kde/stable/applications/15.08.3/src/kalarmcal-15.08.3.tar.xz - - qt5-base-devel - akonadi-devel - kcalcore-devel - kidentitymanagement-devel - kdepimlibs-devel - boost-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdoctools-devel - libical-devel - kholidays-devel - extra-cmake-modules - - desktop/kde/application/kalarmcal/pspec.xml - - - kalarmcal - - qt5-base - kcalcore - kholidays - kidentitymanagement - ki18n - libgcc - kdepimlibs - kdelibs4-support - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kalarmcal-devel - Development files for kalarmcal - - qt5-base-devel - kalarmcal - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-23 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - bomber - https://www.kde.org/applications/games/bomber/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:gui - desktop.kde.application - 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/applications/15.08.3/src/bomber-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/bomber/pspec.xml - - - bomber - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - qt5-phonon - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/appdata - /usr/share/applications - /usr/share - /usr/share/bomber - /usr/share/config.kcfg - /usr/share/icons - /usr/share/doc - /usr/share/kxmlgui5 - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-19 - 15.08.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - killbots - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.application - Run for your life - Hayatta kalmak için kaçın - 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 - http://download.kde.org/stable/applications/15.08.3/src/killbots-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - kcompletion-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/application/killbots/pspec.xml - - - killbots - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2015-11-18 - 15.08.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-11-13 - 4.14.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-calendar - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.application - Akonadi calendar integration - Calendar integration for Akonadi. - mirrors://kde/stable/applications/15.08.3/src/akonadi-calendar-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - boost-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmailtransport-devel - akonadi-devel - kdelibs4-support-devel - extra-cmake-modules - kdesignerplugin - kdepimlibs-devel - kmime-devel - cyrus-sasl-devel - kcontacts-devel - kidentitymanagement-devel - kcalcore-devel - kcalutils-devel - - desktop/kde/application/akonadi-calendar/pspec.xml - - - akonadi-calendar - - qt5-base - ki18n - kcodecs - kdelibs4-support - kio - kmime - libgcc - kconfig - kxmlgui - kcalcore - kcalutils - kcontacts - kdepimlibs - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - kconfigwidgets - kmailtransport - kwidgetsaddons - kidentitymanagement - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - akonadi-calendar-devel - Development files for akonadi-calendar - - qt5-base-devel - akonadi-calendar - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-22 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ktp-auth-handler - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.application - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - http://download.kde.org/stable/applications/15.08.3/src/ktp-auth-handler-15.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - kwidgetsaddons-devel - ki18n-devel - kio-devel - kdewebkit-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - qca2-qt5-devel - libaccounts-qt5-devel - kaccounts-integration-devel - signon-devel - - desktop/kde/application/ktp-auth-handler/pspec.xml - - - ktp-auth-handler - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - - kio - ki18n - libgcc - signon - kconfig - qca2-qt5 - qt5-base - kcoreaddons - telepathy-qt5 - kwidgetsaddons - libaccounts-qt5 - ktp-common-internals - kaccounts-integration - - - /usr/lib - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/doc - - - - - 2015-11-22 - 15.08.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - khtml - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - HTML rendering engine for KDE - KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. - mirrors://kde/stable/frameworks/5.17/portingAids/khtml-5.17.0.tar.xz - - qt5-base-devel - libjpeg-turbo-devel - giflib-devel - libpng-devel - qt5-phonon-devel - libX11-devel - zlib-devel - kio-devel - kjs-devel - kglobalaccel-devel - kauth-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - openssl-devel - extra-cmake-modules - - desktop/kde/porting-aids/khtml/pspec.xml - - - khtml - - qt5-base - qt5-x11extras - qt5-phonon - zlib - openssl - giflib - libX11 - libgcc - libpng - libjpeg-turbo - sonnet - kcodecs - kconfig - kjobwidgets - kwidgetsaddons - kcompletion - karchive - kconfigwidgets - kcoreaddons - kglobalaccel - ki18n - kiconthemes - kio - kjs - knotifications - kparts - kservice - ktextwidgets - kwallet - kwindowsystem - kxmlgui - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - khtml-devel - Development files for khtml - - khtml - qt5-base-devel - qt5-x11extras-devel - qt5-phonon-devel - zlib-devel - openssl-devel - giflib-devel - libX11-devel - libpng-devel - libjpeg-turbo-devel - sonnet-devel - kcodecs-devel - kconfig-devel - kjobwidgets-devel - kwidgetsaddons-devel - kcompletion-devel - karchive-devel - kconfigwidgets-devel - kcoreaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kjs-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kwallet-devel - kwindowsystem-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - krunner - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - Krunner Framework for providing different actions given a string query - Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. - mirrors://kde/stable/frameworks/5.17/portingAids/krunner-5.17.0.tar.xz - - qt5-base-devel - gettext-devel - kdoctools-devel - qt5-declarative-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - plasma-framework-devel - solid-devel - threadweaver-devel - extra-cmake-modules - - desktop/kde/porting-aids/krunner/pspec.xml - - - krunner - - qt5-base - qt5-declarative - libgcc - kconfig - kcoreaddons - ki18n - kio - kservice - plasma-framework - solid - threadweaver - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - krunner-devel - Development files for krunner - - krunner - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - plasma-framework-devel - solid-devel - threadweaver-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kross - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - KDE5 application scripting helper - Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. - mirrors://kde/stable/frameworks/5.17/portingAids/kross-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - kcoreaddons-devel - kdoctools-devel - kconfigwidgets-devel - ktextwidgets-devel - kparts-devel - sonnet-devel - kauth-devel - ki18n-devel - kcompletion-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - kxmlgui-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kross/pspec.xml - - - kross - - qt5-base - qt5-script - libgcc - kcoreaddons - ki18n - kcompletion - kiconthemes - kio - kparts - kwidgetsaddons - kxmlgui - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kross-devel - Development files for kross - - kross - qt5-base-devel - qt5-script-devel - kcoreaddons-devel - ki18n-devel - kcompletion-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kross-interpreters - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.porting-aids - Kross interpreter plugins for programming languages - Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/applications/15.08.0/src/kross-interpreters-15.08.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kross-devel - kunitconversion-devel - python-devel - - desktop/kde/porting-aids/kross-interpreters/pspec.xml - - - kross-interpreters - - qt5-base - libgcc - python - kross - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-08-29 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdelibs4-support - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - Code and utilities to ease the transition to KDE Frameworks 5 - KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 - mirrors://kde/stable/frameworks/5.17/portingAids/kdelibs4support-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - perl-URI - libSM-devel - docbook-xml - openssl-devel - libX11-devel - kio-devel - kauth-devel - kcrash-devel - kdesignerplugin - intltool - kdoctools-devel - kglobalaccel-devel - kguiaddons-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - kunitconversion-devel - NetworkManager-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kdelibs4-support/pspec.xml - - - kdelibs4-support - - qt5-base - libICE - libgcc - libX11 - qt5-svg - qt5-x11extras - libSM - kauth - solid - kcodecs - kcoreaddons - kjobwidgets - kcompletion - kconfig - kconfigwidgets - kcrash - kdbusaddons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemviews - knotifications - kparts - kservice - ktextwidgets - kxmlgui - kwindowsystem - kwidgetsaddons - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kdelibs4-support-devel - Development files for kdelibs4-support - - kdelibs4-support - qt5-base-devel - libICE-devel - libX11-devel - qt5-svg-devel - qt5-x11extras-devel - libSM-devel - kauth-devel - solid-devel - kcodecs-devel - kcoreaddons-devel - kjobwidgets-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knotifications-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kxmlgui-devel - kwindowsystem-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjsembed - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - JavaScript support for HTML rendering engine on KDE5 - The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. - mirrors://kde/stable/frameworks/5.17/portingAids/kjsembed-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-designer-devel - kdoctools-devel - ki18n-devel - kjs-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kjsembed/pspec.xml - - - kjsembed - - qt5-base - qt5-svg - libgcc - ki18n - kjs - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 /usr/lib + /usr/share/lcms/ /usr/share/man /usr/share/doc - kjsembed-devel - Development files for kjsembed + lcms2-devel + Development files for lcms2 - qt5-base-devel - qt5-svg-devel - ki18n-devel - kjs-devel - kjsembed + lcms2 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjs - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.porting-aids - JavaScript engine for KDE - This library provides an ECMAScript compatible interpreter. The ECMA standard is based on well known scripting languages such as Netscape's JavaScript and Microsoft's JScript. - mirrors://kde/stable/frameworks/5.17/portingAids/kjs-5.17.0.tar.xz - - qt5-base-devel - libpcre-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/porting-aids/kjs/pspec.xml - - kjs - - qt5-base - libgcc - libpcre - - - /usr/bin - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kjs-devel - Development files for kjs - - libpcre-devel - qt5-base-devel - kjs - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kmediaplayer - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.porting-aids - KDE5 media player Plugin interface for media player features - KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. - mirrors://kde/stable/frameworks/5.17/portingAids/kmediaplayer-5.17.0.tar.xz - - qt5-base-devel - kio-devel - kauth-devel - kparts-devel - ktextwidgets-devel - sonnet-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/porting-aids/kmediaplayer/pspec.xml - - - kmediaplayer - - qt5-base - libgcc - kparts - kxmlgui - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmediaplayer-devel - Development files for kmediaplayer - - kmediaplayer - qt5-base-devel - kparts-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-02 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kiten - http://edu.kde.org/applications/all/kiten - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A Japanese reference/study tool - Japonca referans ve alıştırma uygulaması - Kiten is a Japanese reference/study tool. - Kiten, Japonca referans ve alıştırma uygulamasıdır. - kiten>kiten - mirrors://kde/stable/applications/15.08.3/src/kiten-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdoctools-devel - gettext-devel - ki18n-devel - khtml-devel - kxmlgui-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - - desktop/kde/edu/kiten/pspec.xml - - - kiten - - qt5-base - karchive - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdoctools - gettext - ki18n - khtml - kxmlgui - kio - kparts - libgcc - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - kiten-devel - Development files for kiten - kiten için geliştirme dosyaları - - kiten - - - /usr/include - /usr/lib/cmake - - - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kstars - http://edu.kde.org/applications/all/kstars - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A desktop planetarium for KDE - KDE için bir masaüstü gözlemevi - 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 - mirrors://kde/stable/applications/15.08.3/src/kstars-15.08.3.tar.xz - - qt5-base-devel - qt5-multimedia-devel - qt5-quick1-devel - qt5-svg-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - eigen3 - xplanet - cfitsio-devel - libindi-devel - kdoctools-devel - kconfig-devel - kguiaddons-devel - kwidgetsaddons-devel - knewstuff-devel - kdbusaddons-devel - gettext-devel - ki18n-devel - kinit-devel - kjobwidgets-devel - kio-devel - kwindowsystem-devel - kxmlgui-devel - kplotting-devel - ktexteditor-devel - kiconthemes-devel - pkgconfig - mesa-glu-devel - mesa-devel - wcslib-devel - zlib-devel - extra-cmake-modules - - desktop/kde/edu/kstars/pspec.xml - - - kstars - - qt5-base - qt5-svg - libindi - cfitsio - kio - kinit - knewstuff - kplotting - ktexteditor - zlib - ki18n - libgcc - kconfig - kxmlgui - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - wcslib - xplanet - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-18 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kdeedu-data - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.edu - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/applications/15.08.3/src/kdeedu-data-15.08.3.tar.xz - - extra-cmake-modules - - desktop/kde/edu/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-22 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kmplot - http://kde.org/applications/education/kmplot/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.education - 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. - http://download.kde.org/stable/applications/15.08.3/src/kmplot-15.08.3.tar.xz - - extra-cmake-modules - gettext-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kparts-devel - kwidgetsaddons-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - qt5-base-devel - - desktop/kde/edu/kmplot/pspec.xml - - - kmplot - Mathematical Function Plotter - - kdelibs4-support - ki18n - kparts - kwidgetsaddons - qt5-base - qt5-svg - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-06 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kig - http://edu.kde.org/applications/all/kig - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An interactive geometry application - Bir etkileşimli geometri uygulaması - Kig is an application for interactive geometry. - Kig, bir etkileşimli geometri uygulamasıdır. - kig - mirrors://kde/stable/applications/15.08.3/src/kig-15.08.3.tar.xz - - qt5-base-devel - qt5-svg-devel - boost-devel - ktexteditor-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - qt5-xmlpatterns-devel - gettext-devel - pkgconfig - extra-cmake-modules - - desktop/kde/edu/kig/pspec.xml - - - kig - - qt5-base - boost - ktexteditor - qt5-xmlpatterns - qt5-svg - ki18n - kparts - ktexteditor - kiconthemes - kconfigwidgets - karchive - kxmlgui - kitemmodels - libgcc - kservice - kcompletion - kcoreaddons - kwidgetsaddons - kconfig - - - /usr/lib - /usr/lib/qt5 - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - khangman - http://edu.kde.org/applications/all/khangman - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - KHangMan is a game for kids based on the well-known hangman game - Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu - 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/applications/15.08.3/src/khangman-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kcrash-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - knotifications-devel - kxmlgui-devel - kwidgetsaddons-devel - kio-devel - qt5-svg-devel - qt5-linguist - qt5-declarative-devel - libkeduvocdocument-devel - extra-cmake-modules - - desktop/kde/edu/khangman/pspec.xml - - - khangman - - qt5-base - kdeclarative - knewstuff - ki18n - kwidgetsaddons - kconfig - kcoreaddons - kxmlgui - qt5-declarative - libkeduvocdocument - libgcc - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2015-11-16 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kturtle - http://edu.kde.org/applications/all/kturtle - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An educational programming environment - Öğrenim amaçlı programlama ortamı - 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/applications/15.08.3/src/kturtle-15.08.3.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - kdelibs4-support-devel - knewstuff-devel - extra-cmake-modules - kio-devel - kcoreaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - kconfig-devel - gettext-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/edu/kturtle/pspec.xml - - - kturtle - - qt5-base - qt5-svg - ki18n - knewstuff - libgcc - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kxmlgui - kconfig - kdelibs4-support - - - /etc/xdg - /usr/share/doc - /usr/bin - /usr/share - - - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - parley - http://edu.kde.org/applications/all/parley - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - Parley is a program to help you memorize things. - Tekrar yapmanıza yardım eden bir uygulama - 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/applications/15.08.3/src/parley-15.08.3.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-multimedia-devel - libxslt-devel - libXrender-devel - libxml2-devel - libkeduvocdocument-devel - kdoctools-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - gettext-devel - ki18n-devel - kio-devel - knewstuff-devel - kross-devel - kcmutils-devel - kxmlgui-devel - sonnet-devel - kservice-devel - ktextwidgets-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - knotifications-devel - khtml-devel - extra-cmake-modules - - desktop/kde/edu/parley/pspec.xml - - - parley - - qt5-base - qt5-svg - qt5-multimedia - libxslt - libXrender - libxml2 - libkeduvocdocument - kdoctools - kcoreaddons - kconfig - kcrash - gettext - ki18n - kio - knewstuff - kross - kcmutils - kxmlgui - knotifications - sonnet - kservice - libgcc - ktextwidgets - kcompletion - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - blinken - https://www.kde.org/applications/education/blinken/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - gui - desktop.kde.education - Blinken - Memory Enhancement Game - 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. - http://download.kde.org/stable/applications/15.08.3/src/blinken-15.08.3.tar.xz - - extra-cmake-modules - gettext-devel - kdbusaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kxmlgui-devel - qt5-base-devel - - desktop/kde/edu/blinken/pspec.xml - - - blinken - Blinken - Memory Enhancement Game - - kconfig - kcoreaddons - kdbusaddons - kguiaddons - ki18n - kxmlgui - libgcc - qt5-base - qt5-phonon - qt5-svg - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-06 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - klettres - http://edu.kde.org/applications/all/klettres - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An alphabet learning application - Alfabe öğrenme uygulaması - 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/applications/15.08.3/src/klettres-15.08.3.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - extra-cmake-modules - kcompletion-devel - kemoticons-devel - kitemmodels-devel - ki18n-devel - knewstuff-devel - kwidgetsaddons-devel - kconfigwidgets-devel - kcoreaddons-devel - kconfig-devel - kxmlgui-devel - qt5-phonon-devel - - desktop/kde/edu/klettres/pspec.xml - - - klettres - - qt5-base - qt5-svg - qt5-phonon - knewstuff - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - libgcc - - - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2015-11-17 - 15.08.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kompare - http://www.kde.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - File difference viewer - Dosya karşılaştırma göstericisi. - Diff/Patch Frontend. - Dosya karşılaştırma göstericisi. - mirrors://kde/stable/applications/15.08.3/src/kompare-15.08.3.tar.xz - - extra-cmake-modules - kdoctools-devel - qt5-base-devel - gettext-devel - libkomparediff2-devel - kcoreaddons-devel - kcodecs-devel - kiconthemes-devel - kjobwidgets-devel - kconfig-devel - kparts-devel - ktexteditor-devel - kwidgetsaddons-devel - - desktop/kde/sdk/kompare/pspec.xml - - - kompare - - qt5-base - libkomparediff2 - kio - ki18n - kparts - libgcc - kcodecs - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktexteditor - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/bin - /usr/include - - - kdesdk - - - kdesdk - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-07 - 15.08.2 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkomparediff2 - https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.sdk - Library to compare files and strings - Library to compare files and strings - mirrors://kde/stable/applications/15.08.3/src/libkomparediff2-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - python3-devel - gettext-devel - kcoreaddons-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - ki18n-devel - kio-devel - kparts-devel - - desktop/kde/sdk/libkomparediff2/pspec.xml - - - libkomparediff2 - - qt5-base - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcoreaddons - kconfigwidgets - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - libkomparediff2-devel - Shared libraries for libkomparediff2. - - libkomparediff2 - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - lokalize - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Lokalize is the localization tool for KDE and other open source software - 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/applications/15.08.3/src/lokalize-15.08.3.tar.xz - - qt5-base-devel - hunspell-devel - extra-cmake-modules - kdoctools-devel - kio-devel - kitemviews-devel - ki18n-devel - kross-devel - kparts-devel - sonnet-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - knotifications-devel - kwidgetsaddons-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - - desktop/kde/sdk/lokalize/pspec.xml - - - lokalize - - qt5-base - kio - kitemviews - ki18n - kross - kparts - libgcc - sonnet - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons - hunspell - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.04.3 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kapptemplate - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Application template generator - 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/applications/15.08.3/src/kapptemplate-15.08.3.tar.xz - - qt5-base-devel - extra-cmake-modules - gettext - kcoreaddons-devel - kconfigwidgets-devel - kcompletion-devel - karchive-devel - kio-devel - ki18n-devel - kdoctools-devel - - desktop/kde/sdk/kapptemplate/pspec.xml - - - kapptemplate - - qt5-base - kio - ki18n - libgcc - kconfig - karchive - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-07-19 - 15.08.2 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - umbrello - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.sdk - UML modelling tool and code generator - 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/applications/15.08.3/src/umbrello-15.08.3.tar.xz - - qt5-base-devel - libxslt-devel - qt5-svg-devel - kio-devel - kparts-devel - kinit-devel - kcompletion-devel - kxmlgui-devel - kauth-devel - kconfig-devel - ktexteditor-devel - kcoreaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/sdk/umbrello/pspec.xml - - - umbrello - - qt5-base - kio - ki18n - libgcc - kconfig - kxmlgui - libxml2 - qt5-svg - karchive - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktextwidgets - kconfigwidgets - kwidgetsaddons - ktexteditor - libxslt - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First Release. - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - karchive - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Qt 5 addon providing access to numerous types of archives - KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. - mirrors://kde/stable/frameworks/5.17/karchive-5.17.0.tar.xz - - qt5-base-devel - xz-devel - zlib-devel - bzip2 - extra-cmake-modules - - desktop/kde/framework/karchive/pspec.xml - - - karchive - - qt5-base - xz - zlib - bzip2 - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - karchive-devel - Development files for karchive - - qt5-base-devel - karchive - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kconfigwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.framework - Kconfig widgets - KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. - mirrors://kde/stable/frameworks/5.17/kconfigwidgets-5.17.0.tar.xz - - qt5-base-devel - ki18n-devel - kauth-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - kguiaddons-devel - kwidgetsaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kconfigwidgets/pspec.xml - - - kconfigwidgets - - libgcc - qt5-base - kauth - kcodecs - kconfig - kcoreaddons - kguiaddons - ki18n - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kconfigwidgets-devel - Development files for kconfigwidgets - - kconfigwidgets - qt5-base-devel - kauth-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - kguiaddons-devel - ki18n-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpackage - https://userbase.kde.org/KPackage - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPL - app:library - desktop.kde.framework - Framework that lets applications manage user installable packages of non-binary assets - KPackage is dependent on the Smart package manager. - mirrors://kde/stable/frameworks/5.17/kpackage-5.17.0.tar.xz - - qt5-base-devel - libX11-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel - kdoctools-devel - docbook-sgml4_5 - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kpackage/pspec.xml - - - kpackage - - qt5-base - libgcc - kconfig - ki18n - kcoreaddons - karchive - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man/man1 - - - - kpackage-devel - Development files for kpackage - - kpackage - qt5-base-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kplotting - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Data plotting - Kplotting contains data plotting classes for QT 5 and KDE - mirrors://kde/stable/frameworks/5.17/kplotting-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kplotting/pspec.xml - - - kplotting - - qt5-base - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kplotting-devel - Development files for kplotting - - qt5-base-devel - kplotting - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - threadweaver - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Multi-threaded programming framework for KDE - ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. - mirrors://kde/stable/frameworks/5.17/threadweaver-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/threadweaver/pspec.xml - - - threadweaver - - qt5-base - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - threadweaver-devel - Development files for threadweaver - - qt5-base-devel - threadweaver - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - solid - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 hardware integration framework - Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. - mirrors://kde/stable/frameworks/5.17/solid-5.17.0.tar.xz - - qt5-base-devel - eudev-devel - qt5-linguist - qt5-declarative-devel - udisks2-devel - upower-devel - media-player-info - extra-cmake-modules - - desktop/kde/framework/solid/pspec.xml - - - solid - - qt5-base - qt5-declarative - media-player-info - libgcc - eudev - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - solid-devel - Development files for solid - - qt5-base-devel - solid - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - frameworkintegration - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework providing components to allow applications to integrate with a KDE Workspace - Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. - mirrors://kde/stable/frameworks/5.17/frameworkintegration-5.17.0.tar.xz - - libxcb-devel - libXcursor-devel - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - oxygen-fonts - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kjobwidgets-devel - kconfigwidgets-devel - kiconthemes-devel - ki18n-devel - kauth-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/frameworkintegration/pspec.xml - - - frameworkintegration - - libgcc - qt5-base - libxcb - libXcursor - qt5-x11extras - kconfig - kxmlgui - kcompletion - kcoreaddons - kjobwidgets - kconfigwidgets - kiconthemes - ki18n - kio - knotifications - kwidgetsaddons - oxygen-fonts - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - frameworkintegration-devel - Development files for framework-integration - - frameworkintegration - qt5-base-devel - libxcb-devel - libXcursor-devel - qt5-x11extras-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kjobwidgets-devel - kconfigwidgets-devel - kiconthemes-devel - ki18n-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - New Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - networkmanager-qt - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - A QT wrapper around the NetworkManager libraries - A QT wrapper around the NetworkManager libraries - mirrors://kde/stable/frameworks/5.17/networkmanager-qt-5.17.0.tar.xz - - qt5-base-devel - NetworkManager-devel - extra-cmake-modules - - desktop/kde/framework/networkmanager-qt/pspec.xml - - - networkmanager-qt - - qt5-base - NetworkManager - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - networkmanager-qt-devel - Development files for networkmanager-qt - - qt5-base-devel - networkmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcmutils - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Utilities for interacting with KCModules - KCMUtils provides various classes to work with KCModules. KCModules can be created with the KConfigWidgets framework. - mirrors://kde/stable/frameworks/5.17/kcmutils-5.17.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - mesa-devel - kcodecs-devel - kpackage-devel - kdeclarative-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kservice-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/framework/kcmutils/pspec.xml - - - kcmutils - - qt5-base - qt5-declarative - libgcc - kdeclarative - kconfigwidgets - kwidgetsaddons - kconfig - kauth - kcoreaddons - ki18n - kiconthemes - kitemviews - kservice - kxmlgui - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcmutils-devel - Development files for kcmutils - - kcmutils - qt5-base-devel - qt5-declarative-devel - kdeclarative-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kservice-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-framework - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Plasma library and runtime components based upon KDE Frameworks 5 and Qt5 - Plasma library and runtime components based upon KF5 and Qt5 - mirrors://kde/stable/frameworks/5.17/plasma-framework-5.17.0.tar.xz - - qt5-base-devel - qt5-quickcontrols - kdoctools-devel - qt5-svg-devel - qt5-script-devel - qt5-quick1-devel - qt5-x11extras-devel - qt5-declarative-devel - mesa-devel - libX11-devel - libxcb-devel - kauth-devel - kcodecs-devel - kwidgetsaddons-devel - kbookmarks-devel - kcompletion-devel - kactivities-devel - kitemviews-devel - kjobwidgets-devel - solid-devel - knotifications-devel - kpackage-devel - karchive-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kparts-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/plasma-framework/pspec.xml - - - plasma-framework - - qt5-base - qt5-svg - qt5-script - qt5-x11extras - qt5-declarative - qt5-quickcontrols - qt5-quick1 - mesa - libgcc - libX11 - libxcb - kactivities - knotifications - kpackage - karchive - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kservice - kwindowsystem - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - plasma-framework-devel - Development files for plasma-framework - - plasma-framework - qt5-base-devel - qt5-svg-devel - qt5-script-devel - qt5-x11extras-devel - qt5-declarative-devel - mesa-devel - libX11-devel - libxcb-devel - kactivities-devel - knotifications-devel - kpackage-devel - karchive-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdesu - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - User interface for running shell commands with root privileges - kdesu provides functionality for building GUI front ends for (password asking) console mode programs. - mirrors://kde/stable/frameworks/5.17/kdesu-5.17.0.tar.xz - - qt5-base-devel - kcoreaddons-devel - kpty-devel - kservice-devel - ki18n-devel - kconfig-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kdesu/pspec.xml - - - kdesu - - qt5-base - kcoreaddons - kpty - kservice - ki18n - kconfig - libgcc - libX11 - - - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdesu-devel - Development files for kdesu - - kdesu - qt5-base-devel - kcoreaddons-devel - kpty-devel - kservice-devel - ki18n-devel - kconfig-devel - libX11-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kjobwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Widgets for showing progress of asynchronous jobs - KJobWIdgets provides widgets for showing progress of asynchronous jobs. - mirrors://kde/stable/frameworks/5.17/kjobwidgets-5.17.0.tar.xz - - libX11-devel - qt5-base-devel - qt5-linguist - kcoreaddons-devel - kwidgetsaddons-devel - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kjobwidgets/pspec.xml - - - kjobwidgets - - qt5-base - libgcc - kcoreaddons - kwidgetsaddons - qt5-x11extras - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kjobwidgets-devel - Development files for kjobwidgets - - qt5-base-devel - kjobwidgets - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdewebkit - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 WebKit integration - KdeWebkit provides KDE integration of the QtWebKit library. - mirrors://kde/stable/frameworks/5.17/kdewebkit-5.17.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-webkit - kauth-devel - sonnet-devel - kconfig-devel - ktextwidgets-devel - kjobwidgets-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/kdewebkit/pspec.xml - - - kdewebkit - - qt5-webkit - libgcc - kconfig - kjobwidgets - qt5-base - kcoreaddons - kparts - kservice - kwallet - kio - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/mkspecs/modules/ - /usr/share/doc - - - - kdewebkit-devel - Development files for kdewebkit - - kdewebkit - qt5-webkit-devel - kconfig-devel - kjobwidgets-devel - qt5-base-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - bluez-qt - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.framework - Qt wrapper for KDE 5 Bluez DBus API - Qt wrapper for KDE 5 DBus API. - mirrors://kde/stable/frameworks/5.17/bluez-qt-5.17.0.tar.xz - - bluez - bluez-libs-devel - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/bluez-qt/pspec.xml - - - bluez-qt - - bluez - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - bluez-qt-devel - Development files for bluez-qt - - qt5-base-devel - qt5-declarative-devel - bluez-qt - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-14 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-17 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcompletion - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Addon with auto completion widgets and classes - KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. - mirrors://kde/stable/frameworks/5.17/kcompletion-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kconfig-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kcompletion/pspec.xml - - - kcompletion - - qt5-base - libgcc - kconfig - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcompletion-devel - Development files for kcompletion - - qt5-base-devel - kcompletion - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdeclarative - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Integration of QML and KDE workspaces - KDeclarative provides integration of QML and KDE workspaces. - mirrors://kde/stable/frameworks/5.17/kdeclarative-5.17.0.tar.xz - - qt5-base-devel - mesa-devel - libepoxy-devel - qt5-declarative-devel - kauth-devel - kcodecs-devel - kpackage-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - kguiaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kbookmarks-devel - kcompletion-devel - kconfigwidgets-devel - kitemviews-devel - kjobwidgets-devel - solid-devel - kxmlgui-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kdeclarative/pspec.xml - - - kdeclarative - - qt5-base - libgcc - libepoxy - qt5-declarative - kpackage - kconfig - kservice - kcoreaddons - kglobalaccel - ki18n - kiconthemes - kio - kwidgetsaddons - kwindowsystem - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdeclarative-devel - Development files for kdeclarative - - qt5-base-devel - libepoxy-devel - qt5-declarative-devel - kpackage-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kio-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdeclarative - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kbookmarks - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Access and manipulate bookmarks stored using XBEL format - Framework which lets you access and manipulate bookmarks stored using XBEL format - mirrors://kde/stable/frameworks/5.17/kbookmarks-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kcoreaddons-devel - kauth-devel - kcodecs-devel - kconfig-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/framework/kbookmarks/pspec.xml - - - kbookmarks - - qt5-base - libgcc - kcoreaddons - kcodecs - kconfig - kiconthemes - kwidgetsaddons - kxmlgui - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kbookmarks-devel - Development files for kbookmarks - - kbookmarks - qt5-base-devel - kcoreaddons-devel - kcodecs-devel - kconfig-devel - kiconthemes-devel - kwidgetsaddons-devel - kxmlgui-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kguiaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Utilities for graphical user interfaces - The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. - mirrors://kde/stable/frameworks/5.17/kguiaddons-5.17.0.tar.xz - - libX11-devel - libxcb-devel - qt5-base-devel - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kguiaddons/pspec.xml - - - kguiaddons - - libgcc - libX11 - qt5-base - qt5-x11extras - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kguiaddons-devel - Development files for kguiaddons - - kguiaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knewstuff - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework for downloading and sharing additional application data - The KNewStuff library implements collaborative data sharing for applications. - mirrors://kde/stable/frameworks/5.17/knewstuff-5.17.0.tar.xz - - qt5-base-devel - boost-devel - kauth-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/knewstuff/pspec.xml - - - knewstuff - - qt5-base - libgcc - kwidgetsaddons - ktextwidgets - kiconthemes - kcompletion - kitemviews - karchive - attica - kconfig - kcoreaddons - ki18n - kio - kservice - kxmlgui - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knewstuff-devel - Development files for knewstuff - - qt5-base-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - kxmlgui-devel - knewstuff - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kxmlgui - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework for managing menu and toolbar actions - Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. - mirrors://kde/stable/frameworks/5.17/kxmlgui-5.17.0.tar.xz - - qt5-base-devel - attica-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kauth-devel - kcodecs-devel - sonnet-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kxmlgui/pspec.xml - - - kxmlgui - - qt5-base - libgcc - attica - kcoreaddons - kconfig - kconfigwidgets - kglobalaccel - ki18n - kiconthemes - kitemviews - ktextwidgets - kwidgetsaddons - kwindowsystem - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kxmlgui-devel - Development files for kxmlgui - - kxmlgui - qt5-base-devel - attica-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kauth - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Abstraction to system policy and authentication features - Framework which lets applications perform actions as a privileged user - mirrors://kde/stable/frameworks/5.17/kauth-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - polkit-qt-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/framework/kauth/pspec.xml - - - kauth - - qt5-base - polkit-qt - kcoreaddons - libgcc - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kauth-devel - Development files for kauth - - kauth - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libkexiv2 - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.framework - An Exiv2 wrapper library - 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. - https://github.com/KDE/libkexiv2/archive/frameworks.zip - - cmake - extra-cmake-modules - qt5-base-devel - exiv2-devel - - desktop/kde/framework/libkexiv2/pspec.xml - - - libkexiv2 - - qt5-base - exiv2-libs - - - /usr/lib - /usr/bin - /usr/share/kde4/apps - - - - libkexiv2-devel - Development files for libkexiv2 - libkexiv2 için geliştirme dosyaları - - libkexiv2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-05 - 15.07.71 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-10-15 - 4.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-09-20 - 4.14.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-21 - 4.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-06-13 - 4.13.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-13 - 4.13.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-03 - 4.13.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-04-05 - 4.12.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2014-03-04 - 4.12.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-06 - 4.12.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-01-13 - 4.11.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-12-03 - 4.11.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-11-05 - 4.11.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-02 - 4.11.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 4.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-02 - 4.10.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-06-10 - 4.10.4 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-05-06 - 4.10.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-04-03 - 4.10.2 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-06 - 4.10.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-02-15 - 4.10.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-01-19 - 4.9.98 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kapidox - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - mirrors://kde/stable/frameworks/5.17/kapidox-5.17.0.tar.xz - - python-Jinja2 - python-PyYAML - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kapidox/pspec.xml - - - kapidox - - qt5-base - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kunitconversion - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE unit conversion framework - KUnitConversion provides functions to convert values in different physical units. - mirrors://kde/stable/frameworks/5.17/kunitconversion-5.17.0.tar.xz - - qt5-base-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kunitconversion/pspec.xml - - - kunitconversion - - qt5-base - libgcc - ki18n - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kunitconversion-devel - Development files for kunitconversion - - qt5-base-devel - ki18n-devel - kunitconversion - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knotifyconfig - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Configuration dialog for desktop notifications - KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. - mirrors://kde/stable/frameworks/5.17/knotifyconfig-5.17.0.tar.xz - - qt5-base-devel - qt5-phonon-devel - kauth-devel - kconfig-devel - kcompletion-devel - ki18n-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/knotifyconfig/pspec.xml - - - knotifyconfig - - qt5-base - qt5-phonon - libgcc - kconfig - kcompletion - ki18n - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knotifyconfig-devel - Development files for knotifyconfig - - knotifyconfig - qt5-base-devel - qt5-phonon-devel - kauth-devel - kconfig-devel - kcompletion-devel - ki18n-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdnssd - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Network service discovery using Zeroconf - KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. - mirrors://kde/stable/frameworks/5.17/kdnssd-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - avahi-devel - avahi-compat-libdns_sd-devel - extra-cmake-modules - - desktop/kde/framework/kdnssd/pspec.xml - - - kdnssd - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdnssd-devel - Development files for kdnssd. - - qt5-base-devel - kdnssd - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdbusaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Extra modules for Qt-DBus - KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. - mirrors://kde/stable/frameworks/5.17/kdbusaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kdbusaddons/pspec.xml - - - kdbusaddons - - libgcc - qt5-base - qt5-x11extras - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdbusaddons-devel - Development files for kdbusaddons - - qt5-base-devel - kdbusaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kxmlrpcclient - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - XML-RPC client library for KDE - This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. - mirrors://kde/stable/frameworks/5.17/kxmlrpcclient-5.17.0.tar.xz - - qt5-base-devel - kauth-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/kxmlrpcclient/pspec.xml - - - kxmlrpcclient - - qt5-base - libgcc - ki18n - kcoreaddons - kio - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kxmlrpcclient-devel - Development files for kdelibs4-support - - kxmlrpcclient - qt5-base-devel - ki18n-devel - kcoreaddons-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kimageformats - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Image formats addons for QT 5 - This framework provides additional image format plugins for QtGui. - mirrors://kde/stable/frameworks/5.17/kimageformats-5.17.0.tar.xz - - qt5-base-devel - openexr-devel - ilmbase-devel - extra-cmake-modules - - desktop/kde/framework/kimageformats/pspec.xml - - - kimageformats - - qt5-base - libgcc - openexr-libs - ilmbase - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdoctools - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 document generator - kdoctools is an application aims to generate documents from DocBook. - mirrors://kde/stable/frameworks/5.17/kdoctools-5.17.0.tar.xz - - qt5-base-devel - perl-URI - python - libxml2-devel - libxslt-devel - docbook-xml - docbook-xsl - docbook-sgml4_5 - ki18n-devel - karchive-devel - extra-cmake-modules - - desktop/kde/framework/kdoctools/pspec.xml - - - kdoctools - - qt5-base - libxml2 - libgcc - libxslt - karchive - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kdoctools-devel - Development files for kdoctools - - qt5-base-devel - kdoctools - karchive-devel - libgcc - libxml2-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcodecs - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Plugins allowing Qt applications to access further types of images - KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. - mirrors://kde/stable/frameworks/5.17/kcodecs-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kcodecs/pspec.xml - - - kcodecs - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcodecs-devel - Development files for kcodecs - - qt5-base-devel - kcodecs - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ktextwidgets - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 text editing widgets - KTextWidgets provides widgets for displaying and editing text. It supports rich text as well as plain text. - mirrors://kde/stable/frameworks/5.17/ktextwidgets-5.17.0.tar.xz - - qt5-base-devel - kconfig-devel - kcompletion-devel - kcodecs-devel - kauth-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - ki18n-devel - sonnet-devel - kservice-devel - kcoreaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/ktextwidgets/pspec.xml - - - ktextwidgets - - qt5-base - libgcc - kconfig - kcompletion - kconfigwidgets - kiconthemes - kwidgetsaddons - ki18n - sonnet - kservice - kcoreaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktextwidgets-devel - Development files for ktextwidgets - - ktextwidgets - qt5-base-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - ki18n-devel - sonnet-devel - kservice-devel - kcoreaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ktexteditor - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 text editor libraries - KTextEditor provides a powerful text editor component that you can embed in your application. - mirrors://kde/stable/frameworks/5.17/ktexteditor-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-xmlpatterns-devel - kauth-devel - kguiaddons-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kparts-devel - libgit2-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/ktexteditor/pspec.xml - - - ktexteditor - - qt5-script - qt5-base - libgcc - libgit2 - ktextwidgets - kwidgetsaddons - kconfigwidgets - kjobwidgets - kiconthemes - kcoreaddons - kcompletion - kitemviews - kxmlgui - kcodecs - karchive - kguiaddons - kconfig - ki18n - kio - ki18n - kparts - sonnet - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - ktexteditor-devel - Development files for ktexteditor - - qt5-script-devel - qt5-base-devel - libgit2-devel - ktextwidgets-devel - kwidgetsaddons-devel - kconfigwidgets-devel - kjobwidgets-devel - kiconthemes-devel - kcoreaddons-devel - kcompletion-devel - kitemviews-devel - kxmlgui-devel - kcodecs-devel - karchive-devel - kguiaddons-devel - kconfig-devel - ki18n-devel - kio-devel - ki18n-devel - kparts-devel - sonnet-devel - ktexteditor - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kfilemetadata - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 library for extracting meta data from files. - KDE library for extracting meta data from files. - mirrors://kde/stable/frameworks/5.17/kfilemetadata-5.17.0.tar.xz - - qt5-base-devel - attr-devel - ebook-tools-devel - karchive-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kfilemetadata/pspec.xml - - - kfilemetadata - - qt5-base - ebook-tools - libgcc - exiv2-libs - taglib - ffmpeg - poppler-qt5 - karchive - ki18n - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kfilemetadata-devel - Development files for kfilemetadata - - kfilemetadata - qt5-base-devel - ebook-tools-devel - exiv2-devel - taglib-devel - ffmpeg-devel - poppler-qt5-devel - karchive-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.9.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-03 - 5.9.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kitemviews - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. - mirrors://kde/stable/frameworks/5.17/kitemviews-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kitemviews/pspec.xml - - - kitemviews - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kitemviews-devel - Development files for kitemviews - - qt5-base-devel - kitemviews - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kio - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Resource and network access abstraction - Network transparent access to files and data - mirrors://kde/stable/frameworks/5.17/kio-5.17.0.tar.xz - - qt5-base-devel - acl-devel - attr-devel - mit-kerberos - karchive-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kservice-devel - solid-devel - sonnet-devel - kdoctools-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kconfigwidgets-devel - kauth-devel - kcodecs-devel - kiconthemes-devel - kitemviews-devel - kjobwidgets-devel - kwindowsystem-devel - qt5-x11extras-devel - kwallet-devel - kxmlgui-devel - ktextwidgets-devel - knotifications-devel - libxslt-devel - qt5-script-devel - zlib-devel - docbook-sgml4_5 - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kio/pspec.xml - - - kio - - qt5-base - acl - attr - libxml2 - libxslt - libgcc - mit-kerberos - knotifications - qt5-script - qt5-x11extras - karchive - kconfig - kcodecs - kbookmarks - kcompletion - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kiconthemes - kitemviews - kjobwidgets - kservice - ktextwidgets - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - solid - - - /etc/ - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kio-devel - Development files for kio - - qt5-base-devel - kio - qt5-base-devel - acl-devel - attr-devel - libxml2-devel - libxslt-devel - knotifications-devel - qt5-script-devel - qt5-x11extras-devel - karchive-devel - kconfig-devel - kcodecs-devel - kbookmarks-devel - kcompletion-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kjobwidgets-devel - kservice-devel - ktextwidgets - kwallet-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - solid-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwallet - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE password storage framework - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.17/kwallet-5.17.0.tar.xz - - libxslt - docbook-xsl - qt5-base-devel - libgcrypt-devel - kconfig-devel - kdoctools-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kwallet/pspec.xml - - - kwallet - - qt5-base - libgcc - libgcrypt - kconfig - kcoreaddons - kdbusaddons - ki18n - kiconthemes - knotifications - kservice - kwidgetsaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - kwallet-devel - Development files for kwallet - - kwallet - qt5-base-devel - libgcrypt-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-14 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - knotifications - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Desktop notifications - KNotification is used to notify the user of an event. It covers feedback and persistent events. - mirrors://kde/stable/frameworks/5.17/knotifications-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kwindowsystem-devel - qt5-x11extras-devel - kservice-devel - kconfig-devel - kcoreaddons-devel - kiconthemes-devel - kcodecs-devel - libdbusmenu-qt-devel - qt5-phonon-devel - extra-cmake-modules - - desktop/kde/framework/knotifications/pspec.xml - - - knotifications - - qt5-base - qt5-phonon - libgcc - qt5-x11extras - kconfig - kcodecs - kcoreaddons - kiconthemes - kservice - libdbusmenu-qt - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knotifications-devel - Development files for knotifications - - knotifications - qt5-base-devel - qt5-phonon-devel - qt5-x11extras-devel - kconfig-devel - kcodecs-devel - kcoreaddons-devel - kiconthemes-devel - kservice-devel - kwindowsystem-devel - libdbusmenu-qt-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdesignerplugin - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - QT Designer integration for KDE5 Frameworks widgets - This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. - mirrors://kde/stable/frameworks/5.17/kdesignerplugin-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - kdoctools-devel - kio-devel - kauth-devel - kconfigwidgets-devel - kxmlgui-devel - kplotting-devel - ktextwidgets-devel - sonnet-devel - kdewebkit-devel - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kdesignerplugin/pspec.xml - - - kdesignerplugin - - qt5-base - libgcc - kdewebkit - kcoreaddons - kitemviews - kconfig - sonnet - kcompletion - kconfigwidgets - kiconthemes - kio - kplotting - ktextwidgets - kwidgetsaddons - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-28 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kconfig - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.framework - Advanced configuration system for KDE Frameworks 5 - Kconfig provides advanced libraries and tools for accessing configuration files. - mirrors://kde/stable/frameworks/5.17/kconfig-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - extra-cmake-modules - - desktop/kde/framework/kconfig/pspec.xml - - - kconfig - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kconfig-devel - Development files for kconfig - - qt5-base-devel - kconfig - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwidgetsaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 desktop widgets - KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. - mirrors://kde/stable/frameworks/5.17/kwidgetsaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer-devel - extra-cmake-modules - - desktop/kde/framework/kwidgetsaddons/pspec.xml - - - kwidgetsaddons - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwidgetsaddons-devel - Development files for kwidgetsaddons - - qt5-base-devel - kwidgetsaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpeople - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - A contact aggregation library for KDE - KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. - mirrors://kde/stable/frameworks/5.17/kpeople-5.17.0.tar.xz - - qt5-base-devel - kconfig-devel - qt5-declarative-devel - kcoreaddons-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - kservice-devel - kwidgetsaddons-devel - ki18n-devel - kitemviews-devel - extra-cmake-modules - - desktop/kde/framework/kpeople/pspec.xml - - - kpeople - - qt5-base - qt5-declarative - libgcc - kconfig - kcoreaddons - kservice - kwidgetsaddons - ki18n - kitemviews - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpeople-devel - Development files for kpeople - - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kcoreaddons-devel - kwidgetsaddons-devel - kservice-devel - ki18n-devel - kitemviews-devel - kpeople - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kpty - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Libraries for pseudo terminal devices - Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. - mirrors://kde/stable/frameworks/5.17/kpty-5.17.0.tar.xz - - qt5-base-devel - utempter-devel - kcoreaddons-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kpty/pspec.xml - - - kpty - - qt5-base - utempter - libgcc - kcoreaddons - ki18n - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpty-devel - Development files for kpty - - qt5-base-devel - utempter-devel - kcoreaddons-devel - ki18n-devel - kpty - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcoreaddons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Utilities for core application functionality and accessing the OS - KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. - mirrors://kde/stable/frameworks/5.17/kcoreaddons-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - shared-mime-info - extra-cmake-modules - mesa-devel - - desktop/kde/framework/kcoreaddons/pspec.xml - - - kcoreaddons - - qt5-base - libgcc - shared-mime-info - docbook-xsl - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcoreaddons-devel - Development files for kcoreaddons - - qt5-base-devel - kcoreaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - System.Package - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ki18n - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE Gettext-based UI text internationalization. - KDE grafik arabirim yerelleştirme kitaplığı - KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. - ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır - mirrors://kde/stable/frameworks/5.17/ki18n-5.17.0.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/ki18n/pspec.xml - - - ki18n - - libgcc - qt5-base - qt5-script - qt5-declarative - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - ki18n-devel - Development files for kde5-ki18n - ki18n için geliştirme dosyaları - - ki18n - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-21 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - extra-cmake-modules - http://www.kde.org - - Pisi Linux Admins - admin@gmail.com - - LGPLv2 - library - desktop.kde.framework - Extra cmake modules for KDE5 - Extra cmake modules KDE5 - mirrors://kde/stable/frameworks/5.17/extra-cmake-modules-5.17.0.tar.xz - - cmake - - desktop/kde/framework/extra-cmake-modules/pspec.xml - - - extra-cmake-modules - programming.build - - cmake - - - /usr/share - /usr/lib - /usr/share/man/man7 - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-01 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sonnet - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE spell schecking library - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.17/sonnet-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - hunspell-devel - aspell-devel - extra-cmake-modules - - desktop/kde/framework/sonnet/pspec.xml - - - sonnet - - qt5-base - libgcc - aspell - hunspell - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - sonnet-devel - Development files for sonnet - - qt5-base-devel - sonnet - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kcrash - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Kcrash crash handling application - KCrash provides support for intercepting and handling application crashes. - mirrors://kde/stable/frameworks/5.17/kcrash-5.17.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - kcoreaddons-devel - kwindowsystem-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kcrash/pspec.xml - - - kcrash - - qt5-base - libX11 - libgcc - qt5-x11extras - kcoreaddons - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcrash-devel - Development files for kcrash - - qt5-base-devel - qt5-x11extras-devel - kcrash - kcoreaddons-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kidletime - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Idle time reporting utility - KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. - mirrors://kde/stable/frameworks/5.17/kidletime-5.17.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libX11-devel - libXext-devel - libXScrnSaver-devel - libxcb-devel - extra-cmake-modules - - desktop/kde/framework/kidletime/pspec.xml - - - kidletime - - qt5-base - libX11 - libgcc - libxcb - libXScrnSaver - libXext - qt5-x11extras - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kidletime-devel - Development files for kidletime - - kidletime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kglobalaccel - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Global desktop keyboard shortcuts - KGlobalAccel allows you to have global accelerators that are independent of the focused window. - mirrors://kde/stable/frameworks/5.17/kglobalaccel-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-base - libxcb-devel - kcrash-devel - kconfig-devel - qt5-x11extras-devel - kcoreaddons-devel - kdbusaddons-devel - xcb-util-keysyms-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/framework/kglobalaccel/pspec.xml - - - kglobalaccel - - qt5-base - libgcc - libxcb - kcrash - kconfig - qt5-x11extras - kcoreaddons - kdbusaddons - xcb-util-keysyms - kwindowsystem - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kglobalaccel-devel - Development files for kglobalaccel - - kglobalaccel - qt5-base-devel - libxcb-devel - kcrash-devel - kconfig-devel - qt5-x11extras-devel - kcoreaddons-devel - kdbusaddons-devel - xcb-util-keysyms-devel - kwindowsystem-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-25 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - attica - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Open Collaboration Service client library, based on Qt 5 - Attica is a library to access Open Collaboration Service servers, based on Qt 5. - mirrors://kde/stable/frameworks/5.17/attica-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/attica/pspec.xml - - - attica - - qt5-base - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - attica-devel - Development files for attica5 - - qt5-base-devel - attica - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-20 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kded - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 daemon - Kded runs in the background and performs a number of small tasks. - mirrors://kde/stable/frameworks/5.17/kded-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - kinit-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kservice-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kded/pspec.xml - - - kded - - qt5-base - libgcc - kcoreaddons - kconfig - kcrash - kdbusaddons - kservice - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kded-devel - Development files for kded - - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kservice-devel - kded - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - modemmanager-qt - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Qt wrapper for ModemManager DBus API - Qt wrapper for ModemManager DBus API - mirrors://kde/stable/frameworks/5.17/modemmanager-qt-5.17.0.tar.xz - - qt5-base-devel - ModemManager-devel - extra-cmake-modules - - desktop/kde/framework/modemmanager-qt/pspec.xml - - - modemmanager-qt - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - modemmanager-qt-devel - Development files for modemmanger-qt - - qt5-base-devel - modemmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kservice - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 Desktop Services - Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. - mirrors://kde/stable/frameworks/5.17/kservice-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kservice/pspec.xml - - - kservice - - qt5-base - libgcc - kconfig - kcoreaddons - kcrash - kdbusaddons - ki18n - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kservice-devel - Development files for kservice - - kservice - qt5-base-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kactivities - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Library for KDE's Plasma Activities support - Kactivities provides an API for using and interacting with the Plasma Activities Manager. - mirrors://kde/stable/frameworks/5.17/kactivities-5.17.0.tar.xz - - qt5-base-devel - mesa-devel - boost-devel - kdbusaddons-devel - kdeclarative-devel - kpackage-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - kio-devel - kservice-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kjobwidgets-devel - kitemviews-devel - solid-devel - kauth-devel - kcodecs-devel - kconfigwidgets-devel - kxmlgui-devel - kwindowsystem-devel - kglobalaccel-devel - kcmutils-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - extra-cmake-modules - - - build-source.patch - - desktop/kde/framework/kactivities/pspec.xml - - - kactivities - - qt5-base - qt5-declarative - libgcc - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kio - kglobalaccel - kservice - kxmlgui - kwindowsystem - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kactivities-devel - Development files for kactivities - - qt5-base-devel - qt5-declarative-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kwindowsystem-devel - kactivities - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-01 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - baloo - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/frameworks/5.17/baloo-5.17.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kdbusaddons-devel - kauth-devel - kconfig-devel - kcrash-devel - ki18n-devel - kidletime-devel - kio-devel - solid-devel - kfilemetadata-devel - kdoctools-devel - lmdb-devel - extra-cmake-modules - - desktop/kde/framework/baloo/pspec.xml - - - baloo - - qt5-base - qt5-declarative - kcoreaddons - kdbusaddons - kauth - libgcc - kconfig - kcrash - ki18n - kidletime - kio - solid - kfilemetadata - lmdb - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - baloo-devel - Development files for baloo-widgets - - baloo - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kdbusaddons-devel - kauth-devel - kconfig-devel - kcrash-devel - ki18n-devel - kidletime-devel - kio-devel - solid-devel - kfilemetadata-devel - lmdb-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-26 - 5.13 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-07-01 - 5.9.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.9.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kemoticons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE emoticon manager - KEmoticons converts emoticons from text to a graphical representation with images in HTML. - mirrors://kde/stable/frameworks/5.17/kemoticons-5.17.0.tar.xz - - qt5-base-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kservice-devel - extra-cmake-modules - - desktop/kde/framework/kemoticons/pspec.xml - - - kemoticons - - qt5-base - libgcc - karchive - kcoreaddons - kconfig - kservice - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kemoticons-devel - Development files for kemoticons - - kemoticons - qt5-base-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kservice-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kinit - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE applications initialization utility - Process launcher to speed up launching KDE applications. - mirrors://kde/stable/frameworks/5.17/kinit-5.17.0.tar.xz - - qt5-base-devel - kdoctools-devel - libX11-devel - libcap-devel - libgcc - kcrash-devel - kcoreaddons-devel - kitemviews-devel - solid-devel - kxmlgui-devel - kjobwidgets-devel - kcompletion-devel - kwidgetsaddons-devel - kconfig-devel - kcodecs-devel - kauth-devel - kconfigwidgets-devel - kio-devel - ki18n-devel - kservice-devel - kbookmarks-devel - kwindowsystem-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kinit/pspec.xml - - - kinit - - qt5-base - libX11 - libcap - libgcc - kio - kcrash - kcoreaddons - kconfig - ki18n - kservice - kwindowsystem - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/locale - /usr/bin - /usr/share/doc - /usr/share/man - - - - kinit-devel - Development files for kinit - - qt5-base-devel - libX11-devel - libcap-devel - kio-devel - kcrash-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kservice-devel - kwindowsystem-devel - kinit - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kiconthemes - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 icon utilities - This library contains classes to improve the handling of icons in applications using the KDE Frameworks. - mirrors://kde/stable/frameworks/5.17/kiconthemes-5.17.0.tar.xz - - qt5-base-devel - qt5-svg-devel - ki18n-devel - kauth-devel - kcodecs-devel - kconfig-devel - kitemviews-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kiconthemes/pspec.xml - - - kiconthemes - - libgcc - qt5-base - qt5-svg - kconfigwidgets - ki18n - kitemviews - kwidgetsaddons - kconfig - kcoreaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kiconthemes-devel - Development files for kiconthemes - - kiconthemes - qt5-base-devel - qt5-svg-devel - kconfigwidgets-devel - ki18n-devel - kitemviews-devel - kwidgetsaddons-devel - kconfig-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-22 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kparts - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Plugin framework for user interface components - This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). - mirrors://kde/stable/frameworks/5.17/kparts-5.17.0.tar.xz - - qt5-base-devel - kauth-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/kparts/pspec.xml - - - kparts - - qt5-base - libgcc - kjobwidgets - kconfig - kcoreaddons - ki18n - kiconthemes - knotifications - kservice - kwidgetsaddons - kxmlgui - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kparts-devel - Development files for kparts - - qt5-base-devel - kjobwidgets-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - kparts - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-13 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-27 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-31 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwindowsystem - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 window manager access framework - KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. - mirrors://kde/stable/frameworks/5.17/kwindowsystem-5.17.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - libX11-devel - libgcc - libxcb-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - extra-cmake-modules - - desktop/kde/framework/kwindowsystem/pspec.xml - - - kwindowsystem - - qt5-base - libX11 - libgcc - libxcb - qt5-x11extras - libXfixes - xcb-util-keysyms - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - kwindowsystem-devel - Development files for kwindowsystem - - qt5-base-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - kwindowsystem - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-23 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kitemmodels - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemModels provides a set of item models extending the Qt model-view framework. - mirrors://kde/stable/frameworks/5.17/kitemmodels-5.17.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/kitemmodels/pspec.xml - - - kitemmodels - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kitemmodels-devel - Development files for kitemmodels - - qt5-base-devel - kitemmodels - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-12 - 5.17.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-13 - 5.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-11 - 5.15.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-16 - 5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-06-24 - 5.11.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-30 - 5.10.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon - http://phonon.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.phonon - Cross platform multimedia API for KDE4 using QT5 - Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. - mirrors://kde/stable/phonon/4.8.3/src/phonon-4.8.3.tar.xz - - qt5-base-devel - qt5-designer-devel - qt5-quick1-devel - alsa-lib-devel - gst-plugins-base-devel - pulseaudio-libs-devel - gstreamer-devel - cmake - mesa-devel - - - qt-5.4.2.patch - - desktop/kde/phonon/qt5-phonon/pspec.xml - - - qt5-phonon - - libgcc - qt5-base - qt5-designer - qt5-quick1 - pulseaudio-libs - - - /usr/lib/libphonon* - /usr/lib/qt5 - /usr/share/dbus-1 - - - - qt5-phonon-devel - Development files for phonon-qt5 - - qt5-phonon - qt5-base-devel - qt5-designer-devel - pulseaudio-libs-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/share/phonon4qt5 - - - - - 2015-08-13 - 4.8.3 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon-backend-vlc - http://gitorious.org/phonon/phonon-vlc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.phonon - VLC Backend for qt5-phonon - phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. - mirrors://kde/stable/phonon/phonon-backend-vlc/0.8.2/src/phonon-backend-vlc-0.8.2.tar.xz - - qt5-base-devel - qt5-phonon-devel - pulseaudio - vlc-devel - - desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml - - - qt5-phonon-backend-vlc - - libgcc - qt5-base - qt5-phonon - vlc-libs - - - /usr/lib - /usr/lib/qt5 - /usr/share/kde4/services - /usr/share/doc - - - - - 2015-02-23 - 0.8.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qt5-phonon-backend-gstreamer - http://phonon.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.kde.phonon - GStreamer qt5-phonon backend - Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. - mirrors://kde/stable/phonon/phonon-backend-gstreamer/4.8.2/src/phonon-backend-gstreamer-4.8.2.tar.xz - - qt5-base-devel - qt5-phonon-devel - gstreamer-devel - gstreamer-next-devel - gst-plugins-base-devel - gst-plugins-base-next-devel - mesa-devel - libxml2-devel - cmake - - desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml - - - qt5-phonon-backend-gstreamer - - qt5-base - qt5-phonon - mesa - glib2 - libgcc - gstreamer-next - gst-plugins-base-next - - - /usr/lib - /usr/lib/qt5 - /usr/share - - - - - 2015-08-18 - 4.8.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-l10n-uk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:uk - desktop.kde.l10n - Ukrainian KDE5 internationalization package - KDE5 Ukraynalı yerelleştirme paketi - kde-l10n-uk is the KDE5 internationalization package that provides Ukrainian translations for KDE5 applications. - kde-l10n-uk, KDE uygulamalarını Ukraynalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-uk-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-uk/pspec.xml - - - kde-l10n-uk - system.locale - lang-uk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-uk-doc - Ukrainian documentation files for KDE - KDE5 için Ukraynalı belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-mr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:mr - desktop.kde.l10n - Marathi translations KDE5 internationalization package - KDE5 Marathi translations yerelleştirme paketi - kde-l10n-mr is the KDE5 internationalization package that provides Marathi translations translations for KDE5 applications. - kde-l10n-mr, KDE uygulamalarını Marathi translations yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-mr-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-mr/pspec.xml - - - kde-l10n-mr - system.locale - lang-mr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-bg - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:bg - desktop.kde.l10n - Bulgarian KDE5 internationalization package - KDE5 Bulgar yerelleştirme paketi - kde-l10n-bg is the KDE5 internationalization package that provides Bulgarian translations for KDE5 applications. - kde-l10n-br, KDE uygulamalarını Bulgar yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bg-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-bg/pspec.xml - - - kde-l10n-bg - system.locale - lang-bg - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-is - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:is - desktop.kde.l10n - Icelandic KDE5 internationalization package - KDE5 İzlanda'ya özgü yerelleştirme paketi - kde-l10n-is is the KDE5 internationalization package that provides Icelandic translations for KDE5 applications. - kde-l10n-is, KDE uygulamalarını İzlanda'ya özgü yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-is-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-is/pspec.xml - - - kde-l10n-is - system.locale - lang-is - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-da - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:da - desktop.kde.l10n - Danish KDE5 internationalization package - KDE5 Danimarkalı yerelleştirme paketi - kde-l10n-da is the KDE5 internationalization package that provides Danish translations for KDE5 applications. - kde-l10n-da, KDE uygulamalarını Danimarkalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-da-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-da/pspec.xml - - - kde-l10n-da - system.locale - lang-da - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-kk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:kk - desktop.kde.l10n - Kazakh KDE5 internationalization package - KDE5 Kazak yerelleştirme paketi - kde-l10n-kk is the KDE5 internationalization package that provides Kazakh translations for KDE5 applications. - kde-l10n-kk, KDE uygulamalarını Kazak yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-kk-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-kk/pspec.xml - - - kde-l10n-kk - system.locale - lang-kk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-kk-doc - Kazakh documentation files for KDE - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ca - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ca - desktop.kde.l10n - Catalan KDE5 internationalization package - KDE5 Katalan yerelleştirme paketi - kde-l10n-ca is the KDE5 internationalization package that provides Catalan translations for KDE5 applications. - kde-l10n-ca, KDE uygulamalarını Katalan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ca/pspec.xml - - - kde-l10n-ca - system.locale - lang-ca - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - - - - kde-l10n-ca-doc - Catalan documentation files for KDE - KDE5 için Katalan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-05 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-wa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:wa - desktop.kde.l10n - Walloon KDE5 internationalization package - KDE5 Valon yerelleştirme paketi - kde-l10n-wa is the KDE5 internationalization package that provides Walloon translations for KDE5 applications. - kde-l10n-wa, KDE uygulamalarını Valon yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-wa-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-wa/pspec.xml - - - kde-l10n-wa - system.locale - lang-wa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sl - desktop.kde.l10n - Slovenian KDE5 internationalization package - KDE5 Sloven yerelleştirme paketi - kde-l10n-sl is the KDE5 internationalization package that provides Slovenian translations for KDE5 applications. - kde-l10n-sl, KDE uygulamalarını Sloven yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sl-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sl/pspec.xml - - - kde-l10n-sl - system.locale - lang-sl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pa - desktop.kde.l10n - Punjabi KDE5 internationalization package - KDE5 Pencaplı yerelleştirme paketi - kde-l10n-pa is the KDE5 internationalization package that provides Punjabi translations for KDE5 applications. - kde-l10n-pa, KDE uygulamalarını Pencaplı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pa-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pa/pspec.xml - - - kde-l10n-pa - system.locale - lang-pa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ar - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ar - desktop.kde.l10n - Arabic KDE5 internationalization package - KDE5 Arapça yerelleştirme paketi - kde-l10n-ar is the KDE5 internationalization package that provides Arabic translations for KDE5 applications. - kde-l10n-ar, KDE uygulamalarını Arapça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ar-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - qt5-linguist - kconfig-devel - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ar/pspec.xml - - - kde-l10n-ar - system.locale - lang-ar - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hi - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hi - desktop.kde.l10n - Hindi KDE5 internationalization package - KDE5 Hintçe yerelleştirme paketi - kde-l10n-ga is the KDE5 internationalization package that provides Hindi translations for KDE5 applications. - kde-l10n-hi, KDE uygulamalarını Hintçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hi-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hi/pspec.xml - - - kde-l10n-hi - system.locale - lang-hi - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-gl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:gl - desktop.kde.l10n - Galician KDE5 internationalization package - KDE5 Galiçya yerelleştirme paketi - kde-l10n-gl is the KDE5 internationalization package that provides Galician translations for KDE5 applications. - kde-l10n-gl, KDE uygulamalarını Galiçya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-gl-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-gl/pspec.xml - - - kde-l10n-gl - system.locale - lang-gl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-gl-doc - Galician documentation files for KDE - KDE5 için Galiçya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pl - desktop.kde.l10n - Polish KDE5 internationalization package - KDE5 Polonyalı yerelleştirme paketi - kde-l10n-pl is the KDE5 internationalization package that provides Polish translations for KDE5 applications. - kde-l10n-pl, KDE uygulamalarını Polonyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pl-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pl/pspec.xml - - - kde-l10n-pl - system.locale - lang-pl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-pl-doc - Polish documentation files for KDE - KDE5 için Polonyalı belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ug - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ug - desktop.kde.l10n - Uygur KDE5 internationalization package - KDE5 Uygur yerelleştirme paketi - kde-l10n-ug is the KDE5 internationalization package that provides Uygur translations for KDE5 applications. - kde-l10n-ug, KDE uygulamalarını Uygur yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ug-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ug/pspec.xml - - - kde-l10n-ug - system.locale - lang-ug - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nb - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nb - desktop.kde.l10n - Norwegian Bookma KDE5 internationalization package - KDE5 Norveç bookma yerelleştirme paketi - kde-l10n-nb is the KDE5 internationalization package that provides Norwegian Bookma translations for KDE5 applications. - kde-l10n-nb, KDE uygulamalarını Norveç bookma yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nb-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nb/pspec.xml - - - kde-l10n-nb - system.locale - lang-nb - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fa - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fa - desktop.kde.l10n - Farsi KDE5 internationalization package - KDE5 Farsça yerelleştirme paketi - kde-l10n-fa is the KDE5 internationalization package that provides Farsi translations for KDE5 applications. - kde-l10n-fa, KDE uygulamalarını Farsça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fa-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fa/pspec.xml - - - kde-l10n-fa - system.locale - lang-fa - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sk - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sk - desktop.kde.l10n - Slovak KDE5 internationalization package - KDE5 Slovak yerelleştirme paketi - kde-l10n-sk is the KDE5 internationalization package that provides Slovak translations for KDE5 applications. - kde-l10n-sk, KDE uygulamalarını Slovak yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sk-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sk/pspec.xml - - - kde-l10n-sk - system.locale - lang-sk - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-it - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:it - desktop.kde.l10n - Italian KDE5 internationalization package - KDE5 İtalyan yerelleştirme paketi - kde-l10n-it is the KDE5 internationalization package that provides Italian translations for KDE5 applications. - kde-l10n-it, KDE uygulamalarını İtalyan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-it-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-it/pspec.xml - - - kde-l10n-it - system.locale - lang-it - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-it-doc - Italian documentation files for KDE - KDE5 için İtalyan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-cs - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:cs - desktop.kde.l10n - Czech KDE5 internationalization package - KDE5 Çek yerelleştirme paketi - kde-l10n-cs is the KDE5 internationalization package that provides Czech translations for KDE5 applications. - kde-l10n-cs, KDE uygulamalarını Çek yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-cs-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - extra-cmake-modules - qt5-linguist - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-cs/pspec.xml - - - kde-l10n-cs - system.locale - lang-cs - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-cs-doc - Czech documentation files for KDE - KDE5 için Çek belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-ia - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ia - desktop.kde.l10n - Interlingua KDE5 internationalization package - KDE5 Interlingua yerelleştirme paketi - kde-l10n-ia is the KDE5 internationalization package that provides Interlingua translations for KDE5 applications. - kde-l10n-ia, KDE uygulamalarını Interlingua yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ia-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ia/pspec.xml - - - kde-l10n-ia - system.locale - lang-ia - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fi - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fi - desktop.kde.l10n - Finnish KDE5 internationalization package - KDE5 Finlandiya yerelleştirme paketi - kde-l10n-fi is the KDE5 internationalization package that provides Finnish translations for KDE5 applications. - kde-l10n-fi, KDE uygulamalarını Finlandiya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fi-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fi/pspec.xml - - - kde-l10n-fi - system.locale - lang-fi - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ga - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ga - desktop.kde.l10n - Irish Gaelic KDE5 internationalization package - KDE5 İrlandalı Gaelce yerelleştirme paketi - kde-l10n-ga is the KDE5 internationalization package that provides Irish Gaelic translations for KDE5 applications. - kde-l10n-ga, KDE uygulamalarını İrlandalı Gaelce yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ga-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ga/pspec.xml - - - kde-l10n-ga - system.locale - lang-ga - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ro - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ro - desktop.kde.l10n - Romanian KDE5 internationalization package - KDE5 Romanya yerelleştirme paketi - kde-l10n-ro is the KDE5 internationalization package that provides Romanian translations for KDE5 applications. - kde-l10n-ro, KDE uygulamalarını Romanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ro-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ro/pspec.xml - - - kde-l10n-ro - system.locale - lang-ro - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nds - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nds - desktop.kde.l10n - Low Saxon KDE5 internationalization package - KDE5 Düşük Sakson yerelleştirme paketi - kde-l10n-nds is the KDE5 internationalization package that provides Low Saxon translations for KDE5 applications. - kde-l10n-nds, KDE uygulamalarını Düşük Sakson yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nds-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nds/pspec.xml - - - kde-l10n-nds - system.locale - lang-nds - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - /usr/share/kstars - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-bs - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:bs - desktop.kde.l10n - Bosnian KDE5 internationalization package - KDE5 Boşnakça yerelleştirme paketi - kde-l10n-bs is the KDE5 internationalization package that provides Bosnian translations for KDE5 applications. - kde-l10n-bs, KDE uygulamalarını Boşnakça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-bs-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-bs/pspec.xml - - - kde-l10n-bs - system.locale - lang-bs - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-zh_TW - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:zh_TW - desktop.kde.l10n - Chinese Traditional KDE5 internationalization package - KDE5 Geleneksel Çin yerelleştirme paketi - kde-l10n-zh_TW is the KDE5 internationalization package that provides Chinese Traditional translations for KDE5 applications. - kde-l10n-zh_TW, KDE uygulamalarını Geleneksel Çin yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_TW-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-zh_TW/pspec.xml - - - kde-l10n-zh_TW - system.locale - lang-zh_TW - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ca-valencia - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ca@valencia - desktop.kde.l10n - Southern Catalan KDE5 internationalization package - kde-l10n-ca@valencia is the KDE5 internationalization package that provides Southern Catalan translations for KDE5 applications. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ca@valencia-15.08.3.tar.xz - - qt5-base-devel - gettext-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ca-valencia/pspec.xml - - - kde-l10n-ca-valencia - system.locale - lang-ca@valencia - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-id - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:id - desktop.kde.l10n - Indonesian KDE5 internationalization package - KDE5 Endonezyalı yerelleştirme paketi - kde-l10n-id is the KDE5 internationalization package that provides Indonesian translations for KDE5 applications. - kde-l10n-id, KDE uygulamalarını Endonezyalı yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-id-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-id/pspec.xml - - - kde-l10n-id - system.locale - lang-id - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-el - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:el - desktop.kde.l10n - Greek KDE5 internationalization package - KDE5 Yunan yerelleştirme paketi - kde-l10n-el is the KDE5 internationalization package that provides Greek translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Yunan yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-el-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-el/pspec.xml - - - kde-l10n-el - system.locale - lang-el - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-el-doc - Greek documentation files for KDE - KDE5 için Yunan belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-ru - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ru - desktop.kde.l10n - Russian KDE5 internationalization package - KDE5 Rusça yerelleştirme paketi - kde-l10n-ru is the KDE5 internationalization package that provides Russian translations for KDE5 applications. - kde-l10n-ru, KDE uygulamalarını Rusça yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ru-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ru/pspec.xml - - - kde-l10n-ru - system.locale - lang-ru - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/katepart - - - - kde-l10n-ru-doc - Russian documentation files for KDE - KDE5 için Rusça belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pt - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pt - desktop.kde.l10n - Portuguese KDE5 internationalization package - KDE5 Portekizli yerelleştirme paketi - kde-l10n-pt is the KDE5 internationalization package that provides Portuguese translations for KDE5 applications. - kde-l10n-pt, KDE uygulamalarını Portekizli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pt/pspec.xml - - - kde-l10n-pt - system.locale - lang-pt - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-pt-doc - Portuguese documentation files for KDE - KDE5 için Portekizli belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ko - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ko - desktop.kde.l10n - Korean KDE5 internationalization package - KDE5 Koreli yerelleştirme paketi - kde-l10n-ko is the KDE5 internationalization package that provides Korean translations for KDE5 applications. - kde-l10n-ko, KDE uygulamalarını Koreli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ko-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ko/pspec.xml - - - kde-l10n-ko - system.locale - lang-ko - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-et - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:et - desktop.kde.l10n - Estonian KDE5 internationalization package - KDE5 Estonya yerelleştirme paketi - kde-l10n-el is the KDE5 internationalization package that provides Estonian translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Estonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-et-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-et/pspec.xml - - - kde-l10n-et - system.locale - lang-et - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-et-doc - Estonian documentation files for KDE - KDE5 için Estonya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-en_GB - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:en_GB - desktop.kde.l10n - British English KDE5 internationalization package - KDE5 Britanya İngilizcesi yerelleştirme paketi - kde-l10n-en_GB is the KDE5 internationalization package that provides British English translations for KDE5 applications. - kde-l10n-tr, KDE uygulamalarını Britanya İngilizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-en_GB-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-en_GB/pspec.xml - - - kde-l10n-en_GB - system.locale - lang-en_GB - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart/syntax - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nn - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nn - desktop.kde.l10n - Norwegian Nynorsk KDE5 internationalization package - KDE5 Norveççe yerelleştirme paketi - kde-l10n-nn is the KDE5 internationalization package that provides Norwegian Nynorsk translations for KDE5 applications. - kde-l10n-nn, KDE uygulamalarını Norveççe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nn-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nn/pspec.xml - - - kde-l10n-nn - system.locale - lang-nn - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-nn-doc - Norwegian Nynorsk documentation files for KDE - KDE5 için Norveççe belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-de - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:de - desktop.kde.l10n - German KDE5 internationalization package - kde-l10n-de is the KDE5 internationalization package that provides German translations for KDE5 applications. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-de-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-de/pspec.xml - - - kde-l10n-de - system.locale - lang-de - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-de-doc - German documentation files for KDE - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-km - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:km - desktop.kde.l10n - Khmer KDE5 internationalization package - KDE5 Kmer yerelleştirme paketi - kde-l10n-km is the KDE5 internationalization package that provides Khmer translations for KDE5 applications. - kde-l10n-km, KDE uygulamalarını Kmer yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-km-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-km/pspec.xml - - - kde-l10n-km - system.locale - lang-km - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-fr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:fr - desktop.kde.l10n - French KDE5 internationalization package - KDE5 Fransız yerelleştirme paketi - kde-l10n-fr is the KDE5 internationalization package that provides French translations for KDE5 applications. - kde-l10n-fr, KDE uygulamalarını Fransız yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-fr-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-fr/pspec.xml - - - kde-l10n-fr - system.locale - lang-fr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kstars - - - - kde-l10n-fr-doc - French documentation files for KDE - KDE5 için Fransız belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-lt - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:lt - desktop.kde.l10n - Lithuanian KDE5 internationalization package - KDE5 Litvanya yerelleştirme paketi - kde-l10n-lt is the KDE5 internationalization package that provides Lithuanian translations for KDE5 applications. - kde-l10n-lt, KDE uygulamalarını Litvanya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lt-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-lt/pspec.xml - - - kde-l10n-lt - system.locale - lang-lt - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-lt-doc - German documentation files for KDE - KDE5 için Litvanya belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-sv - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:sv - desktop.kde.l10n - Swedish KDE5 internationalization package - KDE5 İsveçli yerelleştirme paketi - kde-l10n-sv is the KDE5 internationalization package that provides Swedish translations for KDE5 applications. - kde-l10n-sv, KDE uygulamalarını İsveçli yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-sv-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-sv/pspec.xml - - - kde-l10n-sv - system.locale - lang-sv - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-sv-doc - Swedish documentation files for KDE - KDE5 için İsveçli belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-tr - http://l10n.kde.org - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv2 - locale:tr - desktop.kde.l10n - Turkish KDE5 internationalization package - KDE5 Türkçe yerelleştirme paketi - kde-l10n-tr is the KDE5 internationalization package that provides Turkish translations for KDE5 applications. - kde-l10n-tr, KDE uygulamalarını Türkçe yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-tr-15.08.3.tar.xz - - qt5-linguist - ki18n-devel - kconfig-devel - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-tr/pspec.xml - - - kde-l10n-tr - system.locale - lang-tr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - - - - kde-l10n-tr-doc - Turkish documentation files for KDE - KDE5 için Türkçe belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-l10n-es - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:es - desktop.kde.l10n - Spanish KDE5 internationalization package - KDE5 İspanyolca yerelleştirme paketi - kde-l10n-es is the KDE5 internationalization package that provides Spanish translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını İspanyolca yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-es-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-es/pspec.xml - - - kde-l10n-es - system.locale - lang-es - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-es-doc - Spanish documentation files for KDE - KDE5 için İspanyolca belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-eo - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:eo - desktop.kde.l10n - Esperanto KDE5 internationalization package - KDE5 Esperanto yerelleştirme paketi - kde-l10n-eo is the KDE5 internationalization package that provides Esperanto translations for KDE5 applications. - kde-l10n-el, KDE uygulamalarını Esperanto yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eo-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-eo/pspec.xml - - - kde-l10n-eo - system.locale - lang-eo - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hr - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hr - desktop.kde.l10n - Croatian KDE5 internationalization package - KDE5 Hırvat yerelleştirme paketi - kde-l10n-hr is the KDE5 internationalization package that provides Croatian translations for KDE5 applications. - kde-l10n-hr, KDE uygulamalarını Hırvat yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hr-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hr/pspec.xml - - - kde-l10n-hr - system.locale - lang-hr - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-eu - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:eu - desktop.kde.l10n - Basque KDE5 internationalization package - kde-l10n-eu is the KDE5 internationalization package that provides Basque translations for KDE5 applications. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-eu-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-eu/pspec.xml - - - kde-l10n-eu - system.locale - lang-eu - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-he - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:he - desktop.kde.l10n - Hebrew KDE5 internationalization package - KDE5 İbranice yerelleştirme paketi - kde-l10n-he is the KDE5 internationalization package that provides Hebrew translations for KDE5 applications. - kde-l10n-he, KDE uygulamalarını İbranice yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-he-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-he/pspec.xml - - - kde-l10n-he - system.locale - lang-he - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-hu - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:hu - desktop.kde.l10n - Hungarian KDE5 internationalization package - KDE5 Macar yerelleştirme paketi - kde-l10n-hu is the KDE5 internationalization package that provides Hungarian translations for KDE5 applications. - kde-l10n-hu, KDE uygulamalarını Macar yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-hu-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - - - kde4.patch - - desktop/kde/l10n/kde-l10n-hu/pspec.xml - - - kde-l10n-hu - system.locale - lang-hu - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-21 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-zh_CN - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:zh_CN - desktop.kde.l10n - Chinese Simplified KDE5 internationalization package - KDE5 Sadeleştirilmiş Çince yerelleştirme paketi - kde-l10n-zh_CN is the KDE5 internationalization package that provides Chinese Simplified translations for KDE5 applications. - kde-l10n-zh_CN, KDE uygulamalarını Sadeleştirilmiş Çince yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-zh_CN-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-zh_CN/pspec.xml - - - kde-l10n-zh_CN - system.locale - lang-zh_CN - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-ja - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:ja - desktop.kde.l10n - Japanese KDE5 internationalization package - KDE5 Japon yerelleştirme paketi - kde-l10n-ja is the KDE5 internationalization package that provides Japanese translations for KDE5 applications. - kde-l10n-ja, KDE uygulamalarını Japon yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-ja-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-ja/pspec.xml - - - kde-l10n-ja - system.locale - lang-ja - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-ja-doc - Japanese documentation files for KDE - KDE5 için Japon belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-nl - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:nl - desktop.kde.l10n - Dutch KDE5 internationalization package - KDE5 Hollandaca yerelleştirme paketi - kde-l10n-nl is the KDE5 internationalization package that provides Dutch translations for KDE5 applications. - kde-l10n-nl, KDE uygulamalarını Hollandaca yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-nl-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-nl/pspec.xml - - - kde-l10n-nl - system.locale - lang-nl - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - /usr/share/kturtle - /usr/share/katepart - - - - kde-l10n-nl-doc - Dutch documentation files for KDE - KDE5 için Hollandaca belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-lv - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:lv - desktop.kde.l10n - Latvian KDE5 internationalization package - KDE5 Letonya yerelleştirme paketi - kde-l10n-lv is the KDE5 internationalization package that provides Latvian translations for KDE5 applications. - kde-l10n-lv, KDE uygulamalarını Letonya yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-lv-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-lv/pspec.xml - - - kde-l10n-lv - system.locale - lang-lv - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-23 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kde-l10n-pt_BR - http://l10n.kde.org - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - locale:pt_BR - desktop.kde.l10n - Brazilian Portuguese KDE5 internationalization package - KDE5 Brezilya Portekizcesi yerelleştirme paketi - kde-l10n-pt_BR is the KDE5 internationalization package that provides Brazilian Portuguese translations for KDE5 applications. - kde-l10n-pt_BR, KDE uygulamalarını Brezilya Portekizcesi yerelde kullanmanızı sağlayan yerelleştirme paketidir. - mirrors://kde/stable/applications/15.08.3/src/kde-l10n/kde-l10n-pt_BR-15.08.3.tar.xz - - qt5-base-devel - ki18n-devel - kconfig-devel - qt5-linguist - extra-cmake-modules - kdoctools-devel - docbook-xsl - - - kde4.patch - - desktop/kde/l10n/kde-l10n-pt_BR/pspec.xml - - - kde-l10n-pt_BR - system.locale - lang-pt_BR - - /usr/share/locale - /usr/share/apps - /usr/share/khangman - /usr/share/klettres - - - - kde-l10n-pt_BR-doc - Brazilian Portuguese documentation files for KDE - KDE5 için Brezilya Portekizcesi belgeler - - /usr/share/man - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-26 - 15.08.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kwordquiz - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - 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/applications/15.08.3/src/kwordquiz-15.08.3.tar.xz - - qt5-base-devel - gettext-devel - ki18n-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kdoctools-devel - kguiaddons-devel - kiconthemes-devel - kitemviews-devel - knotifyconfig-devel - kio-devel - knewstuff-devel - knotifications-devel - kxmlgui-devel - kdelibs4-support-devel - kdeclarative-devel - kcoreaddons-devel - kwindowsystem-devel - kwidgetsaddons-devel - qt5-phonon-devel - libkeduvocdocument-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - cmake - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/kwordquiz/pspec.xml - - - kwordquiz - - qt5-base - qt5-phonon - ki18n - kconfig - kconfigwidgets - kguiaddons - kiconthemes - kitemviews - knotifyconfig - knewstuff - knotifications - kxmlgui - kdelibs4-support - libgcc - kcoreaddons - kwindowsystem - kwidgetsaddons - libkeduvocdocument - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-30 - 15.08.2 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kpat - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - 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/applications/15.08.3/src/kpat-15.08.3.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - qt5-phonon-devel - kdoctools-devel - cmake - gettext-devel - kio-devel - kpackage-devel - kitemviews-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kiconthemes-devel - ktextwidgets-devel - kitemmodels-devel - knotifyconfig-devel - libkdegames-devel - kemoticons-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kconfig-devel - kxmlgui-devel - qt5-svg-devel - kguiaddons-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - shared-mime-info - extra-cmake-modules - python3 - mesa-devel - kdesignerplugin - - desktop/kde/games/kpat/pspec.xml - - - kpat - - qt5-base - kdelibs4-support - libkdegames - knewstuff - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - kguiaddons - kcompletion - kcoreaddons - kdbusaddons - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-23 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-08-16 - 15.04.3 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkdegames - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - A tool for managing print jobs and printers - Print-Manager. A tool to managing your print jobs and the Printers - mirrors://kde/stable/applications/15.08.3/src/libkdegames-15.08.3.tar.xz - - qt5-base-devel - kdoctools-devel - kdnssd-devel - openal-devel - cmake - extra-cmake-modules - python3 - kdeclarative-devel - knewstuff-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kxmlgui-devel - qt5-svg-devel - karchive-devel - kguiaddons-devel - libsndfile-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kdelibs4-support-devel - kdesignerplugin - mesa-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/libkdegames/pspec.xml - - - libkdegames - - qt5-base - kdelibs4-support - kdnssd - kdeclarative - knewstuff - kio - ki18n - libgcc - openal - kconfig - kxmlgui - qt5-svg - karchive - kguiaddons - libsndfile - kcompletion - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkdegames-devel - Shared libraries for KDE games. - - libkdegames - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-14 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-16 - 15.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-08-20 - 15.08.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-08-16 - 15.04.3 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - libkmahjongg - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - 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/applications/15.08.3/src/libkmahjongg-15.08.3.tar.xz - - qt5-base-devel - qt5-svg-devel - extra-cmake-modules - gettext-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - mesa-devel - - desktop/kde/games/libkmahjongg/pspec.xml - - - libkmahjongg - - qt5-base - qt5-svg - libgcc - ki18n - kconfig - kcompletion - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - libkmahjongg-devel - Development files for libkmahjongg - - libkmahjongg - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-11-10 - 15.08.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-25 - 15.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-24 - 15.08.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kshisen - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - 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/applications/15.08.0/src/kshisen-15.08.0.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - kcoreaddons-devel - kdbusaddons-devel - libkdegames-devel - libkmahjongg-devel - knewstuff-devel - kdnssd-devel - kdeclarative-devel - kio-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/games/kshisen/pspec.xml - - - kshisen - - qt5-base - libgcc - ki18n - kconfig - kconfigwidgets - kwidgetsaddons - kxmlgui - kcoreaddons - kdbusaddons - libkdegames - libkmahjongg - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2015-08-29 - 1.6.0 - First Release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - ksysguard - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE system monitor - KDE5 system monitor daemon and service. - mirrors://kde/stable/plasma/5.5.0/ksysguard-5.5.0.tar.xz - - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knewstuff-devel - knotifications-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libksysguard-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - lm_sensors-devel - plasma-framework-devel - qt5-base-devel - docbook-xsl - extra-cmake-modules - qt5-location-devel - qt5-webkit-devel - - desktop/kde/plasma/ksysguard/pspec.xml - - - ksysguard - - icon-theme-hicolor - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdelibs4-support - ki18n - kiconthemes - kio - kitemviews - knewstuff - knotifications - kwidgetsaddons - kwindowsystem - kxmlgui - libgcc - libksysguard - lm_sensors - qt5-base - xdg-utils - qt5-location - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-03 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - powerdevil - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.5.0/powerdevil-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - kidletime-devel - libxcb-devel - eudev-devel - kdesignerplugin - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - docbook-xsl - plasma-workspace-devel - extra-cmake-modules - - desktop/kde/plasma/powerdevil/pspec.xml - - - powerdevil - - qt5-base - kidletime - libgcc - libxcb - eudev - plasma-workspace - kio - kauth - ki18n - solid - kconfig - kxmlgui - kservice - qt5-x11extras - libkscreen - kactivities - kcompletion - kcoreaddons - kdbusaddons - kglobalaccel - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libksysguard - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Task management and system monitoring library - Task management and system monitoring library - mirrors://kde/stable/plasma/5.5.0/libksysguard-5.5.0.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-webkit-devel - kdoctools-devel - libX11-devel - libXres-devel - zlib-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/libksysguard/pspec.xml - - - libksysguard - - qt5-base - libX11 - libgcc - zlib - libXres - qt5-webkit - qt5-x11extras - kwindowsystem - kconfigwidgets - kwidgetsaddons - kconfig - kauth - kcoreaddons - ki18n - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libksysguard-devel - Development files for libksysguard - - libksysguard - qt5-base-devel - libX11-devel - zlib-devel - libXres-devel - qt5-webkit-devel - qt5-x11extras-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kconfig-devel - kauth-devel - kcoreaddons-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - oxygen-icons - http://www.oxygen-icons.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPL - desktop.kde.plasma - KDE Oxygen icons - "The Oxygen Icon Theme - mirrors://kde/stable/applications/15.04.3/src/oxygen-icons-15.04.3.tar.xz - - cmake - extra-cmake-modules - - desktop/kde/plasma/oxygen-icons/pspec.xml - - - oxygen-icons - - /usr/share/icons - - - - - 2015-08-01 - 15.04.3 - First Release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - plasma-mediacenter - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.plasma - A mediacenter user interface based on KDE Plasma components - A mediacenter user interface based on KDE Plasma components - mirrors://kde/stable/plasma/5.5.0/plasma-mediacenter-5.5.0.tar.xz - - qt5-base-devel - qt5-multimedia-devel - qt5-multimedia - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - kfilemetadata-devel - kdeclarative-devel - plasma-framework-devel - baloo-devel - extra-cmake-modules - - desktop/kde/plasma/plasma-mediacenter/pspec.xml - - - plasma-mediacenter - - qt5-base - baloo - libgcc - kfilemetadata - kcoreaddons - kactivities - qt5-declarative - kguiaddons - kservice - kconfig - ki18n - kio - taglib - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-18 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwin - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 window manager - KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.5.0/kwin-5.5.0.tar.xz - - kactivities-devel - kauth-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdeclarative-devel - kdecorations-devel - kdoctools-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kservice-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kidletime-devel - kscreenlocker-devel - libepoxy-devel - libICE-devel - libSM-devel - libX11-devel - libxcb-devel - libXcursor-devel - libXext-devel - libxkbcommon-devel - libXxf86vm-devel - mesa-devel - fontconfig-devel - freetype-devel - xcb-util-wm-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-multimedia-devel - qt5-script-devel - qt5-x11extras-devel - wayland-client - wayland-cursor - wayland-devel - xcb-util-image-devel - xcb-util-keysyms-devel - eudev-devel - libinput-devel - xcb-util-cursor-devel - qt5-multimedia-devel - qt5-multimedia - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kwin/pspec.xml - - - kwin - - kactivities - kauth - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kcrash - kdeclarative - kdecorations - kglobalaccel - ki18n - kiconthemes - kio - knewstuff - knotifications - kservice - kwayland - kwidgetsaddons - kwindowsystem - kxmlgui - kscreenlocker - kidletime - libepoxy - libgcc - libICE - libSM - libX11 - libxcb - libxkbcommon - mesa - plasma-framework - qt5-base - qt5-declarative - qt5-script - qt5-x11extras - wayland-cursor - wayland-client - xcb-util-image - xcb-util-keysyms - eudev - kpackage - libdrm - libinput - xcb-util-cursor - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwin-devel - Development files for kwin - - kwin - kactivities-devel - kauth-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdeclarative-devel - kdecorations-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kservice-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libepoxy-devel - libICE-devel - libSM-devel - libX11-devel - libxcb-devel - libXcursor-devel - libXext-devel - libxkbcommon-devel - libXxf86vm-devel - mesa-devel - fontconfig-devel - freetype-devel - xcb-util-wm-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-script-devel - qt5-x11extras-devel - wayland-devel - xcb-util-image-devel - xcb-util-keysyms-devel - eudev-devel - libinput-devel - xcb-util-cursor-devel - qt5-multimedia-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kinfocenter - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 info center - KDE5 Utility that provides information about a computer system. - mirrors://kde/stable/plasma/5.5.0/kinfocenter-5.5.0.tar.xz - - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libraw1394-devel - libX11-devel - mesa-glu-devel - pciutils-devel - plasma-framework-devel - qt5-base-devel - solid-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kwayland-devel - kdesignerplugin - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kinfocenter/pspec.xml - - - kinfocenter - - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kdelibs4-support - ki18n - kiconthemes - kio - kservice - kwayland - kwidgetsaddons - kxmlgui - libgcc - libraw1394 - libX11 - mesa-glu - mesa - pciutils - qt5-base - qt5-declarative - solid - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/about-distro - - - kcm-about-distrorc - pisilinux.svg - - - - - 2015-12-11 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - discover - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.plasma - KDE and Plasma resources management GUI - KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.5.0/discover-5.5.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - kio-devel - kdeclarative-devel - plasma-framework-devel - knewstuff-devel - extra-cmake-modules - - desktop/kde/plasma/discover/pspec.xml - - - discover - - qt5-base - libgcc - kio - attica - kconfig - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kconfigwidgets - knotifications - kwidgetsaddons - ki18n - kxmlgui - qt5-declarative - knewstuff - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-10 - 5.5.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmal.com - - - - - - plasma-workspace - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE5 Plasma Workspace Components - The KDE5 Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.0/plasma-workspace-5.5.0.tar.xz - - baloo-devel - kactivities-devel - kde-cli-tools - kdelibs4-support-devel - kdesignerplugin - kdesu-devel - kded-devel - kdewebkit-devel - kdoctools-devel - kemoticons-devel - kio-devel - kitemmodels-devel - kjs-devel - kjsembed-devel - knotifyconfig-devel - krunner-devel - ktexteditor-devel - kunitconversion-devel - kscreenlocker-devel - kwayland-devel - kwin-devel - kxmlrpcclient-devel - libdbusmenu-qt-devel - libkscreen-devel - libksysguard-devel - libqalculate-devel - libX11-devel - libXau-devel - libxcb-devel - libXcursor-devel - libXi-devel - libXrender-devel - NetworkManager-devel - networkmanager-qt-devel - pam-devel - prison-qt5-devel - qt5-base-devel - xorg-app-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-location-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-renderutil-devel - xorg-util - zlib-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/plasma-workspace/pspec.xml - - - plasma-workspace - - baloo - cln - kactivities - kauth - kbookmarks - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kcrash - kdbusaddons - kdeclarative - kde-cli-tools - kdelibs4-support - kdesu - kdewebkit - kglobalaccel - kguiaddons - ki18n - kiconthemes - kidletime - kio - kitemviews - kjobwidgets - kjs - kjsembed - knewstuff - knotifyconfig - kpackage - knotifications - krunner - kservice - ktexteditor - ktextwidgets - kwallet - kwayland - kwidgetsaddons - kwindowsystem - kxmlgui - kxmlrpcclient - libdbusmenu-qt - libgcc - libICE - libkscreen - libksysguard - libqalculate - libSM - libX11 - libXau - libxcb - libXfixes - libXi - libXrender - networkmanager-qt - pam - prison-qt5 - plasma-framework - qt5-base - qt5-declarative - qt5-phonon - qt5-script - qt5-webkit - qt5-x11extras - qt5-location - solid - wayland-client - wayland-server - xcb-util-keysyms - xcb-util - kscreenlocker - xcb-util-image - xorg-app - zlib - - - /etc/pam.d - /etc/env.d - /etc/xdg - /usr/share - /usr/share/applications - /usr/share/locale - /usr/bin - /usr/lib/qt5/plugins - /usr/lib/qt5/qml - /usr/lib - /usr/share/doc - - - kde.pam - kde-np.pam - kde-env.sh - - - - plasma-workspace-devel - Development files for kde5 plasma-workspace - - plasma-workspace - baloo-devel - cln-devel - kactivities-devel - kauth-devel - kbookmarks-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kde-cli-tools - kdelibs4-support-devel - kdesu-devel - kdewebkit - kglobalaccel-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kidletime-devel - kio-devel - kitemviews-devel - kjobwidgets-devel - kjs-devel - kjsembed-devel - knewstuff - knotifications-devel - knotifyconfig-devel - kpackage-devel - krunner-devel - kservice-devel - ktexteditor-devel - ktextwidgets-devel - kwallet-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kxmlrpcclient-devel - kscreenlocker-devel - libdbusmenu-qt-devel - libICE-devel - libkscreen-devel - libksysguard-devel - libqalculate-devel - libSM-devel - libX11-devel - libXau-devel - libxcb-devel - libXfixes-devel - libXi-devel - libXrender-devel - networkmanager-qt-devel - pam-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-phonon-devel - qt5-script-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-location-devel - solid-devel - wayland-devel - xcb-util-keysyms-devel - zlib-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - drkonqi - KDE crash handler - - kdewebkit - kxmlrpcclient - plasma-workspace - - - /usr/lib/libexec - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-28 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-10 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - breeze - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 Plasma artwork - Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.5.0/breeze-5.5.0.tar.xz - - qt5-base-devel - libxcb-devel - qt5-x11extras-devel - frameworkintegration-devel - kdecorations-devel - kcoreaddons-devel - ki18n-devel - kcmutils-devel - kwindowsystem-devel - kconfig-devel - kguiaddons-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/plasma/breeze/pspec.xml - - - breeze-style - - qt5-base - libgcc - kconfig - kguiaddons - kcoreaddons - kconfigwidgets - kwidgetsaddons - qt5-x11extras - libxcb - frameworkintegration - kcmutils - kcoreaddons - ki18n - kwindowsystem - kdecorations - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - breeze-icons - - breeze-style - - - /usr/share/icons - - - - breeze-cursors - - breeze-style - - - /usr/share/icons/breeze_cursors - - - - breeze-wallpapers - - /usr/share/wallpapers - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwallet-pam - https://projects.kde.org/kwallet-pam - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KWallet PAM integration. - KWallet PAM integration. - mirrors://kde/stable/plasma/5.5.0/kwallet-pam-5.5.0.tar.xz - - pam-devel - libgcrypt-devel - extra-cmake-modules - - desktop/kde/plasma/kwallet-pam/pspec.xml - - - kwallet-pam - - pam - libgcrypt - - - /lib - /usr/lib/security - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kmenuedit - http://www.kde.org - - Pisi Linux admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Provides the interface and basic tools for the KDE workspace - Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.0/kmenuedit-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - kconfig-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdbusaddons-devel - kdelibs4-support-devel - ki18n-devel - kiconthemes-devel - kio-devel - kxmlgui-devel - sonnet-devel - kdesignerplugin - kitemmodels-devel - kinit-devel - kunitconversion-devel - kemoticons-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kmenuedit/pspec.xml - - - kmenuedit - - qt5-base - libgcc - kconfig - kservice - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - kdbusaddons - kdelibs4-support - ki18n - kiconthemes - kio - kxmlgui - sonnet - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-15 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-cli-tools - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Additional client tools for KDE applications - Tools based on KDE Frameworks 5 to better interact with the system - mirrors://kde/stable/plasma/5.5.0/kde-cli-tools-5.5.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - qt5-svg-devel - libX11-devel - kdoctools-devel - kio-devel - kdesu-devel - ki18n-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kconfig-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kde-cli-tools/pspec.xml - - - kde-cli-tools - - qt5-base - qt5-svg - libX11 - libgcc - kio - kdesu - ki18n - kservice - qt5-x11extras - kcompletion - kcoreaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - kcmutils - kconfig - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Package - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ksshaskpass - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - ssh-add helper that uses kwallet and kpassworddialog - ssh-add helper that uses kwallet and kpassworddialog - mirrors://kde/stable/plasma/5.5.0/ksshaskpass-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - kcoreaddons-devel - ki18n-devel - kwallet-devel - libxslt - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/ksshaskpass/pspec.xml - - - ksshaskpass - - qt5-base - libgcc - kcoreaddons - kwidgetsaddons - ki18n - kwallet - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - ksshaskpass.sh - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-18 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kde-gtk-config - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - GTK2 and GTK3 Configurator for KDE - Configuration dialog to adapt GTK+ applications appearance to your taste under KDE. - mirrors://kde/stable/plasma/5.5.0/kde-gtk-config-5.5.0.tar.xz - - qt5-base-devel - kio-devel - glib2-devel - ki18n-devel - kcoreaddons-devel - kiconthemes-devel - kwidgetsaddons-devel - kcmutils-devel - karchive-devel - kauth-devel - kconfigwidgets-devel - knewstuff-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - extra-cmake-modules - - desktop/kde/plasma/kde-gtk-config/pspec.xml - - - kde-gtk-config - - qt5-base - libgcc - glib2 - kio - ki18n - kcoreaddons - kiconthemes - kwidgetsaddons - karchive - knewstuff - kconfigwidgets - gtk2 - gtk3 - - - /usr/share - /etc/xdg/cgc* - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - oxygen - https://projects.kde.org/projects/kde/workspace/oxygen - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL - desktop.kde.plasma - KDE Oxygen style - KDE Oxygen style - mirrors://kde/stable/plasma/5.5.0/oxygen-5.5.0.tar.xz - - kcmutils-devel - frameworkintegration-devel - kdoctools-devel - cairo-devel - libxcb-devel - gtk3-devel - kdoctools-devel - kdecorations-devel - plasma-workspace-devel - extra-cmake-modules - - desktop/kde/plasma/oxygen/pspec.xml - - - oxygen - - ki18n - libgcc - libxcb - kconfig - qt5-base - kguiaddons - kcompletion - kcoreaddons - kdecorations - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - frameworkintegration - kcmutils - - - /usr/bin/ - /usr/lib - /usr/share/sounds - /usr/share/icons - /usr/share/locale - /usr/share/plasma - /usr/share/kstyle - /usr/share/kservices5 - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-29 - 5.3.2 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - user-manager - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.plasma - KDE 5 User Manager - User Manager within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.0/user-manager-5.5.0.tar.xz - - qt5-base-devel - accountsservice-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libpwquality-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/user-manager/pspec.xml - - - user-manager - - qt5-base - accountsservice - libgcc - kio - ki18n - kconfig - libpwquality - kcoreaddons - kiconthemes - kconfigwidgets - kdelibs4-support - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Verison bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-27 - 5.4.0 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - plasma-nm - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Plasma applet written in QML for managing network connections - Plasma applet written in QML for managing network connections - mirrors://kde/stable/plasma/5.5.0/plasma-nm-5.5.0.tar.xz - - qt5-base-devel - libgcc - networkmanager-qt-devel - modemmanager-qt-devel - ModemManager-devel - kdelibs4-support-devel - openconnect-devel - kdoctools-devel - NetworkManager-devel - mobile-broadband-provider-info - extra-cmake-modules - qt5-quick1-devel - qt5-declarative-devel - plasma-framework-devel - kdelibs4-support-devel - kdesignerplugin - kinit-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - qca2-qt5-devel - - desktop/kde/plasma/plasma-nm/pspec.xml - - - plasma-nm - - qt5-base - qca2-qt5 - libgcc - openconnect - kio - networkmanager-qt - modemmanager-qt - ki18n - solid - kconfig - kwallet - kxmlgui - kservice - kitemviews - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libkscreen - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 screen management library - Dynamic display management library for KDE - mirrors://kde/stable/plasma/5.5.0/libkscreen-5.5.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libxcb-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - libXcursor-devel - libXrandr-devel - extra-cmake-modules - cmake - - desktop/kde/plasma/libkscreen/pspec.xml - - - libkscreen - - qt5-base - libxcb - libgcc - qt5-x11extras - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/dbus-1 - - - - libkscreen-devel - Development files for libkscreen - - libxcb-devel - qt5-base-devel - qt5-x11extras-devel - libkscreen - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sddm-kcm - https://projects.kde.org/projects/kde/workspace/sddm-kcm - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - app:console - desktop.kde.plasma - KDE5 Config Module for SDDM - KDE5 Config Module for SDDM - mirrors://kde/stable/plasma/5.5.0/sddm-kcm-5.5.0.tar.xz - - kcoreaddons-devel - kdoctools-devel - kconfigwidgets-devel - kauth-devel - libX11-devel - kxmlgui-devel - ki18n-devel - qt5-base-devel - kio-devel - qt5-declarative-devel - qt5-x11extras-devel - kconfig-devel - mesa-devel - docutils - libXcursor-devel - xcb-util-image-devel - extra-cmake-modules - - desktop/kde/plasma/sddm-kcm/pspec.xml - - - sddm-kcm - - kcoreaddons - sddm - libgcc - libX11 - kconfigwidgets - kauth - ki18n - qt5-base - kio - libXcursor - kconfig - qt5-x11extras - qt5-declarative - - - /etc/dbus-1/system.d - /usr/share/dbus-1/system-services - /usr/share/kservices5 - /usr/share/ - /usr/share/polkit-1/actions - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5/plugins - /usr/lib/libexec/kauth - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-16 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-pa - https://projects.kde.org/plasma-pa - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Plasma applet for audio volume management using PulseAudio. - Plasma applet for audio volume management using PulseAudio. - mirrors://kde/stable/plasma/5.5.0/plasma-pa-5.5.0.tar.xz - - qt5-base-devel - qt5-quick1-devel - qt5-declarative-devel - kconfigwidgets-devel - kcoreaddons-devel - kdeclarative-devel - plasma-framework-devel - kdoctools-devel - glib2-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/plasma-pa/pspec.xml - - - plasma-pa - - qt5-base - kdeclarative - libgcc - ki18n - kcoreaddons - kglobalaccel - qt5-declarative - pulseaudio-libs - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - khotkeys - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.5.0/khotkeys-5.5.0.tar.xz - - libX11-devel - qt5-base-devel - qt5-x11extras-devel - kdoctools-devel - kconfig-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kauth-devel - kpackage-devel - kdbusaddons-devel - kdelibs4-support-devel - kglobalaccel-devel - ki18n-devel - kio-devel - kxmlgui-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - plasma-framework-devel - plasma-workspace-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/khotkeys/pspec.xml - - - khotkeys - - qt5-base - kconfig - libgcc - libX11 - kservice - qt5-x11extras - kcompletion - kcoreaddons - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kdbusaddons - kdelibs4-support - kglobalaccel - ki18n - kio - kxmlgui - plasma-workspace - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-15 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - system-settings - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 system settings manager - System-settings is a control panel for KDE5 Plasma - mirrors://kde/stable/plasma/5.5.0/systemsettings-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - kio-devel - kauth-devel - khtml-devel - kcmutils-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/system-settings/pspec.xml - - - system-settings - - qt5-base - kauth - libgcc - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - kcmutils - kconfig - kdbusaddons - khtml - ki18n - kiconthemes - kio - kitemviews - kservice - kwindowsystem - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - system-settings-devel - Development files for system-settings - - qt5-base-devel - kauth-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kconfig-devel - kdbusaddons-devel - khtml-devel - ki18n-devel - kiconthemes - kio-devel - kitemviews-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - system-settings - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kgamma5 - https://projects.kde.org/kgamma5 - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Adjust your monitor's gamma settings. - Adjust your monitor's gamma settings. - mirrors://kde/stable/plasma/5.5.0/kgamma5-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - qt5-x11extras-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libXxf86vm-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kgamma5/pspec.xml - - - kgamma5 - - qt5-base - kconfig - libgcc - libX11 - ki18n - kcoreaddons - kconfigwidgets - kdelibs4-support - libXxf86vm - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kscreenlocker - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Library and components for secure lock screen architecture. - Library and components for secure lock screen architecture. - mirrors://kde/stable/plasma/5.5.0/kscreenlocker-5.5.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - kglobalaccel-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - kidletime-devel - kdeclarative-devel - kcmutils-devel - kwayland-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/kscreenlocker/pspec.xml - - - kscreenlocker - - qt5-base - libgcc - ki18n - kcrash - libX11 - libxcb - kconfig - kxmlgui - kpackage - kwayland - kidletime - kcoreaddons - kdeclarative - kglobalaccel - kwindowsystem - qt5-x11extras - kconfigwidgets - knotifications - wayland-client - wayland-server - qt5-declarative - kdelibs4-support - xcb-util-keysyms - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kscreenlocker-devel - Development files for kscreenlocker - - qt5-base-devel - qt5-declarative-devel - kglobalaccel-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - kidletime-devel - kdeclarative-devel - kcmutils-devel - kwayland-devel - plasma-framework-devel - kscreenlocker - - - /usr/include - /usr/lib/cmake - - - - - 2015-12-10 - 5.5.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - kdecorations - https://projects.kde.org/projects/kde/workspace/kdecoration - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Plugin based library to create window decorations - Plugin based library to create window decorations - mirrors://kde/stable/plasma/5.5.0/kdecoration-5.5.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/plasma/kdecorations/pspec.xml - - - kdecorations - - qt5-base - libgcc - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdecorations-devel - Development files for kdecorations - - qt5-base-devel - kdecorations - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwayland - http://www.kde.org - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Qt-style Client and Server library wrapper for the Wayland libraries - Qt-style Client and Server library wrapper for the Wayland libraries - mirrors://kde/stable/plasma/5.5.0/kwayland-5.5.0.tar.xz - - qt5-base-devel - wayland-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/kwayland/pspec.xml - - - kwayland - - libgcc - qt5-base - mesa - wayland-client - wayland-server - - - /etc/xdg - /usr/lib - /usr/share/config - /usr/share/doc - - - - kwayland-devel - - qt5-base-devel - wayland-devel - mesa-devel - kwayland - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kdeplasma-addons - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Additional client tools for KDE applications - Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.5.0/kdeplasma-addons-5.5.0.tar.xz - - qt5-base-devel - libxcb-devel - xcb-util-image-devel - glib2-devel - scim-devel - ibus-devel - kdoctools-devel - knewstuff-devel - kemoticons-devel - kitemmodels-devel - kross-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kdesignerplugin - krunner-devel - kdelibs4-support-devel - plasma-framework-devel - extra-cmake-modules - - desktop/kde/plasma/kdeplasma-addons/pspec.xml - - - kdeplasma-addons - - qt5-base - plasma-framework - libgcc - libxcb - xcb-util-image - glib2 - knewstuff - krunner - kio - ki18n - kross - sonnet - kconfig - kxmlgui - karchive - kpackage - kservice - qt5-x11extras - qt5-declarative - kcompletion - kcoreaddons - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kunitconversion - kdelibs4-support - ibus - scim-libs - xcb-util-keysyms - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-desktop - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 plasma workspace - This package contains the basic packages for a Plasma workspace. - mirrors://kde/stable/plasma/5.5.0/plasma-desktop-5.5.0.tar.xz - - qt5-base-devel - boost-devel - kdoctools-devel - kio-devel - kcmutils-devel - knewstuff-devel - kpeople-devel - kdbusaddons-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kwin-devel - libX11-devel - libXft-devel - libxkbfile-devel - kded-devel - libxcb-devel - freetype-devel - libusb-compat-devel - xorg-server-devel - xorg-input-evdev-devel - xorg-input-synaptics-devel - pulseaudio-libs-devel - fontconfig-devel - plasma-workspace-devel - system-settings-devel - xorg-app-devel - xkeyboard-config - baloo-devel - libcanberra-devel - docbook-xsl - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-odbc - kdesignerplugin - extra-cmake-modules - - desktop/kde/plasma/plasma-desktop/pspec.xml - - - plasma-desktop - - baloo - fontconfig - freetype - kactivities - karchive - kauth - kbookmarks - kcmutils - kcodecs - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - kdelibs4-support - kemoticons - kglobalaccel - kguiaddons - ki18n - kiconthemes - kio - kitemmodels - kitemviews - kjobwidgets - knewstuff - knotifications - knotifyconfig - kparts - kpeople - krunner - kservice - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - libgcc - libusb-compat - libX11 - libxcb - libXcursor - libXfixes - libXft - libXi - libxkbfile - plasma-framework - plasma-workspace - libcanberra - pulseaudio-libs - xkeyboard-config - qt5-base - qt5-declarative - qt5-phonon - qt5-svg - qt5-x11extras - solid - sonnet - qt5-sql-sqlite - system-settings - xcb-util-image - oxygen-icons - oxygen-fonts - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-31 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - sddm - https://github.com/sddm/sddm - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - QML based X11 display manager - KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - https://github.com/sddm/sddm/releases/download/v0.13.0/sddm-0.13.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-declarative-devel - libxcb-devel - libxkbfile-devel - pam-devel - extra-cmake-modules - docutils - - - sddm-0.11.0-consolekit.patch - sddm-respect-user-flags.patch - - desktop/kde/plasma/sddm/pspec.xml - - - sddm - - qt5-base - qt5-declarative - pam - libgcc - libxcb - - - /etc - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Service - System.Package - - - sddm.conf - sddm - - - - - 2015-11-18 - 0.13.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-07 - 0.12 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 0.11 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-09-20 - 0.11 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - plasma-workspace-wallpapers - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE Plasma Workspace Components - The KDE Plasma Workspace Components - mirrors://kde/stable/plasma/5.5.0/plasma-workspace-wallpapers-5.5.0.tar.xz - - qt5-base - extra-cmake-modules - - desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml - - - plasma-workspace-wallpapers - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-25 - 5.3.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - polkit-kde-authentication-agent-1 - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - The KDE Plasma Workspace Components - The Polkit-KDE-Agent package contains a graphical Polkit authentication agent for the KDE Plasma Desktop. - mirrors://kde/stable/plasma/5.5.0/polkit-kde-agent-1-5.5.0.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - knotifications-devel - polkit-qt-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml - - - polkit-kde-authentication-agent-1 - - qt5-base - libgcc - kcrash - kcoreaddons - polkit-qt - ki18n - kdbusaddons - kiconthemes - kwindowsystem - knotifications - kwidgetsaddons - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-31 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-29 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwrited - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 daemon listening for wall and write messages - KDE5 daemon listening for wall and write messages - mirrors://kde/stable/plasma/5.5.0/kwrited-5.5.0.tar.xz - - qt5-base-devel - ki18n-devel - kdoctools-devel - kcoreaddons-devel - knotifications-devel - kpty-devel - kdelibs4-support-devel - kdbusaddons-devel - extra-cmake-modules - - desktop/kde/plasma/kwrited/pspec.xml - - - kwrited - - qt5-base - kpty - libgcc - kcoreaddons - knotifications - kdbusaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kwayland-integration - http://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Provides integration plugins for various KDE frameworks for the wayland windowing system - Provides integration plugins for various KDE frameworks for the wayland windowing system - mirrors://kde/stable/plasma/5.5.0/kwayland-integration-5.5.0.tar.xz - - kwayland-devel - qt5-base-devel - kwindowsystem-devel - kidletime-devel - extra-cmake-modules - - desktop/kde/plasma/kwayland-integration/pspec.xml - - - kwayland-integration - - kwayland - kidletime - kwindowsystem - libgcc - qt5-base - - - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - First Release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - milou - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDedicated search application built on top of Baloo - Dedicated search application built on top of Baloo - mirrors://kde/stable/plasma/5.5.0/milou-5.5.0.tar.xz - - qt5-base-devel - qt5-declarative - kdoctools-devel - kdeclarative-devel - ki18n-devel - krunner-devel - plasma-framework-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/plasma/milou/pspec.xml - - - milou - - qt5-base - qt5-declarative - krunner - libgcc - kconfig - kservice - kcoreaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-12 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kscreen - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Provides the interface and basic tools for the KDE workspace - Provides the interface and basic tools for the KDE workspace - mirrors://kde/stable/plasma/5.5.0/kscreen-5.5.0.tar.xz - - qt5-base-devel - qt5-graphicaleffects - qt5-declarative-devel - kglobalaccel-devel - libkscreen-devel - kconfig-devel - kdoctools-devel - kxmlgui-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/kscreen/pspec.xml - - - kscreen - - qt5-base - libgcc - libkscreen - qt5-declarative - kconfig - kcoreaddons - kglobalaccel - kconfigwidgets - kwidgetsaddons - kdbusaddons - ki18n - kxmlgui - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-02 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - khelpcenter - http://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE Help Center - KDE help center utility to read help documentation about various KDE applications. - mirrors://kde/stable/plasma/5.5.0/khelpcenter-5.5.0.tar.xz - - qt5-base-devel - libdbusmenu-qt-devel - kinit-devel - kcmutils-devel - khtml-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - kdesignerplugin - kdelibs4-support-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/khelpcenter/pspec.xml - - - khelpcenter - - qt5-base - kio - libgcc - khtml - ki18n - kparts - kcodecs - kconfig - kxmlgui - kcmutils - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-11 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - bluedevil - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE 5 Bluetooth Stack - Integrate the Bluetooth technology within KDE workspace and applications - mirrors://kde/stable/plasma/5.5.0/bluedevil-5.5.0.tar.xz - - qt5-base-devel - qt5-declarative - kded-devel - plasma-framework-devel - bluez-qt-devel - kded-devel - kio-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwindowsystem-devel - knotifications-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/plasma/bluedevil/pspec.xml - - - bluedevil - - qt5-base - libgcc - bluez-qt - kded - kio - ki18n - kconfig - qt5-declarative - kcoreaddons - kdbusaddons - kiconthemes - kconfigwidgets - knotifications - kwindowsystem - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-01 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-06 - 5.3.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - plasma-sdk - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - Applications useful for Plasma development - Applications useful for Plasma development - mirrors://kde/stable/plasma/5.5.0/plasma-sdk-5.5.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-svg-devel - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdeclarative-devel - ki18n-devel - kiconthemes-devel - kio-devel - knewstuff-devel - kparts-devel - plasma-framework-devel - kservice-devel - ktexteditor-devel - kwidgetsaddons-devel - kxmlgui-devel - kwindowsystem-devel - extra-cmake-modules - - desktop/kde/plasma/plasma-sdk/pspec.xml - - - plasma-sdk - - qt5-base - ktexteditor - plasma-framework - kio - libgcc - ki18n - kconfig - karchive - kpackage - kservice - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2015-12-09 - 5.5.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-11 - 5.4.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-10-07 - 5.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-12 - 5.4.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-25 - 5.4.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 5.3.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-14 - 5.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - icon-theme-hicolor - http://icon-theme.freedesktop.org/wiki/HicolorTheme - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Default icon theme - Temel simge teması - Hicolor icon theme contains the basic directories and files needed for icon theme support. - Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. - http://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.12.tar.gz - desktop/lookandfeel/icon-theme-hicolor/pspec.xml - - - icon-theme-hicolor - - /usr/share/doc - /usr/share/icons - - - - - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-24 - 0.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - iconcan - http://www.pisilinux.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv3 - app:gui - desktop.lookandfeel - Icon etiketi için görseller - Icon etiketi için görseller - Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. - Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. - lang-tr - http://source.pisilinux.org/1.0/iconcan-1.0.1.tar.xz - desktop/lookandfeel/iconcan/pspec.xml - - - iconcan - - /usr/share/pixmaps - - - - - 2015-02-04 - 1.0.1 - Version Bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-02-04 - 1.0.0 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - artwork-pisilinux-release - http://www.pisilinux.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - public-domain - CCPL-Attribution-ShareAlike-3.0 - CCPL-Attribution-3.0 - data - desktop.lookandfeel - Artwork for Pisi Linux releases - Pisi Linux sürümleri için sanatsal içerik - This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. - Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. - http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz - http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz - desktop/lookandfeel/artwork-pisilinux-release/pspec.xml - - - artwork-pisilinux-release - - /usr/share/wallpapers - - - - example-content - Example files for Pisi Linux - Pisi Linux ile beraber dağıtılan örnek dosyalar - - /usr/share/example-content - /etc/X11/Xsession.d - - - 35-example-content.sh - - - - - 2015-03-04 - 1.2 - Add new wallpapers. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-08-04 - 0.2 - Add new wallpapers. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-07 - 0.2 - Add new wallpapers, example contents. - Serdar Soytetir - kaptann@pisilinux.org - - - 2013-09-18 - 1.0 - add more izmir themes. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-09-18 - 1.0 - add izmir theme. - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-08-27 - 1.0 - Gönüllü çalışmalar eklendi. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 1.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-03-22 - 1.0 - bump for pisi Linux - Erdinç Gültekin - erdincgultekin@pisilinux.org - - - 2013-01-31 - 2013.1 - First release - Demiray Muhterem - bilgi@bilgegunluk.com - - - - - - gtk2-engines-murrine - http://cimitan.com/murrine/project/murrine - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.lookandfeel - GTK+ Murrine theme engine - GTK+ Murrine tema motoru - The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. - Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. - mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz - - gtk2-devel - glib2-devel - cairo-devel - pango-devel - pixman-devel - gdk-pixbuf-devel - intltool - - desktop/lookandfeel/gtk2-engines-murrine/pspec.xml - - - gtk2-engines-murrine - - gtk2 - glib2 - cairo - pango - pixman - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/gtk-engines - - - - - 2014-02-07 - 0.98.2 - Remove gtk2 runtime dep to avoid cyclic deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 0.98.2 - Release bump - Erdinç Gültekin - erdinc@pisilinux.org - - - 2012-06-10 - 0.98.2 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gtk-theme-mediterranean - http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Great themes for GTK2 and GTK3 - GTK2 ve GTK3 için güzel temalar - Themes for GTK2 and GTK3. - GTK2 ve GTK3 için yazılmış tema paketleri. - https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz - desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml - - - gtk-theme-mediterranean - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes/MediterraneanDark - /usr/share/themes/MediterraneanWhite - /usr/share/themes/MediterraneanLightDarkest - - - - gtk-theme-mediterranean-others - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes - - - - - 2014-02-06 - 2.03 - Add MediterraneanLightDarkest to main package. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-01-26 - 2.03 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-10-05 - 2.0.3 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - librsvg - http://librsvg.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome2 - Scalable Vector Graphics (SVG) rendering library - Scalable Vector Graphics (SVG) kitaplığı - librsvg est un composant utilisé au sein de logiciels pour gérer les graphismes vectoriels au format SVG. - librsvg is a component used within software applications to enable support for SVG-format scalable vector graphics. - Scalable Vector Graphics (SVG) kitaplığı - mirrors://gnome/librsvg/2.40/librsvg-2.40.9.tar.xz - - libcroco-devel - gtk2-devel - pango-devel - vala-devel - python-devel - gdk-pixbuf-devel - gtk-doc - gobject-introspection-devel - - desktop/gnome2/librsvg/pspec.xml - - - librsvg - - glib2 - libxml2 - cairo - pango - libcroco - gdk-pixbuf - - - /etc/gtk-2.0 - /usr/bin - /usr/lib - /usr/share/man/man1 - /usr/share/pixmaps - /usr/share/themes - /usr/share/vala - /usr/share/gtk-doc - /usr/share/gir-1.0/Rsvg-2.0.gir - /usr/share/doc - - - - librsvg-devel - Development files for librsvg - librsvg için geliştirme dosyaları - - librsvg - gdk-pixbuf-devel - cairo-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - librsvg-32bit - 32-bit shared libraries for librsvg - emul32 + lcms2-32bit + 32-bit shared libraries for lcms2 emul32 - atk-32bit - gtk2-32bit - glib2-32bit - cairo-32bit - pango-32bit - libpng-32bit - libxml2-32bit - freetype-32bit - libcroco-32bit - gdk-pixbuf-32bit - fontconfig-32bit + tiff-32bit + libjpeg-turbo-32bit - librsvg + lcms2 glibc-32bit - glib2-32bit - cairo-32bit - pango-32bit - libxml2-32bit - libcroco-32bit - gdk-pixbuf-32bit /usr/lib32 - - 2015-08-10 - 2.40.9 - Version bump. - PisiLinux Community - ayhanyalcinsoy@pisilinux.org - - - 2014-05-17 - 2.40.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2013-10-14 - 2.39.0 - Rebuild icu4c. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-10 - 2.39.0 - Rebuild and install using correct loaders. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-23 - 2.39.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-31 - 2.36.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - 2013-06-17 - 2.36.4 - Rebuild with new pisi release - Marcin Bojara - marcin@pisilinux.org + 2014-05-15 + 2.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-01-23 - 2.36.4 - Rebuild. - PisiLinux Community - admins@pisilinux.org + 2014-01-29 + 2.5 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org - 2013-01-23 - 2.36.4 - Version bump. + 2013-07-02 + 2.5 + Version bump Marcin Bojara marcin@pisilinux.org - 2012-11-06 - 2.36.3 + 2012-10-31 + 2.3 First release Marcin Bojara marcin@pisilinux.org @@ -103026,97 +105892,2527 @@ Jabber and others - orbit2 - http://www.gnome.org/ + jasper + http://www.ece.uvic.ca/~mdadams/jasper + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.graphics + Software implementation of JPEG-2000 Part 1 + JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım + JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). + http://www.ece.uvic.ca/~mdadams/jasper/software/jasper-1.900.1.zip + + libjpeg-turbo-devel + + + jasper-1.900.1-fixes-20081208.patch.bz2 + + multimedia/graphics/jasper/pspec.xml + + + jasper + + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/man + + + + jasper-docs + + jasper + + + /usr/share/doc + + + + jasper-devel + Development files for jasper + jasper için geliştirme dosyaları + + jasper + + + /usr/include + + + + jasper-32bit + 32-bit shared libraries for jasper + jasper için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glibc-32bit + libjpeg-turbo-32bit + + + jasper + libjpeg-turbo-32bit + glibc-32bit + + + /usr/lib32 + + + + + 2015-06-26 + 1.900.1 + Rebuild, fixed + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-21 + 1.900.1 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-20 + 1.900.1 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2013-08-17 + 1.900.1 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2011-07-07 + 1.900.1 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + hugin + http://hugin.sourceforge.net PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2 + app:gui library - desktop.gnome2 - High-performance CORBA ORB - Yüksek performanslı CORBA ORB - Orbit2 allows to communication between two programs objects. - Orbit2 iki program nesneleri arasındaki iletişimi sağlar. - mirrors://gnome/ORBit2/2.14/ORBit2-2.14.19.tar.bz2 + multimedia.graphics + A panoramic photo stitcher + Panoramik görüntü birleştirici + hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. + hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. + hugin + mirrors://sourceforge/hugin/hugin/hugin-2015.0/hugin-2015.0.0.tar.bz2 - libIDL-devel - grep - glib2-devel - gtk-doc + swig + cmake + glew-devel + tiff-devel + zlib-devel + vigra-devel + boost-devel + wxGTK-devel + exiv2-devel + fftw3-devel + flann-devel + libXmu-devel + libpng-devel + python-devel + lapack-devel + sqlite-devel + openexr-devel + freeglut-devel + libpano13-devel + libjpeg-turbo-devel - - fedora/ORBit2-allow-deprecated.patch - - desktop/gnome2/orbit2/pspec.xml + multimedia/graphics/hugin/pspec.xml - orbit2 + hugin - libIDL - glib2 + blas + glew + mesa + tiff + boost + fftw3 + vigra + wxGTK + lapack + libgcc + python + sqlite + enblend + ilmbase + libgomp + freeglut + mesa-glu + libpano13 + exiv2-libs + openexr-libs + perl-Image-ExifTool - /usr/bin - /usr/lib + /usr/lib/ /usr/share/doc - /usr/share/idl + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/hugin + /usr/share/pixmaps + /usr/share/appdata + /usr/share/applications + /usr/share/locale + + hugin-libs + hugin-tools + - orbit2-devel - Development files for orbit2 - orbit2 için geliştirme dosyaları - - orbit2 - libIDL-devel + hugin-docs + Help documents for hugin + hugin için yardım belgeleri + + /usr/share/hugin/xrc/data/help* + + + + + 2015-11-06 + 2015.0.0 + Version Bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-12-29 + 2014.0.0 + rebuild for boost 1.57.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-11-10 + 2014.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-05-30 + 2013.0.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2013-11-11 + 201300 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 201300_beta1 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-08 + 201300_beta1 + Error Fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-05-08 + 201300_beta1 + vbump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-08-28 + 2012.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp + http://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + multimedia.graphics.gimp + GNU Image Manipulation Program + Bir resim işleme programı + Programme de Manipulation d'Image GNU. + GIMP is a mature image editor with many advanced features and plugin support. + Piksel düzeyinde işlem yapılabilen gelişmiş bir grafik düzenleme programı + http://download.gimp.org/pub/gimp/v2.8/gimp-2.8.14.tar.bz2 + + gtk-doc + atk-devel + xdg-utils + tiff-devel + zlib-devel + lcms-devel + gegl-devel + babl-devel + dbus-devel + gtk2-devel + aalib-devel + bzip2 + pango-devel + cairo-devel glib2-devel + libwmf-devel + jasper-devel + libX11-devel + libmng-devel + libpng-devel + libXpm-devel + libXmu-devel + libXext-devel + librsvg-devel + libexif-devel + alsa-lib-devel + freetype-devel + dbus-glib-devel + libXfixes-devel + eudev-devel + libXcursor-devel + fontconfig-devel + python-gtk-devel + gdk-pixbuf-devel + ghostscript-devel + webkit-gtk2-devel + poppler-glib-devel + libjpeg-turbo-devel + intltool + python-devel + + + single_window.patch + + multimedia/graphics/gimp/gimp/pspec.xml + + + gimp-devel + Documents et entêtes de développement pour GIMP. + Development header and documents for GIMP + GIMP için geliştirme belgeleri ve başlık dosyaları + data + data:doc + + gtk2-devel + cairo-devel + gdk-pixbuf-devel + gimp - /usr/bin/orbit2-config /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig + /usr/share/gtk-doc + /usr/lib/pkgconfig /usr/share/aclocal - orbit2-docs - ORBit2 reference documents - Orbit2 referans dökümanları - data:doc + gimp + app:gui + + gegl + babl + dbus + gtk2 + tiff + zlib + aalib + bzip2 + pango + cairo + glib2 + libwmf + libXpm + libmng + libpng + libXmu + jasper + libX11 + libXext + librsvg + libexif + alsa-lib + freetype + dbus-glib + libXfixes + eudev + libXcursor + fontconfig + gdk-pixbuf + ghostscript + webkit-gtk2 + poppler-glib + libjpeg-turbo + - /usr/share/gtk-doc + /etc + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/gimp + /usr/share/icons + /usr/share/appdata + /usr/share/mime-info + /usr/share/applications + /usr/share/application-registry + + + gimp-splash-pencils.png + + + + gimp-i18n-tr + Gimp translation files for Turkish + Türkçe için GIMP yerelleştirme dosyaları + locale:tr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tr + + + + gimp-i18n-ast + Gimp translation files for Asturian + Asturya dili için GIMP yerelleştirme dosyaları + locale:ast + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ast + + + + gimp-i18n-my + Gimp translation files for Burmese + Burmese dili için GIMP yerelleştirme dosyaları + locale:my + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/my + + + + gimp-i18n-nds + Gimp translation files for Low Saxon + Aşağı Saxon dili için GIMP yerelleştirme dosyaları + locale:nds + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nds + + + + gimp-i18n-el + Gimp translation files for Greek + Yunanca için GIMP yerelleştirme dosyaları + locale:el + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/el + + + + gimp-i18n-gu + Gimp translation files for Gujarati + Gujarati dili için GIMP yerelleştirme dosyaları + locale:gu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gu + + + + gimp-i18n-be + Gimp translation files for Belarusian + Belarusça için GIMP yerelleştirme dosyaları + locale:be + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/be + + + + gimp-i18n-vi + Gimp translation files for Vietnamese + Viyetnamca için GIMP yerelleştirme dosyaları + locale:vi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/vi + + + + gimp-i18n-ca + Gimp translation files for Catalan + Katalanca için GIMP yerelleştirme dosyaları + locale:ca + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca + + + + gimp-i18n-eo + Gimp translation files for Esperanto + Esperanto için GIMP yerelleştirme dosyaları + locale:eo + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eo + + + + gimp-i18n-cs + Gimp translation files for Czech + Çekçe için GIMP yerelleştirme dosyaları + locale:cs + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/cs + + + + gimp-i18n-ca_valencia + Gimp translation files for Catalan (Valencia) + Valensiya Katalancası için GIMP yerelleştirme dosyaları + locale:ca@valencia + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca@valencia + + + + gimp-i18n-ar + Gimp translation files for Arabic + Arapça için GIMP yerelleştirme dosyaları + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ar + + + + gimp-i18n-km + Gimp translation files for Khmer + Khmer dili için GIMP yerelleştirme dosyaları + locale:km + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/km + + + + gimp-i18n-ga + Gimp translation files for Irish Gaelic + Gaelik İrlandacası için GIMP yerelleştirme dosyaları + locale:ga + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ga + + + + gimp-i18n-fi + Gimp translation files for Finnish + Fince için GIMP yerelleştirme dosyaları + locale:fi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fi + + + + gimp-i18n-eu + Gimp translation files for Basque + Baskça için GIMP yerelleştirme dosyaları + locale:eu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eu + + + + gimp-i18n-et + Gimp translation files for Estonian + Estonyaca için GIMP yerelleştirme dosyaları + locale:et + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/et + + + + gimp-i18n-xh + Gimp translation files for Xhosa + Xhosa dili için GIMP yerelleştirme dosyaları + locale:xh + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/xh + + + + gimp-i18n-gl + Gimp translation files for Galician + Galiçya dili için GIMP yerelleştirme dosyaları + locale:gl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gl + + + + gimp-i18n-id + Gimp translation files for Indonesian + Endonezyaca için GIMP yerelleştirme dosyaları + locale:id + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/id + + + + gimp-i18n-es + Gimp translation files for Spanish + İspanyolca için GIMP yerelleştirme dosyaları + locale:es + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/es + + + + gimp-i18n-ru + Gimp translation files for Russian + Rusça için GIMP yerelleştirme dosyaları + locale:ru + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ru + + + + gimp-i18n-rw + Gimp translation files for Kinyarwanda + Kinyarwanda dili için GIMP yerelleştirme dosyaları + locale:rw + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/rw + + + + gimp-i18n-nl + Gimp translation files for Dutch + Hollandaca için GIMP yerelleştirme dosyaları + locale:nl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nl + + + + gimp-i18n-nn + Gimp translation files for Norwegian Nynorsk + Norveç Nynorsk dili için GIMP yerelleştirme dosyaları + locale:nn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nn + + + + gimp-i18n-nb + Gimp translation files for Norwegian Bookmal + Norveç Bookmal dili için GIMP yerelleştirme dosyaları + locale:nb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nb + + + + gimp-i18n-ne + Gimp translation files for Nepali + Nepali dili için GIMP yerelleştirme dosyaları + locale:ne + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ne + + + + gimp-i18n-lt + Gimp translation files for Lithuanian + Litvanyaca için GIMP yerelleştirme dosyaları + locale:lt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lt + + + + gimp-i18n-pa + Gimp translation files for Punjabi + Punjabi dili için GIMP yerelleştirme dosyaları + locale:pa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pa + + + + gimp-i18n-ro + Gimp translation files for Romanian + Rumence için GIMP yerelleştirme dosyaları + locale:ro + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ro + + + + gimp-i18n-en_GB + Gimp translation files for British English + İngiliz İngilizcesi için GIMP yerelleştirme dosyaları + locale:en_GB + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_GB + + + + gimp-i18n-yi + Gimp translation files for Yi + Yi dili için GIMP yerelleştirme dosyaları + locale:yi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/yi + + + + gimp-i18n-en_CA + Gimp translation files for Catalan (en) + Katalanca için GIMP yerelleştirme dosyaları + locale:en_CA + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_CA + + + + gimp-i18n-fr + Gimp translation files for French + Fransızca için GIMP yerelleştirme dosyaları + locale:fr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fr + + + + gimp-i18n-bg + Gimp translation files for Bulgarian + Bulgarca için GIMP yerelleştirme dosyaları + locale:bg + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/bg + + + + gimp-i18n-ms + Gimp translation files for Malay + Malay dili için GIMP yerelleştirme dosyaları + locale:ms + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ms + + + + gimp-i18n-pt_BR + Gimp translation files for Brazilian Portuguese + Brezilya Portekizcesi için GIMP yerelleştirme dosyaları + locale:pt_BR + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt_BR + + + + gimp-i18n-hr + Gimp translation files for Croatian (Hrvatski) + Hırvatça için GIMP yerelleştirme dosyaları + locale:hr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hr + + + + gimp-i18n-zh_TW + Gimp translation files for Chinese Traditional + Geleneksel Çince için GIMP yerelleştirme dosyaları + locale:zh_TW + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_TW + + + + gimp-i18n-ko + Gimp translation files for Korean + Korece için GIMP yerelleştirme dosyaları + locale:ko + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ko + + + + gimp-i18n-it + Gimp translation files for Italian + İtalyanca için GIMP yerelleştirme dosyaları + locale:it + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/it + + + + gimp-i18n-fa + Gimp translation files for Farsi (Persian) + Farsça için GIMP yerelleştirme dosyaları + locale:fa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fa + + + + gimp-i18n-dz + Gimp translation files for Dzongkha + Dzongkha dili için GIMP yerelleştirme dosyaları + locale:dz + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/dz + + + + gimp-i18n-sr_Latn + Gimp translation files for Serbian Latin + Latin sırpça için GIMP yerelleştirme dosyaları + locale:sr@Latn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr@latin + + + + gimp-i18n-da + Gimp translation files for Danish + Danimarkaca için GIMP yerelleştirme dosyaları + locale:da + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/da + + + + gimp-i18n-ja + Gimp translation files for Japanese + Japonca için GIMP yerelleştirme dosyaları + locale:ja + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ja + + + + gimp-i18n-he + Gimp translation files for Hebrew + İbranice için GIMP yerelleştirme dosyaları + locale:he + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/he + + + + gimp-i18n-pt + Gimp translation files for Portuguese + Portekizce için GIMP yerelleştirme dosyaları + locale:pt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt + + + + gimp-i18n-zh_CN + Gimp translation files for Chinese Simplified + Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları + locale:zh_CN + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_CN + + + + gimp-i18n-sr + Gimp translation files for Serbian + Sırpça için GIMP yerelleştirme dosyaları + locale:sr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr + + + + gimp-i18n-oc + Gimp translation files for Occitan + Occitan dili için GIMP yerelleştirme dosyaları + locale:oc + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/oc + + + + gimp-i18n-sv + Gimp translation files for Swedish + İsveççe için GIMP yerelleştirme dosyaları + locale:sv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sv + + + + gimp-i18n-mk + Gimp translation files for Macedonian + Makedonyaca için GIMP yerelleştirme dosyaları + locale:mk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/mk + + + + gimp-i18n-sk + Gimp translation files for Slovak + Slovakça için GIMP yerelleştirme dosyaları + locale:sk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sk + + + + gimp-i18n-de + Gimp translation files for German + Almanca için GIMP yerelleştirme dosyaları + locale:de + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/de + + + + gimp-i18n-pl + Gimp translation files for Polish + Lehçe için GIMP yerelleştirme dosyaları + locale:pl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pl + + + + gimp-i18n-uk + Gimp translation files for Ukrainian + Ukraynaca için GIMP yerelleştirme dosyaları + locale:uk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/uk + + + + gimp-i18n-sl + Gimp translation files for Slovenian + Slovence için GIMP yerelleştirme dosyaları + locale:sl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sl + + + + gimp-i18n-hu + Gimp translation files for Hungarian + Macarca için GIMP yerelleştirme dosyaları + locale:hu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hu + + + + gimp-i18n-tt + Gimp translation files for Tatarish + Tatarca için GIMP yerelleştirme dosyaları + locale:tt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tt + + + + gimp-i18n-az + Gimp translation files for Azerbaijani + Azerice için GIMP yerelleştirme dosyaları + locale:az + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/az + + + + gimp-i18n-am + Gimp translation files for Amharic + Amharic dili için GIMP yerelleştirme dosyaları + locale:am + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/am + + + + gimp-i18n-is + Gimp translation files for Icelandic + İzlanda dili için GIMP yerelleştirme dosyaları + locale:is + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/is + + + + gimp-i18n-lv + Gimp translation files for Latvia + Latvia dili için GIMP yerelleştirme dosyaları + locale:lv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lv + + + + gimp-i18n-th + Gimp translation files for Thai + Thai dili için GIMP yerelleştirme dosyaları + locale:th + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/th + + + + gimp-i18n-ka + Gimp translation files for Georgian + Gürcüce için GIMP yerelleştirme dosyaları + locale:ka + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ka + + + + gimp-i18n-hi + Gimp translation files for Hindi + Hindi dili için GIMP yerelleştirme dosyaları + locale:hi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hi + + + + gimp-i18n-zh_HK + Gimp translation files for Chinese Hong Kong + Hong Kong Çincesi için GIMP yerelleştirme dosyaları + locale:zh_HK + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_HK + + + + gimp-i18n-ml + Gimp translation files for Malayalam + Malayalam dili için GIMP yerelleştirme dosyaları + locale:ml + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ml + + + + gimp-i18n-ta + Gimp translation files for Tamil + Tamil dili için GIMP yerelleştirme dosyaları + locale:ta + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ta + + + + gimp-i18n-kn + Gimp translation files for Kannada + Kannada dili için GIMP yerelleştirme dosyaları + locale:kn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kn + + + + gimp-i18n-si + Gimp translation files for Sinhala + Sinhala dili için GIMP yerelleştirme dosyaları + locale:si + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/si + + + + gimp-i18n-kk + Gimp translation files for Kazakh + Kazakça için GIMP yerelleştirme dosyaları + locale:kk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kk + + + + gimp-i18n-br + Gimp translation files for Breton + Breton dili için GIMP yerelleştirme dosyaları + locale:br + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/br + + + + gimp-i18n-te + Gimp translation files for Telugu + locale:te + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/te + + + + gimp-i18n-csb + Gimp translation files for Kashubian + locale:csb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/csb + + + + gimp-i18n-gd + Gimp translation files for Scottish Gaelic + locale:gd + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gd + + + + + 2015-02-21 + 2.8.14 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-19 + 2.8.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-02-27 + 2.8.10 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2013-12-13 + 2.8.10 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-08-17 + 2.8.6 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-06-23 + 2.8.6 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-01-16 + 2.8.4 + Updated + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-08-25 + 2.8.2 + First release + Fatih Turgel + admins@pisilinux.org + + + + + + gimp-data-extras + http//www.gimp.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + multimedia.graphics.gimp.addon + Gimp extras + Gimp ekleri + Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. + Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. + gimp + http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.2.tar.bz2 + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml + + + gimp-data-extras + + gimp + + + /usr/share/gimp + /usr/share/doc + + + + + 2014-06-19 + 2.0.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2009-09-07 + 2.0.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gimp-refocus-it-plugin + http://sourceforge.net/projects/refocus-it + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. + mirrors://sourceforge/refocus-it/refocus-it-2.0.0.tar.gz + + intltool + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml + + + gimp-refocus-it-plugin + + gimp + glib2 + gtk2 + + + /usr/bin + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc/gimp-refocus-it-plugin + /usr/share/help + /usr/share/locale + + + + + 2014-06-19 + 2.0.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.0.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-03-28 + 2.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-save-for-web + http://registry.gimp.org/node/33 + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + GIMP Save for Web + GIMP Save for Web + GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. + GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. + http://registry.gimp.org/files/gimp-save-for-web-0.29.3.tar.bz2 + + intltool + gimp-devel + gtk2-devel + gdk-pixbuf-devel + + multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml + + + gimp-save-for-web + + gimp + glib2 + gtk2 + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp-save-for-web + /usr/share/locale + /usr/share/doc + + + + + 2014-06-19 + 0.29.3 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-30 + 0.29.3 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2011-01-30 + 0.29.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-layer-effects + http://registry.gimp.org/node/186 + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + multimedia.graphics.gimp.addon + Layer effects for GIMP + GIMP için katman efektleri + Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. + Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. + gimp + http://ozbekanil.googlepages.com/layer-effects.tar.gz + multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml + + + gimp-layer-effects + + gimp + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + 2014-06-19 + 2.6.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.6.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-gmic-plugin + http://gmic.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + CeCILL-2 + app:console + library + multimedia.graphics.gimp.addon + Image procession framework. + G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. + http://gmic.eu/files/source/gmic_1.6.5.1.tar.gz + + ffmpeg-devel + fftw3-devel + gimp-devel + libjpeg-turbo-devel + lapack-devel + opencv-devel + openexr-devel + tiff-devel + curl-devel + + multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml + + + gmic + + curl + tiff + zlib + fftw3 + libX11 + libgcc + libpng + libgomp + libjpeg-turbo + + + /etc/bash_completion.d + /usr/bin + /usr/lib + /usr/share/doc/gmic + /usr/share/man + + + + gmic-devel + Development files for gmic + + gmic + + + /usr/include + + + + gimp-gmic-plugin + Gimp plugin for the GMIC image procession framework. + + atk + curl + gtk2 + zlib + gimp + cairo + pango + libX11 + libgcc + libpng + libgomp + freetype + fftw3 + glib2 + fontconfig + gdk-pixbuf + + + /usr/lib/gimp + /usr/share/doc/gimp-gmic-plugin + + + + + 2015-08-10 + 1.6.5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-25 + 1.6.0.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-06-19 + 1.5.5.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-12-01 + 1.5.5.0 + Rebuild for ffmpeg. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-03-27 + 1.5.5.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2012-08-13 + 1.5.1.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-lqr-plugin + http://liquidrescale.wikidot.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Plugin for The GIMP providing Liquid Rescale. + Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. + http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 + + intltool + gimp-devel + liblqr-devel + + multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml + + + gimp-lqr-plugin + + gdk-pixbuf + gimp + gtk2 + glib2 + liblqr + + + /usr/lib/gimp/2.0/plug-ins/* + /usr/share/doc/gimp-lqr-plugin/* + /usr/share/gimp-lqr-plugin/* + /usr/share/gimp/2.0/scripts/* + /usr/share/locale/* + + + + + 2014-06-19 + 0.7.2 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 0.7.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-14 + 0.7.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimpfx-foundry + http://gimpfx-foundry.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + public-domain + data + multimedia.graphics.gimp.addon + A scripts collection for GIMP + GIMP için zengin bir betik paketi + FX-Foundry project is constantly updating custom scripts for each major GIMP release. + FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. + mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz + multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml + + + gimpfx-foundry + + gimp + + + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + 2014-06-19 + 2.6.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 2.6.1 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2009-07-24 + 2.6.1 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + gimp-focusblur-plugin + http://registry.gimp.org/node/1444 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Makes out of focus with luminosity and depth. + Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. + http://registry.gimp.org/files/focusblur-3.2.6.tar.bz2 + + fftw3-devel + gimp-devel + intltool + + multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml + + + gimp-focusblur-plugin + + fftw3 + gdk-pixbuf + gimp + gtk2 + glib2 + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + /usr/share/locale + + + + + 2014-06-19 + 3.2.6 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.2.6 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-10 + 3.2.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-dds-plugin + http://code.google.com/p/gimp-dds/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics.gimp.addon + DirectDraw Surface (DDS) format plugin for Gimp + This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. + http://gimp-dds.googlecode.com/files/gimp-dds-3.0.1.tar.bz2 + + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml + + + gimp-dds-plugin + + atk + cairo + glib2 + fontconfig + gdk-pixbuf + gimp + gtk2 + pango + libgomp + freetype + + + /usr/lib/gimp/2.0/plug-ins/dds + /usr/share/doc/gimp-dds-plugin + + + + + 2014-06-19 + 3.0.1 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-25 + 3.0.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-07-07 + 2.2.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + gimp-resynthesizer + http://www.logarithmic.net/pfh/resynthesizer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + addon + multimedia.graphics.gimp.addon + Resynthesizer is a Gimp plug-in for texture synthesis + Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. + http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml + + + gimp-resynthesizer + + gimp + atk + gtk2 + cairo + glib2 + pango + libgcc + freetype + fontconfig + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + 2014-06-19 + 0.16 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 0.16 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-02-20 + 0.16 + First release + Erdem Artan + erdem.artan@linux.org.tr + + + + + + colorize-gimp + http://zenthought.org/content/project/colorize + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics.gimp.addon + Colorization plugin for GIMP + GIMP için renklendirme eklentisi + colorize-gimp is an implementation of colorization using optimization for GIMP. + colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. + gimp + http://zenthought.org/system/files/asset/2/colorize-gimp-20070930.tar.gz + + gimp-devel + gtk2-devel + SuiteSparse-devel + + multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml + + + colorize-gimp + + gimp + gtk2 + SuiteSparse + atk + cairo + glib2 + pango + freetype + gdk-pixbuf + fontconfig + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + 2014-06-19 + 2.6.0 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 2.6.0 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2011-01-30 + 2.6.0 + First release + Anıl Özbek + admins@pisilinux.org + + + + + + libcaca + http://caca.zoy.org/ + + PisiLinux Community + admins@pisilinux.org + + WTFPL-2 + LGPLv2.1 + GPLv2 + library + multimedia.graphics + A library that creates colored ASCII-art graphics + Renkli ASCII-sanat grafikleri oluşturan bir kütüphane + libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. + libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals + libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. + libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto + http://caca.zoy.org/raw-attachment/wiki/libcaca/libcaca-0.99.beta19.tar.gz + + imlib2-devel + + multimedia/graphics/libcaca/pspec.xml + + + libcaca + + imlib2 + zlib + slang + ncurses + libX11 + + + /usr/bin + /usr/lib + /usr/share/libcaca + /usr/share/man + /usr/share/doc + + + + libcaca-devel + Development files for libcaca + libcaca için geliştirme dosyaları + + libcaca + + + /usr/bin/caca-config + /usr/include + /usr/lib/pkgconfig 2014-05-21 - 2.14.19 - Rebuild. + 0.99_beta19 + Version bump. Kamil Atlı suvarice@gmail.com - 2013-10-29 - 2.14.19 + 2014-03-08 + 0.99_beta18 + Rebuild. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-06 + 0.99_beta18 + Version bump + Marcin Bojara + marcin@pisilinux.org + + + 2010-10-12 + 0.99_beta17 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + enblend + http://enblend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + Image blending with multiresolution splines + Resim harmanlama aracı + enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. + enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. + mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.3.tar.gz + + cmake + gsl-devel + zlib-devel + tiff-devel + vigra-devel + boost-devel + lcms2-devel + libpng-devel + openexr-devel + imagemagick-devel + + + gentoo_prepare.patch + + multimedia/graphics/enblend/pspec.xml + + + enblend + + gsl + tiff + boost + lcms2 + vigra + libgcc + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/info + + + + + 2014-12-27 + 4.1.3 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-12-27 + 4.1.3 + Rebuild for boost. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-06-01 + 4.1.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-01-23 + 4.1.2 + rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-11-11 + 4.1.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-11-09 + 4.1.1 Rebuild. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2013-05-08 + 4.1.1 + add missing builddep gsl-devel + Ertuğrul Erata + ertugrullerata@gmail.com + + + 2013-04-26 + 4.1.1 + Dep Fixed. + Osman Erkan + osman.erkan@pisilinux.org + - 2013-08-26 - 2.14.19 - Release bump. + 2013-03-21 + 4.1.1 + Version bump. Serdar Soytetir kaptan@pisilinux.org - 2010-12-22 - 2.14.19 + 2010-02-08 + 4.0 First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libjpeg-turbo + http://www.libjpeg-turbo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.graphics + MMX, SSE, and SSE2 SIMD accelerated JPEG library + libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which +uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. + mirrors://sourceforge/libjpeg-turbo/1.3.1/libjpeg-turbo-1.3.1.tar.gz + + fix_doc.patch + + multimedia/graphics/libjpeg-turbo/pspec.xml + + + libjpeg-turbo + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + jpeg + + + + libjpeg-turbo-devel + Development files for libjpeg-turbo + libjpeg-turbo için geliştirme dosyaları + + libjpeg-turbo + + + /usr/include/ + + + jpeg-devel + + + + libjpeg-turbo-32bit + 32-bit shared libraries for jpeg + emul32 + emul32 + + glibc-32bit + + + glibc-32bit + libjpeg-turbo + + + /usr/lib32 + + + jpeg-32bit + + + + + 2014-05-15 + 1.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-05-15 + 1.2.1 + Switching from jpeg to libjpeg-turbo + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-12 + 1.2.1 + Source url write mirrors + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-04-21 + 1.2.1 + Fixed + PisiLinux Community + admins@pisilinux.org + + + 2012-07-31 + 1.2.1 + First Release PisiLinux Community admins@pisilinux.org @@ -103124,6256 +108420,1360 @@ Jabber and others - glibmm - http://gtkmm.sourceforge.net/ + libmng + http://www.libmng.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Multiple Image Networkgraphics lib (animated png's) + Çoklu resim Networkgraphics (Animasyonlu png) + Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. + Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. + Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. + Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. + http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.2/libmng-2.0.2.tar.gz + + zlib-devel + lcms2-devel + libjpeg-turbo-devel + + multimedia/graphics/libmng/pspec.xml + + + libmng + + zlib + libjpeg-turbo + lcms2 + + + /usr/lib + + + + libmng-devel + + libmng + + + /usr/share/doc + /usr/share/man + /usr/include/ + + + + libmng-32bit + 32-bit shared libraries for libmng + emul32 + emul32 + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + glibc-32bit + + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + glibc-32bit + libmng + + + /usr/lib32 + + + + + 2014-05-19 + 2.0.2 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-31 + 2.0.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-12-16 + 1.0.10 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + inkscape + http://www.inkscape.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:gui + multimedia.graphics + SVG vector graphics application + Vektörel çizim programı + Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. + SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. + https://inkscape.global.ssl.fastly.net/media/resources/file/inkscape-0.91.tar.bz2 + + gtk2-devel + gtkmm-devel + atkmm-devel + cairo-devel + lcms2-devel + boost-devel + atk-devel + gc-devel + perl-XML-Parser + pango-devel + popt-devel + poppler-glib-devel + poppler-devel + aspell-devel + glibc-devel + gsl-devel + libwpg-devel + libwpd-devel + imagemagick-devel + glibmm-devel + libXft-devel + aalib-devel + libart_lgpl-devel + fontconfig-devel + libsigc++-devel + liblqr-devel + cairomm-devel + gdk-pixbuf-devel + libxslt-devel + pangomm-devel + libcdr-devel + libvisio-devel + librevenge-devel + libjpeg-turbo-devel + gtkspell-devel + dbus-glib-devel + zlib-devel + glib2-devel + libX11-devel + libgcc + libpng-devel + libxml2-devel + freetype + libgomp + libxslt-devel + intltool + gettext-devel + pkgconfig + libX11-devel + + multimedia/graphics/inkscape/pspec.xml + + + inkscape + + freetype + libxml2 + libpng + libgcc + libX11 + glib2 + zlib + dbus-glib + popt + gtk2 + pango + lcms2 + cairo + poppler-glib + gsl + aspell + libwpg + imagemagick + glibmm + gtkmm + fontconfig + libsigc++ + gtkspell + cairomm + gdk-pixbuf + libxslt + pangomm + libwpd + atkmm + poppler + libcdr + libvisio + librevenge + libjpeg-turbo + gc + libgomp + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/dbus-1 + /usr/share/inkscape + /usr/share/applications + + + + inkscape-devel + Development files for Inkscape + Inkscape için geliştirme dosyaları + + inkscape + glib2-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-11-29 + 0.91 + Rebuild for 2.0. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-04-09 + 0.91 + fixed problems. + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-07 + 0.91 + rebuild for poppler. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-02-09 + 0.91 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2014-10-25 + 0.48.5 + Rebuild. + Vedat Demir + vedat@pisilinux.org + + + 2014-09-14 + 0.48.5 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-30 + 0.48.4 + Rebuild, cleanup. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-01-28 + 0.48.4 + New patch and some fixes + Alihan Öztürk + alihan@pisilinux.org + + + 2013-10-10 + 0.48.4 + Rebuil for new poppler. + Serdar Soytetir + kaptan@pisilinux.org + + + 2013-07-01 + 0.48.4 + Rebuild for poppler-0.22.5 + Marcin Bojara + marcin@pisilinux.org + + + 2013-03-26 + 0.48.4 + bump + Erdinç Gültekin + erdincgultekin@pisilinux.org + + + 2012-11-14 + 0.48.3.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + jbigkit + http://www.cl.cam.ac.uk/~mgk25/jbigkit/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.graphics + A portable library of compression and decompression functions + Taşınabilir bir sıkıştırma kitaplığı + JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. + jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. + http://www.cl.cam.ac.uk/~mgk25/download/jbigkit-2.0.tar.gz + + jbigkit-2.0-shared.diff + + multimedia/graphics/jbigkit/pspec.xml + + + jbigkit + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/lib + + + + jbigkit-devel + Development files for jbigkit + jbigkit için geliştirme dosyaları + + jbigkit + + + /usr/include + + + + + 2014-05-19 + 2.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-27 + 2.0 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 2.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + babl + http://gegl.org/babl + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.graphics + A dynamic, any to any, pixel format translation library + Dinamik piksel biçimi dönüştürme kütüphanesi + babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. + babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. + http://download.gimp.org/pub/babl/0.1/babl-0.1.12.tar.bz2 + + gobject-introspection-devel + + multimedia/graphics/babl/pspec.xml + + + babl + + /usr/lib + /usr/share/doc + + + + babl-devel + Development files for babl + babl için geliştirme dosyaları + + babl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2015-02-07 + 0.1.12 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-06-19 + 0.1.10 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-01-18 + 0.1.10 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-28 + 0.1.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libraw + http://www.libraw.org/ + + Yücel KILIÇ + yucel.kilic@linux.org.tr + + LGPLv2.1 + CDDL + library + multimedia.graphics + Raw image decoder + LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). + http://www.libraw.org/data/LibRaw-0.16.2.tar.gz + + libgomp + lcms2-devel + jasper-devel + libjpeg-turbo-devel + + multimedia/graphics/libraw/pspec.xml + + + libraw + + libgomp + libgcc + lcms2 + jasper + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libraw-devel + Development files for libraw + libraw için geliştirme dosyaları + + libraw + lcms2-devel + jasper-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2015-08-13 + 0.16.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-05-16 + 0.16.1 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-05-24 + 0.16.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-08 + 0.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-17 + 0.15.2 + Release bump. + PisiLinux Community + admins@pisilinux.org + + + 2013-07-29 + 0.15.2 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-27 + 0.14.7 + Move pc files to devel pack, rebuild + PisiLinux Community + admins@pisilinux.org + + + 2012-12-31 + 0.14.7 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + imagemagick + http://www.imagemagick.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + A collection of tools and libraries for many image file formats + Resimleri işlemek ve göstermek için bir X uygulaması + Narzędzie do wyświetlania, konwersji i manipulacji grafikami + ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + ftp://ftp.imagemagick.org/pub/ImageMagick/ImageMagick-6.9.2-0.tar.xz + + ghostscript-devel + fontconfig-devel + librsvg-devel + openexr-devel + libXext-devel + libwmf-devel + liblqr-devel + jasper-devel + cairo-devel + fftw3-devel + lcms2-devel + tiff-devel + webp-devel + libjpeg-turbo-devel + libpng-devel + + + perlmagick.rpath.patch + + multimedia/graphics/imagemagick/pspec.xml + + + imagemagick + + perl + tiff + webp + zlib + bzip2 + fftw3 + lcms2 + libX11 + libgcc + liblqr + libpng + libwmf + libXext + libgomp + freetype + fontconfig + ghostscript + libtool-ltdl + openexr-libs + libjpeg-turbo + + + /usr/bin + /etc/ImageMagick-6/ + /usr/lib + /usr/share/ImageMagick-* + /usr/share/man + /usr/share/doc + + + + imagemagick-docs + HTML documentation for imagemagick + Imagemagick için API belgeleri + + /usr/share/doc/imagemagick/html + + + + imagemagick-devel + Development files for imagemagick + imagemagick için geliştirme dosyaları + Pliki nagłówkowe imagemagick + + imagemagick + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/man/man1/*-config* + /usr/bin/*-config + + + + + 2014-09-14 + 6.9.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + GraphicsMagick + http://www.graphicsmagick.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.graphics + GraphicsMagick Image Processing System + GraphicsMagick Resim İşleme Sistemi + GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. + GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. + mirrors://sourceforge/graphicsmagick/GraphicsMagick-1.3.20.tar.xz + + tiff-devel + webp-devel + lcms2-devel + libSM-devel + libwmf-devel + libICE-devel + jasper-devel + jbigkit-devel + libXext-devel + libjpeg-turbo-devel + ghostscript-devel + + + GraphicsMagick-1.3.14-perl_linkage.patch + GraphicsMagick-1.3.16-multilib.patch + + multimedia/graphics/GraphicsMagick/pspec.xml + + + GraphicsMagick + app:console + + tiff + webp + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp + ghostscript + libjpeg-turbo + + + /etc + /usr/bin/gm + /usr/lib/GraphicsMagick-* + /usr/lib/lib* + /usr/share/GraphicsMagick-* + /usr/share/doc + /usr/share/man + + + + GraphicsMagick-devel + Development files for GraphicsMagick + + GraphicsMagick + + + /usr/bin/*-config + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/GraphicsMagick/www + /usr/share/man/man1/*-config.* + + + + PerlMagick + GraphicsMagick perl bindings + + GraphicsMagick + + + /usr/lib/perl5 + /usr/share/doc/PerlMagick + + + + + 2014-09-13 + 1.3.20 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-06-19 + 1.3.19 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2014-04-23 + 1.3.19 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-02-07 + 1.3.19 + Rebuild Unused + Varol Maksutoğlu + waroi@pisilinux.org + + + 2014-01-04 + 1.3.19 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-07-29 + 1.3.17 + Dep fixed + Fatih Turgel + hitaf@pisilinux.org + + + 2012-11-22 + 1.3.17 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + openjpeg + http://www.openjpeg.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.graphics + JPEG2000 decoding library + JPEG2000 çözme kütüphanesi + Biblioteka implementująca kodek formatu JPEG 2000 + openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). + http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz + + tiff-devel + doxygen + libpng-devel + + + openjpeg-20070717svn-mqc-optimize.patch + + multimedia/graphics/openjpeg/pspec.xml + + + openjpeg + + libpng + tiff + + + /usr/bin + /usr/share/pkgconfig/ + /usr/share/openjpeg-1.5 + /usr/share/man/man1 + /usr/lib + /usr/share/doc + + + + openjpeg-devel + Development files for openjpeg + openjpeg için geliştirme dosyaları + Pliki nagłówkowe do openjpeg + + openjpeg + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + openjpeg-32bit + 32-bit shared libraries for openjpeg + emul32 + + glibc-32bit + libpng-32bit + + + openjpeg + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-22 + 1.5.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-03-09 + 1.5.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2013-07-28 + 1.5.1 + Fix pc file for emul32 + Marcin Bojara + marcin@pisilinux.org + + + 2012-10-18 + 1.5.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + lcms + http://www.littlecms.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.graphics + Moteur de gestion de couleurs léger et optimisé pour la vitesse. + A lightweight, speed optimized color management engine + Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru + LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. + mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz + + swig + tiff-devel + libjpeg-turbo-devel + + + CVE-2009-0793.patch + + multimedia/graphics/lcms/pspec.xml + + + lcms + + tiff + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/lcms + /usr/share/doc + /usr/share/man + + + + lcms-devel + lcms için geliştirme dosyaları + + lcms + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + lcms-32bit + 32-bit shared libraries for lcms + lcms için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + + + lcms + glibc-32bit + + + /usr/lib32 + + + + + 2014-05-19 + 1.19 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2011-05-04 + 1.19 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + live555 + http://www.live555.com PisiLinux Community admins@pisilinux.org LGPLv2.1 library - desktop.gnome2 - C++ interface for glib2 - glib2 kitaplığı için C++ programlama dili arayüzü - Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. - Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. - mirrors://gnome/glibmm/2.44/glibmm-2.44.0.tar.xz - - libsigc++-devel - glib2-devel - pkgconfig - - desktop/gnome2/glibmm/pspec.xml + multimedia.stream + Multimedia streaming library + Çokluortam yayın kitaplığı + Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). + Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) + Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. + http://distfiles.alpinelinux.org/distfiles/live.2014.05.08.tar.gz + + shared-config.patch + + multimedia/stream/live555/pspec.xml - glibmm - - glib2 - libgcc - libsigc++ - + live555 /usr/lib /usr/share/doc - glibmm-devel - Development files for glibmm - glibmm için geliştirme dosyaları + live555-devel + Development files for live555 + live555 için geliştirme dosyaları - glibmm - glib2-devel - libsigc++-devel + live555 /usr/include - /usr/lib/glibmm-* - /usr/lib/giomm-* - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/glibmm-* - - 2015-07-21 - 2.44.0 - Version bump + + 2014-05-25 + 2014.05.08 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2013-10-09 + 0.0_20131009 + First release + Erdinç Gültekin + admins@pisilinux.org + + + 2012-08-27 + 0.0_20121004 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + rtmpdump + http://rtmpdump.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + app:console + library + multimedia.stream + Toolkit for RTMP streams + RTMP yayınları araç takımı + rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . + rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . + http://source.pisilinux.org/1.0/rtmpdump-15012015.tar.gz + + openssl-devel + zlib-devel + + multimedia/stream/rtmpdump/pspec.xml + + + rtmpdump + + openssl + zlib + + + /usr/bin + /usr/lib + /usr/share/doc/rtmpdump + /usr/share/man + + + + rtmpdump-devel + Development files for rtmpdump + rtmpdump için geliştirme dosyaları + + rtmpdump + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2015-07-29 + 15012015 + Version bump. Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - 2014-05-18 - 2.40.0 - Version bump + + 2014-05-20 + 20130918 + Version bump. Serdar Soytetir kaptan@pisilinux.org - - 2013-12-23 - 2.38.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-10-29 - 2.36.2 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-07-14 - 2.36.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org + 2014-02-11 + 2.3 + Rebuild + Alihan Öztürk + alihan@pisilinux.org - 2012-12-22 - 2.34.1 + 2011-01-19 + 2.3 First release - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - unicode-ucd - http://www.unicode.org/ucd + libmms + http://sourceforge.net/projects/libmms PisiLinux Community admins@pisilinux.org - MIT - desktop.font - Unicode Character Database - Unicode Karakter Veritabanı - The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. - Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. - http://www.unicode.org/Public/zipped/6.3.0/UCD.zip - desktop/font/unicode-ucd/pspec.xml + GPLv2 + library + multimedia.stream + A common library for accessing MMS media streaming protocol + MMS protokolüne erişim sağlayan bir kütüphane + libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. + libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. + mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz + multimedia/stream/libmms/pspec.xml - unicode-ucd + libmms - /usr/share/unicode/ucd - /usr/share/doc + /usr/lib + /usr/share/doc + + + + libmms-devel + Development files for libmms + libmms için geliştirme dosyaları + + libmms + glib2-devel + + + /usr/include + /usr/lib/pkgconfig - - copyright.html - + + 2015-10-23 + 0.6.4 + Version Bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2014-05-26 + 0.6.2 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-31 + 0.6.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + - 2014-01-27 - 6.3.0 + 2011-01-24 + 0.6.2 First release - Serdar Soytetir - kaptan@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - - - oxygen-fonts - https://projects.kde.org/projects/playground/artwork/oxygen-fonts - + + plasma-desktop + KDE5 plasma workspace + This package contains the basic packages for a Plasma workspace. + library + app:console + desktop.kde.plasma + LGPLv2 + + baloo + fontconfig + freetype + kactivities + karchive + kauth + kbookmarks + kcmutils + kcodecs + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + kdelibs4-support + kemoticons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + kjobwidgets + knewstuff + knotifications + knotifyconfig + kparts + kpeople + krunner + kservice + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libusb-compat + libX11 + libxcb + libXcursor + libXfixes + libXft + libXi + libxkbfile + plasma-framework + plasma-workspace + libcanberra + pulseaudio-libs + xkeyboard-config + qt5-base + qt5-declarative + qt5-phonon + qt5-svg + qt5-x11extras + solid + sonnet + qt5-sql-sqlite + system-settings + xcb-util-image + oxygen-icons + oxygen-fonts + + + + 2015-12-09 + 5.5.0 + Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - OFL - data:font - desktop.font - Oxygen font family - Oxygen yazı tipi ailesi - Oxygen font family is a desktop / GUI font family for integrated use with KDE. - Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. - http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz - - cmake - extra-cmake-modules - fontconfig-devel - qt5-base-devel - fontforge - - desktop/font/oxygen-fonts/pspec.xml - - - oxygen-fonts - - /usr/share/fonts - /usr/share/doc - /usr/lib - - - - + + 2015-11-11 5.4.3 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2015-11-06 + + 2015-10-07 5.4.2 Version bump. Yusuf Aydemir yusuf.aydemir@pisilinux.org - - 2014-09-12 + + 2015-09-12 5.4.1 - Version bump + Version bump. Alihan Öztürk alihan@pisilinux.org - - 2014-08-27 + + 2015-08-31 5.4.0 - Version bump - Vedat Demir - vedat@pisilinux.org - - - 2014-03-02 - 0.4 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gnu-gs-fonts-std - http://www.ghostscript.com - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - GPLv2 - data - desktop.font - Ghostscript standard fonts - Ghostscript standard yazıtipleri - Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. - gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. - Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. - mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz - desktop/font/gnu-gs-fonts-std/pspec.xml - - - gnu-gs-fonts-std - - /usr/share/fonts/default/ghostscript - /usr/share/doc - - - - - 2014-02-23 - 8.11 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2012-09-20 - 8.11 - First release - Sezai Yeniay - sezaiyeniay@pisilinux.org - - - - - - fontforge - http://fontforge.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - app:gui - desktop.font - Font editor and converter - Postscript yazı tipi düzenleyici ve çevirici - FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. - FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. - fontforge - https://github.com/fontforge/fontforge/releases/download/20150824/fontforge-20150824.tar.gz - http://fontforge.org/cidmaps.tgz - - libjpeg-turbo-devel - tiff-devel - cairo-devel - pango-devel - libpng-devel - libXft-devel - libXi-devel - giflib-devel - libspiro-devel - xdg-utils - fontconfig-devel - python-devel - libxml2-devel - readline-devel - libtool-ltdl - - desktop/font/fontforge/pspec.xml - - - fontforge - - zlib - glib2 - libX11 - libpng - python - libxml2 - freetype - readline - libtool-ltdl - tiff - cairo - libXi - pango - libXft - giflib - libspiro - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/pixmaps - /usr/share/fontforge - /usr/share/applications - /usr/share/locale - - - - fontforge-devel - Development files for fontforge - fontforge için geliştirme dosyaları - - tiff-devel - pango-devel - cairo-devel - fontforge - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-08-28 - 2.0.20150824 Version bump. Ertuğrul Erata ertugrulerata@gmail.com - - 2014-03-01 - 2.0.20140101 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-01 - 2.0.20140101 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - 2013-08-02 - 20120731 - Rebuild for RC. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-25 - 20120731 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - harfbuzz - http://www.freedesktop.org/software/harfbuzz - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.font - OpenType text shaping engine - The Harfbuzz package contains an OpenType text shaping engine. - http://www.freedesktop.org/software/harfbuzz/release/harfbuzz-0.9.40.tar.bz2 - - cairo-devel - glib2-devel - icu4c-devel - graphite2-devel - freetype-devel - expat-devel - - desktop/font/harfbuzz/pspec.xml - - - harfbuzz - - cairo - glib2 - icu4c - libgcc - freetype - graphite2 - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/gir-1.0 - /usr/share/gtk-doc - - - - harfbuzz-devel - - glib2-devel - icu4c-devel - harfbuzz - - - /usr/include/harfbuzz - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - harfbuzz-32bit - 32-bit shared libraries for harfbuzz - emul32 - emul32 - - icu4c-32bit - freetype-32bit - fontconfig-32bit - glibc-32bit - cairo-32bit - - - cairo-32bit - glib2-32bit - glibc-32bit - icu4c-32bit - freetype-32bit - - - /usr/lib32 - - - - - 2015-04-06 - 0.9.40 + 2015-08-03 + 5.3.2 Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - - 2015-01-24 - 0.9.38 + + 2015-05-29 + 5.3.1 Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-01-12 - 0.9.37 - Version Bump + rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-08-15 - 0.9.35 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-07-11 - 0.9.30 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-06-09 - 0.9.26 - Better harfbuz with icu, cairo. Fix configure option format. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-17 - 0.9.26 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-02-26 - 0.9.26 - Delete Unused Deps. - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-25 - 0.9.26 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-22 - 0.9.26 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-14 - 0.9.19 - Rebuild for icu4c - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-26 - 0.9.19 - Version bump. Fix build emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-30 - 0.9.18 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2013-01-22 - 0.9.9 - Add emul32 - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-24 - 0.9.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - fontconfig - http://fontconfig.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - desktop.font - A library for configuring and customizing font access - Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık - Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych - Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. - Fontconfig is a library designed to provide system-wide font configuration, customization and application access. - Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. - Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. - http://www.freedesktop.org/software/fontconfig/release/fontconfig-2.11.1.tar.bz2 - - freetype-devel - expat-devel - - - prefer_dejavu.patch - anymetrics_urw.patch - use_legacy_lcdfilter_on_small_monospace.patch - add_hinting_and_antialiasing_to_proper_fonts.patch - fontconfig-2.8.0-sleep-less.patch - deprecated-user-conf.patch - - desktop/font/fontconfig/pspec.xml - - - fontconfig - - freetype - expat - - - /etc/fonts - /usr/bin - /usr/lib - /usr/share/doc - /var/cache/fontconfig - /usr/share - - - System.Package - System.PackageHandler - - - - fontconfig-devel - Development files for fontconfig - fontconfig için geliştirme dosyaları - Pliki nagłówkowe fontconfig - - fontconfig - freetype-devel - expat-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/fontconfig/fontconfig-devel.txt - /usr/share/man - - - - fontconfig-32bit - 32-bit shared libraries for fontconfig - fontconfig için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - expat-32bit - freetype-32bit - glibc-32bit - - - fontconfig - expat-32bit - freetype-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2014-05-17 - 2.11.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-29 - 2.11.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-01 - 2.11.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 2.10.93 - Add missing method to pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 2.10.93 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-06 - 2.10.92 - First release - Marcin Bojara - marcin@pisilinux.org - - - 2012-12-06 - 2.10.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - fltk - http://www.fltk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit - FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit - FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı - FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. - FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. - FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. - FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. - ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/fltk-1.3.3-source.tar.gz - - zlib-devel - libX11-devel - libgcc - libpng-devel - mesa-devel - libXft-devel - libXext-devel - mesa-glu-devel - libXfixes-devel - libXcursor-devel - fontconfig-devel - libXinerama-devel - libjpeg-turbo-devel - - - tigervnc.patch - fltk-config-dynlibs.patch - - desktop/toolkit/fltk/pspec.xml - - - fltk - - zlib - libX11 - libgcc - libpng - mesa - libXft - libXext - mesa-glu - libXfixes - libXcursor - fontconfig - libXinerama - libjpeg-turbo - - - /usr/lib - /usr/share/doc - - - - fltk-devel - Development files and utilities for FLTK - FLTK için geliştirme dosyaları ve yardımcı uygulamalar - app:console - app:gui - - fltk - libX11 - libgcc - libpng - - - /etc/env.d - /usr/share/man - /usr/bin - /usr/include - /usr/share/icons - /usr/share/mimelnk - /usr/share/doc/*/html - /usr/share/applications - - - 99fltk - - - - - 2015-07-24 - 1.3.3 - emul32bit build disabled. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-26 - 1.3.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-26 - 1.3.2 - Rebuild for gcc 4.9 - Osman Erkan - osman.erkan@pisilinux.org - - - 2014-01-29 - 1.3.2 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-11-03 - 1.3.2 - Version bump. - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-08-26 - 1.3.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-11 - 1.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - qtermwidget5 - https://github.com/qterminal/qtermwidget - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - app:gui - desktop.toolkit - Terminal widget for Qt5 - Qt tabanlı uygulamalar için basit bir terminal modulü - A simple terminal widget for using with Qt5 based applications - https://github.com/qterminal/qtermwidget/releases/download/0.6.0/qtermwidget-0.6.0.tar.xz - - cmake - libgcc - qt5-base-devel - - desktop/toolkit/qtermwidget5/pspec.xml - - - qtermwidget5 - Development files for qtermwidget5 - - libgcc - qt5-base - - - /usr/bin/consoleq - /usr/lib - /usr/share - /usr/share/doc - - - - qtermwidget5-devel - Development files for qtermwidget5 - qtermwidget5 için geliştirme dosyaları - - qt5-base-devel - qtermwidget5 - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2015-05-13 - 0.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quickcontrols - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquickcontrols-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - mesa-devel - - desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml - - - qt5-quickcontrols - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-doc - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - assistant5 - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdoc-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-sql-sqlite - qt5-assistant - - desktop/toolkit/qt5/qt5-doc/pspec.xml - - - qt5-doc - - qt5-base - qt5-script - qt5-svg - qt5-xmlpatterns - qt5-assistant - qt5-declarative - - - /usr/share/licenses - /usr/share/doc/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-serialport - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtserialport-opensource-src-5.5.1.tar.xz - - qt5-base-devel - eudev-devel - - desktop/toolkit/qt5/qt5-serialport/pspec.xml - - - qt5-serialport - - qt5-base - eudev - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-serialport-devel - qt5-serialport için geliştirme dosyaları - - qt5-base-devel - qt5-serialport - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-gstreamer - http://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.toolkit.qt5 - Qt5 bindings for GStreamer - QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. - http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quick1-devel - glib2-devel - gobject-introspection-devel - cmake - boost-devel - doxygen - gst-plugins-good - gstreamer-next-devel - gst-plugins-base-next-devel - mesa-devel - - desktop/toolkit/qt5/qt5-gstreamer/pspec.xml - - - qt5-gstreamer - - qt5-base - qt5-declarative - qt5-quick1 - gstreamer-next - gst-plugins-base-next - mesa - glib2 - libgcc - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - qt5-gstreamer-devel - Development files for qt5-gstreamer - - qt5-gstreamer - glib2-devel - qt5-base-devel - gstreamer-next-devel - qt5-declarative-devel - gst-plugins-base-next-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2015-10-11 - 1.2.0 - First Release - Stefan Gronewold (groni) + Stefan Gronewold(groni) groni@pisilinux.org - - + localhost + PisiLinux + 1.0 + x86_64 + 31717097 + 7165121 + b765563da95db3de27479da21e765947e580756b + 6c695b0aaf9cd25ce51f722f81ebe9421fdb74f7 + desktop/kde/plasma/plasma-desktop/plasma-desktop-5.5.0-7-p01-x86_64.pisi + 1.2 - qt5-configuration - https://github.com/hawaii-desktop/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz - - glib2-devel - dconf-devel - qt5-declarative-devel - cmake - qt5-base-devel - - desktop/toolkit/qt5/qt5-configuration/pspec.xml - - - qt5-configuration - - libgcc - qt5-declarative - glib2 - dconf - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-configuration-devel - - qt5-configuration - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2015-10-16 - 0.3.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 0.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-11 - 0.2.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-connectivity - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtconnectivity-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - bluez-libs-devel - - desktop/toolkit/qt5/qt5-connectivity/pspec.xml - - - qt5-connectivity - - qt5-base - qt5-declarative - bluez-libs - libgcc - - - /usr/bin - /usr/lib - /usr/share/licenses - /usr/lib/qt5 - /usr/lib/qt5/bin/ - - - - qt5-connectivity-devel - qt5-connectivity için geliştirme dosyaları - - qt5-connectivity - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-graphicaleffects - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtgraphicaleffects-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-assistant - qt5-sql-sqlite - - desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml - - - qt5-graphicaleffects - - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-tools - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttools-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-tools/pspec.xml - - - qt5-assistant - - libgcc - qt5-base - - - /usr/lib/qt5/bin/assistant - /usr/lib/qt5/bin/qhelpconverter - /usr/lib/qt5/bin/qhelpgenerator - /usr/bin/assistant-qt5 - /usr/bin/qhelpgenerator-qt5 - /usr/bin/qhelpconverter-qt5 - /usr/lib/cmake/Qt5Help - /usr/lib/libQt5Help* - /usr/lib/libQt5CLucene* - /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri - /usr/lib/qt5/mkspecs/modules/qt_lib_help* - /usr/share/applications/assistant5.desktop - /usr/share/qt5/translations/assistant_tr.qm - /usr/share/icons/hicolor/128x128/apps/assistant.png - /usr/share/icons/hicolor/32x32/apps/assistant.png - /usr/share/pixmaps/assistant5.png - /usr/lib/qt5/bin/qcollectiongenerator - /usr/bin/qcollectiongenerator-qt5 - - - qt5-tools - - - qt5-tools - - - assistant_tr.qm - assistant.desktop - assistant.png - - - - qt5-assistant-devel - - qt5-base-devel - qt5-assistant - - - /usr/include/qt5/QtHelp - /usr/include/qt5/QtCLucene - /usr/lib/pkgconfig/Qt5Help.pc - /usr/lib/pkgconfig/Qt5CLucene.pc - - - qt5-tools-devel - - - qt5-tools-devel - - - - qt5-designer - - libgcc - qt5-base - qt5-declarative - - - /usr/lib/qt5/bin/designer - /usr/lib/qt5/bin/qtdiag - /usr/lib/qt5/bin/qtpaths - /usr/lib/qt5/bin/pixeltool - /usr/bin/designer-qt5 - /usr/bin/qtdiag-qt5 - /usr/bin/qtpaths* - /usr/bin/pixeltool-qt5 - /usr/lib/qt5/bin/qtplugininfo - /usr/bin/qtplugininfo-qt5 - /usr/lib/cmake/Qt5Designer - /usr/lib/cmake/Qt5UiTools - /usr/lib/cmake/Qt5UiPlugin - /usr/lib/qt5/plugins/designer - /usr/share/applications/designer5.desktop - /usr/share/qt5/translations/designer_tr.qm - /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png - /usr/share/pixmaps/designer5.png - /usr/lib/libQt5Designer* - /usr/lib/libQt5UiTools* - /usr/lib/qt5/mkspecs/modules/qt_lib_designer* - /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* - /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri - - - qt5-tools - - - qt5-tools - - - designer.desktop - designer_tr.qm - designer.png - - - - qt5-designer-devel - - qt5-base-devel - qt5-designer - - - /usr/include/qt5/QtDesigner* - /usr/include/qt5/QtUiTools - /usr/include/qt5/QtUiPlugin - /usr/lib/pkgconfig/Qt5Designer* - /usr/lib/pkgconfig/Qt5UiTools.pc - - - qt5-tools-devel - - - qt5-tools-devel - - - - qt5-linguist - - libgcc - qt5-base - - - /usr/lib/qt5/bin/linguist - /usr/lib/qt5/bin/lconvert - /usr/lib/qt5/bin/lrelease - /usr/lib/qt5/bin/lupdate - /usr/bin/lrelease-qt5 - /usr/bin/linguist-qt5 - /usr/bin/lconvert-qt5 - /usr/bin/lupdate-qt5 - /usr/lib/cmake/Qt5LinguistTools - /usr/share/applications/linguist5.desktop - /usr/share/icons/hicolor/128x128/apps/linguist.png - /usr/share/icons/hicolor/16x16/apps/linguist.png - /usr/share/icons/hicolor/32x32/apps/linguist.png - /usr/share/icons/hicolor/48x48/apps/linguist.png - /usr/share/icons/hicolor/64x64/apps/linguist.png - /usr/share/pixmaps/linguist5.png - /usr/share/qt5/phrasebooks - /usr/share/qt5/translations/linguist_tr.qm - - - qt5-tools - qt5-tools-devel - - - qt5-tools - qt5-tools-devel - - - linguist.desktop - linguist.png - linguist_tr.qm - - - - qt5-qdbusviewer - - libgcc - qt5-base - - - /usr/lib/qt5/bin/qdbusviewer - /usr/lib/qt5/bin/qdbus - /usr/bin/qdbusviewer-qt5 - /usr/bin/qdbus-qt5 - /usr/bin/qdbus - /usr/share/applications/qdbusviewer5.desktop - /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png - /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png - /usr/share/pixmaps/qdbusviewer5.png - - - qt5-tools - qt5-tools-devel - - - qt5-tools - qt5-tools-devel - - - qdbusviewer.desktop - assistant.png - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-declarative - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtdeclarative-opensource-src-5.5.1.tar.xz - - qt5-base-devel - libxkbcommon-devel - mesa-devel - qt5-xmlpatterns-devel - - desktop/toolkit/qt5/qt5-declarative/pspec.xml - - - qt5-declarative - - libgcc - qt5-base - mesa - qt5-xmlpatterns - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin/ - - - - qt5-declarative-devel - qt5-declarative için geliştirme dosyaları - - qt5-base-devel - qt5-declarative - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-02 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quick1 - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. - Qt4 uyumluluğu için Qt Declarative sunar - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. - Qt4 uyumluluğu için Qt Declarative sunar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - qt5-script-devel - - desktop/toolkit/qt5/qt5-quick1/pspec.xml - - - qt5-quick1 - - mesa - qt5-base - qt5-xmlpatterns - qt5-script - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-quick1-devel - Development file for qt5-quick1 - Development file for qt5-quick1 - - qt5-base-devel - qt5-script-devel - qt5-quick1 - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-multimedia - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtmultimedia-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - pulseaudio-libs-devel - gstreamer-devel - gst-plugins-base-devel - openal-devel - mesa-devel - - desktop/toolkit/qt5/qt5-multimedia/pspec.xml - - - qt5-multimedia - - libgcc - mesa - openal - alsa-lib - qt5-base - gstreamer - pulseaudio-libs - qt5-declarative - gst-plugins-base - glib2 - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-multimedia-devel - qt5-multimedia için geliştirme dosyaları - - qt5-multimedia - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - polkit-qt + plasma-desktop http://www.kde.org - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.toolkit.qt5 - A library that allows developers to access PolicyKit API with a nice Qt-style API - A library that allows developers to access PolicyKit API with a nice Qt-style API - http://download.kde.org/stable/apps/KDE4.x/admin/polkit-qt-1-0.112.0.tar.bz2 - - qt5-base-devel - glib2-devel - polkit-devel - mesa-devel - cmake - - - systembus-usage.patch - - desktop/toolkit/qt5/polkit-qt/pspec.xml - - - polkit-qt - - qt5-base - glib2 - polkit - libgcc - - - /usr/share/doc - /usr/lib - - - - polkit-qt-devel - - polkit-qt - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/polkit-qt5-1 - - - - - 2015-10-16 - 0.112 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-08-01 - 0.112 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webkit - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebkit-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-sensors-devel - qt5-location-devel - qt5-declarative-devel - qt5-multimedia-devel - mesa-devel - libXtst-devel - gst-plugins-base-devel - libXcomposite-devel - icu4c-devel - libjpeg-turbo-devel - fontconfig-devel - glib2-devel - dbus-devel - ruby-devel - gstreamer-devel - gstreamer-next-devel - libpng-devel - libpcre-devel - eudev-devel - webp-devel - zlib-devel - libxslt-devel - libxml2-devel - libXcomposite-devel - libX11-devel - libXrender-devel - sqlite-devel - perl-Digest-MD5 - perl-Text-ParseWords - gperf - bison - flex - qt5-phonon-devel - - desktop/toolkit/qt5/qt5-webkit/pspec.xml - - - qt5-webkit - - qt5-base - mesa - webp - zlib - glib2 - icu4c - libX11 - libgcc - libpng - sqlite - libxml2 - libxslt - libXrender - qt5-sensors - libXcomposite - libjpeg-turbo - gstreamer - gst-plugins-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5/plugins - /usr/lib/qt5/ - /usr/lib/qt5/bin/ - /usr/bin - /usr/share/doc - - - - qt5-webkit-devel - qt5-webkit için geliştirme dosyaları - - qt5-webkit - qt5-base-devel - mesa-devel - webp-devel - zlib-devel - glib2-devel - icu4c-devel - libX11-devel - libpng-devel - sqlite-devel - libxml2-devel - libxslt-devel - libXrender-devel - qt5-sensors-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-devel - gst-plugins-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-28 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-translations - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qttranslations-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-linguist - - desktop/toolkit/qt5/qt5-translations/pspec.xml - - - qt5-translations - - qt5-base - - - /usr/share/qt5 - /usr/share/licenses/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-imageformats - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtimageformats-opensource-src-5.5.1.tar.xz - - qt5-base-devel - jasper-devel - libmng-devel - libjpeg-turbo-devel - zlib-devel - tiff-devel - webp-devel - - desktop/toolkit/qt5/qt5-imageformats/pspec.xml - - - qt5-imageformats - - qt5-base - libgcc - libmng - tiff - webp - jasper - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - - 2015-10-16 - 5.5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-enginio - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtenginio-opensource-src-5.5.1.tar.xz - - libgcc - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-enginio/pspec.xml - - - qt5-enginio - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5/ - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin/ - - - - qt5-enginio-devel - qt5-enginio için geliştirme dosyaları - - qt5-base-devel - qt5-enginio - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-base - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Cross platform application and UI framework - Qt5 araç takımı, sürüm 5 - Qt est une boîte à outils graphique multi-plateforme. - Cross platform application and UI development framework - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır. - Qt es un toolkit para GUI multiplataforma. - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtbase-opensource-src-5.5.1.tar.xz - - at-spi2-core-devel - cups-devel - dbus-devel - zlib-devel - glib2-devel - libpcre-devel - desktop-file-utils - fontconfig-devel - gperf - gtk2-devel - harfbuzz-devel - icon-theme-hicolor - leveldb-devel - firebird-superserver - libjpeg-turbo-devel - mariadb-lib - libxcb-devel - libXcomposite-devel - libxkbcommon-devel - libxslt - mesa-devel - libmtdev-devel - nss-devel - pciutils-devel - postgresql-server - python-devel - DirectFB-devel - sqlite-devel - unixODBC-devel - xcb-proto - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-wm-devel - tiff-devel - libdrm-devel - libpng-devel - eudev-devel - libSM-devel - libICE-devel - libX11-devel - libXext-devel - firebird-devel - unixODBC-devel - libXrandr-devel - libXrender-devel - libXi-devel - xcb-util-renderutil-devel - openssl-devel - freetype-devel - pulseaudio-libs-devel - - - mkspecs.patch - - desktop/toolkit/qt5/qt5-base/pspec.xml - - - qt5-base - - libpcre - libgcc - cups - dbus - gtk2 - mesa - zlib - glib2 - icu4c - libSM - libXi - pango - libICE - libX11 - libdrm - libpng - libxcb - eudev - DirectFB - openssl - freetype - harfbuzz - libmtdev - fontconfig - libXrender - xcb-util-wm - libxkbcommon - libjpeg-turbo - xcb-util-image - xcb-util-keysyms - xcb-util-renderutil - - - /usr/lib - /usr/lib/qt5/imports - /usr/lib/qt5/qml - /usr/lib/qt5/plugins - /usr/share/qt5/translations - /usr/lib/qt5/bin - /usr/bin - /usr/share/doc - - - - qt5-base-devel - Development files for Qt 5 - Qt5 için geliştirme dosyaları - Development files for Qt 5 - - qt5-base - mesa-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/lib/qt5/mkspecs - /usr/lib/*.prl - - - - qt5-sql-mysql - Qt5'in SQL sınıfları için MySQL sürücüsü - - qt5-base - libgcc - mariadb-lib - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so - - - - qt5-sql-postgresql - Qt5'in SQL sınıfları için PostgreSQL sürücüsü - - qt5-base - libgcc - postgresql-lib - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so - - - - qt5-sql-sqlite - Qt5'in SQL sınıfları için SQLite sürücüsü - - qt5-base - libgcc - sqlite - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlite.so - - - - qt5-sql-odbc - Qt5'in SQL sınıfları için ODBC sürücüsü - - qt5-base - libgcc - unixODBC - - - /usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so - - - - qt5-base-32bit - 32-bit shared libraries for qt5 - emul32 - emul32 - - cups-32bit - dbus-32bit - gtk2-32bit - mesa-32bit - zlib-32bit - glib2-32bit - glibc-32bit - icu4c-32bit - pango-32bit - libX11-32bit - libdrm-32bit - libpng-32bit - sqlite-32bit - eudev-32bit - openssl-32bit - freetype-32bit - harfbuzz-32bit - libmtdev-32bit - fontconfig-32bit - libXrender-32bit - libjpeg-turbo-32bit - - - libgcc - libpcre - qt5-base-devel - cups-32bit - dbus-32bit - gtk2-32bit - mesa-32bit - zlib-32bit - glib2-32bit - glibc-32bit - icu4c-32bit - pango-32bit - libX11-32bit - libdrm-32bit - libpng-32bit - sqlite-32bit - eudev-32bit - openssl-32bit - freetype-32bit - harfbuzz-32bit - libmtdev-32bit - fontconfig-32bit - libXrender-32bit - libjpeg-turbo-32bit - - - /usr/lib32 - - - - - 2015-10-16 - 5.5.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-07-19 - 5.4.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-23 - 5.4.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-xmlpatterns - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtxmlpatterns-opensource-src-5.5.1.tar.xz - - qt5-base-devel - - desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml - - - qt5-xmlpatterns - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-xmlpatterns-devel - qt5-xmlpatterns için geliştirme dosyaları - - qt5-xmlpatterns - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-x11extras - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtx11extras-opensource-src-5.5.1.tar.xz - - qt5-base-devel - mesa-devel - - desktop/toolkit/qt5/qt5-x11extras/pspec.xml - - - qt5-x11extras - - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-x11extras-devel - qt5-x11extras için geliştirme dosyaları - - qt5-x11extras - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-websockets - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebsockets-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-websockets/pspec.xml - - - qt5-websockets - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - - - - qt5-websockets-devel - qt5-websockets için geliştirme dosyaları - - qt5-websockets - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webchannel - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtwebchannel-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-webchannel/pspec.xml - - - qt5-webchannel - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-webchannel-devel - qt5-webchannel için geliştirme dosyaları - - qt5-webchannel - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-sensors - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to sensor hardware and motion gesture recognition - Donanım ve hareket algılama sensörüne erişim sağlar - Provides access to sensor hardware and motion gesture recognition - Donanım ve hareket algılama sensörüne erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsensors-opensource-src-5.5.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-sensors/pspec.xml - - - qt5-sensors - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-sensors-devel - qt5-sensors için geliştirme dosyaları - - qt5-sensors - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-location - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - Provides access to position, satellite and area monitoring classes - Konum, uydu ve alan izleme sınıflarına erişim sağlar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtlocation-opensource-src-5.5.1.tar.xz - - geoclue-devel - glib2-devel - mesa-devel - qt5-base-devel - qt5-webkit-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-location/pspec.xml - - - qt5-location - - qt5-base - glib2 - libgcc - geoclue - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-location-devel - qt5-location için geliştirme dosyaları - - qt5-location - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-accountsservice - https://github.com/hawaii-desktop/qt-accountsservice-addon - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt5 - AccountService addon - Qt5 - AccountService addon - https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.6.0.tar.gz - - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/toolkit/qt5/qt5-accountsservice/pspec.xml - - - qt5-accountsservice - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-accountsservice-devel - - qt5-base - qt5-accountsservice - - - /usr/include - - - - - 2015-09-11 - 0.6.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-09-11 - 0.1.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-script - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtscript-opensource-src-5.5.1.tar.xz - - qt5-base-devel - mesa-devel - libgcc - - desktop/toolkit/qt5/qt5-script/pspec.xml - - - qt5-script - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-script-devel - qt5-script için geliştirme dosyaları - - qt5-base-devel - qt5-script - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-svg - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtsvg-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - zlib-devel - - desktop/toolkit/qt5/qt5-svg/pspec.xml - - - qt5-svg - - libgcc - qt5-base - zlib - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - qt5-svg-devel - Development files for qt5-svg - qt5-svg için geliştirme dosyaları - - qt5-base-devel - qt5-svg - - - /usr/include/qt5/ - /usr/lib/pkgconfig - - - - - 2015-10-16 - 5.5.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-09-11 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qtcreator - http://qt-project.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - app:gui - programming.environment - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - http://download.qt.io/official_releases/qtcreator/3.5/3.5.1/qt-creator-opensource-src-3.5.1.tar.gz - - libgcc - libX11-devel - cmake - git - mesa-devel - openssh - qt5-base-devel - qt5-declarative-devel - qt5-linguist - qt5-quick1-devel - qt5-quickcontrols - qt5-svg-devel - qt5-xmlpatterns - qt5-webkit-devel - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-script-devel - valgrind - llvm-clang-devel - llvm - - - qt-creator_rpath.patch - - desktop/toolkit/qtcreator/pspec.xml - - - qtcreator - Lightweight, cross-platform integrated development environment - - libX11 - libgcc - qt5-svg - qt5-base - qt5-quick1 - qt5-script - qt5-webkit - qt5-designer - qt5-assistant - qt5-x11extras - qt5-declarative - - - /usr/bin - /usr/lib/qtcreator - /usr/share/applications/qtcreator.desktop - /usr/share/licenses - /usr/share/qtcreator - /usr/share/doc - /usr/share/icons - - - qtcreator.desktop - qtcreator.sh - - - - - 2015-11-27 - 3.5.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-09-06 - 3.4.2 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qscintilla2 - http://www.riverbankcomputing.co.uk/qscintilla/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - desktop.toolkit - Qt port of Scintilla - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - mirrors://sourceforge/pyqt/QScintilla2/QScintilla-2.9.1/QScintilla-gpl-2.9.1.tar.gz - - python-qt5-devel - python3-qt5-devel - python-devel - python3-devel - python3-sip - python-sip - qt5-base-devel - qt5-designer-devel - chrpath - qt5-script-devel - qt5-xmlpatterns-devel - mesa-devel - - - configure.py.patch - libname.patch - - desktop/toolkit/qscintilla2/pspec.xml - - - qscintilla2 - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5/plugins - /usr/share/doc - /usr/share/qt5/mkspecs - /usr/share/qt5/translations - - - - qscintilla2-python-common - Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 - - qscintilla2 - - - /usr/share/qt5/qsci - /usr/share/sip - - - - qscintilla2-python - Python 2.x bindings for qscintilla2 - qscintilla2 için Python bağlayıcıları - - qscintilla2 - qscintilla2-python-common - qt5-base - - - /usr/lib/python2* - - - - qscintilla2-python3 - Python 3.x bindings for qscintilla2 - - python3 - qscintilla2 - qscintilla2-python-common - qt5-base - libgcc - - - /usr/lib/python3* - - - - qscintilla2-doc - HTML documentation for qscintilla2 - qscintilla2 için HTML belgeleri - - /usr/share/doc/qscintilla2/Scintilla - /usr/share/doc/qscintilla2/html - - - - qscintilla2-devel - Development files for qscintilla2 - qscintilla2 için geliştirme dosyaları - Pliki nagłówkowe dla QScintilla - - qscintilla2 - - - /usr/include/qt5/Qsci - - - - - 2015-10-24 - 2.9.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-27 - 2.6.2 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-12-21 - 2.6.2 - Fix runtime deps. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 2.6.2 - Release bump - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-11 - 2.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - newt - https://fedorahosted.org/newt/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - desktop.toolkit - A windowing toolkit for text mode - Metin tabanlı bir pencere araç seti. - newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. - Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. - https://fedorahosted.org/releases/n/e/newt/newt-0.52.17.tar.gz - - tcl-devel - slang-devel - popt-devel - - desktop/toolkit/newt/pspec.xml - - - newt - - tcl - slang - popt - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - newt-devel - Development files for newt - newt için geliştirme dosyaları - - newt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-07-05 - 0.52.17 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-11-05 - 0.52.16 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.52.14 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-01-30 - 0.52.14 - Build with new relaese Tcl - Erdinç Gültekin - admins@pisilinux.org - - - 2012-09-17 - 0.52.14 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - wxGTK - http://www.wxwidgets.org/ - - PisiLinux Community - admins@pisilinux.org - - wxWinLL-3 - GPLv2 - LGPLv2 - wxWinFDL-3 - library - desktop.toolkit - GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit - Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü - wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. - wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. - wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. - wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. - mirrors://sourceforge/wxwindows/wxWidgets-3.0.2.tar.bz2 - - zlib-devel - tiff-devel - gtk2-devel - expat-devel - libSM-devel - libpng-devel - mesa-glu-devel - webkit-gtk2-devel - libjpeg-turbo-devel - gst-plugins-base-devel - - - make-abicheck-non-fatal.patch - - desktop/toolkit/wxGTK/pspec.xml - - - wxGTK - - gtk2 - mesa - tiff - zlib - cairo - expat - glib2 - pango - libSM - libX11 - libgcc - libpng - gstreamer - gdk-pixbuf - libXxf86vm - webkit-gtk2 - libjpeg-turbo - gst-plugins-base - - - /usr/lib/ - /usr/bin - /usr/share/doc/ - /usr/share/aclocal/ - /usr/share/bakefile/ - /usr/lib/wx/config - /usr/share/locale/ - - - - wxGTK-devel - wxGTK-devel is the development files for wxGTK - wxGTK araç seti için geliştirme dosyaları - - wxGTK - - - /usr/include - - - - - 2015-08-29 - 3.0.2 - Version bump, fix install. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-01-05 - 2.8.12 - use symlink not rename. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-06-18 - 2.8.12 - Rebuild. - Aydın Demirel - aydin.demirel@pisilinux.org - - - 2014-05-28 - 2.8.12 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-08-17 - 2.8.12 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2011-05-06 - 2.8.12 - First release Pisi Linux Admins admins@pisilinux.org - - - - - - openmotif - http://www.motifzone.org/ - - PisiLinux Community - admins@pisilinux.org - MOTIF - library - app - desktop.toolkit.motif - Open Motif implementation - Özgür Motif kitaplığı - Freely available version of the well known Motif user interface toolkit for Open Source operating systems. - Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. - mirrors://sourceforge/motif/motif-2.3.4-src.tgz - - libXmu-devel - libXft-devel - xbitmaps - fontconfig-devel - libXt-devel - libXext-devel - libjpeg-turbo-devel - libX11-devel - libpng-devel - - - openmotif-2.3.2-sanitise-paths.patch - 0003_fix_ftbfs_binutils-gold.patch - openmotif-uil.patch - openmotif-unaligned.patch - sentinel.patch - strcmp.patch - warn.patch - openMotif-2.3.0-no_X11R6.patch - motif-2.3.4-bindings.patch - motif-2.3.4-mwmrc_dir.patch - wmluiltok_fake_lex_main.patch - - desktop/toolkit/motif/openmotif/pspec.xml - - openmotif - - libXmu - libXft - libXp - libSM - libICE - fontconfig - libXt - libXext - libjpeg-turbo - libX11 - libpng - - - /etc - /usr/bin - /usr/lib - /usr/share/X11/app-defaults - /usr/share/X11/bindings - /usr/share/doc - /usr/share/man - - - Mwm.defaults - - - - openmotif-devel - Development files for openmotif - openmotif için geliştirme dosyaları - - openmotif - libXft-devel - libXt-devel - libXmu-devel - libXext-devel - - - /usr/include - /usr/share/man/man3 - - - - openmotif-32bit - 32-bit shared libraries for openmotif - emul32 - emul32 - - libSM-32bit - glibc-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - libjpeg-turbo-32bit - - - openmotif - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - libjpeg-turbo-32bit - - - /usr/lib32 - - - - - 2013-08-17 - 2.3.4 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-06-23 - 2.3.4 - Fix dep, we have no libXp-devel pack. - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-11-10 - 2.3.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libglade - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - Glade interface builder - Glade arayüz oluşturucu - Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. - Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. - Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. - mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 - - glib2-devel - libxml2-devel - atk-devel - pango-devel - gtk2-devel - - - Makefile.in.am-2.4.2-xmlcatalog.patch - libglade-2.6.3-fix_tests-page_size.patch - - desktop/toolkit/gtk/libglade/pspec.xml - - - libglade - - glib2 - libxml2 - atk - pango - gtk2 - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/xml - - - System.Package - - - - libglade-docs - Libglade reference documents - Libglade referans belgeleri - data:doc - - libglade - - - /usr/share/gtk-doc - - - - libglade-devel - Development files for libglade - libglade için geliştirme dosyaları - - libglade - gtk2-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-18 - 2.6.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-07 - 2.6.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 2.6.4 - Release bump - Pisi Linux Admins - admins@pisilinux.org - - - 2010-10-12 - 2.6.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gtk3 - http://www.gtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - desktop.toolkit.gtk - The GIMP Toolkit version 3 - GTK grafik arayüz kitaplığı versiyon 3 - GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. - GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. - Wersja 3 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. - mirrors://gnome/gtk+/3.16/gtk+-3.16.4.tar.xz - - atk-devel - cups-devel - at-spi2-atk-devel - pango-devel - json-glib-devel - libXi-devel - cairo-devel - gobject-introspection-devel - libXext-devel - libXrandr-devel - libXfixes-devel - gdk-pixbuf-devel - fontconfig-devel - libXcursor-devel - libXdamage-devel - libXinerama-devel - libXcomposite-devel - at-spi2-core-devel - libepoxy-devel - gtk-doc - - - 071_fix-installation-of-HTML-images.patch - - desktop/toolkit/gtk/gtk3/pspec.xml - - - gtk3 - - glib2 - libX11 - libepoxy - atk - cups - pango - libXi - cairo - libXext - libXrandr - libXfixes - gdk-pixbuf - fontconfig - libXcursor - libXdamage - libXinerama - at-spi2-atk - libXcomposite - dejavu-fonts - - - /etc - /usr/bin - /usr/share/themes - /usr/share/gtk-3.0 - /usr/share/ - /usr/share/man - /usr/share/doc - /usr/lib - /usr/share/locale - - - System.PackageHandler - - - settings.ini - - - - gtk3-demo - GTK demo application - GTK demo uyulaması - app:gui - - gtk3 - glib2 - libepoxy - cairo - pango - gdk-pixbuf - - - /usr/bin/gtk3-demo - /usr/bin/gtk3-demo-application - - - - gtk3-docs - GTK reference documents - GTK referans dökümanları - data:doc - - /usr/share/doc/gtk3 - - - - gtk3-devel - Development files for gtk3 - gtk3 için geliştirme dosyaları - Pliki nagłówkowe do gtk3 - - gtk3 - atk-devel - pango-devel - libX11-devel - libXi-devel - cairo-devel - glib2-devel - libXext-devel - libepoxy-devel - libXfixes-devel - libXrandr-devel - gdk-pixbuf-devel - fontconfig-devel - libXdamage-devel - libXcursor-devel - libXinerama-devel - at-spi2-atk-devel - libXcomposite-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/gir-1.0 - - - - - 2015-07-07 - 3.16.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-03-18 - 3.14.9 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-04-12 - 3.12.2 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2014-04-06 - 3.10.7 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-05 - 3.10.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-21 - 3.10.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-11 - 3.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 3.8.2 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-27 - 3.8.2 - Dep Fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-07-14 - 3.8.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-24 - 3.6.4 - First release - Ertan Güven - ertan@pisilinux.org - - - - - - pango - http://www.pango.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - FTL - library - desktop.toolkit.gtk - Outil de positionnement et de rendu de texte. - Text rendering and layout library - Metin görüntüleme kitaplığı - Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. - Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. - mirrors://gnome/pango/1.36/pango-1.36.8.tar.xz - - gtk-doc - glib2-devel - libX11-devel - freetype-devel - cairo-devel - libXft-devel - harfbuzz-devel - fontconfig-devel - libXrender-devel - gobject-introspection-devel - - - pango-1.32.1-lib64.patch - - desktop/toolkit/gtk/pango/pspec.xml - - - pango - - glib2 - libX11 - freetype - cairo - libXft - harfbuzz - fontconfig - libXrender - - - /etc/pango - /usr/bin - /usr/lib/libpango* - /usr/lib/girepository-1.0 - /usr/lib/pango - /usr/share/gir-1.0 - /usr/share/man - /usr/share/doc - - - System.Package - - - - pango-devel - Development files for pango - pango için geliştirme dosyaları - - pango - cairo-devel - libXft-devel - harfbuzz-devel - fontconfig-devel - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - pango-docs - Pango reference documents - Pango referans dokümanları - data:doc - - /usr/share/gtk-doc - - - - pango-32bit - 32-bit shared libraries for pango - pango için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - glibc-32bit - - - pango - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - glibc-32bit - - - /usr/bin/pango-querymodules-32 - /usr/lib32/libpango* - /usr/lib32/girepository-1.0 - /usr/lib32/pango - - - - - 2015-03-18 - 1.36.8 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-07-07 - 1.36.5 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-17 - 1.36.3 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 1.36.3 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-02-05 - 1.36.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 1.36.0 - Version bump, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-17 - 1.34.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-20 - 1.34.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 1.32.6 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-01-22 - 1.32.5 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2011-07-07 - 1.30.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gdk-pixbuf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - GDK pixbuf library - GDK pixbuf kitaplığı - gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications - gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. - mirrors://gnome/gdk-pixbuf/2.31/gdk-pixbuf-2.31.4.tar.xz - - gtk-doc - glib2-devel - libX11-devel - tiff-devel - libjpeg-turbo-devel - libpng-devel - jasper-devel - gobject-introspection-devel - - desktop/toolkit/gtk/gdk-pixbuf/pspec.xml - - - gdk-pixbuf - - glib2 - libpng - libX11 - tiff - jasper - libjpeg-turbo - - - /etc - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - System.PackageHandler - - - - gdk-pixbuf-devel - Development files for gdk-pixbuf - gdk-pixbuf için geliştirme dosyaları - - gdk-pixbuf - glib2 - - - /usr/bin/gdk-pixbuf-csource - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/gir-1.0 - - - - gdk-pixbuf-docs - Reference documents for gdk-pixbuf - gdk-pixbuf için başvuru belgeleri - - /usr/share/gtk-doc - - - - gdk-pixbuf-32bit - 32-bit shared libraries for gdk-pixbuf - gdk-pixbuf için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - glibc-32bit - glib2-32bit - libX11-32bit - libpng-32bit - jasper-32bit - libX11-32bit - - - gdk-pixbuf - glibc-32bit - tiff-32bit - glib2-32bit - libpng-32bit - libX11-32bit - jasper-32bit - libjpeg-turbo-32bit - - - /usr/bin/gdk-pixbuf-query-loaders-32 - /usr/lib32 - - - System.PackageHandler - - - - - 2015-07-05 - 2.31.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-04-27 - 2.31.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 2.30.7 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.30.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.30.0 - Add missing method and fix pakhandler.py - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-05 - 2.28.2 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-20 - 2.28.2 - Fix build emul32. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-11 - 2.28.2 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.28.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-24 - 2.27.1 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-11-25 - 2.26.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pangomm - http://www.gtkmm.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - desktop.toolkit.gtk - C++ interface for Pango - Pango için C++ arayüzü - Pangomm is a library that provides pango based C++ interface for object-oriented gtkmm applications. - Pangomm, nesne tabanlı gtkmm uygulamaları için C++ tabanlı pango arayüzü sağlayan bir kitaplıktır. - mirrors://gnome/pangomm/2.34/pangomm-2.34.0.tar.xz - - grep - libtool - doxygen - boost-devel - glib2-devel - pango-devel - glibmm-devel - cairomm-devel - libsigc++-devel - - desktop/toolkit/gtk/pangomm/pspec.xml - - - pangomm - - pango - glibmm - libgcc - glib2 - cairomm - libsigc++ - - - /usr/lib - /usr/share/doc - - - - pangomm-devel - Development files for pangomm - pangomm için geliştirme dosyaları - - pangomm - cairomm-devel - glibmm-devel - pango-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/pangomm-1.4 - - - - - 2014-05-18 - 2.34.0 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-14 - 2.34.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-26 - 2.28.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtk2 - http://www.gtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - desktop.toolkit.gtk - The GIMP Toolkit version 2 - GTK grafik arayüz kitaplığı versiyon 2 - GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. - GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. - mirrors://gnome/gtk+/2.24/gtk+-2.24.28.tar.xz - - cups-devel - libXi-devel - cairo-devel - libXext-devel - libXrandr-devel - libXfixes-devel - libXrender-devel - libXdamage-devel - libXcursor-devel - fontconfig-devel - libXinerama-devel - libXcomposite-devel - atk-devel - pango-devel - gdk-pixbuf-devel - gtk-doc - gobject-introspection-devel - - - xid-collision-debug.patch - fedora/system-python.patch - fedora/icon-padding.patch - fedora/tooltip-positioning.patch - fedora/window-dragging.patch - - desktop/toolkit/gtk/gtk2/pspec.xml - - - gtk2 - - cups - libXi - cairo - libXext - libXrandr - libXfixes - libXrender - libXdamage - libXcursor - fontconfig - libXinerama - libXcomposite - glib2 - libX11 - atk - pango - gdk-pixbuf - dejavu-fonts - - - /etc - /usr/bin - /usr/share/themes - /usr/share/gtk-2.0 - /usr/share/man - /usr/share/doc - /usr/lib - /usr/share/locale - - - System.PackageHandler - - - gtkrc - - - - gtk2-demo - GTK demo application - GTK demo uyulaması - app:gui - - gtk2 - cairo - pango - gdk-pixbuf - glib2 - - - /usr/bin/gtk-demo - /usr/share/gtk-2.0/demo - - - - gtk2-docs - GTK reference documents - GTK referans dökümanları - data:doc - - /usr/share/gtk-doc - - - - gtk2-devel - Development files for gtk2 - gtk2 için geliştirme dosyaları - - gtk2 - atk-devel - pango-devel - cairo-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/gir-1.0 - - - - gtk2-32bit - 32-bit shared libraries for gtk2 - gtk2 için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glibc-32bit - cairo-32bit - cups-32bit - fontconfig-32bit - pango-32bit - glib2-32bit - atk-32bit - libX11-32bit - gdk-pixbuf-32bit - libXcomposite-32bit - libXcursor-32bit - libXdamage-32bit - libXext-32bit - libXfixes-32bit - libXi-32bit - libXinerama-32bit - libXrandr-32bit - libXrender-32bit - - - gtk2 - glibc-32bit - cairo-32bit - pango-32bit - glib2-32bit - atk-32bit - libX11-32bit - cups-32bit - fontconfig-32bit - gdk-pixbuf-32bit - libXcomposite-32bit - libXcursor-32bit - libXdamage-32bit - libXext-32bit - libXfixes-32bit - libXi-32bit - libXinerama-32bit - libXrandr-32bit - libXrender-32bit - - - /usr/bin/*-32bit - /usr/lib32 - - - - - 2015-07-05 - 2.24.28 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2014-05-17 - 2.24.23 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-04-06 - 2.24.22 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-06 - 2.24.22 - Set proper settings to gtkrc, change location of gtkrc. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-10-21 - 2.24.22 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 2.24.21 - Minor version bump, cleanup. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-09-05 - 2.24.20 - Add missing method and fix pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-06 - 2.24.20 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-20 - 2.24.17 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-23 - 2.24.16 - Version bump, add new cppflags, enhancements. - Erdinç Gültekin - admins@pisilinux.org - - - 2013-01-23 - 2.24.14 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-09-25 - 2.24.13 - First release - Erdem Artan - admins@pisilinux.org - - - - - - cairomm - http://cairographics.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - Bindings (liens) C++ pour Cairo. - C++ binding for Cairo - Cairo için C++ bağlayıcı - cairomm package is the C++ binding for Cairo (it makes possible using Cairo in C++). - http://cairographics.org/releases/cairomm-1.10.0.tar.gz - - grep - perl - doxygen - cairo-devel - libsigc++-devel - - desktop/toolkit/gtk/cairomm/pspec.xml - - - cairomm - - cairo - libsigc++ - libgcc - - - /usr/share/doc - /usr/lib - - - - cairomm-devel - Development files for cairomm - cairomm için geliştirme dosyaları - - cairomm - cairo-devel - libsigc++-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cairomm-1.0/include - - - - cairomm-docs - Development documents for cairomm - cairomm için geliştirme belgeleri - - /usr/share/doc/cairomm/html - - - - - 2014-05-18 - 1.10.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-21 - 1.10.0 - Release bump - PisiLinux Community - admins@pisilinux.org - - - 2012-08-25 - 1.10.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtkspell - http://gtkspell.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - Spell checking widget for GTK+ - GTK+ için yazım denetimi eklentisi - GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. - GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. - mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz - - gtk2-devel - enchant-devel - intltool - - desktop/toolkit/gtk/gtkspell/pspec.xml - - - gtkspell - - atk - gtk2 - cairo - glib2 - pango - enchant - freetype - fontconfig - gdk-pixbuf - - - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - - - - gtkspell-devel - Development files for gtkspell - gtkspell için geliştirme dosyaları - - gtkspell - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2015-11-20 - 2.0.16 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-18 - 2.0.16 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2014-02-25 - 2.0.16 - Rebuild Unused - Varol Maksutoğlu - waroi@pisilinux.org - - - 2013-08-17 - 2.0.16 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2010-10-12 - 2.0.16 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gtk-doc - http://www.gtk.org/gtk-doc - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - FDL-1.1 - app:console - desktop.toolkit.gtk - GTK+ API documentation generator - GTK+ API belge oluşturucusu - Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. - gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. - mirrors://gnome/gtk-doc/1.21/gtk-doc-1.21.tar.xz - - itstool - openjade - sgml-common - docbook-xml - docbook-xsl - libxslt-devel - - desktop/toolkit/gtk/gtk-doc/pspec.xml - - - gtk-doc - - docbook-xml - sgml-common - - - /usr/bin - /usr/share - /usr/share/doc - /usr/share/omf - /var/lib - - - - - 2015-04-06 - 1.21 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-18 - 1.20 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-03-30 - 1.20 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 1.18 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-26 - 1.18 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - atkmm - http://www.gtkmm.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.toolkit.gtk - C++ interface for the ATK library - ATK kitaplığı için C++ arayüzü - atkmm provides a C++ interface for the ATK library. - atkmm, ATK kitaplığı için bir C++ arayüzü sunar. - mirrors://gnome/atkmm/2.22/atkmm-2.22.7.tar.xz - - atk-devel - glibmm-devel - libtool - perl - doxygen - pkgconfig - glib2-devel - libsigc++-devel - - desktop/toolkit/gtk/atkmm/pspec.xml - - - atkmm - - atk - libgcc - glib2 - glibmm - libsigc++ - - - /usr/lib - /usr/share/doc - - - - atkmm-devel - Development files for atkmm - atkmm için geliştirme dosyaları - - atkmm - atk-devel - glibmm-devel - - - /usr/include - /usr/lib/atkmm-1.6/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/gtk-doc - - - - - 2015-11-27 - 2.22.7 - Rebuild and check. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2014-05-18 - 2.22.7 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-14 - 2.22.7 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-08-26 - 2.22.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - atk - http://developer.gnome.org/atk - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - GTK+ and GNOME Accessibility Toolkit - GTK+ ve GNOME erişilebilirlik kitaplığı - Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. - These libraries provide tools for making software for people with disabilities. - Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. - mirrors://gnome/atk/2.16/atk-2.16.0.tar.xz - - gobject-introspection-devel - glib2-devel - gtk-doc - - desktop/toolkit/gtk/atk/pspec.xml - - - atk - - glib2 - - - /usr/lib/libatk* - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/doc - - - - atk-devel - Development files for atk - atk için geliştirme dosyaları - - atk - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - atk-32bit - 32-bit shared libraries for atk - atk için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - glibc-32bit - - - atk - glib2-32bit - glibc-32bit - - - /usr/lib32 - - - - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-17 - 2.12.0 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-03-30 - 2.12.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-21 - 2.8.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-07 - 2.8.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-24 - 2.7.91 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2012-10-22 - 2.7.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtkmm - http://gtkmm.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - C++ binding for GTK+ - GTK+ için C++ bağlamı - gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. - gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. - mirrors://gnome/gtkmm/2.24/gtkmm-2.24.4.tar.xz - - gtk2-devel - atkmm-devel - glibmm-devel - cairomm-devel - pangomm-devel - libsigc++-devel - - desktop/toolkit/gtk/gtkmm/pspec.xml - - - gtkmm - - gtk2 - atkmm - glibmm - cairomm - pangomm - libsigc++ - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share - - - - gtkmm-devel - Development files for gtkmm - gtkmm için geliştirme dosyaları - - gtkmm - atkmm-devel - pangomm-devel - glibmm-devel - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2014-05-18 - 2.24.4 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-14 - 2.24.4 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-03 - 2.24.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - cairo - http://cairographics.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - MPL-1.1 - library - desktop.toolkit.gtk - Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. - 2D graphics library with bindings of many programming languages - Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı - Cairo is a 2D graphics library with support for multiple output devices (and fileformats). - http://cairographics.org/releases/cairo-1.14.2.tar.xz - - lzo-devel - zlib-devel - glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel - pixman-devel - xcb-util-devel - libXext-devel - mesa-devel - DirectFB-devel - valgrind - - desktop/toolkit/gtk/cairo/pspec.xml - - - cairo - - lzo - zlib - glib2 - libX11 - libpng - libxcb - freetype - fontconfig - libXrender - pixman - libXext - mesa - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/gtk-doc - /usr/share/info - /usr/lib - - - - cairo-devel - Development files for cairo - cairo için geliştirme dosyaları - - cairo - mesa-devel - glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - pixman-devel - libXext-devel - fontconfig-devel - libXrender-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - cairo-32bit - 32-bit shared libraries for cairo - cairo için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - zlib-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - cairo - mesa-32bit - zlib-32bit - glibc-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - /usr/lib32/lib* - /usr/lib32/cairo - - - - - 2015-04-18 - 1.14.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-01-28 - 1.14.0 - Version bump. - Ergün Salman - Poyraz76@pisilinux.org - - - 2014-05-17 - 1.12.16 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2013-10-09 - 1.12.16 - Version bump, fixes. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-07-29 - 1.12.14 - Fix dependencies. - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-23 - 1.12.14 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-02-24 - 1.12.14 - Version bump, missing dep. - Ertan Güven - ertan@pisilinux.org - - - 2013-01-22 - 1.12.10 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2012-11-23 - 1.12.8 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xdg-utils - http://portland.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - desktop.misc - Utilitaires de bureaux communs. - Common desktop utilities - Ortak masaüstü komutları - Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. - http://source.pisilinux.org/1.0/xdg-utils.tar.xz - - xmlto - docbook-xsl - util-linux - lynx - - - enable-other-xdg.patch - xfce-detection.patch - drop-xmlto-stuff.patch - - desktop/misc/xdg-utils/pspec.xml - - - xdg-utils - - /usr/bin - /usr/share/man - - - - - 2014-02-16 - 1.1.0_20140207 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-23 - 20131006 - Release bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 1.1.0_rc1 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-04-05 - 1.1.0_rc1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - at-spi2-core - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - D-Bus at-spi için protokol tanımları ve hizmetleri - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. - mirrors://gnome/at-spi2-core/2.16/at-spi2-core-2.16.0.tar.xz - - libXtst-devel - libXi-devel - gettext-devel - dbus-devel - glib2-devel - intltool - - desktop/misc/at-spi2-core/pspec.xml - - - at-spi2-core - - libXtst - libX11 - dbus - glib2 - - - /etc - /usr/lib - /usr/share/doc - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/libexec - /usr/share/gir-1.0 - /usr/share/locale - - - - at-spi2-core-32bit - 32-bit shared libraries for at-spi2-core - emul32 - emul32 - - dbus-32bit - glib2-32bit - libXi-32bit - libX11-32bit - libXtst-32bit - glibc-32bit - - - dbus-32bit - glib2-32bit - libX11-32bit - glibc-32bit - - - /usr/lib32 - - - - at-spi2-core-devel - at-spi2-core için geliştirme dosyaları - at-spi2-core için geliştirme dosyaları - - at-spi2-core - dbus-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-14 - 2.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-07 - 2.8.0 - Fix build. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-30 - 2.8.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-07-27 - 2.8.0 - Rebuild. - Marcin Bojara - marcin@pisilinux.org - - - 2013-06-17 - 2.8.0 - Rebuild with new pisi release - PisiLinux Community - admins@pisilinux.org - - - 2013-06-17 - 2.8.0 - Rebuild with new pisi release - Marcin Bojara - marcin@pisilinux.org - - - 2013-04-23 - 2.8.0 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-17 - 2.8.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-22 - 2.7.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - startup-notification - http://www.freedesktop.org/software/startup-notification/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.misc - Application startup notification and feedback library - Uygulama başlangıç duyurusu ve geribildirim sistemi - startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). - startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). - startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. - http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz - - libX11-devel - libxcb-devel - xcb-util-devel - - desktop/misc/startup-notification/pspec.xml - - - startup-notification - - libX11 - libxcb - xcb-util - - - /usr/lib - /usr/share/doc - - - - startup-notification-devel - Development files for startup-notification - startup-notification için geliştirme dosyaları - - startup-notification - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/*/*.txt - - - - - 2014-05-18 - 0.12 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-10-13 - 0.12 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xdg-user-dirs - http://freedesktop.org/wiki/Software/xdg-user-dirs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - desktop.misc - Utilities to handle user data directories - Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar - xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. - xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. - http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.15.tar.gz - - docbook-xsl - libxml2-devel - libxslt-devel - - - defaults.patch - tr.patch - xdg-user-dirs-0.15-libiconv.patch - - desktop/misc/xdg-user-dirs/pspec.xml - - - xdg-user-dirs - - /etc/X11 - /etc/xdg - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - xdg-user-dirs.sh - - - - - 2014-05-01 - 0.15 - Fix Downloads-İndirilenler direcory name. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-02-17 - 0.15 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-26 - 0.12 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2011-01-19 - 0.12 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - desktop-file-utils - http://www.freedesktop.org/software/desktop-file-utils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.misc - Command line utilities to work with desktop menu entries - Masaüstü menü girdilerini yönetmek için komut satırı araçları - desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. - http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.21.tar.xz - - glib2-devel - - desktop/misc/desktop-file-utils/pspec.xml - - - desktop-file-utils - - glib2 - - - /usr/bin - /usr/share/doc - /usr/share/man/man1/ - - - System.PackageHandler - - - - - 2013-09-07 - 0.21 - Add comar script. - Marcin Bojara - marcin@pisilinux.org - - - 2013-08-26 - 0.21 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-11-21 - 0.21 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - at-spi2-atk - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - mirrors://gnome/at-spi2-atk/2.16/at-spi2-atk-2.16.0.tar.xz - - at-spi2-core-devel - glib2-devel - atk-devel - libX11-devel - dbus-devel - libXtst-devel - - desktop/misc/at-spi2-atk/pspec.xml - - - at-spi2-atk - - atk - dbus - glib2 - at-spi2-core - - - /usr/lib - /usr/share/doc - - - - at-spi2-atk-32bit - 32-bit shared libraries for at-spi2-atk - emul32 - emul32 - - glibc-32bit - at-spi2-core-32bit - atk-32bit - dbus-32bit - glib2-32bit - - - glibc-32bit - atk-32bit - dbus-32bit - glib2-32bit - at-spi2-core-32bit - - - /usr/lib32 - - - - at-spi2-atk-devel - at-spi2-atk için geliştirme dosyaları - at-spi2-atk için geliştirme dosyaları - - at-spi2-atk - - - /usr/lib32/pkgconfig - /usr/lib/pkgconfig - /usr/include - - - - - 2015-04-17 - 2.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-04-15 - 2.12.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-10-10 - 2.10.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-27 - 2.8.1 - Move pc files to devel pack, rebuild + split packages - PisiLinux Community - admins@pisilinux.org - - - 2013-06-01 - 2.8.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-23 - 2.8.1 - Dep fixed - PisiLinux Community - admins@pisilinux.org - - - 2013-04-17 - 2.8.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-22 - 2.7.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - shared-mime-info - http://freedesktop.org/wiki/Software/shared-mime-info - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - data - desktop.misc - The shared MIME info database - Paylaşımlı MIME veritabanı tanımlamaları - shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. - shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. - Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. - http://freedesktop.org/~hadess/shared-mime-info-1.5.tar.xz - - libxml2-devel - glib2-devel - intltool - - - shared-mime-info-xz.patch - - desktop/misc/shared-mime-info/pspec.xml - - - shared-mime-info - - libxml2 - glib2 - - - /etc/X11/xinit - /usr/bin - /usr/share/applications - /usr/share/mime - /usr/share/pkgconfig - /usr/share/locale/ - /usr/share/doc - /usr/share/man - - - System.PackageHandler - System.Package - - - update-mime-database.sh - defaults.list - mimeapps.list - mimetypefixes.xml - - - - - 2015-11-05 - 1.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-16 - 1.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-11-07 - 1.3 - Fix ISO images appearing as .txt files in Dolphin - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-24 - 1.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-09-05 - 1.1 - Add missing method to pakhandler.py - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-11 - 1.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2012-10-13 - 1.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - + system FIXME diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index df7de16e5c..282ac6dc9a 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -2019599cfde136b42b8b4a0201e958f596169eb8 \ No newline at end of file +324eb193a2b404d7a805fdb850236db26668649e \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index b95bb5f19e832c3373c718187939b0d29089a696..b663f5cd90d5dda5c079cc32a78ca84695e72c2f 100644 GIT binary patch literal 355984 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Ξ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%0Aq=xU~oFoPOx8@ow!wJ~`4IT?$D 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

NrCdi8VKuJ1AtWprCzpc6R(& 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 D@cpt& literal 353748 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

8>JgyWA%AIaONjFH{deb0| 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

WR8Og~3hON>m{CV2Y_sYl1R+k+H=c!#VB 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

o3BmAk`6= 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%0D_vM8T3H=d0C`9en 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 D)x233 diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index fc74d41d49..1a45a85d21 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -8eb06f6e9089acc9dcec6f435fff92aa0555e1a4 \ No newline at end of file +7b4182ed136d19233c21a9abfc559303c192a803 \ No newline at end of file

x)!JkgD@FNLX4Gg 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