Merge pull request #10998 from 4fury-c3440d8/b1

updates.
This commit is contained in:
Rmys
2022-11-15 14:13:33 +03:00
committed by GitHub
23 changed files with 299 additions and 86 deletions
+3 -2
View File
@@ -7,6 +7,7 @@
from pisi.actionsapi import shelltools, autotools, pisitools, get
def setup():
pisitools.dosed("doc/apireference.rst", "api", deleteLine = True)
autotools.autoreconf("-vif")
autotools.configure("--disable-static")
@@ -14,11 +15,11 @@ def build():
autotools.make()
# doc compilation.
shelltools.cd("doc")
autotools.make("html man")
autotools.make("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())
#shelltools.copytree("doc/_build/html", "%s/usr/share/vapoursynth/html" % get.installDIR())
+12 -13
View File
@@ -13,8 +13,8 @@
<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 sha1sum="adef6b7a42012e7e8326f799275e63a8e0e18895" type="targz">
https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R60.tar.gz
</Archive>
<BuildDependencies>
<Dependency>nasm</Dependency>
@@ -22,6 +22,7 @@
<Dependency>python3-devel</Dependency>
<Dependency>libzimg-devel</Dependency>
<Dependency>python3-sphinx</Dependency>
<!-- <Dependency>python3-importlib_metadata</Dependency> -->
</BuildDependencies>
</Source>
@@ -29,27 +30,18 @@
<Name>vapoursynth</Name>
<RuntimeDependencies>
<Dependency>ffmpeg</Dependency>
<Dependency>libgcc</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="library">/usr/lib/python3.9/site-packages/vapoursynth.so</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>
@@ -64,6 +56,13 @@
</Package>
<History>
<Update release="2">
<Date>2022-11-13</Date>
<Version>60</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="1">
<Date>2021-12-11</Date>
<Version>57</Version>
+3 -1
View File
@@ -129,6 +129,8 @@
<Dependency>boost-python3</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>GraphicsMagick</Dependency>
<Dependency>python3-appdirs</Dependency>
<Dependency>python3-cssselect</Dependency>
<!-- <Dependency>double-conversion</Dependency> -->
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
@@ -174,7 +176,7 @@
<History>
<Update release="16">
<Date>2022-08-07</Date>
<Date>2022-11-14</Date>
<Version>1.2.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
+4 -8
View File
@@ -2,19 +2,15 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools, pisitools, get
def setup():
autotools.configure("--enable-nls \
--disable-static")
autotools.configure("--disable-docs --disable-static")
def build():
autotools.make()
def install():
autotools.install()
pisitools.dodoc("ChangeLog", "README")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+16 -8
View File
@@ -1,23 +1,25 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libexif</Name>
<Homepage>http://libexif.sourceforge.net/</Homepage>
<Homepage>https://libexif.github.io/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<License>LGPL-2.1</License>
<IsA>library</IsA>
<Summary>Library for parsing, editing, and saving EXIF data</Summary>
<Description>Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags.</Description>
<Archive sha1sum="a52219b12dbc8d33fc096468591170fda71316c0" type="tarbz2">mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2</Archive>
<Archive sha1sum="8b42080dc6d62ee9a89658e878b622f2eaefe986" type="tarbz2">
https://github.com/libexif/libexif/releases/download/v0.6.24/libexif-0.6.24.tar.bz2
</Archive>
<BuildDependencies>
<Dependency>doxygen</Dependency>
<!-- <Dependency>doxygen</Dependency> -->
</BuildDependencies>
<Patches>
<Patch>libexif-0.6.13-pkgconfig.patch</Patch>
<!-- <Patch></Patch> -->
</Patches>
</Source>
@@ -39,12 +41,18 @@
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="doc">/usr/share/doc/libexif/libexif-api.html</Path>
</Files>
</Package>
<History>
<Update release="5">
<Update release="6">
<Date>2022-11-14</Date>
<Version>0.6.24</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="5">
<Date>2020-01-19</Date>
<Version>0.6.21</Version>
<Comment>Rebuild</Comment>
+6 -7
View File
@@ -2,17 +2,16 @@
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
# See the file https://www.gnu.org/licenses/gpl-3.0.txt
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import autotools, pisitools, get
def setup():
pisitools.dosed("Makefile", "(cat pogo.py) \| \$\(CONFIGURE_IN\)( > pogo;)", r"\1\2")
pass
# pisitools.dosed("Makefile", "(cat pogo.py) \| \$\(CONFIGURE_IN\)( > pogo;)", r"\1\2")
def build():
autotools.make()
autotools.make("PREFIX=/usr")
def install():
autotools.install()
pisitools.dodoc("NEWS.md", "README.md")
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
+19 -11
View File
@@ -1,42 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>pogo</Name>
<Homepage>https://launchpad.net/pogo</Homepage>
<Homepage>https://github.com/jendrikseipp/pogo</Homepage>
<Packager>
<Name>Pisi Linux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>GPLv2</License>
<License>GPL-2</License>
<IsA>app:gui</IsA>
<Summary>Probably the simplest and fastest audio player for Linux.</Summary>
<Description>Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player.</Description>
<Archive sha1sum="3c6033ecb7ab4bddedd74ba70238894018e35e2e" type="targz">https://github.com/jendrikseipp/pogo/archive/v1.0.tar.gz</Archive>
<Archive sha1sum="af61bcd6f1606d8fb5f678f3be96b6f3f36f07d4" type="targz">
https://github.com/jendrikseipp/pogo/archive/refs/tags/v1.0.1.tar.gz
</Archive>
</Source>
<Package>
<Name>pogo</Name>
<RuntimeDependencies>
<Dependency>python</Dependency>
<Dependency>python-gtk</Dependency>
<Dependency>python-mutagen</Dependency>
<Dependency>python-imaging</Dependency>
<Dependency>gst-python</Dependency>
<Dependency>notify-python</Dependency>
<Dependency>python3</Dependency>
<Dependency>gst-python</Dependency>
<Dependency>dbus-python3</Dependency>
<Dependency>python3-mutagen</Dependency>
<Dependency>python3-imaging</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gst-plugins-good</Dependency>
<Dependency>python3-pygobject3</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="man">/usr/share/man</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="7">
<Date>2022-11-15</Date>
<Version>1.0.1</Version>
<Comment>Version bump.</Comment>
<Name>fury</Name>
<Email>uglyside@yandex.ru</Email>
</Update>
<Update release="6">
<Date>2020-03-08</Date>
<Version>1.0</Version>