Merge pull request #9932 from 4fury-c3440d8/no

mlk-based gui apps.
This commit is contained in:
Kamil ATLI
2021-12-11 20:20:54 +03:00
committed by GitHub
9 changed files with 216 additions and 9 deletions
+9 -2
View File
@@ -15,8 +15,8 @@
<Description>
A font viewer that directly reads and previews font files. It uses new mlk gui toolchain.
</Description>
<Archive sha1sum="dbf71ceca1c4f90778f660912d983f3ad4c4cea6" type="tarxz">
http://azsky2.html.xdomain.jp/arc/azfontviewer-1.0.1.tar.xz
<Archive sha1sum="48ac2d1269b527e485cb252c6b6db1a5d17f51d4" type="tarbz2">
https://gitlab.com/azelpg/azfontviewer/-/archive/v1.0.2/azfontviewer-v1.0.2.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>zlib-devel</Dependency>
@@ -47,6 +47,13 @@
</Package>
<History>
<Update release="2">
<Date>2021-12-11</Date>
<Version>1.0.2</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-05-25</Date>
<Version>1.0.1</Version>
+9 -2
View File
@@ -13,8 +13,8 @@
<PartOf>desktop.misc</PartOf>
<Summary>Lightweight and customizable notification daemon.</Summary>
<Description>Dunst is a lightweight replacement for the notification daemons provided by most desktop environments. Its very customizable, isnt dependent on any toolkits, and therefore fits into those window manager centric setups we all love to customize to perfection.</Description>
<Archive sha1sum="c1420820c89e3a3a4d2f94549138e1d3793d415b" type="targz">
https://github.com/dunst-project/dunst/archive/refs/tags/v1.7.2.tar.gz
<Archive sha1sum="69b1e9a753450bda0bf0090726412b9b543eeaf2" type="targz">
https://github.com/dunst-project/dunst/archive/refs/tags/v1.7.3.tar.gz
</Archive>
<BuildDependencies>
<Dependency>dbus-devel</Dependency>
@@ -60,6 +60,13 @@
</Package>
<History>
<Update release="4">
<Date>2021-12-11</Date>
<Version>1.7.3</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="3">
<Date>2021-12-02</Date>
<Version>1.7.2</Version>
+9 -2
View File
@@ -13,8 +13,8 @@
<PartOf>desktop.toolkit.mlk</PartOf>
<Summary>mlk style editor.</Summary>
<Description>mlk widget style editor.</Description>
<Archive sha1sum="be0560f64293d7cf79a6d4ba1f7e6b9aab69842a" type="tarxz">
http://azsky2.html.xdomain.jp/arc/mlkstyle-1.0.3.tar.xz
<Archive sha1sum="703a1af578d2e95392084836b571a7df5d9dcf84" type="tarbz2">
https://gitlab.com/azelpg/mlkstyle/-/archive/v1.0.4/mlkstyle-v1.0.4.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>zlib-devel</Dependency>
@@ -47,6 +47,13 @@
</Package>
<History>
<Update release="2">
<Date>2021-12-11</Date>
<Version>1.0.4</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-05-25</Date>
<Version>1.0.3</Version>
+8 -1
View File
@@ -14,7 +14,7 @@
<Description>
xfce4-terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more
</Description>
<Archive sha1sum="aff3b795030b3c997b06d93e0326f1c578253666" type="tarbz2">https://archive.xfce.org/src/apps/xfce4-terminal/0.9/xfce4-terminal-0.9.0.tar.bz2</Archive>
<Archive sha1sum="de42306bd35fa2b22b2f9eb9e41fa798f52cd9db" type="tarbz2">https://archive.xfce.org/src/apps/xfce4-terminal/0.9/xfce4-terminal-0.9.1.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>vte-devel</Dependency>
@@ -54,6 +54,13 @@
</Package>
<History>
<Update release="4">
<Date>2021-12-11</Date>
<Version>0.9.1</Version>
<Comment>Version bump.</Comment>
<Email>uglyside@yandex.ru</Email>
<Name>fury</Name>
</Update>
<Update release="3">
<Date>2021-10-16</Date>
<Version>0.9.0</Version>
+24
View File
@@ -0,0 +1,24 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import shelltools, autotools, pisitools, get
def setup():
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
def build():
autotools.make()
# doc compilation.
shelltools.cd("doc")
autotools.make("html man")
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# doc installation.
pisitools.doman("doc/_build/man/*")
shelltools.copytree("doc/_build/html", "%s/usr/share/vapoursynth/html" % get.installDIR())
+75
View File
@@ -0,0 +1,75 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>vapoursynth</Name>
<Homepage>https://vapoursynth.com/doc/</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>LGPL-2.1</License>
<IsA>app:console</IsA>
<PartOf>multimedia.editor</PartOf>
<Summary>A video processing framework with simplicity in mind.</Summary>
<Description>VapourSynth is an application for video manipulation. It has a core library written in C++ and a Python module to allow video scripts to be created.</Description>
<Archive sha1sum="5ddc97e22930ca369ed5b93c1898a2fd0dce133c" type="targz">
https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R57.tar.gz
</Archive>
<BuildDependencies>
<Dependency>nasm</Dependency>
<Dependency>cython3</Dependency>
<Dependency>python3-devel</Dependency>
<Dependency>libzimg-devel</Dependency>
<Dependency>python3-sphinx</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>vapoursynth</Name>
<RuntimeDependencies>
<Dependency>ffmpeg</Dependency>
<Dependency>python3</Dependency>
<Dependency>libzimg</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/python3.9/site-packages/</Path>
<Path fileType="man">/usr/share/man</Path>
</Files>
</Package>
<Package>
<Name>vapoursynth-doc</Name>
<RuntimeDependencies>
<!-- <Dependency></Dependency> -->
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/vapoursynth/html</Path>
</Files>
</Package>
<Package>
<Name>vapoursynth-devel</Name>
<RuntimeDependencies>
<Dependency release="current">vapoursynth</Dependency>
<Dependency>libzimg-devel</Dependency>
<Dependency>python3-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="header">/usr/include/vapoursynth</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-12-11</Date>
<Version>57</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>
+9 -2
View File
@@ -15,8 +15,8 @@
<Description>
Full color painting software for Linux for illustration drawing. This is not suitable for dot editing. Since the color is handled with 16 bit color (15 bit fixed point number) internally, the accuracy of color rises, but the memory is consumed correspondingly.
</Description>
<Archive sha1sum="98f9a564b03c22adcc92c549bda22191890c0cac" type="tarbz2">
https://gitlab.com/azelpg/azpainter/-/archive/v3.0.3/azpainter-v3.0.3.tar.bz2
<Archive sha1sum="1a3f451fde36104be185111e95aa72f300bb3c56" type="tarbz2">
https://gitlab.com/azelpg/azpainter/-/archive/v3.0.4/azpainter-v3.0.4.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>tiff-devel</Dependency>
@@ -54,6 +54,13 @@
</Package>
<History>
<Update release="7">
<Date>2021-12-11</Date>
<Version>3.0.4</Version>
<Comment>Ver. bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="6">
<Date>2021-07-10</Date>
<Version>3.0.3</Version>
@@ -0,0 +1,16 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools, pisitools, get
def setup():
autotools.rawConfigure("--prefix=/usr")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>vasviewer</Name>
<Homepage>http://azsky2.html.xdomain.jp/soft/vasviewer.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Packager>
<License>MIT</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.videoplayer</PartOf>
<Summary>VapourSynth viewer.</Summary>
<Description>Load the script file and display the frame image. Also you can save the frame image as PNG.</Description>
<Archive sha1sum="36ee67f52c397d154b9ce35e89d3a1d62322931d" type="tarbz2">
https://gitlab.com/azelpg/vasviewer/-/archive/v1.0.1/vasviewer-v1.0.1.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>vapoursynth-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>vasviewer</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>vapoursynth</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="data">/usr/share/vasviewer</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2021-12-11</Date>
<Version>1.0.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
</History>
</PISI>