kdsoap: new package for kio-extras, picard:new package
This commit is contained in:
@@ -48,6 +48,7 @@
|
||||
<Dependency>openexr-devel</Dependency>
|
||||
<Dependency>kactivities-devel</Dependency>
|
||||
<Dependency>khtml-devel</Dependency>
|
||||
<Dependency>kdsoap-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -66,6 +67,7 @@
|
||||
<Dependency>libmtp</Dependency>
|
||||
<Dependency>libssh</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>kdsoap</Dependency>
|
||||
<Dependency>kconfig</Dependency>
|
||||
<Dependency>kxmlgui</Dependency>
|
||||
<Dependency>qt5-svg</Dependency>
|
||||
@@ -112,7 +114,7 @@
|
||||
|
||||
<History>
|
||||
<Update release="32">
|
||||
<Date>2020-05-06</Date>
|
||||
<Date>2020-05-11</Date>
|
||||
<Version>20.04.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Mustafa Cinasal</Name>
|
||||
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/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 pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
|
||||
pisitools.dodoc("AUTHORS.txt", "COPYING.txt", "NEWS.md")
|
||||
@@ -0,0 +1,58 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>picard</Name>
|
||||
<Homepage>http://musicbrainz.org/doc/MusicBrainz_Picard</Homepage>
|
||||
<Packager>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>MusicBrainz Picard is the official MusicBrainz tagger.</Summary>
|
||||
<Description>Picard supports the majority of audio file formats, is capable of using audio fingerprints (AcoustIDs), performing CD lookups and disc ID submissions, and it has excellent Unicode support. Additionally, there are several plugins available that extend Picard's features.</Description>
|
||||
<Archive sha1sum="1556b8f3af2976f51409f7598fe960dd96d80b8f" type="targz">http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.3.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
<Dependency>python3-mutagen</Dependency>
|
||||
<Dependency>libdiscid-devel</Dependency>
|
||||
<Dependency>python3-setuptools</Dependency>
|
||||
<Dependency>musicbrainz5-devel</Dependency>
|
||||
<Dependency>python3-qt5-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>picard</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>libdiscid</Dependency>
|
||||
<Dependency>python3-qt5</Dependency>
|
||||
<Dependency>musicbrainz5</Dependency>
|
||||
<Dependency>python-discid</Dependency>
|
||||
<Dependency>libchromaprint</Dependency>
|
||||
<Dependency>python3-mutagen</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="icons">/usr/share/icons/highcolor</Path>
|
||||
<Path fileType="application">/usr/share/applications</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-11</Date>
|
||||
<Version>2.3.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>picard</Name>
|
||||
<Summary xml:lang="tr">MusicBrainz Picard is a cross-platform (Linux/MacMusicBrainz Picard resmi MusicBrainz etiketleyicisidir.</Summary>
|
||||
<Description xml:lang="tr">Picard, ses dosyası formatlarının çoğunu destekler, ses parmak izlerini (AcoustID'ler) kullanabilir, CD aramaları ve disk kimliği gönderimleri gerçekleştirebilir ve mükemmel Unicode desteğine sahiptir. Ek olarak, Picard'ın özelliklerini genişleten birkaç eklenti vardır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/usr/bin/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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("README", "AUTHORS", "ChangeLog", "COPYING")
|
||||
@@ -0,0 +1,47 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdiscid</Name>
|
||||
<Homepage>http://musicbrainz.org/doc/libdiscid</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A C library for creating MusicBrainz DiscIDs from audio CDs</Summary>
|
||||
<Description>libdiscid reads a CD's table of contents (TOC) and generates an identifier which can be used to lookup the CD at MusicBrainz. Additionally, it provides a submission URL for adding the DiscID to the database.</Description>
|
||||
<Archive sha1sum="e578cd6ef7ab08dd20eb4fbb26bf55375930b0bb" type="targz">http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/libdiscid-0.6.2.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdiscid</Name>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libdiscid-devel</Name>
|
||||
<Summary>Development files for libdiscid</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libdiscid</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-11</Date>
|
||||
<Version>0.6.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libdiscid</Name>
|
||||
<Summary xml:lang="tr">Ses CD'lerinden MusicBrainz DiscID oluşturmak için C kütüphanesi</Summary>
|
||||
<Description xml:lang="tr">libdiscid, CD içeriğini okuyarak; MusicBrainz veritabanı üzerinden tanımlama yapar. Ayrıca bu veritabanına DiscID eklemek için başvuru URI'si sağlar. </Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libdiscid-devel</Name>
|
||||
<Summary xml:lang="tr">libdiscid için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
+238451
-236651
File diff suppressed because it is too large
Load Diff
@@ -1 +1 @@
|
||||
a542ac18cb48635b1a2a62c2833e4f263f7f5484
|
||||
c03584bee551fac384cdc794294d8529a9c8265b
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
b5d9f5345f2f913a06ddd5e94bd90f4e18c130c4
|
||||
ed28417eca14d2d399b312cecc8631a8397a8e29
|
||||
@@ -0,0 +1,15 @@
|
||||
#!/usr/bin/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 pisitools
|
||||
|
||||
def build():
|
||||
pythonmodules.compile(pyVer="3")
|
||||
|
||||
def install():
|
||||
pythonmodules.install(pyVer="3")
|
||||
pisitools.dodoc("README.rst", "COPYING")
|
||||
@@ -0,0 +1,44 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-discid</Name>
|
||||
<Homepage>https://python-discid.readthedocs.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<PartOf>programming.language.python3</PartOf>
|
||||
<License>LGPL3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Python binding of MusicBrainz libdiscid</Summary>
|
||||
<Description>The main purpose is the calculation of an identifier for audio discs (Disc ID) to use for the MusicBrainz database. Additionally the disc MCN and track ISRCs can be extracted.</Description>
|
||||
<Archive sha1sum="bbfc38aa8da74314127c952fb1cae63a539ab891" type="targz">https://github.com/JonnyJD/python-discid/archive/v1.2.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libdiscid-devel</Dependency>
|
||||
<Dependency>python3-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>python-discid</Name>
|
||||
<Summary>Python Classes Without Boilerplate</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>python3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/python3*</Path>
|
||||
<Path fileType="doc">/usr/share/doc/python-discid</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-11</Date>
|
||||
<Version>1.2.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvari@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>python-discid</Name>
|
||||
<Summary xml:lang="tr">MusicBrainz libdiscid'in Python bağlanması</Summary>
|
||||
<Description xml:lang="tr">Temel amaç, MusicBrainz veritabanı için kullanılacak ses diskleri (Disk Kimliği) için bir tanımlayıcının hesaplanmasıdır. Ek olarak, disk MCN ve iz ISRC'leri çıkarılabilir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -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("-DCMAKE_INSTALL_LIBDIR=lib")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("LICENSE*", "README*")
|
||||
@@ -0,0 +1,63 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "https://pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kdsoap</Name>
|
||||
<Homepage>https://github.com/KDAB/KDSoap</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Qt-based client-side and server-side SOAP component</Summary>
|
||||
<Description>It can be used to create client applications for web services and also provides the means to create web services without the need for any further component such as a dedicated web server.</Description>
|
||||
<Archive sha1sum="cafb4fd9c7d5a70535be766b440efb2f314bb5bb" type="targz">https://github.com/KDAB/KDSoap/releases/download/kdsoap-1.9.0/kdsoap-1.9.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
<Patches>
|
||||
<Patch>kdsoap.patch</Patch>
|
||||
<Patch level="1">kdsoap.patch</Patch>
|
||||
</Patches>
|
||||
-->
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kdsoap</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>kdsoap-devel</Name>
|
||||
<Summary>Development files for kdsoap</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">kdsoap</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2020-05-11</Date>
|
||||
<Version>1.9.0</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>kdsoap</Name>
|
||||
<Summary xml:lang="tr">Qt tabanlı istemci tarafı ve sunucu tarafı SOAP bileşeni</Summary>
|
||||
<Description xml:lang="tr">Web hizmetleri için istemci uygulamaları oluşturmak için kullanılabilir ve ayrıca özel bir web sunucusu gibi başka bir bileşene ihtiyaç duymadan web hizmetleri oluşturmak için araçlar sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user