flowblade new package

This commit is contained in:
Rmys
2021-08-30 16:43:21 +03:00
parent 3f35d93518
commit a0444bdad8
8 changed files with 288 additions and 29 deletions
+26
View File
@@ -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 pythonmodules
from pisi.actionsapi import shelltools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def build():
shelltools.system("sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|g' flowblade-trunk/Flowblade/launch/*")
shelltools.system("sed -i -e 's|#!/usr/bin/env python|#!/usr/bin/python3|g' flowblade-trunk/Flowblade/tools/clapperless.py")
shelltools.cd("flowblade-trunk")
pythonmodules.compile(pyVer="3")
def install():
shelltools.cd("flowblade-trunk")
pythonmodules.install(pyVer="3")
shelltools.chmod(get.installDIR() + "/usr/lib/python3.8/site-packages/Flowblade/launch/*")
shelltools.chmod(get.installDIR() + "/usr/lib/python3.8/site-packages/Flowblade/tools/clapperless.py")
pisitools.dodoc("AUTHORS", "COPYING", "README*")
@@ -0,0 +1,23 @@
--- flowblade-trunk/flowblade.orig 2021-02-15 17:46:41.584404702 +0100
+++ flowblade-trunk/flowblade 2021-02-15 17:52:37.697270687 +0100
@@ -36,10 +36,10 @@
# - When running on distro.
if os.path.realpath(launch_dir) == "/usr/bin":
print ("Running from installation...")
- modules_path = "/usr/share/flowblade/Flowblade"
+ from distutils.sysconfig import get_python_lib
+ modules_path = "%s/Flowblade" % get_python_lib()
if not os.path.isdir(modules_path):
modules_path = "/usr/share/pyshared/Flowblade"
- print ("modules path:", modules_path)
# - When running in flatpak.
elif launch_dir == "/app/bin":
print ("Running from Flatpak installation...")
@@ -51,6 +51,7 @@
else:
print ("Running from filesystem...")
modules_path = launch_dir + "/Flowblade"
+ print ("modules path:", modules_path)
sys.path.insert(0, modules_path)
+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>flowblade</Name>
<Homepage>https://github.com/jliljebl/flowblade</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app</IsA>
<Summary>Multitrack non-linear video editor</Summary>
<Description>Çok kanallı doğrusal olmayan video düzenleyici</Description>
<Archive sha1sum="556e1b1b9df3ca1fb4df2080345a94134ab258b6" type="targz">https://github.com/jliljebl/flowblade/archive/refs/tags/v2.8.0.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>appstream-glib-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>fedora/flowblade_sys_path.patch</Patch>
</Patches>
</Source>
<Package>
<Name>flowblade</Name>
<RuntimeDependencies>
<Dependency>mlt</Dependency>
<Dependency>gmic</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>python3</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>python-mlt</Dependency>
<Dependency>dbus-python3</Dependency>
<Dependency>python3-numpy</Dependency>
<Dependency>python3-pillow</Dependency>
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="info">/usr/share/metainfo</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-08-30</Date>
<Version>2.8.0.3</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>flowblade</Name>
<Summary xml:lang="tr">Multitrack non-linear video editor</Summary>
<Description xml:lang="tr">Çok kanallı doğrusal olmayan video düzenleyici</Description>
</Source>
</PISI>
+168 -27
View File
@@ -18779,7 +18779,7 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">OpenGL and OpenGL ES shader front end and validator</Summary>
<Description xml:lang="en">OpenGL and OpenGL ES shader front end and validator</Description>
<Archive type="targz" sha1sum="57cc7e0e96d2b9407541b4c0e3f86cd2fa1e945e" name="11.5.0.tar.gz">https://github.com/KhronosGroup/glslang/archive/11.5.0.tar.gz</Archive>
<Archive type="targz" sha1sum="cceaa4d7d6037e4bebe0ff77d5385f6df7bc2d90" name="11.6.0.tar.gz">https://github.com/KhronosGroup/glslang/archive/11.6.0.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>python3-devel</Dependency>
@@ -18813,6 +18813,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="4">
<Date>2021-08-29</Date>
<Version>11.6.0</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2021-06-27</Date>
<Version>11.5.0</Version>
@@ -18849,7 +18856,7 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">SPIR-V Headers</Summary>
<Description xml:lang="en">SPIR-V Headers</Description>
<Archive type="targz" sha1sum="126ec50ef7daf7a3b93749de2db2a728001da63a" name="SPIRV-Headers-1.5.4.tar.gz">https://github.com/KhronosGroup/SPIRV-Headers/archive/dafead1765f6c1a5f9f8a76387dcb2abe4e54acd/spirv-headers-dafead1765f6c1a5f9f8a76387dcb2abe4e54acd.tar.gz</Archive>
<Archive type="targz" sha1sum="57e93c5a2aadedfcfc44f2b6118ecdcf7b014622" name="SPIRV-Headers-1.5.4.tar.gz">https://github.com/KhronosGroup/SPIRV-Headers/archive/449bc986ba6f4c5e10e32828783f9daef2a77644/spirv-headers-449bc986ba6f4c5e10e32828783f9daef2a77644.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
@@ -18864,6 +18871,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="4">
<Date>2021-08-29</Date>
<Version>1.5.4</Version>
<Comment>Git Version.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="3">
<Date>2021-06-28</Date>
<Version>1.5.4</Version>
@@ -18900,7 +18914,7 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">Vulkan Utilities and Tools</Summary>
<Description xml:lang="en">This project provides Khronos official Vulkan Tools and Utilities for Linux</Description>
<Archive type="targz" sha1sum="302a6f835ca477d660538fe3757f7fa417bdc3b5" name="Vulkan-Tools-1.2.182.tar.gz">https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.2.182.tar.gz</Archive>
<Archive type="targz" sha1sum="9c9e95b6235c16aafff0415a30239d7d6107d7f3" name="Vulkan-Tools-1.2.189.tar.gz">https://github.com/KhronosGroup/Vulkan-Tools/archive/v1.2.189.tar.gz</Archive>
<BuildDependencies>
<Dependency>libX11-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
@@ -18908,7 +18922,7 @@ complete albums that you have purchased from Amazon.</Description>
<Dependency>wayland-devel</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>vulkan-headers</Dependency>
<Dependency versionFrom="1.2.182">vulkan-devel</Dependency>
<Dependency versionFrom="1.2.189">vulkan-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>cmake</Dependency>
<Dependency>git</Dependency>
@@ -18937,6 +18951,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="5">
<Date>2021-08-29</Date>
<Version>1.2.189</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-06-28</Date>
<Version>1.2.182</Version>
@@ -18980,15 +19001,12 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">API and commands for processing SPIR-V modules</Summary>
<Description xml:lang="en">API and commands for processing SPIR-V modules</Description>
<Archive type="targz" sha1sum="d5cb466155341b927db52b2f16710694c1716eaa" name="v2021.2.tar.gz">https://github.com/KhronosGroup/SPIRV-Tools/archive/v2021.2.tar.gz</Archive>
<Archive type="targz" sha1sum="b93f36d7bc357e53b22d86f9b683624dbbcebd3d" name="v2021.3.tar.gz">https://github.com/KhronosGroup/SPIRV-Tools/archive/v2021.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>spirv-headers</Dependency>
<Dependency>python3-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">spirv-tools-gcc11.patch</Patch>
</Patches>
<SourceURI>x11/vulkan/spirv-tools/pspec.xml</SourceURI>
</Source>
<Package>
@@ -19017,6 +19035,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="5">
<Date>2021-08-29</Date>
<Version>2021.3</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-06-27</Date>
<Version>2021.2</Version>
@@ -19060,7 +19085,7 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">Vulkan headers</Summary>
<Description xml:lang="en">Vulkan headers</Description>
<Archive type="targz" sha1sum="9c59189b5e69d5ee3e5886af72bc0f945f850c19" name="Vulkan-Headers-1.2.182.tar.gz">https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.2.182.tar.gz</Archive>
<Archive type="targz" sha1sum="72e8a3aeb2a91f83bb72a984bc5bbee0baf26ac9" name="Vulkan-Headers-1.2.189.tar.gz">https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.2.189.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>python3-devel</Dependency>
@@ -19076,6 +19101,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="5">
<Date>2021-08-29</Date>
<Version>1.2.189</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-06-27</Date>
<Version>1.2.182</Version>
@@ -19210,8 +19242,8 @@ complete albums that you have purchased from Amazon.</Description>
<PartOf>x11.vulkan</PartOf>
<Summary xml:lang="en">Vulkan headers, loaders and validations layers</Summary>
<Description xml:lang="en">Vulkan headers, loaders and validations layers</Description>
<Archive type="targz" sha1sum="aabad1b6ac185d6caea0fb2e5af8f2919c6218ff" name="Vulkan-Loader-1.2.182.tar.gz">https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.2.182.tar.gz</Archive>
<Archive type="targz" sha1sum="21fc025f9cc400f63ac00a682643c45a2c6b0a5e" name="Vulkan-ValidationLayers-1.2.182.tar.gz">https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.182.tar.gz</Archive>
<Archive type="targz" sha1sum="26ce4a45044fa96ece0a5771c7ae1577b26658d6" name="Vulkan-Loader-1.2.189.tar.gz">https://github.com/KhronosGroup/Vulkan-Loader/archive/v1.2.189.tar.gz</Archive>
<Archive type="targz" sha1sum="c34bf36b0378822407db611d7f0cfd23f19eec46" name="Vulkan-ValidationLayers-1.2.189.tar.gz">https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/v1.2.189.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-lxml</Dependency>
<Dependency>libX11-devel</Dependency>
@@ -19269,7 +19301,7 @@ complete albums that you have purchased from Amazon.</Description>
<Package>
<Name>vulkan-devel</Name>
<RuntimeDependencies>
<Dependency release="4">vulkan</Dependency>
<Dependency release="5">vulkan</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -19278,6 +19310,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="5">
<Date>2021-08-29</Date>
<Version>1.2.189</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="4">
<Date>2021-06-27</Date>
<Version>1.2.182</Version>
@@ -28186,7 +28225,7 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="c019342dd3e7071d944b6efae5b3e058d77f46be" name="beforelight-1.0.5.tar.bz2">mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="26ba3130b14a2db81b427f2353ac21301c5d2527" name="bitmap-1.0.9.tar.bz2">mirrors://xorg/individual/app/bitmap-1.0.9.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="389e953ebb5080564a6780cb34b72bafae7f5540" name="editres-1.0.7.tar.bz2">mirrors://xorg/individual/app/editres-1.0.7.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="0e0ea8c92941bf9126b87fae5bb723c8e1035ae2" name="fonttosfnt-1.1.0.tar.bz2">mirrors://xorg/individual/app/fonttosfnt-1.1.0.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="d59b4d4d602705a9bdeeb12728c3aef0530e5e66" name="fonttosfnt-1.2.2.tar.bz2">mirrors://xorg/individual/app/fonttosfnt-1.2.2.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="0a0d37c65a8cdd3aff22d633b5ed164e864929d4" name="fslsfonts-1.0.5.tar.bz2">mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="aeafc2cd82092168d0bc4b94c5a27d7e070598fd" name="fstobdf-1.0.6.tar.bz2">mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="2ce23c40a17d98badeb8ce70d26e81a5ac0e178c" name="iceauth-1.0.8.tar.bz2">mirrors://xorg/individual/app/iceauth-1.0.8.tar.bz2</Archive>
@@ -28205,7 +28244,7 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="44783734bc58fca93165a20da0bb3eca1ccb9ad9" name="setxkbmap-1.3.2.tar.bz2">mirrors://xorg/individual/app/setxkbmap-1.3.2.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="203f4e655333723af7b2c47a85dfba8258f22ebc" name="showfont-1.0.5.tar.bz2">mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="bbb374ad7e184af7bcada70b90df81f82b9b71ad" name="smproxy-1.0.6.tar.bz2">mirrors://xorg/individual/app/smproxy-1.0.6.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="f632a47620dfe6d75b003839d269b14fa22b262e" name="twm-1.0.10.tar.bz2">mirrors://xorg/individual/app/twm-1.0.10.tar.bz2</Archive>
<Archive type="tarxz" sha1sum="d6cb6d846ea669983efb25045a4bfc8b1a90f427" name="twm-1.0.11.tar.xz">mirrors://xorg/individual/app/twm-1.0.11.tar.xz</Archive>
<Archive type="tarbz2" sha1sum="f1d12e5b4e1180916edb44234599a486b025b480" name="viewres-1.0.6.tar.bz2">mirrors://xorg/individual/app/viewres-1.0.6.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="c54ebef80b6cb565397fe2e3069e0d7470027e5a" name="x11perf-1.6.1.tar.bz2">mirrors://xorg/individual/app/x11perf-1.6.1.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="16180e36d75a23cb182cb91e78f24273f1a63967" name="xauth-1.1.tar.bz2">mirrors://xorg/individual/app/xauth-1.1.tar.bz2</Archive>
@@ -28222,8 +28261,8 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="f06f65bca31168c86bcebd7f92dbbda08817a5cc" name="xditview-1.0.5.tar.bz2">mirrors://xorg/individual/app/xditview-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="0922fc31f8fc82ac20e326a6c9eb33ed7d57ad87" name="xdpyinfo-1.3.2.tar.bz2">mirrors://xorg/individual/app/xdpyinfo-1.3.2.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="f37b5d0f8ec461955f0419dbb1890d8cf63d179d" name="xedit-1.2.2.tar.bz2">mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="3a294934b9e150abc3cccc4182a40ed9b5ea9871" name="xev-1.2.3.tar.bz2">mirrors://xorg/individual/app/xev-1.2.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="458987f8accdbd8abf993ee51030391cf584d2e8" name="xeyes-1.1.2.tar.bz2">mirrors://xorg/individual/app/xeyes-1.1.2.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="76d182ba0f57449fbc7a7a467dfb7f1df767b873" name="xev-1.2.4.tar.bz2">mirrors://xorg/individual/app/xev-1.2.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="5cf193ef629ee3d65cc122096467450c2caa4edb" name="xeyes-1.2.0.tar.bz2">mirrors://xorg/individual/app/xeyes-1.2.0.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="030659e3728f5f7142e1cf727f147aceeabe4b9e" name="xf86dga-1.0.3.tar.bz2">mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="ca6dbe2027b205992a52c6bb717a43508f12a8c4" name="xfd-1.1.3.tar.bz2">mirrors://xorg/individual/app/xfd-1.1.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="9fb43a73ff805bfe2d4b7d49831dd1cf26d6f3f0" name="xfindproxy-1.0.4.tar.bz2">mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2</Archive>
@@ -28235,7 +28274,7 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="642f9a286bac77ccb20ee42d03920028f6f5894b" name="xgc-1.0.5.tar.bz2">mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="971670858a464d4f8eeb6f4e182f9fcd94149790" name="xhost-1.0.8.tar.bz2">mirrors://xorg/individual/app/xhost-1.0.8.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="92ea7dfb3d8465921b0dca85da7d5b01cedae6c8" name="xinput-1.6.3.tar.bz2">mirrors://xorg/individual/app/xinput-1.6.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="cc8070e5d54273c8d9120571710d0e7c4a58a59a" name="xkbcomp-1.4.3.tar.bz2">mirrors://xorg/individual/app/xkbcomp-1.4.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="3505b70268572375078982cab98aeb96f72ff14c" name="xkbcomp-1.4.5.tar.bz2">mirrors://xorg/individual/app/xkbcomp-1.4.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="629fea940692f9d971dfae36cd697b13337caaba" name="xkbevd-1.1.4.tar.bz2">mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="e707caffb3c680b3a869a776aa3f80caeac9e9c3" name="xkbprint-1.0.5.tar.bz2">mirrors://xorg/individual/app/xkbprint-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="b09aef7cc3853eb12dbda332f55adec3add4447b" name="xkbutils-1.0.4.tar.bz2">mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2</Archive>
@@ -28252,9 +28291,9 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="69e041f8a8c501bd1feb68805a0880633a685bc8" name="xmodmap-1.0.10.tar.bz2">mirrors://xorg/individual/app/xmodmap-1.0.10.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="b57b92afd783d28c4c505e0c95556939f24c3ec9" name="xmore-1.0.3.tar.bz2">mirrors://xorg/individual/app/xmore-1.0.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="0632c7d8632ac9d23f285811aaea805a2956e155" name="xpr-1.0.5.tar.bz2">mirrors://xorg/individual/app/xpr-1.0.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="0549a927d01930218f1d0089d0157eb9538b34a5" name="xprop-1.2.4.tar.bz2">mirrors://xorg/individual/app/xprop-1.2.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="b2b69b50f0906df54c7e9fa4457f509650799417" name="xprop-1.2.5.tar.bz2">mirrors://xorg/individual/app/xprop-1.2.5.tar.bz2</Archive>
<Archive type="tarxz" sha1sum="9f72957e0d2a26ece509336ea7e1529cc9ea881e" name="xrandr-1.5.1.tar.xz">mirrors://xorg/individual/app/xrandr-1.5.1.tar.xz</Archive>
<Archive type="tarbz2" sha1sum="79596928246288a217abdec0e4a2315ec9b07963" name="xrdb-1.2.0.tar.bz2">mirrors://xorg/individual/app/xrdb-1.2.0.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="8870fe979964ef86321014e7986e4bc0909191b0" name="xrdb-1.2.1.tar.bz2">mirrors://xorg/individual/app/xrdb-1.2.1.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="11eb5b3f905631281d2cedd86a0b666bab0d9bdc" name="xrefresh-1.0.6.tar.bz2">mirrors://xorg/individual/app/xrefresh-1.0.6.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="41a857f30ff5bb0dfbda1549bb703984344ea228" name="xset-1.2.4.tar.bz2">mirrors://xorg/individual/app/xset-1.2.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="add4e6a91c9d0e7d1a80b3534c64d6b7bf633ea0" name="xsetmode-1.0.0.tar.bz2">mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2</Archive>
@@ -28264,7 +28303,7 @@ complete albums that you have purchased from Amazon.</Description>
<Archive type="tarbz2" sha1sum="a5eff72ba31625e5b11506add800140019a39636" name="xstdcmap-1.0.4.tar.bz2">mirrors://xorg/individual/app/xstdcmap-1.0.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="5ed9967f61cb7f6698fc6da6a2ca7afc5305468d" name="xvidtune-1.0.3.tar.bz2">mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="136a70a72b23c81f4fe8f4c8cb7073316be16b44" name="xvinfo-1.1.4.tar.bz2">mirrors://xorg/individual/app/xvinfo-1.1.4.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="65ce0617be29687cf6082c3a0e85d15a0dcccda9" name="xwd-1.0.7.tar.bz2">mirrors://xorg/individual/app/xwd-1.0.7.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="717a45932c729fd67e4104c9d1469e52f276b0b2" name="xwd-1.0.8.tar.bz2">mirrors://xorg/individual/app/xwd-1.0.8.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="9f67b1eb07c5824d437bf577cf6198962af1aeb7" name="xwininfo-1.1.5.tar.bz2">mirrors://xorg/individual/app/xwininfo-1.1.5.tar.bz2</Archive>
<Archive type="tarbz2" sha1sum="a85d84a1b81f8e667ea6ac126d447590c93eb079" name="xwud-1.0.5.tar.bz2">mirrors://xorg/individual/app/xwud-1.0.5.tar.bz2</Archive>
<BuildDependencies>
@@ -28371,6 +28410,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="10">
<Date>2021-08-28</Date>
<Version>7.7</Version>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="9">
<Date>2020-03-25</Date>
<Version>7.7</Version>
@@ -30383,7 +30429,7 @@ complete albums that you have purchased from Amazon.</Description>
<Summary xml:lang="tr">Küçük, sağlam ve yüksek performanslı http ve ters vekil sunucusu</Summary>
<Description xml:lang="en">Nginx is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Written by Igor Sysoev in 2005, Nginx now hosts between 1% and 4% of all domains worldwide. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption.</Description>
<Description xml:lang="tr">nginx, özgür, açık kaynaklı, yüksek performanslı bir HTTP, ters vekil (reverse proxy) ve aynı zamanda IMAP/POP3 sunucusudur.</Description>
<Archive type="targz" sha1sum="dcb4208124319082d3672d38a24a4127bab2d663" name="nginx-1.17.8.tar.gz">http://nginx.org/download/nginx-1.17.8.tar.gz</Archive>
<Archive type="targz" sha1sum="6b4ab4eff3c617e133819f43fdfc14708e593a79" name="nginx-1.20.1.tar.gz">http://nginx.org/download/nginx-1.20.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>perl</Dependency>
<Dependency>gd-devel</Dependency>
@@ -30439,6 +30485,13 @@ complete albums that you have purchased from Amazon.</Description>
</AdditionalFiles>
</Package>
<History>
<Update release="3">
<Date>2021-08-29</Date>
<Version>1.20.1</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2020-01-27</Date>
<Version>1.17.8</Version>
@@ -43332,9 +43385,12 @@ complete albums that you have purchased from Amazon.</Description>
<Description xml:lang="tr">MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır.</Description>
<Archive type="targz" sha1sum="1540b23483cf9c741795321404dac2446d517366" name="mlt-6.26.1.tar.gz">https://github.com/mltframework/mlt/releases/download/v6.26.1/mlt-6.26.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>swig</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>pango-devel</Dependency>
<Dependency>opencv-devel</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>frei0r-plugins-devel</Dependency>
@@ -43367,7 +43423,7 @@ complete albums that you have purchased from Amazon.</Description>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>perl</Dependency>
<Dependency release="12">mlt</Dependency>
<Dependency release="13">mlt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/perl*</Path>
@@ -43381,7 +43437,7 @@ complete albums that you have purchased from Amazon.</Description>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>python3</Dependency>
<Dependency release="12">mlt</Dependency>
<Dependency release="13">mlt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python*</Path>
@@ -43391,9 +43447,11 @@ complete albums that you have purchased from Amazon.</Description>
<Name>mlt</Name>
<RuntimeDependencies>
<Dependency>sox</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>fftw3</Dependency>
<Dependency>pango</Dependency>
<Dependency>glib2</Dependency>
<Dependency>opencv</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
@@ -43417,6 +43475,7 @@ complete albums that you have purchased from Amazon.</Description>
<Path fileType="library">/usr/lib</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="data">/usr/share/mlt</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="data">/usr/share/mlt/modules</Path>
<Path fileType="data">/usr/share/mlt/modules/lumas/PAL</Path>
</Files>
@@ -43426,7 +43485,7 @@ complete albums that you have purchased from Amazon.</Description>
<Summary xml:lang="en">Development files for mlt</Summary>
<Summary xml:lang="tr">mlt için geliştirme dosyaları</Summary>
<RuntimeDependencies>
<Dependency release="12">mlt</Dependency>
<Dependency release="13">mlt</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -43435,6 +43494,13 @@ complete albums that you have purchased from Amazon.</Description>
</Files>
</Package>
<History>
<Update release="13">
<Date>2021-08-30</Date>
<Version>6.26.1</Version>
<Comment>Rebuild</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="12">
<Date>2021-06-17</Date>
<Version>6.26.1</Version>
@@ -59217,6 +59283,67 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>flowblade</Name>
<Homepage>https://github.com/jliljebl/flowblade</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv3</License>
<IsA>app</IsA>
<PartOf>multimedia.converter</PartOf>
<Summary xml:lang="en">Multitrack non-linear video editor</Summary>
<Summary xml:lang="tr">Multitrack non-linear video editor</Summary>
<Description xml:lang="en">Çok kanallı doğrusal olmayan video düzenleyici</Description>
<Description xml:lang="tr">Çok kanallı doğrusal olmayan video düzenleyici</Description>
<Archive type="targz" sha1sum="556e1b1b9df3ca1fb4df2080345a94134ab258b6" name="v2.8.0.3.tar.gz">https://github.com/jliljebl/flowblade/archive/refs/tags/v2.8.0.3.tar.gz</Archive>
<BuildDependencies>
<Dependency>python3-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>python3-setuptools</Dependency>
<Dependency>appstream-glib-devel</Dependency>
</BuildDependencies>
<Patches>
<Patch>fedora/flowblade_sys_path.patch</Patch>
</Patches>
<SourceURI>multimedia/converter/flowblade/pspec.xml</SourceURI>
</Source>
<Package>
<Name>flowblade</Name>
<RuntimeDependencies>
<Dependency>mlt</Dependency>
<Dependency>gmic</Dependency>
<Dependency>gtk3</Dependency>
<Dependency>ffmpeg</Dependency>
<Dependency>python3</Dependency>
<Dependency>librsvg</Dependency>
<Dependency>python-mlt</Dependency>
<Dependency>dbus-python3</Dependency>
<Dependency>python3-numpy</Dependency>
<Dependency>python3-pillow</Dependency>
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="info">/usr/share/metainfo</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-08-30</Date>
<Version>2.8.0.3</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>flacon</Name>
@@ -73177,7 +73304,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Summary xml:lang="tr">An open standard for virtual reality and augmented reality platforms and devices</Summary>
<Description xml:lang="en">An open standard for virtual reality and augmented reality platforms and devices</Description>
<Description xml:lang="tr">An open standard for virtual reality and augmented reality platforms and devices</Description>
<Archive type="targz" sha1sum="c6c23d018c3f00f2c2c93b04b5fa9e84727c6040" name="release-1.0.18.tar.gz">https://github.com/KhronosGroup/OpenXR-SDK-Source/archive/release-1.0.18.tar.gz</Archive>
<Archive type="targz" sha1sum="300153494a190f1d2a96c33eeb62649c32f0066b" name="release-1.0.19.tar.gz">https://github.com/KhronosGroup/OpenXR-SDK-Source/archive/release-1.0.19.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>mesa-devel</Dependency>
@@ -73217,7 +73344,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Name>openxr-devel</Name>
<Summary xml:lang="en">Development files for openxr</Summary>
<RuntimeDependencies>
<Dependency release="2">openxr</Dependency>
<Dependency release="3">openxr</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
@@ -73226,6 +73353,13 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
</Files>
</Package>
<History>
<Update release="3">
<Date>2021-08-29</Date>
<Version>1.0.19</Version>
<Comment>Version bump.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="2">
<Date>2021-08-07</Date>
<Version>1.0.18</Version>
@@ -158535,7 +158669,7 @@ Bu Skype SILK codec ve Xiph.Org &apos;s Celt codec teknolojisi dahil RFC 6716 ol
<Update release="36">
<Date>2021-06-16</Date>
<Version>21.04.2</Version>
<Comment>Version bump.</Comment>
<Comment>Version bump</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
@@ -199941,6 +200075,13 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Files>
</Package>
<History>
<Update release="12">
<Date>2021-08-29</Date>
<Version>0.8.1</Version>
<Comment>Rebuild.</Comment>
<Name>Mustafa Cinasal</Name>
<Email>muscnsl@gmail.com</Email>
</Update>
<Update release="11">
<Date>2021-06-22</Date>
<Version>0.8.1</Version>
+1 -1
View File
@@ -1 +1 @@
e422eb464725994e5748e2ed85ce73450a2dc415
bcafbe6095e18fcd63de6e2dfdd32d89a66efc0f
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
b3f2733e6c905952a23e77c8544c0025072bd2fc
525302f0082abf770297b4d4cab2595789389fdc