new packages: kdiskmark, fio

This commit is contained in:
suvari
2024-02-25 15:41:00 +03:00
parent f36804a01d
commit 512c47e691
10 changed files with 453 additions and 96 deletions
+26
View File
@@ -0,0 +1,26 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
def build():
cmaketools.make("-C build")
def install():
pisitools.dodoc("README.md", "LICENSE")
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>kdiskmark</Name>
<Homepage>https://www.kdiskmark.org</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Packager>
<License>GPL3</License>
<Icon>kdiskmark</Icon>
<Summary>A simple open-source disk benchmark tool for Linux distros</Summary>
<Description>KDiskMark is an HDD and SSD benchmark tool with a very friendly graphical user interface. KDiskMark with its presets and powerful GUI calls Flexible I/O Tester and handles the output to provide an easy to view and interpret comprehensive benchmark result.</Description>
<Archive type="targz" sha1sum="e03fd6f0053b55e45dabdba7ffe47347c51a6df6">https://github.com/JonMagon/KDiskMark/releases/download/3.1.4/KDiskMark-3.1.4-source.tar.gz</Archive>
<BuildDependencies>
<Dependency>gcc</Dependency>
<Dependency>fio</Dependency>
<Dependency>cmake</Dependency>
<Dependency>libaio-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>polkit-qt-devel</Dependency>
<Dependency>extra-cmake-modules</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>kdiskmark</Name>
<RuntimeDependencies>
<Dependency>fio</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>polkit-qt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/usr/libexec</Path>
<Path fileType="config">/usr/share/dbus-1</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/kdiskmark</Path>
<Path fileType="data">/usr/share/polkit-1</Path>
<Path fileType="data">/usr/share/icons</Path>
<Path fileType="data">/usr/share/applications</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2024-02-25</Date>
<Version>3.1.4</Version>
<Comment>First Release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
</History>
</PISI>
+10
View File
@@ -0,0 +1,10 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>kdiskmark</Name>
<Summary xml:lang="tr">Linux dağıtımları için basit bir açık kaynaklı disk kıyaslama aracı</Summary>
<Description xml:lang="tr">KDiskMark, son derece kullanıcı dostu bir grafik kullanıcı arayüzüne sahip bir HDD ve SSD kıyaslama aracıdır. Ön ayarları ve güçlü GUI'si ile KDiskMark, Esnek I/O Test Cihazını çağırır ve kapsamlı bir kıyaslama sonucunun görüntülenmesi ve yorumlanması kolay sağlamak için çıktıyı yönetir.</Description>
<Description xml:lang="fr">KDiskMark est un outil de référence pour disques durs et SSD doté d'une interface utilisateur graphique très conviviale. KDiskMark, avec ses préréglages et son interface graphique puissante, appelle Flexible I/O Tester et gère la sortie pour fournir un résultat de référence complet facile à visualiser et à interpréter.</Description>
<Description xml:lang="es">KDiskMark es una herramienta de evaluación comparativa de HDD y SSD con una interfaz gráfica de usuario muy amigable. KDiskMark con sus ajustes preestablecidos y su potente GUI llama a Flexible I/O Tester y maneja la salida para proporcionar un resultado de referencia integral fácil de ver e interpretar.</Description>
</Source>
</PISI>