diff --git a/hardware/misc/dtc/actions.py b/hardware/misc/dtc/actions.py
new file mode 100644
index 0000000000..ba353b4864
--- /dev/null
+++ b/hardware/misc/dtc/actions.py
@@ -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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ shelltools.system("meson --prefix=/usr ..")
+
+def build():
+ shelltools.cd("build")
+ shelltools.system("ninja")
+
+def install():
+ shelltools.cd("build")
+ shelltools.system("DESTDIR=%s ninja install" % get.installDIR())
+
+ shelltools.cd("..")
+ pisitools.dodoc("GPL", "README*")
diff --git a/hardware/misc/dtc/pspec.xml b/hardware/misc/dtc/pspec.xml
new file mode 100644
index 0000000000..5bbc435317
--- /dev/null
+++ b/hardware/misc/dtc/pspec.xml
@@ -0,0 +1,60 @@
+
+
+
+
+ dtc
+ https://github.com/telegramdesktop/dtc
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ GPL2
+ library
+ Device Tree Compiler
+ Device Tree Compiler
+ https://mirrors.edge.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.xz
+
+ swig
+ meson
+ libyaml-devel
+ python3-devel
+ valgrind-devel
+
+
+
+
+ dtc
+
+ libyaml
+ valgrind
+
+
+ /usr/lib/libfdt.so*
+ /usr/share/doc
+ /usr/bin
+ /usr/lib/python3.9/site-packages
+
+
+
+
+ dtc-devel
+ Development files for dtc
+
+ dtc
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-02-05
+ 1.6.1
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/hardware/misc/dtc/translations.xml b/hardware/misc/dtc/translations.xml
new file mode 100644
index 0000000000..64222e40cc
--- /dev/null
+++ b/hardware/misc/dtc/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ dtc
+ Cihaz Ağacı Derleyicisi
+ Cihaz Ağacı Derleyicisi
+
+
+
+ dtc-devel
+ dtc için geliştirme başlıkları
+
+
diff --git a/hardware/misc/glusterfs/actions.py b/hardware/misc/glusterfs/actions.py
new file mode 100644
index 0000000000..09c7719ff2
--- /dev/null
+++ b/hardware/misc/glusterfs/actions.py
@@ -0,0 +1,38 @@
+#!/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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+
+def setup():
+ autotools.autoreconf("-fi")
+ shelltools.system("NOCONFIGURE=1 ./autogen.sh")
+ autotools.configure("--disable-static \
+ --sbindir=/usr/bin \
+ --with-mountutildir=/usr/bin \
+ --prefix=/usr \
+ --without-selinux \
+ --sysconfdir=/etc \
+ --localstatedir=/var \
+ --mandir=/usr/share/man \
+ --libexecdir=/usr/lib \
+ --with-tmpfilesdir=/usr/lib/tmpfiles.d \
+ --enable-gnfs")
+
+ pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
+
+def build():
+ autotools.make()
+
+def check():
+ autotools.make("check")
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+ pisitools.dodoc("AUTHORS", "COPYING*", "README*")
diff --git a/hardware/misc/glusterfs/pspec.xml b/hardware/misc/glusterfs/pspec.xml
new file mode 100644
index 0000000000..a8a9922276
--- /dev/null
+++ b/hardware/misc/glusterfs/pspec.xml
@@ -0,0 +1,91 @@
+
+
+
+
+ glusterfs
+ https://www.gluster.org/
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ GPLv2
+ library
+ app:console
+ a cluster file-system capable of scaling to several peta-bytes.
+ Gluster is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks. Gluster is free.
+ https://github.com/gluster/glusterfs/archive/refs/tags/v10.1.tar.gz
+
+ acl-devel
+ zlib-devel
+ curl-devel
+ fuse-devel
+ attr-devel
+ gperftools
+ spice-devel
+ libaio-devel
+ python3-devel
+ openssl-devel
+ libxml2-devel
+ liburcu-devel
+ libtirpc-devel
+ liburing-devel
+ readline-devel
+ spice-protocol
+ rpcsvc-proto-devel
+ libutil-linux-devel
+
+
+
+
+ glusterfs
+
+ acl
+ curl
+ zlib
+ attr
+ libaio
+ liburcu
+ libxml2
+ openssl
+ libtirpc
+ liburing
+ gperftools
+ libutil-linux
+
+
+ /usr/bin
+ /usr/lib
+ /var/lib/glusterd
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/glusterfs
+ /etc/glusterfs
+ /var/log
+ /etc/ganesha/ganesha-ha.conf.sample
+ /var/run/gluster
+
+
+
+
+ glusterfs-devel
+ Development files for glusterfs
+
+ libutil-linux-devel
+ glusterfs
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-02-05
+ 10.1
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/hardware/misc/glusterfs/translations.xml b/hardware/misc/glusterfs/translations.xml
new file mode 100644
index 0000000000..87d87111fe
--- /dev/null
+++ b/hardware/misc/glusterfs/translations.xml
@@ -0,0 +1,13 @@
+
+
+
+ glusterfs
+ GlusterFS, güçlü bir ağ/küme dosya sistemidir.
+ Gluster, ölçeklenebilir bir ağ dosya sistemidir. Yaygın kullanıma hazır donanımı kullanarak medya akışı, veri analizi ve diğer veri ve bant genişliği yoğun görevler için büyük, dağıtılmış depolama çözümleri oluşturabilirsiniz. Gluster ücretsizdir.
+
+
+
+ glusterfs-devel
+ glusterfs için geliştirme dosyaları
+
+
diff --git a/network/library/libiscsi/actions.py b/network/library/libiscsi/actions.py
new file mode 100644
index 0000000000..b4acfba3bd
--- /dev/null
+++ b/network/library/libiscsi/actions.py
@@ -0,0 +1,22 @@
+#!/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 autotools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.system("./autogen.sh")
+ autotools.configure("--disable-static")
+
+def build():
+ autotools.make()
+
+def install():
+ autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ pisitools.dodoc("COPYING", "README")
diff --git a/network/library/libiscsi/pspec.xml b/network/library/libiscsi/pspec.xml
new file mode 100644
index 0000000000..1fc682ab58
--- /dev/null
+++ b/network/library/libiscsi/pspec.xml
@@ -0,0 +1,58 @@
+
+
+
+
+ libiscsi
+ https://github.com/sahlberg/libiscsi
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ custom
+ library
+ Clientside library to implement the iSCSI protocol
+ Libiscsi is a client-side library to implement the iSCSI protocol that can be used to access the resources of an iSCSI target.
+ https://github.com/sahlberg/libiscsi/archive/refs/tags/1.19.0.tar.gz
+
+ popt-devel
+ glibc-devel
+ libgcrypt-devel
+
+
+
+
+ libiscsi
+
+ popt
+ libgcrypt
+
+
+ /usr/lib/libiscsi.so*
+ /usr/bin
+ /usr/share/man/man1
+ /usr/share/doc/libiscsi
+
+
+
+
+ libiscsi-devel
+ Development files for libiscsi
+
+ libiscsi
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+
+ 2022-02-05
+ 1.19.0
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
diff --git a/network/library/libiscsi/translations.xml b/network/library/libiscsi/translations.xml
new file mode 100644
index 0000000000..3247da1f36
--- /dev/null
+++ b/network/library/libiscsi/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ libiscsi
+ iSCSI protokolünü uygulamak için istemci tarafı kitaplığı
+ Libiscsi, bir iSCSI hedefinin kaynaklarına erişmek için kullanılabilecek iSCSI protokolünü uygulamaya yönelik bir istemci tarafı kitaplığıdır.
+
+
diff --git a/pisi-index.xml b/pisi-index.xml
index c0b897f44e..05672e8536 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -175639,6 +175639,66 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ dtc
+ https://github.com/telegramdesktop/dtc
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ GPL2
+ library
+ hardware.misc
+ Device Tree Compiler
+ Cihaz Ağacı Derleyicisi
+ Device Tree Compiler
+ Cihaz Ağacı Derleyicisi
+ https://mirrors.edge.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.xz
+
+ swig
+ meson
+ libyaml-devel
+ python3-devel
+ valgrind-devel
+
+ hardware/misc/dtc/pspec.xml
+
+
+ dtc
+
+ libyaml
+ valgrind
+
+
+ /usr/lib/libfdt.so*
+ /usr/share/doc
+ /usr/bin
+ /usr/lib/python3.9/site-packages
+
+
+
+ dtc-devel
+ Development files for dtc
+ dtc için geliştirme başlıkları
+
+ dtc
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-02-05
+ 1.6.1
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
ethtool
@@ -175862,6 +175922,97 @@ It supports email, address books, calendars, tasks, news feeds and much more.
+
+
+ glusterfs
+ https://www.gluster.org/
+
+ Pisi Linux Admins
+ admins@pisilinux.org
+
+ GPLv2
+ library
+ app:console
+ hardware.misc
+ a cluster file-system capable of scaling to several peta-bytes.
+ GlusterFS, güçlü bir ağ/küme dosya sistemidir.
+ Gluster is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks. Gluster is free.
+ Gluster, ölçeklenebilir bir ağ dosya sistemidir. Yaygın kullanıma hazır donanımı kullanarak medya akışı, veri analizi ve diğer veri ve bant genişliği yoğun görevler için büyük, dağıtılmış depolama çözümleri oluşturabilirsiniz. Gluster ücretsizdir.
+ https://github.com/gluster/glusterfs/archive/refs/tags/v10.1.tar.gz
+
+ acl-devel
+ zlib-devel
+ curl-devel
+ fuse-devel
+ attr-devel
+ gperftools
+ spice-devel
+ libaio-devel
+ python3-devel
+ openssl-devel
+ libxml2-devel
+ liburcu-devel
+ libtirpc-devel
+ liburing-devel
+ readline-devel
+ spice-protocol
+ rpcsvc-proto-devel
+ libutil-linux-devel
+
+ hardware/misc/glusterfs/pspec.xml
+
+
+ glusterfs
+
+ acl
+ curl
+ zlib
+ attr
+ libaio
+ liburcu
+ libxml2
+ openssl
+ libtirpc
+ liburing
+ gperftools
+ libutil-linux
+
+
+ /usr/bin
+ /usr/lib
+ /var/lib/glusterd
+ /usr/share/man
+ /usr/share/doc
+ /usr/share/glusterfs
+ /etc/glusterfs
+ /var/log
+ /etc/ganesha/ganesha-ha.conf.sample
+ /var/run/gluster
+
+
+
+ glusterfs-devel
+ Development files for glusterfs
+ glusterfs için geliştirme dosyaları
+
+ libutil-linux-devel
+ glusterfs
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-02-05
+ 10.1
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
gpm
@@ -228457,6 +228608,63 @@ functionality to build high-performing, platform-independent programs.
+
+
+ libiscsi
+ https://github.com/sahlberg/libiscsi
+
+ Kamil Atlı
+ suvari@pisilinux.org
+
+ custom
+ library
+ network.library
+ Clientside library to implement the iSCSI protocol
+ iSCSI protokolünü uygulamak için istemci tarafı kitaplığı
+ Libiscsi is a client-side library to implement the iSCSI protocol that can be used to access the resources of an iSCSI target.
+ Libiscsi, bir iSCSI hedefinin kaynaklarına erişmek için kullanılabilecek iSCSI protokolünü uygulamaya yönelik bir istemci tarafı kitaplığıdır.
+ https://github.com/sahlberg/libiscsi/archive/refs/tags/1.19.0.tar.gz
+
+ popt-devel
+ glibc-devel
+ libgcrypt-devel
+
+ network/library/libiscsi/pspec.xml
+
+
+ libiscsi
+
+ popt
+ libgcrypt
+
+
+ /usr/lib/libiscsi.so*
+ /usr/bin
+ /usr/share/man/man1
+ /usr/share/doc/libiscsi
+
+
+
+ libiscsi-devel
+ Development files for libiscsi
+
+ libiscsi
+
+
+ /usr/include
+ /usr/lib/pkgconfig
+
+
+
+
+ 2022-02-05
+ 1.19.0
+ First release
+ Kamil Atlı
+ suvari@pisilinux.org
+
+
+
libmbim
@@ -300196,7 +300404,7 @@ contacts, tasks, and calendar information.
programming.tool
static analysis of C/C++ code.
Cppcheck is a static analysis tool for C/C++ code. It provides unique code analysis to detect bugs and focuses on detecting undefined behaviour and dangerous coding constructs. The goal is to detect only real errors in the code (i.e. have very few false positives).
- mirrors://sourceforge/cppcheck/cppcheck-2.6.tar.bz2
+ mirrors://sourceforge/cppcheck/cppcheck-2.7.tar.bz2
cmake
z3-devel
@@ -300245,6 +300453,13 @@ contacts, tasks, and calendar information.
+
+ 2022-02-05
+ 2.7
+ Ver. bump
+ fury
+ uglyside@yandex.ru
+
2021-10-11
2.6
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index 502ef3e816..494cafaf69 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-80707e7adfb23ab8424abc17b8669d12dcb053f9
\ No newline at end of file
+96bbf16f260cad26ba80b6b2b8d603983f9d095e
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index f314a7aaf4..c1168a8d12 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 e1c254d49a..b1d480fefc 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-1d098a66f3c96c790ff2120660f6eefeba8a6ff9
\ No newline at end of file
+ebfd2aa01e08040c9d99a0607f65fd8eaebdf570
\ No newline at end of file