diff --git a/pisi-index.xml b/pisi-index.xml index 0f7ae3e8b7..54bf316197 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -207603,7 +207603,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.desktop.kde.applications A KDE C++ interface for MediaWiki based web service as wikipedia.org A KDE C++ interface for MediaWiki based web service as wikipedia.org - https://github.com/KDE/libmediawiki/archive/refs/heads/master.zip + https://github.com/KDE/libmediawiki/archive/refs/heads/master.zip extra-cmake-modules kcoreaddons-devel @@ -209506,6 +209506,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.sane-backends-devel kwidgetsaddons-devel extra-cmake-modules + ksanecore-devel desktop/kde/applications/libksane/pspec.xml @@ -209519,6 +209520,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.ktextwidgets sane-backends kwidgetsaddons + ksanecore /usr/lib @@ -209532,6 +209534,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.libksane için geliştirme dosyaları libksane + ksanecore-devel /usr/lib/cmake @@ -225787,6 +225790,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.qt5-svg-devel qt5-script-devel qt5-declarative-devel + qt5-quickcontrols2-devel kdoctools-devel extra-cmake-modules kio-devel @@ -225795,6 +225799,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kxmlgui-devel kcoreaddons-devel ki18n-devel + kdeclarative-devel mesa-devel docbook-xsl @@ -225806,6 +225811,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.qt5-svg qt5-base qt5-declarative + qt5-quickcontrols2 kparts kio ki18n @@ -225816,6 +225822,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.kservice kcompletion kcoreaddons + kdeclarative kconfigwidgets kwidgetsaddons @@ -315908,6 +315915,68 @@ to create header files and sources from protocol files. + + + kimageannotator + https://github.com/ksnip/kImageAnnotator + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.library + Tool for annotating images + Tool for annotating images + Görüntülere açıklama eklemek için araç + Görüntülere açıklama eklemek için araç + kimageannotator + https://github.com/ksnip/kImageAnnotator/archive/refs/tags/v0.6.0.tar.gz + + cmake + libX11-devel + kcolorpicker-devel + qt5-svg-devel + qt5-base-devel + + programming/library/kimageannotator/pspec.xml + + + kimageannotator + + libX11 + kcolorpicker + qt5-svg + qt5-base + + + /usr/lib + /usr/share/kImageAnnotator + /usr/share/doc + + + + kimageannotator-devel + Development files for kimageannotator + + kimageannotator + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-09-24 + 0.6.0 + First release + PisiLinux Community + admins@pisilinux.org + + + liburing @@ -318623,6 +318692,61 @@ to create header files and sources from protocol files. + + + kcolorpicker + https://github.com/ksnip/kColorPicker + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.library + Qt based Color Picker with popup menu + Qt based Color Picker with popup menu + Açılır menü ile Qt tabanlı Renk Seçici + Açılır menü ile Qt tabanlı Renk Seçici + kcolorpicker + https://github.com/ksnip/kColorPicker/archive/refs/tags/v0.2.0.tar.gz + + cmake + qt5-base-devel + + programming/library/kcolorpicker/pspec.xml + + + kcolorpicker + + qt5-base + + + /usr/lib + /usr/share/doc + + + + kcolorpicker-devel + Development files for kcolorpicker + + kcolorpicker + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-09-24 + 0.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + libaccounts-qt5 diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 05da83f09e..8a1a5ab1b7 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -5b189832af5549f20f6ac76e26eccca23f3e9235 \ No newline at end of file +095079a57243449d239df09ce99a6ec21ed36202 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index ab542ce649..98d8f2f48a 100644 Binary files a/pisi-index.xml.xz and b/pisi-index.xml.xz differ diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index bfb8c84541..db9921d4c0 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -6d015bc564fff662e6ec38795c919416fa760155 \ No newline at end of file +564dbbc5f2b57d735fbef774054c50ccfec182a2 \ No newline at end of file diff --git a/programming/library/kcolorpicker/actions.py b/programming/library/kcolorpicker/actions.py new file mode 100644 index 0000000000..97ed3bb645 --- /dev/null +++ b/programming/library/kcolorpicker/actions.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + cmaketools.configure("-DBUILD_SHARED_LIBS=ON") + +def build(): + cmaketools.make() + +def install(): + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("LICENSE", "README*") diff --git a/programming/library/kcolorpicker/pspec.xml b/programming/library/kcolorpicker/pspec.xml new file mode 100644 index 0000000000..ebaa111717 --- /dev/null +++ b/programming/library/kcolorpicker/pspec.xml @@ -0,0 +1,62 @@ + + + + + kcolorpicker + https://github.com/ksnip/kColorPicker + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + Qt based Color Picker with popup menu + kcolorpicker + Açılır menü ile Qt tabanlı Renk Seçici + https://github.com/ksnip/kColorPicker/archive/refs/tags/v0.2.0.tar.gz + + cmake + qt5-base-devel + + + + + + kcolorpicker + + qt5-base + + + /usr/lib + /usr/share/doc + + + + + kcolorpicker-devel + Development files for kcolorpicker + + kcolorpicker + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + + 2022-09-24 + 0.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/library/kcolorpicker/translations.xml b/programming/library/kcolorpicker/translations.xml new file mode 100644 index 0000000000..902efe8b9b --- /dev/null +++ b/programming/library/kcolorpicker/translations.xml @@ -0,0 +1,8 @@ + + + + kcolorpicker + Qt based Color Picker with popup menu + Açılır menü ile Qt tabanlı Renk Seçici + + diff --git a/programming/library/kimageannotator/actions.py b/programming/library/kimageannotator/actions.py new file mode 100644 index 0000000000..9ba53d0151 --- /dev/null +++ b/programming/library/kimageannotator/actions.py @@ -0,0 +1,20 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file http://www.gnu.org/licenses/gpl.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + cmaketools.configure("-DBUILD_SHARED_LIBS=ON") + +def build(): + cmaketools.make() + +def install(): + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + + pisitools.dodoc("CHANGELOG*", "LICENSE", "README*") diff --git a/programming/library/kimageannotator/pspec.xml b/programming/library/kimageannotator/pspec.xml new file mode 100644 index 0000000000..afc1dcc738 --- /dev/null +++ b/programming/library/kimageannotator/pspec.xml @@ -0,0 +1,69 @@ + + + + + kimageannotator + https://github.com/ksnip/kImageAnnotator + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + Tool for annotating images + kimageannotator + Görüntülere açıklama eklemek için araç + https://github.com/ksnip/kImageAnnotator/archive/refs/tags/v0.6.0.tar.gz + + cmake + libX11-devel + kcolorpicker-devel + qt5-svg-devel + qt5-base-devel + + + + + + kimageannotator + + libX11 + kcolorpicker + qt5-svg + qt5-base + + + /usr/lib + /usr/share/kImageAnnotator + /usr/share/doc + + + + + kimageannotator-devel + Development files for kimageannotator + + kimageannotator + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + + 2022-09-24 + 0.6.0 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/programming/library/kimageannotator/translations.xml b/programming/library/kimageannotator/translations.xml new file mode 100644 index 0000000000..df6ee51e3a --- /dev/null +++ b/programming/library/kimageannotator/translations.xml @@ -0,0 +1,8 @@ + + + + kimageannotator + Tool for annotating images + Görüntülere açıklama eklemek için araç + +