Merge pull request #13380 from suvari/master

new packages: kdiskmark, fio
This commit is contained in:
Kamil ATLI
2024-02-25 15:42:17 +03:00
committed by GitHub
10 changed files with 453 additions and 96 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/usr/bin/python
#!/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 get
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("fio-fio-3.36")
shelltools.cd("fio-fio-3.36")
shelltools.system("../configure \
--prefix=/usr \
--disable-native --enable-gfio")
def build():
shelltools.cd("fio-fio-3.36")
autotools.make()
def install():
shelltools.cd("fio-fio-3.36")
autotools.install("BINDIR=%(install)s/usr/bin \
CONFDIR=%(install)s/etc \
MANDIR=%(install)s/usr/share/man/man1" % { "install": get.installDIR()})
# pisitools.dodoc("COPYING", "README.rst")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>fio</Name>
<Homepage>https://github.com/axboe/fio</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Packager>
<License>GPL2</License>
<Icon>fio</Icon>
<Summary>Flexible I/O Tester</Summary>
<Description>Scriptable I/O tool for storage benchmarks and drive testing</Description>
<Archive type="targz" sha1sum="f3b2b66699751af54e790177109da6385cc99003">https://github.com/axboe/fio/archive/refs/tags/fio-3.36.tar.gz</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libaio-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>numactl-devel</Dependency>
<Dependency>glusterfs-devel</Dependency>
<Dependency>gperftools-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>fio</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>curl</Dependency>
<Dependency>zlib</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libaio</Dependency>
<Dependency>python</Dependency>
<Dependency>numactl</Dependency>
<Dependency>glusterfs</Dependency>
<Dependency>gperftools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/fio</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2024-02-25</Date>
<Version>3.36</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>fio</Name>
<Summary xml:lang="tr">Esnek G/Ç Test Cihazı</Summary>
<Description xml:lang="tr">Depolama kıyaslamaları ve sürücü testleri için komut dosyası oluşturulabilen G/Ç aracı</Description>
<Description xml:lang="fr">Outil d'E/S scriptable pour les tests de stockage et les tests de lecteur</Description>
<Description xml:lang="es">Herramienta de E/S programable para pruebas comparativas de almacenamiento y pruebas de unidades</Description>
</Source>
</PISI>
+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>
+259 -94
View File
@@ -19513,7 +19513,7 @@ services for numerous locations.</Summary>
<PartOf>desktop.gnome.base</PartOf>
<Summary xml:lang="en">The libsecret package contains a GObject based library</Summary>
<Description xml:lang="en">The libsecret package contains a GObject based library for accessing the Secret Service API.</Description>
<Archive type="tarxz" sha1sum="5e6b142d1716443cd453fc350fadb8ba14a73994" name="libsecret-0.21.3.tar.xz">https://ftp.gnome.org/pub/gnome/sources/libsecret/0.21/libsecret-0.21.3.tar.xz</Archive>
<Archive type="tarxz" sha1sum="94df91594f14224e1aa02bfe8d15dcc657298cc1" name="libsecret-0.21.4.tar.xz">https://ftp.gnome.org/pub/gnome/sources/libsecret/0.21/libsecret-0.21.4.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>gtk-doc</Dependency>
@@ -19548,7 +19548,7 @@ services for numerous locations.</Summary>
<Summary xml:lang="en">Development files for libsecret</Summary>
<Summary xml:lang="tr">libsecret için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="14">libsecret</Dependency>
<Dependency release="15">libsecret</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libgcrypt-devel</Dependency>
</RuntimeDependencies>
@@ -19558,6 +19558,13 @@ services for numerous locations.</Summary>
</Files>
</Package>
<History>
<Update release="15">
<Date>2024-02-23</Date>
<Version>0.21.4</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="14">
<Date>2024-02-09</Date>
<Version>0.21.3</Version>
@@ -186885,7 +186892,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Summary xml:lang="en">A simple and lightweight Qt file archiver.</Summary>
<Description xml:lang="en">A simple and lightweight Qt file archiver.</Description>
<Icon>lxqt</Icon>
<Archive type="tarxz" sha1sum="8045ecee2898ee8e58d372d6a0c5ff41f93ec2b0" name="lxqt-archiver-0.9.0.tar.xz">https://github.com/lxqt/lxqt-archiver/releases/download/0.9.0/lxqt-archiver-0.9.0.tar.xz</Archive>
<Archive type="tarxz" sha1sum="cbb226771ee53130ef695f9c490e1ce0700d2e70" name="lxqt-archiver-0.9.1.tar.xz">https://github.com/lxqt/lxqt-archiver/releases/download/0.9.1/lxqt-archiver-0.9.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>qt5-linguist</Dependency>
@@ -186922,6 +186929,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</AdditionalFiles>
</Package>
<History>
<Update release="13">
<Date>2024-02-24</Date>
<Version>0.9.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2023-11-21</Date>
<Version>0.9.0</Version>
@@ -207033,6 +207047,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Dependency>postgresql-lib</Dependency>
<Dependency>mit-kerberos-devel</Dependency>
<Dependency versionFrom="68.2">icu4c-devel</Dependency>
<Dependency>double-conversion-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">mkspecs.patch</Patch>
@@ -207083,6 +207098,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Dependency>md4c</Dependency>
<Dependency>mit-kerberos</Dependency>
<Dependency>libglvnd</Dependency>
<Dependency>double-conversion</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
@@ -207102,7 +207118,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Summary xml:lang="tr">Qt5 için geliştirme dosyaları</Summary>
<Description xml:lang="en">Development files for Qt 5</Description>
<RuntimeDependencies>
<Dependency release="58">qt5-base</Dependency>
<Dependency release="59">qt5-base</Dependency>
<Dependency>libglvnd-devel</Dependency>
<Dependency>vulkan-headers</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
@@ -207133,6 +207149,7 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<Dependency version="5.15.12">qt5-base</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>postgresql-lib</Dependency>
<Dependency>postgresql-server</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so</Path>
@@ -207163,6 +207180,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Files>
</Package>
<History>
<Update release="59">
<Date>2024-02-22</Date>
<Version>5.15.12</Version>
<Comment>Rebuild.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="58">
<Date>2024-02-09</Date>
<Version>5.15.12</Version>
@@ -234395,6 +234419,98 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>libatasmart</Name>
<Homepage>http://0pointer.de/blog/projects/being-smart.html</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2+</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<PartOf>hardware.disk</PartOf>
<Summary xml:lang="en">ATA S.M.A.R.T. Disk Health Monitoring Library</Summary>
<Summary xml:lang="tr">ATA S.M.A.R.T. disk sağlığı izleme kitaplığı</Summary>
<Description xml:lang="en">A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring.</Description>
<Description xml:lang="tr">libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır.</Description>
<Archive type="tarxz" sha1sum="0d0745b6bd2e5b9461d15966b5daac6c98302de8" name="libatasmart-0.19.tar.xz">http://0pointer.de/public/libatasmart-0.19.tar.xz</Archive>
<BuildDependencies>
<Dependency>eudev-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">libatasmart-uninitialized-var.patch</Patch>
<Patch level="1">libatasmart-0.19-wd-fix.patch</Patch>
</Patches>
<SourceURI>hardware/disk/libatasmart/pspec.xml</SourceURI>
</Source>
<Package>
<Name>libatasmart</Name>
<RuntimeDependencies>
<Dependency>eudev</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/sbin/skdump</Path>
<Path fileType="executable">/usr/sbin/sktest</Path>
<Path fileType="library">/usr/lib/libatasmart.so*</Path>
<Path fileType="data">/usr/share/doc/libatasmart/README</Path>
<Path fileType="data">/usr/share/doc/libatasmart/LGPL</Path>
</Files>
</Package>
<Package>
<Name>libatasmart-devel</Name>
<Summary xml:lang="en">Development files for libatasmart</Summary>
<Summary xml:lang="tr">libatasmart için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="5">libatasmart</Dependency>
<Dependency>eudev-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/share/vala</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="5">
<Date>2020-02-01</Date>
<Version>0.19</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2018-08-13</Date>
<Version>0.19</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2017-03-02</Date>
<Version>0.19</Version>
<Comment>Release Bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.19</Version>
<Comment>Release Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2014-05-25</Date>
<Version>0.19</Version>
<Comment>First release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>aufs-util</Name>
@@ -235418,6 +235534,68 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>fio</Name>
<Homepage>https://github.com/axboe/fio</Homepage>
<Packager>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Packager>
<License>GPL2</License>
<PartOf>hardware.disk</PartOf>
<Summary xml:lang="en">Flexible I/O Tester</Summary>
<Summary xml:lang="tr">Esnek G/Ç Test Cihazı</Summary>
<Description xml:lang="fr">Outil d&apos;E/S scriptable pour les tests de stockage et les tests de lecteur</Description>
<Description xml:lang="en">Scriptable I/O tool for storage benchmarks and drive testing</Description>
<Description xml:lang="tr">Depolama kıyaslamaları ve sürücü testleri için komut dosyası oluşturulabilen G/Ç aracı</Description>
<Description xml:lang="es">Herramienta de E/S programable para pruebas comparativas de almacenamiento y pruebas de unidades</Description>
<Icon>fio</Icon>
<Archive type="targz" sha1sum="f3b2b66699751af54e790177109da6385cc99003" name="fio-3.36.tar.gz">https://github.com/axboe/fio/archive/refs/tags/fio-3.36.tar.gz</Archive>
<BuildDependencies>
<Dependency>gtk2-devel</Dependency>
<Dependency>curl-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>cairo-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libaio-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>numactl-devel</Dependency>
<Dependency>glusterfs-devel</Dependency>
<Dependency>gperftools-devel</Dependency>
</BuildDependencies>
<SourceURI>hardware/disk/fio/pspec.xml</SourceURI>
</Source>
<Package>
<Name>fio</Name>
<RuntimeDependencies>
<Dependency>gtk2</Dependency>
<Dependency>curl</Dependency>
<Dependency>zlib</Dependency>
<Dependency>cairo</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libaio</Dependency>
<Dependency>python</Dependency>
<Dependency>numactl</Dependency>
<Dependency>glusterfs</Dependency>
<Dependency>gperftools</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share/fio</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2024-02-25</Date>
<Version>3.36</Version>
<Comment>First Release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>fsarchiver</Name>
@@ -235772,18 +235950,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
<PartOf>hardware.disk</PartOf>
<Summary xml:lang="en">A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Summary>
<Description xml:lang="en">A text-mode partitioning tool that works on GUID Partition Table (GPT) disks</Description>
<Archive type="targz" sha1sum="284bd000edaf7874b472bd01719c6a71a8030e13" name="gptfdisk-1.0.9.tar.gz">http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.9/gptfdisk-1.0.9.tar.gz</Archive>
<Archive type="targz" sha1sum="70c0bfe4290c2893fc957ef7f6156c5e74e469fc" name="gptfdisk-1.0.10.tar.gz">http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.10/gptfdisk-1.0.10.tar.gz</Archive>
<BuildDependencies>
<Dependency>util-linux</Dependency>
<Dependency>ncurses-devel</Dependency>
<Dependency>popt-devel</Dependency>
<Dependency>libutil-linux-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">opensuse/0001-Fix-failure-crash-of-sgdisk-when-compiled-with-lates.patch</Patch>
<Patch level="1">opensuse/gptfdisk-fix-null-pointer-dereference.patch</Patch>
<Patch level="1">gentoo/gptfdisk-1.0.9-libuuid.patch</Patch>
</Patches>
<SourceURI>hardware/disk/gptfdisk/pspec.xml</SourceURI>
</Source>
<Package>
@@ -235801,6 +235974,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Files>
</Package>
<History>
<Update release="11">
<Date>2024-02-21</Date>
<Version>1.0.10</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="10">
<Date>2023-09-11</Date>
<Version>1.0.9</Version>
@@ -236006,91 +236186,58 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</SpecFile>
<SpecFile>
<Source>
<Name>libatasmart</Name>
<Homepage>http://0pointer.de/blog/projects/being-smart.html</Homepage>
<Name>kdiskmark</Name>
<Homepage>https://www.kdiskmark.org</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Packager>
<License>LGPLv2+</License>
<IsA>library</IsA>
<IsA>app:console</IsA>
<License>GPL3</License>
<PartOf>hardware.disk</PartOf>
<Summary xml:lang="en">ATA S.M.A.R.T. Disk Health Monitoring Library</Summary>
<Summary xml:lang="tr">ATA S.M.A.R.T. disk sağlığı izleme kitaplığı</Summary>
<Description xml:lang="en">A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring.</Description>
<Description xml:lang="tr">libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır.</Description>
<Archive type="tarxz" sha1sum="0d0745b6bd2e5b9461d15966b5daac6c98302de8" name="libatasmart-0.19.tar.xz">http://0pointer.de/public/libatasmart-0.19.tar.xz</Archive>
<Summary xml:lang="en">A simple open-source disk benchmark tool for Linux distros</Summary>
<Summary xml:lang="tr">Linux dağıtımları için basit bir açık kaynaklı disk kıyaslama aracı</Summary>
<Description xml:lang="fr">KDiskMark est un outil de référence pour disques durs et SSD doté d&apos;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="en">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>
<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&apos;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="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>
<Icon>kdiskmark</Icon>
<Archive type="targz" sha1sum="e03fd6f0053b55e45dabdba7ffe47347c51a6df6" name="KDiskMark-3.1.4-source.tar.gz">https://github.com/JonMagon/KDiskMark/releases/download/3.1.4/KDiskMark-3.1.4-source.tar.gz</Archive>
<BuildDependencies>
<Dependency>eudev-devel</Dependency>
<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>
<Patches>
<Patch level="1">libatasmart-uninitialized-var.patch</Patch>
<Patch level="1">libatasmart-0.19-wd-fix.patch</Patch>
</Patches>
<SourceURI>hardware/disk/libatasmart/pspec.xml</SourceURI>
<SourceURI>hardware/disk/kdiskmark/pspec.xml</SourceURI>
</Source>
<Package>
<Name>libatasmart</Name>
<Name>kdiskmark</Name>
<RuntimeDependencies>
<Dependency>eudev</Dependency>
<Dependency>fio</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>polkit-qt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/sbin/skdump</Path>
<Path fileType="executable">/usr/sbin/sktest</Path>
<Path fileType="library">/usr/lib/libatasmart.so*</Path>
<Path fileType="data">/usr/share/doc/libatasmart/README</Path>
<Path fileType="data">/usr/share/doc/libatasmart/LGPL</Path>
</Files>
</Package>
<Package>
<Name>libatasmart-devel</Name>
<Summary xml:lang="en">Development files for libatasmart</Summary>
<Summary xml:lang="tr">libatasmart için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="5">libatasmart</Dependency>
<Dependency>eudev-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/share/vala</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<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="5">
<Date>2020-02-01</Date>
<Version>0.19</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2018-08-13</Date>
<Version>0.19</Version>
<Comment>Rebuild New T.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2017-03-02</Date>
<Version>0.19</Version>
<Comment>Release Bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2016-06-09</Date>
<Version>0.19</Version>
<Comment>Release Bump</Comment>
<Name>Pisi Linux Community</Name>
<Email>admin@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2014-05-25</Date>
<Version>0.19</Version>
<Comment>First release</Comment>
<Date>2024-02-25</Date>
<Version>3.1.4</Version>
<Comment>First Release</Comment>
<Name>Kamil Atlı</Name>
<Email>suvarice@gmail.com</Email>
</Update>
@@ -301664,7 +301811,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Description xml:lang="en">NetworkManager attempts to keep an active network connection available at all times.</Description>
<Description xml:lang="tr">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.</Description>
<Icon>NetworkManager</Icon>
<Archive type="tarxz" sha1sum="6dcfdf23e5fa86d3fb627c948ddd62c63ea95728" name="NetworkManager-1.44.2.tar.xz">https://download.gnome.org/sources/NetworkManager/1.44/NetworkManager-1.44.2.tar.xz</Archive>
<Archive type="tarxz" sha1sum="3c11d700a2e81a7abce285ab94d015ac966f59d3" name="NetworkManager-1.46.0.tar.xz">https://download.gnome.org/sources/NetworkManager/1.46/NetworkManager-1.46.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>meson</Dependency>
<Dependency>audit-devel</Dependency>
@@ -301706,9 +301853,6 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Dependency>mobile-broadband-provider-info</Dependency>
<Dependency>gobject-introspection-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>abc6e1cf.patch</Patch>
</Patches>
<SourceURI>network/connection/NetworkManager/pspec.xml</SourceURI>
</Source>
<Package>
@@ -301784,7 +301928,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<RuntimeDependencies>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-glib-devel</Dependency>
<Dependency release="40">NetworkManager</Dependency>
<Dependency release="41">NetworkManager</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -301795,13 +301939,20 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Name>NetworkManager-docs</Name>
<Summary xml:lang="en">Development files for NetworkManager</Summary>
<RuntimeDependencies>
<Dependency release="40">NetworkManager</Dependency>
<Dependency release="41">NetworkManager</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/gtk-doc</Path>
</Files>
</Package>
<History>
<Update release="41">
<Date>2024-02-23</Date>
<Version>1.46.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="40">
<Date>2023-11-02</Date>
<Version>1.44.2</Version>
@@ -393297,7 +393448,7 @@ contacts, tasks, and calendar information.</Summary>
<Description xml:lang="tr">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.</Description>
<Description xml:lang="es">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.</Description>
<Icon>git</Icon>
<Archive type="tarxz" sha1sum="356af4adf2b87e6ae45e15e6f24ce4b737b2cbf2" name="git-2.43.2.tar.xz">https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.43.2.tar.xz</Archive>
<Archive type="tarxz" sha1sum="77628a32368c4ad894d6fc56aa65fac9e4a395f1" name="git-2.44.0.tar.xz">https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.44.0.tar.xz</Archive>
<BuildDependencies>
<Dependency>openssl-devel</Dependency>
<Dependency>libpcre2-devel</Dependency>
@@ -393319,7 +393470,7 @@ contacts, tasks, and calendar information.</Summary>
<Summary xml:lang="en">Fast Version Control System</Summary>
<IsA>app:console</IsA>
<RuntimeDependencies>
<Dependency version="2.43.2">perl-Git</Dependency>
<Dependency version="2.44.0">perl-Git</Dependency>
<Dependency>perl-String-ShellQuote</Dependency>
<Dependency>perl-Net-SMTP-SSL</Dependency>
<Dependency>perl-Authen-SASL</Dependency>
@@ -393384,7 +393535,7 @@ contacts, tasks, and calendar information.</Summary>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libpcre2</Dependency>
<Dependency version="2.43.2">git</Dependency>
<Dependency version="2.44.0">git</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="config">/etc/conf.d/git-daemon</Path>
@@ -393423,7 +393574,7 @@ contacts, tasks, and calendar information.</Summary>
<Description xml:lang="tr">gitk, Git sürüm ağacı görüntüleyicisi sunar.</Description>
<IsA>app:gui</IsA>
<RuntimeDependencies>
<Dependency version="2.43.2">git</Dependency>
<Dependency version="2.44.0">git</Dependency>
<Dependency>tcltk</Dependency>
</RuntimeDependencies>
<Files>
@@ -393439,8 +393590,8 @@ contacts, tasks, and calendar information.</Summary>
<Description xml:lang="tr">git-gui, GIT için basit bir grafik arayüz sunar.</Description>
<IsA>app:gui</IsA>
<RuntimeDependencies>
<Dependency version="2.43.2">git</Dependency>
<Dependency version="2.43.2">gitk</Dependency>
<Dependency version="2.44.0">git</Dependency>
<Dependency version="2.44.0">gitk</Dependency>
<Dependency>tcltk</Dependency>
</RuntimeDependencies>
<Files>
@@ -393464,7 +393615,7 @@ contacts, tasks, and calendar information.</Summary>
<IsA>app:web</IsA>
<PartOf>server.web</PartOf>
<RuntimeDependencies>
<Dependency version="2.43.2">git</Dependency>
<Dependency version="2.44.0">git</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/var/www/localhost</Path>
@@ -393478,6 +393629,13 @@ contacts, tasks, and calendar information.</Summary>
</AdditionalFiles>
</Package>
<History>
<Update release="27">
<Date>2024-02-24</Date>
<Version>2.44.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="26">
<Date>2024-02-15</Date>
<Version>2.43.2</Version>
@@ -435030,7 +435188,7 @@ contacts, tasks, and calendar information.</Summary>
<Description xml:lang="en">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&apos;t use the window system directly.</Description>
<Description xml:lang="tr">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.</Description>
<Icon>terminal</Icon>
<Archive type="targz" sha1sum="c4a3384e9baee6de20d440405e7f756fd6ab56d6" name="xterm-386.tgz">http://invisible-mirror.net/archives/xterm/xterm-386.tgz</Archive>
<Archive type="targz" sha1sum="1bcbeedaf225b4e34308b31b0da0ea1918dd1951" name="xterm-390.tgz">http://invisible-mirror.net/archives/xterm/xterm-390.tgz</Archive>
<BuildDependencies>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libICE-devel</Dependency>
@@ -435079,6 +435237,13 @@ contacts, tasks, and calendar information.</Summary>
</Files>
</Package>
<History>
<Update release="13">
<Date>2024-02-20</Date>
<Version>390</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2023-10-10</Date>
<Version>386</Version>
+1 -1
View File
@@ -1 +1 @@
685f8e35ae592c5a6e0daaddec452dbca0c22b87
399a6117e7f98c7c0f5321ad69bebed8fb5bec60
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
d0843c481ba2833577b5425283bf6b8fbcb97f31
d6b1ee9a53c8c77fc42f5d2720c8cf3d6494ccd5