Merge pull request #2532 from alihanozturk/master

add clementine and dep
This commit is contained in:
groni
2017-01-06 15:30:58 +01:00
committed by GitHub
27 changed files with 115429 additions and 113992 deletions
+37
View File
@@ -0,0 +1,37 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
autotools.configure("\
--with-html-dir=/usr/share/doc/%s/html \
--with-temp-mount-dir=/run/libgpod \
--without-hal \
--without-mono \
--disable-gtk-doc \
--disable-static \
--enable-udev \
" % get.srcNAME())
pisitools.dosed("libtool", " -shared ", " -Wl,-O1,--as-needed -shared ")
def build():
autotools.make()
def install():
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
# For temporary mounts
pisitools.dodir("/run/libgpod")
# rm "/usr/lib/pkgconfig/libgpod-sharp.pc"
pisitools.remove("/usr/lib/pkgconfig/libgpod-sharp.pc")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README*")
+93
View File
@@ -0,0 +1,93 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>libgpod</Name>
<Homepage>http://www.gtkpod.org/libgpod.html</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2.1</License>
<IsA>library</IsA>
<Summary>A library to access the contents of an iPod</Summary>
<Description>libgpod is a library to access the contents of an iPod. It supports playlists, smart playlists, playcounts, ratings, podcasts, album artwork, photos, etc.</Description>
<Archive sha1sum="5b5f692fef880d714dad71aa21e1737258fa878c" type="tarbz2">mirrors://sourceforge/gtkpod/libgpod-0.8.3.tar.bz2</Archive>
<BuildDependencies>
<Dependency>intltool</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>gtk-doc</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>docbook-xml</Dependency>
<Dependency>python-mutagen</Dependency>
<Dependency>libplist-devel</Dependency>
<Dependency>sg3_utils-devel</Dependency>
<Dependency>libimobiledevice-devel</Dependency>
<Dependency>python-pygobject-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>libgpod</Name>
<RuntimeDependencies>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libplist</Dependency>
<Dependency>sg3_utils</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>libimobiledevice</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="executable">/lib/udev</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/hal</Path>
<Path fileType="data">/lib/udev/rules.d</Path>
<Path fileType="data">/run/libgpod</Path>
<Path fileType="localedata">/usr/share/locale</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>python-libgpod</Name>
<PartOf>programming.language.python</PartOf>
<Summary>Python bindings for libgpod</Summary>
<RuntimeDependencies>
<Dependency release="current">libgpod</Dependency>
<Dependency>libplist</Dependency>
<Dependency>gdk-pixbuf</Dependency>
<Dependency>python-mutagen</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/python2*</Path>
</Files>
</Package>
<Package>
<Name>libgpod-devel</Name>
<Summary>Development files for libgpod</Summary>
<RuntimeDependencies>
<Dependency release="current">libgpod</Dependency>
<Dependency>gdk-pixbuf-devel</Dependency>
<Dependency>libimobiledevice-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>0.8.3</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+19
View File
@@ -0,0 +1,19 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>libgpod</Name>
<Summary xml:lang="tr">iPod üzerindeki verilere ulaşmak için kullanılan bir kütüphane</Summary>
<Description xml:lang="tr">libgpod, iPod taşınabilir medya oynatıcıları üzerindeki verilere ulaşmak için kullanılan bir kütüphanedir. Kütüphane, gelişmiş parça listesi, parça istatistikleri, podcast gibi ileri özellikleri destekler. libgpod, gtkpod projesi temel alınarak geliştirilmiştir.</Description>
<Description xml:lang="fr">libgpod est une librairie partagée permettant d'accéder au contenu d'un iPod. Cette librairie est basée sur le code du projet gtkpod.</Description>
</Source>
<Package>
<Name>libgpod-devel</Name>
<Summary xml:lang="tr">libgpod için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>python-libgpod</Name>
<Summary xml:lang="tr">libgpod için Python bağlayıcıları</Summary>
</Package>
</PISI>
+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 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(
+101
View File
@@ -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>
+20
View File
@@ -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")
+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>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>
+23
View File
@@ -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*")
+78
View File
@@ -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>
+22
View File
@@ -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*")
+59
View File
@@ -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>
+114633 -113990
View File
File diff suppressed because it is too large Load Diff
+1 -1
View File
@@ -1 +1 @@
2c0d7ba605c6f9d5d29e6145ba6295dbc9379797
60bea73cd8a50930f9008363dcde35a92947acd9
BIN
View File
Binary file not shown.
+1 -1
View File
@@ -1 +1 @@
06e9104df9841a0da0303165e802d16e4e66acea
3ccf2399d39e9c00e112f20f1c3c6e5ed640fb0d
@@ -0,0 +1,21 @@
#!/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()
def build():
autotools.make()
def install():
autotools.install()
pisitools.dohtml("doc/*")
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README", "TODO")
@@ -0,0 +1,36 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>google-sparsehash</Name>
<Homepage>http://code.google.com/p/google-sparsehash</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>BSD</License>
<IsA>library</IsA>
<Summary>An extremely memory-efficient hash_map implementation</Summary>
<Description>The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed.</Description>
<Archive sha1sum="94a9aad9167275af41b13122c60754ad1a5adb34" type="targz">https://github.com/sparsehash/sparsehash/archive/sparsehash-2.0.3.tar.gz</Archive>
</Source>
<Package>
<Name>google-sparsehash</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="header">/usr/include</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="1">
<Date>2017-01-04</Date>
<Version>2.0.3</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>google-sparsehash</Name>
<Summary xml:lang="tr">Son derece verimli bellek kullanımına sahip hash-map uyarlaması</Summary>
<Description xml:lang="tr">SparseHash kitaplığı hıza veya boyuta göre eniyileştirilebilecek çeşitli hash-map uyarlamalarını içerir.</Description>
</Source>
</PISI>
+29
View File
@@ -0,0 +1,29 @@
#!/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 cmaketools
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
cmaketools.configure("-DCMAKE_BUILD_TYPE=RelWithDebInfo \
-DCMAKE_INSTALL_PREFIX=/usr \
-DBUILD_SHARED=ON \
-DBUILD_STATIC=OFF \
-DBUILD_TESTING=OFF \
-DCMAKE_INSTALL_LIBDIR=lib")
pisitools.dosed("cryptopp.pc", "@VERSION@", get.srcVERSION())
def build():
cmaketools.make()
def install():
cmaketools.rawInstall("PREFIX=/usr DESTDIR=%s" % get.installDIR())
pisitools.insinto("/usr/lib/pkgconfig", "cryptopp.pc")
+14
View File
@@ -0,0 +1,14 @@
prefix=/usr
exec_prefix=/usr
libdir=/usr/lib
includedir=/usr/include
Name: Crypto++
Description: A free C++ class library of cryptographic schemes
Version: @VERSION@
URL: http://www.cryptopp.com
Requires:
Conflicts:
Libs: -L${libdir} -lcryptopp
Libs.private:
Cflags: -I${includedir}/cryptopp/
+58
View File
@@ -0,0 +1,58 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>crypto++</Name>
<Homepage>http://www.cryptopp.com</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>public-domain</License>
<IsA>library</IsA>
<Summary>Public domain C++ class library of cryptographic schemes</Summary>
<Description>crypto++ is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it are in the public domain.</Description>
<Archive sha1sum="3aa4f2fcfee05ed304c6614325c90eba0dc75f16" type="targz">https://github.com/weidai11/cryptopp/archive/CRYPTOPP_5_6_5.tar.gz</Archive>
<AdditionalFiles>
<AdditionalFile target="cryptopp.pc" permission="0644" owner="root">cryptopp.pc</AdditionalFile>
</AdditionalFiles>
<BuildDependencies>
<Dependency>cmake</Dependency>
<Dependency>dos2unix</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>crypto++</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>
</Files>
</Package>
<Package>
<Name>crypto++-devel</Name>
<Summary>Development files for crypto++</Summary>
<RuntimeDependencies>
<Dependency release="current">crypto++</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>5.6.5</Version>
<Comment>First release</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
</History>
</PISI>
+16
View File
@@ -0,0 +1,16 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>crypto++</Name>
<Summary xml:lang="tr">Değişik kripto şemaları içeren kamu malı C++ kitaplığı</Summary>
<Summary xml:lang="pl">Klasa C++ dostarczająca narzędzia do kryptografii</Summary>
<Description xml:lang="tr">crypto++, kriptografik şemalar içeren özgür bir C++ kitaplığıdır. Crypto++ kitaplığının en önemli özelliği kodlarının kamu malı (telif haksız) olmasıdır. Kitaplık, seçki olarak telif haklarına sahip olsa da, dosyalar tek tek kamu malıdır.</Description>
<Description xml:lang="pl">crypto++ jest klasą C++ dostarczającą narzędzia do kryptografii.</Description>
</Source>
<Package>
<Name>crypto++-devel</Name>
<Summary xml:lang="tr">crypto++ için geliştirme dosyaları</Summary>
<Summary xml:lang="pl">Pliki nagłówkowe do crypto++.</Summary>
</Package>
</PISI>