diff --git a/desktop/gnome/addons/qgnomeplatform-qt6/actions.py b/desktop/gnome/addons/qgnomeplatform-qt6/actions.py new file mode 100644 index 0000000000..489dc6cedf --- /dev/null +++ b/desktop/gnome/addons/qgnomeplatform-qt6/actions.py @@ -0,0 +1,30 @@ +#!/usr/bin/python +# -*- coding: utf-8 -*- +# +# Licensed under the GNU General Public License, version 3. +# See the file https://www.gnu.org/licenses/gpl-3.0.txt + +from pisi.actionsapi import cmaketools +from pisi.actionsapi import pisitools + +def setup(): + cmaketools.configure("-B build-qt5 \ + -DUSE_QT6=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib") + + cmaketools.configure("-B build-qt6 \ + -DUSE_QT6=ON \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib") + +def build(): + cmaketools.make("-C build-qt5") + cmaketools.make("-C build-qt6") + +def install(): + cmaketools.install("-C build-qt5") + cmaketools.install("-C build-qt6") + + pisitools.dodoc("LICENSE", "README.md") + diff --git a/desktop/gnome/addons/qgnomeplatform-qt6/pspec.xml b/desktop/gnome/addons/qgnomeplatform-qt6/pspec.xml new file mode 100644 index 0000000000..a4f1e7b770 --- /dev/null +++ b/desktop/gnome/addons/qgnomeplatform-qt6/pspec.xml @@ -0,0 +1,82 @@ + + + + + qgnomeplatform-qt6 + https://github.com/FedoraQt/QGnomePlatform + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + QPlatformTheme for a better Qt6 application inclusion in GNOME + qgnomeplatform-qt6 + QPlatformTheme for a better Qt6 application inclusion in GNOME + https://github.com/FedoraQt/QGnomePlatform/archive/refs/tags/0.9.0.tar.gz + + cmake + gtk3-devel + glib2-devel + pango-devel + qt6-base-devel + qt5-base-devel + gdk-pixbuf-devel + adwaita-qt6-devel + adwaita-qt-devel + qt6-wayland-devel + qt5-wayland-devel + + + + + + qgnomeplatform-qt6 + + gtk3 + glib2 + pango + qt6-base + gdk-pixbuf + adwaita-qt6 + qt6-wayland + + + /usr/lib/libqgnomeplatform6.so + /usr/lib/qt6 + /usr/share/doc + + + + + qgnomeplatform-qt5 + + gtk3 + glib2 + pango + qt5-base + gdk-pixbuf + adwaita-qt + qt5-wayland + + + /usr/lib/libqgnomeplatform.so + /usr/lib/qt5 + + + + + + 2022-10-09 + 0.9.0 + First release + PisiLinux Community + admins@pisilinux.org + + + diff --git a/desktop/gnome/addons/qgnomeplatform-qt6/translations.xml b/desktop/gnome/addons/qgnomeplatform-qt6/translations.xml new file mode 100644 index 0000000000..0b0bfecf9c --- /dev/null +++ b/desktop/gnome/addons/qgnomeplatform-qt6/translations.xml @@ -0,0 +1,8 @@ + + + + qgnomeplatform-qt6 + QPlatformTheme for a better Qt6 application inclusion in GNOME + QPlatformTheme for a better Qt6 application inclusion in GNOME + + diff --git a/desktop/lookandfeel/adwaita-qt/actions.py b/desktop/lookandfeel/adwaita-qt/actions.py index db7769a3a8..6ed76f1e44 100644 --- a/desktop/lookandfeel/adwaita-qt/actions.py +++ b/desktop/lookandfeel/adwaita-qt/actions.py @@ -8,13 +8,23 @@ from pisi.actionsapi import cmaketools from pisi.actionsapi import pisitools def setup(): - cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_INSTALL_LIBDIR=lib") + cmaketools.configure("-B build-qt5 \ + -DUSE_QT6=OFF \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib") + + cmaketools.configure("-B build-qt6 \ + -DUSE_QT6=ON \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib") def build(): - cmaketools.make() + cmaketools.make("-C build-qt5") + cmaketools.make("-C build-qt6") def install(): - cmaketools.install() + cmaketools.install("-C build-qt5") + cmaketools.install("-C build-qt6") pisitools.dodoc("AUTHORS", "COPYING", "README.md") diff --git a/desktop/lookandfeel/adwaita-qt/pspec.xml b/desktop/lookandfeel/adwaita-qt/pspec.xml index 9f30dadb6e..9deb79cd23 100644 --- a/desktop/lookandfeel/adwaita-qt/pspec.xml +++ b/desktop/lookandfeel/adwaita-qt/pspec.xml @@ -20,10 +20,26 @@ cmake qt5-base-devel + qt6-base-devel qt5-x11extras-devel + + adwaita-qt6 + + libgcc + libxcb + qt6-base + + + + /usr/lib/libadwaitaqt6* + /usr/lib/qt6 + /usr/share/doc + + + adwaita-qt @@ -33,25 +49,46 @@ qt5-x11extras - /usr/lib - /usr/share/doc + /usr/lib/libadwaitaqt.so* + /usr/lib/libadwaitaqtpriv.so* + /usr/lib/qt5 + + + + + adwaita-qt6-devel + + adwaita-qt6 + qt6-base-devel + + + /usr/lib/cmake/AdwaitaQt6 + /usr/lib/pkgconfig/adwaita-qt6.pc + /usr/include/AdwaitaQt6 adwaita-qt-devel - adwaita-qt - qt5-base + adwaita-qt6 + qt5-base-devel - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include + /usr/lib/cmake/AdwaitaQt + /usr/lib/pkgconfig/adwaita-qt.pc + /usr/include/AdwaitaQt + + 2022-10-09 + 1.4.2 + Rebuild adwaita-qt6 + Mustafa Cinasal + muscnsl@gmail.com + 2022-09-24 1.4.2 diff --git a/pisi-index.xml b/pisi-index.xml index 956d86f81e..ef2667bb22 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -1320,6 +1320,7 @@ qt5-base libtg_owt gdk-pixbuf + kcoreaddons libjpeg-turbo qt5-imageformats libdbusmenu-qt @@ -1348,7 +1349,7 @@ 2022-09-19 4.2.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -102044,10 +102045,24 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol cmake qt5-base-devel + qt6-base-devel qt5-x11extras-devel desktop/lookandfeel/adwaita-qt/pspec.xml + + adwaita-qt6 + + libgcc + libxcb + qt6-base + + + /usr/lib/libadwaitaqt6* + /usr/lib/qt6 + /usr/share/doc + + adwaita-qt @@ -102057,23 +102072,43 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol qt5-x11extras - /usr/lib - /usr/share/doc + /usr/lib/libadwaitaqt.so* + /usr/lib/libadwaitaqtpriv.so* + /usr/lib/qt5 + + + + adwaita-qt6-devel + + adwaita-qt6 + qt6-base-devel + + + /usr/lib/cmake/AdwaitaQt6 + /usr/lib/pkgconfig/adwaita-qt6.pc + /usr/include/AdwaitaQt6 adwaita-qt-devel - adwaita-qt - qt5-base + adwaita-qt6 + qt5-base-devel - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include + /usr/lib/cmake/AdwaitaQt + /usr/lib/pkgconfig/adwaita-qt.pc + /usr/include/AdwaitaQt + + 2022-10-09 + 1.4.2 + Rebuild adwaita-qt6 + Mustafa Cinasal + muscnsl@gmail.com + 2022-09-24 1.4.2 @@ -253789,6 +253824,81 @@ components such as the Settings and gnome-shell. + + + qgnomeplatform-qt6 + https://github.com/FedoraQt/QGnomePlatform + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.addons + QPlatformTheme for a better Qt6 application inclusion in GNOME + QPlatformTheme for a better Qt6 application inclusion in GNOME + QPlatformTheme for a better Qt6 application inclusion in GNOME + QPlatformTheme for a better Qt6 application inclusion in GNOME + qgnomeplatform-qt6 + https://github.com/FedoraQt/QGnomePlatform/archive/refs/tags/0.9.0.tar.gz + + cmake + gtk3-devel + glib2-devel + pango-devel + qt6-base-devel + qt5-base-devel + gdk-pixbuf-devel + adwaita-qt6-devel + adwaita-qt-devel + qt6-wayland-devel + qt5-wayland-devel + + desktop/gnome/addons/qgnomeplatform-qt6/pspec.xml + + + qgnomeplatform-qt6 + + gtk3 + glib2 + pango + qt6-base + gdk-pixbuf + adwaita-qt6 + qt6-wayland + + + /usr/lib/libqgnomeplatform6.so + /usr/lib/qt6 + /usr/share/doc + + + + qgnomeplatform-qt5 + + gtk3 + glib2 + pango + qt5-base + gdk-pixbuf + adwaita-qt + qt5-wayland + + + /usr/lib/libqgnomeplatform.so + /usr/lib/qt5 + + + + + 2022-10-09 + 0.9.0 + First release + PisiLinux Community + admins@pisilinux.org + + + qtermwidget5 @@ -254762,6 +254872,7 @@ components such as the Settings and gnome-shell. ninja cmake zstd-devel + elogind-devel at-spi2-core-devel cups-devel dbus-devel @@ -341811,7 +341922,7 @@ contacts, tasks, and calendar information. Hafif bir PDF ve XPS görüntüleyicisi MuPDF is a lightweight open source software framework for viewing and converting PDF, XPS, and E-book documents. MuPDF; PDF, XPS ve E-kitap belgelerini görüntüleme ve dönüştürme için hafif açık kaynaklı bir yazılım çerçevesidir. - https://mupdf.com/downloads/archive/mupdf-1.20.0-source.tar.gz + https://mupdf.com/downloads/archive/mupdf-1.20.3-source.tar.gz zlib-devel curl-devel @@ -341864,7 +341975,7 @@ contacts, tasks, and calendar information. Development files for mupdf mupdf için geliştirme dosyaları - mupdf + mupdf /usr/include/mupdf @@ -341880,6 +341991,13 @@ contacts, tasks, and calendar information. + + 2022-10-07 + 1.20.3 + Version bump + fury + uglyside@yandex.ru + 2022-07-06 1.20.0 @@ -371141,6 +371259,10 @@ from a wide variety of machine architectures. gtkspell3-devel webkit2gtk-devel + + Add_support_for_libgit2_1_4.patch + Simplify_libgit2_version_checks.patch + editor/geany-plugins/pspec.xml @@ -371179,9 +371301,9 @@ from a wide variety of machine architectures. - 2021-10-15 + 2022-10-07 1.38 - Version bump. + Version bump fury uglyside@yandex.ru diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 65b8c8923d..2d5a42349c 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -670e5a0f81f6f7b3acef4db58696f94794624a0a \ No newline at end of file +809c7916e56e1f29535df82d9ab853adb920e381 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index f8879db2c0..df8e9ebe8b 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 5785386bea..5d13ef327f 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -ac8e047db66fceabef3399f32718b3ec01234516 \ No newline at end of file +a597cc37e99c6d9120c0b9d4a4321df314db76be \ No newline at end of file