add packages

flacon
uchardet
azpainter
azpainterb and index
This commit is contained in:
Erkan IŞIK
2020-04-22 13:49:22 +03:00
parent 00860c2c22
commit 8496b5927a
14 changed files with 537 additions and 2 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/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 get
def setup():
cmaketools.configure()
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("LICENSE", "README*")
+49
View File
@@ -0,0 +1,49 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>flacon</Name>
<Homepage>https://flacon.github.io/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks</Summary>
<Description>Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar.</Description>
<Archive sha1sum="db4f2b6f3893038d17ce4b3510542be98ad7f162" type="targz">https://github.com/flacon/flacon/archive/v5.5.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>uchardet-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>flacon</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>uchardet</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>2020-01-01</Date>
<Version>5.5.1</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>flacon</Name>
<Summary xml:lang="tr">An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks</Summary>
<Description xml:lang="tr">Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar.</Description>
</Source>
</PISI>
+22
View File
@@ -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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr \
-DCMAKE_INSTALL_LIBDIR=lib \
-DCMAKE_BUILD_TYPE=Release")
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "COPYING", "README*")
+57
View File
@@ -0,0 +1,57 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>uchardet</Name>
<Homepage>https://www.freedesktop.org/wiki/Software/uchardet</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL</License>
<IsA>library</IsA>
<Summary>Encoding detector library ported from Mozilla</Summary>
<Description>Encoding detector library ported from Mozilla</Description>
<Archive sha1sum="c04257ee7fb5ebbae144311d70b42c1d7efe41b9" type="tarxz">https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>uchardet</Name>
<RuntimeDependencies>
<Dependency>libgcc</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="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>uchardet-devel</Name>
<Summary>Development files for uchardet</Summary>
<RuntimeDependencies>
<Dependency release="current">uchardet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-01</Date>
<Version>0.0.6</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>uchardet</Name>
<Summary xml:lang="tr">Encoding detector library ported from Mozilla</Summary>
<Description xml:lang="tr">Encoding detector library ported from Mozilla</Description>
</Source>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/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
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>azpainter</Name>
<Homepage>http://azsky2.html.xdomain.jp/linux/azpainter.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary>A full color painting software for illustration drawing.</Summary>
<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="61a2457d9fa1c8991f62c06ecf66c806101f6412" type="tarxz">
https://acc.dl.osdn.jp/azpainter/71988/azpainter-2.1.5.tar.xz
</Archive>
<BuildDependencies>
<Dependency>libXi-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>azpainter</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-17</Date>
<Version>2.1.5</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>
+21
View File
@@ -0,0 +1,21 @@
#!/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
from pisi.actionsapi import pisitools
from pisi.actionsapi import get
def setup():
autotools.configure()
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "README")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "https://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>azpainterb</Name>
<Homepage>http://azsky2.html.xdomain.jp/linux/azpainterb.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary>A simple full-color paint software.</Summary>
<Description>
Paint software for Linux which can be used for various purposes such as dot editing, illustration, retouching, etc. You can sense pen pressure with XInput2.
</Description>
<Archive sha1sum="8a9ec60caea2bd7e09501ed2ea8b5638b21d0526" type="tarxz">
https://dotsrc.dl.osdn.net/osdn/azpainterb/71050/azpainterb-1.1.1.tar.xz
</Archive>
<BuildDependencies>
<Dependency>libXi-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>azpainterb</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-04-30</Date>
<Version>1.1.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</PISI>
+209
View File
@@ -137376,6 +137376,55 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>flacon</Name>
<Homepage>https://flacon.github.io/</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<PartOf>multimedia.converter</PartOf>
<Summary xml:lang="en">An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks</Summary>
<Summary xml:lang="tr">An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks</Summary>
<Description xml:lang="en">Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar.</Description>
<Description xml:lang="tr">Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar.</Description>
<Archive type="targz" sha1sum="db4f2b6f3893038d17ce4b3510542be98ad7f162" name="v5.5.1.tar.gz">https://github.com/flacon/flacon/archive/v5.5.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>qt5-linguist</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>uchardet-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/converter/flacon/pspec.xml</SourceURI>
</Source>
<Package>
<Name>flacon</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>uchardet</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>2020-01-01</Date>
<Version>5.5.1</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>mkvtoolnix</Name>
@@ -137616,6 +137665,62 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>uchardet</Name>
<Homepage>https://www.freedesktop.org/wiki/Software/uchardet</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>MPL</License>
<IsA>library</IsA>
<PartOf>multimedia.converter</PartOf>
<Summary xml:lang="en">Encoding detector library ported from Mozilla</Summary>
<Summary xml:lang="tr">Encoding detector library ported from Mozilla</Summary>
<Description xml:lang="en">Encoding detector library ported from Mozilla</Description>
<Description xml:lang="tr">Encoding detector library ported from Mozilla</Description>
<Archive type="tarxz" sha1sum="c04257ee7fb5ebbae144311d70b42c1d7efe41b9" name="uchardet-0.0.6.tar.xz">https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.6.tar.xz</Archive>
<BuildDependencies>
<Dependency>cmake</Dependency>
</BuildDependencies>
<SourceURI>multimedia/converter/uchardet/pspec.xml</SourceURI>
</Source>
<Package>
<Name>uchardet</Name>
<RuntimeDependencies>
<Dependency>libgcc</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="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>uchardet-devel</Name>
<Summary xml:lang="en">Development files for uchardet</Summary>
<RuntimeDependencies>
<Dependency release="1">uchardet</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="library">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-01</Date>
<Version>0.0.6</Version>
<Comment>First release</Comment>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>unoconv</Name>
@@ -138645,6 +138750,110 @@ cleaner, which will allow to add new features in the future.</Description>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>azpainter</Name>
<Homepage>http://azsky2.html.xdomain.jp/linux/azpainter.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary xml:lang="en">A full color painting software for illustration drawing.</Summary>
<Description xml:lang="en">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 type="tarxz" sha1sum="61a2457d9fa1c8991f62c06ecf66c806101f6412" name="azpainter-2.1.5.tar.xz">https://acc.dl.osdn.jp/azpainter/71988/azpainter-2.1.5.tar.xz</Archive>
<BuildDependencies>
<Dependency>libXi-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/graphics/azpainter/pspec.xml</SourceURI>
</Source>
<Package>
<Name>azpainter</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2020-01-17</Date>
<Version>2.1.5</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>azpainterb</Name>
<Homepage>http://azsky2.html.xdomain.jp/linux/azpainterb.html</Homepage>
<Packager>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Packager>
<License>GPLv3</License>
<IsA>app:gui</IsA>
<PartOf>multimedia.graphics</PartOf>
<Summary xml:lang="en">A simple full-color paint software.</Summary>
<Description xml:lang="en">Paint software for Linux which can be used for various purposes such as dot editing, illustration, retouching, etc. You can sense pen pressure with XInput2.</Description>
<Archive type="tarxz" sha1sum="8a9ec60caea2bd7e09501ed2ea8b5638b21d0526" name="azpainterb-1.1.1.tar.xz">https://dotsrc.dl.osdn.net/osdn/azpainterb/71050/azpainterb-1.1.1.tar.xz</Archive>
<BuildDependencies>
<Dependency>libXi-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
</BuildDependencies>
<SourceURI>multimedia/graphics/azpainterb/pspec.xml</SourceURI>
</Source>
<Package>
<Name>azpainterb</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libXext</Dependency>
<Dependency>freetype</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libjpeg-turbo</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="data">/usr/share</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2019-04-30</Date>
<Version>1.1.1</Version>
<Comment>First build.</Comment>
<Name>fury</Name>
<Email>wascheme@tuta.io</Email>
</Update>
</History>
</SpecFile>
<SpecFile>
<Source>
<Name>babl</Name>
+1 -1
View File
@@ -1 +1 @@
80f0c06728cb669cee0371184e3f780debb66941
b99a8b608bff3d2e7cc1e7266bcd6015571dc6d8
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
b3725d7505e925e3e76039b1ca842005c831d742
58989eaeee7feff99e79dee0e5b6a93102edf57e