Merge pull request #11432 from 4fury-c3440d8/new

kvantum, qt6ct, nilfs-utils.
This commit is contained in:
Rmys
2023-02-02 10:13:00 +03:00
committed by GitHub
9 changed files with 137 additions and 15 deletions
+8 -4
View File
@@ -4,17 +4,21 @@
# 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 pisitools, qt5, get
from pisi.actionsapi import cmaketools, mesontools, pisitools, get
WorkDir = "Kvantum-%s/Kvantum" % get.srcVERSION()
def setup():
qt5.configure()
pisitools.dosed("style/CMakeLists.txt", "Qt5\ Qt6", "Qt6")
cmaketools.configure("-DENABLE_QT5=ON -B_build5 -G Ninja")
cmaketools.configure("-DENABLE_QT5=OFF -B_build6 -G Ninja")
def build():
qt5.make()
mesontools.build("-C _build5")
mesontools.build("-C _build6")
def install():
qt5.install()
mesontools.install("-C _build5")
mesontools.install("-C _build6")
pisitools.dodoc("ChangeLog")
+29 -5
View File
@@ -8,13 +8,17 @@
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app</IsA>
<License>GPL-3</License>
<IsA>app:gui</IsA>
<PartOf>desktop.lookandfeel</PartOf>
<Summary>Kvantum is an SVG-based theme engine for Qt4/Qt5, KDE and LXQt.</Summary>
<Description>Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Description>
<Archive sha1sum="e6b8cac417de200cee4103293021fa3e035a82d9" type="tarxz">https://github.com/tsujan/Kvantum/releases/download/V1.0.2/Kvantum-1.0.2.tar.xz</Archive>
<Archive sha1sum="8fadff2c8461fafa42725f913cf4af4b67eafc13" type="tarxz">
https://github.com/tsujan/Kvantum/releases/download/V1.0.7/Kvantum-1.0.7.tar.xz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-svg-devel</Dependency>
@@ -24,6 +28,12 @@
<Dependency>kwindowsystem-devel</Dependency>
<Dependency>qt5-x11extras-devel</Dependency>
<Dependency>qt5-assistant-devel</Dependency>
<!-- Qt6 -->
<Dependency>qt6-linguist</Dependency>
<Dependency>qt6-svg-devel</Dependency>
<Dependency>qt6-base-devel</Dependency>
<Dependency>qt6-designer-devel</Dependency>
<Dependency>qt6-assistant-devel</Dependency>
</BuildDependencies>
</Source>
@@ -33,20 +43,34 @@
<Dependency>libgcc</Dependency>
<Dependency>libX11</Dependency>
<Dependency>qt5-svg</Dependency>
<Dependency>qt6-svg</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt6-base</Dependency>
<Dependency>kwindowsystem</Dependency>
<Dependency>qt5-x11extras</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="executable">/usr/bin/kvantummanager</Path>
<Path fileType="executable">/usr/bin/kvantumpreview</Path>
<Path fileType="library">/usr/lib/qt5/plugins/styles/libkvantum.so</Path>
<Path fileType="library">/usr/lib/qt6/plugins/styles/libkvantum.so</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/color-schemes</Path>
<Path fileType="data">/usr/share/Kvantum</Path>
<Path fileType="data">/usr/share/kvantummanager</Path>
<Path fileType="data">/usr/share/kvantumpreview</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2023-02-02</Date>
<Version>1.0.7</Version>
<Comment>Version bump and rebuild for Qt6.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="4">
<Date>2022-06-15</Date>
<Version>1.0.2</Version>
+2 -2
View File
@@ -2,7 +2,7 @@
<PISI>
<Source>
<Name>Kvantum</Name>
<Summary xml:lang="tr">Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Summary>
<Description xml:lang="tr">Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Description>
<Summary xml:lang="tr">Kvantum Qt5 / Qt6, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Summary>
<Description xml:lang="tr">Kvantum Qt5 / Qt6, KDE ve LXQt için SVG tabanlı bir tema motorudur.</Description>
</Source>
</PISI>
+1
View File
@@ -43,6 +43,7 @@
<Dependency>llvm-libs</Dependency>
<Dependency>llvm-clang</Dependency>
<Dependency versionFrom="6.4.2">qt6-base</Dependency>
<Dependency versionFrom="6.4.2">qt6-sql-sqlite</Dependency>
<Dependency versionFrom="6.4.2">qt6-declarative</Dependency>
</RuntimeDependencies>
<Files>
+18
View File
@@ -0,0 +1,18 @@
#!/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, mesontools, pisitools
def setup():
cmaketools.configure("-B_build -G Ninja -L")
def build():
mesontools.build("-C _build")
def install():
mesontools.install("-C _build")
pisitools.dodoc("AUTHORS", "ChangeLog")
@@ -0,0 +1,13 @@
diff --git a/CMakeLists.txt b/CMakeLists.txt
index fe21597..1dd3266 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -25,7 +25,7 @@ ADD_DEFINITIONS(-DQT_DISABLE_DEPRECATED_BEFORE=0x060000 -DUSE_WIDGETS)
find_package(Qt6 COMPONENTS BuildInternals Widgets LinguistTools REQUIRED)
#get_target_property(QT_QTPATHS_EXECUTABLE Qt6::qtpaths IMPORTED_LOCATION)
-get_target_property(QT_LRELEASE_EXECUTABLE Qt6::lrelease IMPORTED_LOCATION)
+set(QT_LRELEASE_EXECUTABLE /usr/lib/qt6/bin/lrelease)
#if(QT_QTPATHS_EXECUTABLE)
# message(STATUS "Found qtpaths executable: " ${QT_QTPATHS_EXECUTABLE})
+56
View File
@@ -0,0 +1,56 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt6ct</Name>
<Homepage>https://github.com/trialuser02/qt6ct</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>BSD-2-Clause</License>
<IsA>app:gui</IsA>
<PartOf>desktop.toolkit.qt6</PartOf>
<Summary>Qt6 Configuration Tool.</Summary>
<Description>This program allows users to configure Qt6 settings (theme, font, icons, etc.) under DE/WM without Qt integration.</Description>
<Archive sha1sum="b334a82d89a5a3351fe147b68f4da3db53ab434e" type="tarxz">
https://github.com/trialuser02/qt6ct/releases/download/0.7/qt6ct-0.7.tar.xz
</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>ninja</Dependency>
<Dependency>ccache</Dependency>
<Dependency>qt6-linguist</Dependency>
<Dependency>qt6-svg-devel</Dependency>
<Dependency>qt6-base-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- <Patch level='1'></Patch> -->
<Patch level='1'>alpine/find_lrelease.patch</Patch>
</Patches>
</Source>
<Package>
<Name>qt6ct</Name>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt6-svg</Dependency>
<Dependency>qt6-base</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib/qt6/plugins</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2023-02-02</Date>
<Version>0.7</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
+1 -1
View File
@@ -16,5 +16,5 @@ def build():
def install():
autotools.rawInstall("DESTDIR=%s sbindir=/usr/sbin" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
+9 -3
View File
@@ -10,11 +10,11 @@
</Packager>
<License>GPLv2</License>
<License>LGPLv2.1</License>
<IsA>app:gui</IsA>
<IsA>app</IsA>
<PartOf>hardware.disk</PartOf>
<Summary>A log-structured file system supporting continuous snapshotting (userspace utils).</Summary>
<Description>NILFS is a log-structured file system supporting versioning of the entire file system and continuous snapshotting which allows users to even restore files mistakenly overwritten or destroyed just a few seconds ago.</Description>
<Archive sha1sum="d95c82a95790f136b157757695df6b5359e4b025" type="tarbz2">https://nilfs.sourceforge.io/download/nilfs-utils-2.2.8.tar.bz2</Archive>
<Archive sha1sum="dec59883c9b59bb02cfe49a0312d2325f9f6935b" type="tarbz2">https://nilfs.sourceforge.io/download/nilfs-utils-2.2.9.tar.bz2</Archive>
<BuildDependencies>
<Dependency>libutil-linux-devel</Dependency>
</BuildDependencies>
@@ -38,7 +38,6 @@
<Package>
<Name>nilfs-utils-devel</Name>
<Summary>nilfs-utils için geliştirm edosyaları</Summary>
<RuntimeDependencies>
<Dependency release="current">nilfs-utils</Dependency>
</RuntimeDependencies>
@@ -48,6 +47,13 @@
</Package>
<History>
<Update release="2">
<Date>2023-02-01</Date>
<Version>2.2.9</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-01-12</Date>
<Version>2.2.8</Version>