diff --git a/pisi-index.xml b/pisi-index.xml
index 9433f928df..c31bc40e68 100644
--- a/pisi-index.xml
+++ b/pisi-index.xml
@@ -42514,7 +42514,7 @@ complete albums that you have purchased from Amazon.
VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci.
VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia
vlc
- http://mirrors.netix.net/vlc/vlc/3.0.14/vlc-3.0.14.tar.xz
+ http://mirrors.netix.net/vlc/vlc/3.0.16/vlc-3.0.16.tar.xz
srt-devel
qt5-svg-devel
@@ -42653,7 +42653,7 @@ complete albums that you have purchased from Amazon.
libX11
libgcc
freetype
- vlc-libs
+ vlc-libs
libXinerama
dejavu-fonts
@@ -42679,7 +42679,7 @@ complete albums that you have purchased from Amazon.
Lua scripting for VLC
lua
- vlc-libs
+ vlc-libs
/usr/lib/vlc/lua
@@ -42791,7 +42791,7 @@ complete albums that you have purchased from Amazon.
vlc için geliştirme dosyaları
Pliki nagłówkowe vlc
- vlc-libs
+ vlc-libs
/usr/include
@@ -42799,6 +42799,13 @@ complete albums that you have purchased from Amazon.
+
+ 2021-06-30
+ 3.0.16
+ Version bump.
+ Mustafa Cinasal
+ muscnsl@gmail.com
+
2021-06-04
3.0.14
@@ -261321,6 +261328,60 @@ to create header files and sources from protocol files.
+
+
+ pystring
+ https://github.com/imageworks/pystring
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ BSD
+ library
+ programming.library
+ Pystring is a collection of C++ functions which match the interface and behavior of python
+ Pystring is a collection of C++ functions which match the interface and behavior of python
+ Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur.
+ Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur.
+ https://github.com/imageworks/pystring/archive/refs/heads/master.zip
+
+ fedora/CMakeLists.txt
+
+
+ cmake
+
+ programming/library/pystring/pspec.xml
+
+
+ pystring
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+ pystring-devel
+ Development files for pystring
+
+ pystring
+
+
+ /usr/include
+
+
+
+
+ 2021-06-30
+ 1.1.3
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
libsass
diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum
index e2324546c5..10a4f9a47c 100644
--- a/pisi-index.xml.sha1sum
+++ b/pisi-index.xml.sha1sum
@@ -1 +1 @@
-d31ba33664c7711cfbb46720759653bc69d8f218
\ No newline at end of file
+9c7bb64da329259e2007e8e0d32194eeaa296c8d
\ No newline at end of file
diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz
index 8773047975..bfcfe28174 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 83260c58ab..f96c037f81 100644
--- a/pisi-index.xml.xz.sha1sum
+++ b/pisi-index.xml.xz.sha1sum
@@ -1 +1 @@
-6c905b595d6ce621c770c61f256fa952e095d5b0
\ No newline at end of file
+b728c1732e3ecad931f770f6a346728c1aac15e8
\ No newline at end of file
diff --git a/programming/library/pystring/actions.py b/programming/library/pystring/actions.py
new file mode 100644
index 0000000000..ee34f79d9c
--- /dev/null
+++ b/programming/library/pystring/actions.py
@@ -0,0 +1,26 @@
+#!/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 cmaketools
+from pisi.actionsapi import pisitools
+from pisi.actionsapi import shelltools
+from pisi.actionsapi import get
+
+def setup():
+ shelltools.makedirs("build")
+ shelltools.cd("build")
+ cmaketools.configure(sourceDir="..")
+
+def build():
+ shelltools.cd("build")
+ cmaketools.make()
+
+def install():
+ shelltools.cd("build")
+ cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
+
+ shelltools.cd("..")
+ pisitools.dodoc("README*")
diff --git a/programming/library/pystring/files/fedora/CMakeLists.txt b/programming/library/pystring/files/fedora/CMakeLists.txt
new file mode 100644
index 0000000000..7077dbc0d8
--- /dev/null
+++ b/programming/library/pystring/files/fedora/CMakeLists.txt
@@ -0,0 +1,31 @@
+project(pystring
+ LANGUAGES CXX
+ )
+
+cmake_minimum_required(VERSION 3.0)
+
+set(CMAKE_CXX_FLAGS "-O3 -Wall -Wextra -Wshadow -Wconversion -Wcast-qual -Wformat=2 ${CMAKE_CXX_FLAGS}")
+
+include(GNUInstallDirs)
+mark_as_advanced(CLEAR CMAKE_INSTALL_LIBDIR
+ CMAKE_INSTALL_INCLUDEDIR
+ )
+
+add_library(pystring SHARED
+ pystring.cpp
+ )
+
+set_target_properties(pystring PROPERTIES
+ SOVERSION 0.0
+ )
+
+install(TARGETS pystring
+ LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
+ )
+
+install(FILES pystring.h
+ DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/pystring
+ )
+
+add_executable(test pystring.cpp test.cpp)
+target_compile_definitions(test PRIVATE PYSTRING_UNITTEST=1)
diff --git a/programming/library/pystring/pspec.xml b/programming/library/pystring/pspec.xml
new file mode 100644
index 0000000000..3e859d762f
--- /dev/null
+++ b/programming/library/pystring/pspec.xml
@@ -0,0 +1,55 @@
+
+
+
+
+ pystring
+ https://github.com/imageworks/pystring
+
+ PisiLinux Community
+ admins@pisilinux.org
+
+ BSD
+ library
+ Pystring is a collection of C++ functions which match the interface and behavior of python
+ Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur.
+ https://github.com/imageworks/pystring/archive/refs/heads/master.zip
+
+ fedora/CMakeLists.txt
+
+
+ cmake
+
+
+
+
+ pystring
+
+ libgcc
+
+
+ /usr/lib
+ /usr/share/doc
+
+
+
+
+ pystring-devel
+ Development files for pystring
+
+ pystring
+
+
+ /usr/include
+
+
+
+
+
+ 2021-06-30
+ 1.1.3
+ First release
+ PisiLinux Community
+ admins@pisilinux.org
+
+
+
diff --git a/programming/library/pystring/translations.xml b/programming/library/pystring/translations.xml
new file mode 100644
index 0000000000..cc46b3c870
--- /dev/null
+++ b/programming/library/pystring/translations.xml
@@ -0,0 +1,8 @@
+
+
+
+ pystring
+ Pystring is a collection of C++ functions which match the interface and behavior of python
+ Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur.
+
+