add clementine and dep
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#!/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 shelltools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure(" \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DCMAKE_BUILD_TYPE=Release \
|
||||
-DENABLE_VK=ON")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("Changelog", "COPYING")
|
||||
@@ -0,0 +1,21 @@
|
||||
--- a/src/core/database.cpp
|
||||
+++ b/src/core/database.cpp
|
||||
@@ -265,7 +265,17 @@
|
||||
StaticInit();
|
||||
|
||||
{
|
||||
- QSqlQuery set_fts_tokenizer(db);
|
||||
+#ifdef SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER
|
||||
+ QVariant v = db.driver()->handle();
|
||||
+ if (v.isValid() && qstrcmp(v.typeName(), "sqlite3*") == 0) {
|
||||
+ sqlite3* handle = *static_cast<sqlite3**>(v.data());
|
||||
+ if (handle) {
|
||||
+ sqlite3_db_config(handle, SQLITE_DBCONFIG_ENABLE_FTS3_TOKENIZER, 1, NULL);
|
||||
+ }
|
||||
+ }
|
||||
+#endif
|
||||
+
|
||||
+ QSqlQuery set_fts_tokenizer("SELECT fts3_tokenizer(:name, :pointer)", db);
|
||||
set_fts_tokenizer.prepare("SELECT fts3_tokenizer(:name, :pointer)");
|
||||
set_fts_tokenizer.bindValue(":name", "unicode");
|
||||
set_fts_tokenizer.bindValue(
|
||||
@@ -0,0 +1,101 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>clementine</Name>
|
||||
<Homepage>http://www.clementine-player.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<License>GPLv3</License>
|
||||
<Icon>clementine</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>A cross-platform music player based on Amarok 1.4</Summary>
|
||||
<Description>Clementine is a modern music player and library organiser. Clementine is a port of Amarok 1.4, with some features rewritten to take advantage of Qt4.</Description>
|
||||
<Archive sha1sum="3d08f1fd25930ceb50993ab8442fd7c129716c2f" type="zip">https://github.com/clementine-player/Clementine/archive/03428b53c2cd59569860f5b831ee096a9e635131.zip</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-webkit-devel</Dependency>
|
||||
<Dependency>qt5-x11extras-devel</Dependency>
|
||||
<Dependency>qt5-assistant-devel</Dependency>
|
||||
<Dependency>qt5-designer-devel</Dependency>
|
||||
<Dependency>qt5-linguist</Dependency>
|
||||
<Dependency>qt5-qdbusviewer</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>qca2-qt5-devel</Dependency>
|
||||
<Dependency>glew-devel</Dependency>
|
||||
<Dependency>icon-theme-hicolor</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>libmygpo-qt-devel</Dependency>
|
||||
<Dependency>fftw3-devel</Dependency>
|
||||
<Dependency>libmtp-devel</Dependency>
|
||||
<Dependency>ffmpeg-devel</Dependency>
|
||||
<Dependency>taglib-devel</Dependency>
|
||||
<Dependency>libgpod-devel</Dependency>
|
||||
<Dependency>libplist-devel</Dependency>
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
<Dependency>protobuf-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>liblastfm-devel</Dependency>
|
||||
<Dependency>libechonest-devel</Dependency>
|
||||
<Dependency>google-sparsehash</Dependency>
|
||||
<Dependency>libchromaprint-devel</Dependency>
|
||||
<Dependency>gstreamer-next-devel</Dependency>
|
||||
<Dependency>libimobiledevice-devel</Dependency>
|
||||
<Dependency>gst-plugins-base-next-devel</Dependency>
|
||||
<Dependency>gst-plugins-bad-next-devel</Dependency>
|
||||
<Dependency>gst-plugins-ugly-next</Dependency>
|
||||
<Dependency>gst-plugins-good-next</Dependency>
|
||||
<Dependency>libkvkontakte-devel</Dependency>
|
||||
<Dependency>crypto++-devel</Dependency>
|
||||
<Dependency>libcdio-paranoia-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">tokenizer.diff</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>clementine</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>glew</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>fftw3</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>libX11</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>libmtp</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>taglib</Dependency>
|
||||
<Dependency>libcdio</Dependency>
|
||||
<Dependency>libgpod</Dependency>
|
||||
<Dependency>protobuf</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libmygpo-qt</Dependency>
|
||||
<Dependency>gstreamer-next</Dependency>
|
||||
<Dependency>libchromaprint</Dependency>
|
||||
<Dependency>gst-plugins-base-next</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2017-01-06</Date>
|
||||
<Version>1.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>clementine</Name>
|
||||
<Summary xml:lang="tr">Amarok 1.4 tabanlı müzik oynatıcı</Summary>
|
||||
<Summary xml:lang="pl">Nowoczesny i prosty w obsłudze odtwarzacz muzyki</Summary>
|
||||
<Summary xml:lang="es">Reproductor de música basado en Amarok 1.4</Summary>
|
||||
<Summary xml:lang="nl"> Een cross-platform muziekspeler op basis van Amarok 1.4</Summary>
|
||||
<Description xml:lang="tr">Clementine, Amarok 1.4 esas alınarak Qt4 ile yeniden yazılmış modern bir müzik oynatıcıdır.</Description>
|
||||
<Description xml:lang="pl">Clementine to port Amaroka 1.4 - popularnego odtwarzacza muzycznego dla systemu Linux.</Description>
|
||||
<Description xml:lang="es">Clementine es un moderno reproductor de música escrito en QT4 y basado en Amarok 1.4.</Description>
|
||||
<Description xml:lang="nl"> Clementine is een moderne muziekspeler. Clementine is een port van Amarok 1.4, met een aantal functies herschreven om te profiteren van Qt 4.</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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DBUILD_WITH_QT4=OFF \
|
||||
-DECHONEST_BUILD_TESTS=off")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "COPYING", "README", "TODO")
|
||||
@@ -0,0 +1,57 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libechonest</Name>
|
||||
<Homepage>https://projects.kde.org/projects/playground/libs/libechonest</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>C++ wrapper for the Echo Nest API</Summary>
|
||||
<Description>libechonest is a collection of C++/Qt classes designed to make a developer's life easy when trying to use the APIs provided by The Echo Nest.</Description>
|
||||
<Archive sha1sum="9d7245c71e707651a7054ce6f0d90b9a62004b23" type="tarbz2">http://files.lfranchi.com/libechonest-2.3.1.tar.bz2</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libechonest</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libechonest-devel</Name>
|
||||
<Summary>Development files for libechonest</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libechonest</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2017-01-04</Date>
|
||||
<Version>2.3.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libechonest</Name>
|
||||
<Summary xml:lang="tr">Echo Nest servisinin programlama arayüzü için C++ bağlayıcıları</Summary>
|
||||
<Description xml:lang="tr">libechonest Echo Nest servisi tarafından sağlanan programlama arayüzüne erişmek için tasarlanmış C++/Qt sınıflarını içermektedir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libechonest-devel</Name>
|
||||
<Summary xml:lang="tr">libechonest için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,23 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import cmaketools
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DBUILD_TESTS=OFF \
|
||||
-DBUILD_WITH_QT4=OFF \
|
||||
-DCMAKE_INSTALL_LIBDIR=/usr/lib")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
# Docs
|
||||
pisitools.dodoc("COPYING","README*")
|
||||
@@ -0,0 +1,78 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>liblastfm</Name>
|
||||
<Homepage>https://github.com/lastfm/liblastfm</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>A library for Last.fm integration</Summary>
|
||||
<Description>liblastfm is a collection of libraries to help you integrate Last.fm services into your rich desktop software. It is officially supported software developed by Last.fm staff.</Description>
|
||||
<Archive sha1sum="4a6323538a26c5ea2080a8ebe58e4407dbc42397" type="targz">https://github.com/lastfm/liblastfm/archive/1.0.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>fftw3-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>libsamplerate-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>liblastfm</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/liblastfm5.so*</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>liblastfm-devel</Name>
|
||||
<Summary>A collection of libraries to help you integrate Last.fm services</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">liblastfm</Dependency>
|
||||
<Dependency release="current">liblastfm_fingerprint</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>liblastfm_fingerprint</Name>
|
||||
<Summary>A collection of libraries to help you integrate Last.fm services</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">liblastfm</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libsamplerate</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>fftw3</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib/liblastfm_fingerprint*</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2016-04-27</Date>
|
||||
<Version>1.0.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>liblastfm</Name>
|
||||
<Summary xml:lang="tr">Last.fm entegrasyonu sağlayan bir kitaplık</Summary>
|
||||
<Description xml:lang="tr">liblastfm, masaüstü uygulamalarına Last.fm servislerini entegre etmeyi sağlayan kitaplıklardan oluşur. Last.fm geliştiricileri tarafından hazırlanmıştır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>liblastfm-devel</Name>
|
||||
<Summary xml:lang="tr">liblastfm için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>liblastfm_fingerprint</Name>
|
||||
<Summary xml:lang="tr">Last.fm entegrasyonu kolaylaştıran kitaplık koleksiyonu</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
cmaketools.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DCMAKE_INSTALL_PREFIX=/usr \
|
||||
-DBUILD_WITH_QT4=OFF")
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("AUTHORS", "LICENSE", "README*")
|
||||
@@ -0,0 +1,59 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmygpo-qt</Name>
|
||||
<Homepage>https://github.com/ase23/libmygpo-qt</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>Qt Library that wraps the gpodder.net Web API</Summary>
|
||||
<Description>libmygpo-qt is a Qt Library that wraps the gpodder.net Web API.</Description>
|
||||
<Archive sha1sum="3fb15358408da2ece836c1e8759013b107e26943" type="targz">https://github.com/gpodder/libmygpo-qt/archive/1.0.9.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmygpo-qt</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>libqjson</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libmygpo-qt-devel</Name>
|
||||
<Summary>Development files for libmygpo-qt</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency release="current">libmygpo-qt</Dependency>
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2017-01-04</Date>
|
||||
<Version>1.0.9</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libmygpo-qt</Name>
|
||||
<Summary xml:lang="tr">gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığı</Summary>
|
||||
<Description xml:lang="tr">libmygpo-qt, gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libmygpo-qt-devel</Name>
|
||||
<Summary xml:lang="tr">libmygpo-qt için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user