Merge pull request #4 from ayhanyalcinsoy/master

qt5:moved into main repo for pisi 2.0
This commit is contained in:
Ertuğrul Erata
2015-06-17 21:05:46 +03:00
94 changed files with 3270 additions and 0 deletions
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop</Name>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>desktop.toolkit</Name>
</PISI>
+3
View File
@@ -0,0 +1,3 @@
<PISI>
<Name>qt5</Name>
</PISI>
@@ -0,0 +1,25 @@
#!/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 get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.domove("/usr/lib64/*", "/usr/lib")
pisitools.removeDir("/usr/lib64")
shelltools.cd("..")
pisitools.dodoc("LICENSE", "README.md")
@@ -0,0 +1,59 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-accountsservice</Name>
<Homepage>https://github.com/hawaii-desktop/qt-accountsservice-addon</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Qt5 - AccountService addon</Summary>
<Description>Qt5 - AccountService addon</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="aa27c60eec6c4973625aab3341cf81f2b2f28c08" type="targz">https://github.com/hawaii-desktop/qtaccountsservice/archive/v0.1.2.tar.gz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-accountsservice</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/share/licenses</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-qtaccountsservice-devel</Name>
<Files>
<Path fileType="headers">/usr/include</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-accountsservice</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="1">
<Date>2015-06-03</Date>
<Version>0.1.2</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-accountservice</Name>
<Summary xml:lang="tr">Qt5 - Hesap Hizmeti eklentisi</Summary>
<Description xml:lang="tr">Qt5 - Hesap Hizmeti eklentisi</Description>
</Source>
</PISI>
+124
View File
@@ -0,0 +1,124 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
import os
WorkDir = "qtbase-opensource-src-%s" % get.srcVERSION().replace('_','-').replace('pre1', 'tp')
qtbase = qt5.prefix
absoluteWorkDir = "%s/%s" % (get.workDIR(), WorkDir)
#Temporary bindir to avoid qt4 conflicts
bindirQt5="/usr/lib/qt5/bin"
def setup():
checkdeletepath="%s/qtbase/src/3rdparty" % absoluteWorkDir
for dir in ('libjpeg', 'freetype', 'libpng', 'zlib', "xcb", "sqlite"):
if os.path.exists(checkdeletepath+dir):
shelltools.unlinkDir(checkdeletepath+dir)
filteredCFLAGS = get.CFLAGS().replace("-g3", "-g")
filteredCXXFLAGS = get.CXXFLAGS().replace("-g3", "-g")
vars = {"PISILINUX_CC" : get.CC() + (" -m32" if get.buildTYPE() == "emul32" else ""),
"PISILINUX_CXX": get.CXX() + (" -m32" if get.buildTYPE() == "emul32" else ""),
"PISILINUX_CFLAGS": filteredCFLAGS + (" -m32" if get.buildTYPE() == "emul32" else ""),
"PISILINUX_LDFLAGS": get.LDFLAGS() + (" -m32" if get.buildTYPE() == "emul32" else "")}
for k, v in vars.items():
pisitools.dosed("mkspecs/common/g++-base.conf", k, v)
pisitools.dosed("mkspecs/common/g++-unix.conf", k, v)
shelltools.export("CFLAGS", filteredCFLAGS)
shelltools.export("CXXFLAGS", filteredCXXFLAGS)
#check that dosed commands without releated patches
pisitools.dosed("mkspecs/common/gcc-base-unix.conf", "\-Wl,\-rpath,")
pisitools.dosed("mkspecs/common/gcc-base.conf", "\-O2", filteredCFLAGS)
pisitools.dosed("mkspecs/common/gcc-base.conf", "^(QMAKE_LFLAGS\s+\+=)", r"\1 %s" % get.LDFLAGS())
if not get.buildTYPE() == "emul32":
#-no-pch makes build ccache-friendly
options = "-v -confirm-license -opensource -no-rpath -no-use-gold-linker\
-prefix %s \
-bindir %s \
-headerdir %s \
-archdatadir %s\
-docdir %s \
-plugindir %s \
-importdir %s \
-qmldir %s \
-datadir %s \
-testsdir %s \
-translationdir %s \
-sysconfdir %s \
-examplesdir %s \
-libdir %s \
-system-harfbuzz \
-system-sqlite \
-openssl-linked \
-nomake tests \
-nomake examples \
-optimized-qmake \
-reduce-relocations \
-dbus-linked \
-feature-menu \
-feature-textdate \
-feature-ftp \
-xcursor" % (qt5.prefix, bindirQt5, qt5.headerdir, qt5.archdatadir, qt5.docdir, qt5.plugindir, qt5.importdir, qt5.qmldir, qt5.datadir, qt5.testdir, qt5.translationdir, qt5.sysconfdir, qt5.examplesdir, qt5.libdir)
else:
pisitools.dosed("mkspecs/linux-g++-64/qmake.conf", "-m64", "-m32")
shelltools.export("LDFLAGS", "-m32 %s" % get.LDFLAGS())
options = "-no-pch -v -confirm-license -opensource -no-use-gold-linker\
-platform linux-g++-32 \
-xplatform linux-g++-32 \
-prefix /usr/lib32 \
-bindir /usr/lib32/qt5/bin \
-docdir /usr/share/doc/qt \
-headerdir /usr/lib32/qt5/include/qt5 \
-datadir /usr/share/qt5 \
-sysconfdir /etc/xdg \
-examplesdir /usr/share/doc/qt/examples \
-system-sqlite \
-openssl-linked \
-nomake examples \
-no-xcb \
-no-rpath \
-optimized-qmake \
-dbus-linked \
-system-harfbuzz \
-libdir /usr/lib32/ \
-archdatadir /usr/lib32/qt5/"
autotools.rawConfigure(options)
def build():
shelltools.export("LD_LIBRARY_PATH", "%s/lib:%s" % (get.curDIR(), get.ENV("LD_LIBRARY_PATH")))
autotools.make()
def install():
if get.buildTYPE() == "emul32":
qt5.install("INSTALL_ROOT=%s32" % get.installDIR())
shelltools.move("%s32/usr/lib32" % get.installDIR(), "%s/usr" % get.installDIR())
return
pisitools.dodir(qt5.libdir)
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
mkspecPath = "%s/mkspecs" % qt5.archdatadir
pisitools.remove("/usr/lib/*.prl")
pisitools.dodoc("LGPL_EXCEPTION.txt", "LICENSE.*")
@@ -0,0 +1,30 @@
--- g++-base.conf 2014-12-05 18:24:38.000000000 +0200
+++ qtbase-opensource-src-5.4.0/mkspecs/common/g++-base.conf 2015-02-16 12:34:43.603049664 +0200
@@ -10,17 +10,22 @@
QMAKE_COMPILER = gcc
-QMAKE_CC = gcc
+QMAKE_CC = PISILINUX_CC
QMAKE_LINK_C = $$QMAKE_CC
QMAKE_LINK_C_SHLIB = $$QMAKE_CC
-QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_OPTIMIZE -g
+QMAKE_CFLAGS_RELEASE += PISILINUX_CFLAGS
+QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO += PISILINUX_CFLAGS -g
-QMAKE_CXX = g++
+QMAKE_CXX = PISILINUX_CXX
-QMAKE_LINK = $$QMAKE_CXX
-QMAKE_LINK_SHLIB = $$QMAKE_CXX
+QMAKE_LINK = PISILINUX_CXX
+QMAKE_LINK_SHLIB = PISILINUX_CXX
+QMAKE_LINK_C = PISILINUX_CC
+QMAKE_LINK_C_SHLIB = PISILINUX_CC
+
+QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
QMAKE_CXXFLAGS_RELEASE_WITH_DEBUGINFO += $$QMAKE_CFLAGS_RELEASE_WITH_DEBUGINFO
@@ -0,0 +1,9 @@
--- g++-unix.conf 2015-02-16 12:35:34.978050836 +0200
+++ qtbase-opensource-src-5.4.0/mkspecs/common/g++-unix.conf 2015-02-16 12:35:58.703051378 +0200
@@ -10,5 +10,5 @@
include(g++-base.conf)
-QMAKE_LFLAGS_RELEASE += -Wl,-O1
+QMAKE_LFLAGS_RELEASE += PISILINUX_LDFLAGS
QMAKE_LFLAGS_NOUNDEF += -Wl,--no-undefined
@@ -0,0 +1,11 @@
--- linux.conf 2014-12-05 18:24:38.000000000 +0200
+++ qtbase-opensource-src-5.4.0/mkspecs/common/linux.conf 2015-02-16 12:36:52.547052606 +0200
@@ -49,7 +49,7 @@
QMAKE_NM = nm -P
QMAKE_RANLIB =
-QMAKE_STRIP = strip
+QMAKE_STRIP =
QMAKE_STRIPFLAGS_LIB += --strip-unneeded
QMAKE_INSTALL_FILE = install -m 644 -p
QMAKE_INSTALL_PROGRAM = install -m 755 -p
+263
View File
@@ -0,0 +1,263 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-base</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Cross platform application and UI framework</Summary>
<Description>Cross platform application and UI development framework</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="3703c6a584193e759f5b9cbf0ea6022d685ab827" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtbase-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>at-spi2-core-devel</Dependency>
<Dependency>cups-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>geoclue-devel</Dependency>
<Dependency>gperf</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>harfbuzz-devel</Dependency>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>leveldb-devel</Dependency>
<Dependency>firebird-superserver</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>mariadb-lib</Dependency>
<Dependency>libmng-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>webp-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>libmtdev-devel</Dependency>
<Dependency>nss-devel</Dependency>
<Dependency>openal-devel</Dependency>
<Dependency>pciutils-devel</Dependency>
<Dependency>postgresql-server</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>ruby-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>unixODBC-devel</Dependency>
<Dependency>xcb-proto</Dependency>
<Dependency>xcb-util-devel</Dependency>
<Dependency>xcb-util-image-devel</Dependency>
<Dependency>xcb-util-keysyms-devel</Dependency>
<Dependency>xcb-util-wm-devel</Dependency>
<Dependency>tiff-devel</Dependency>
<Dependency>libdrm-devel</Dependency>
<Dependency>DirectFB-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libudev-devel</Dependency>
<Dependency>libSM-devel</Dependency>
<Dependency>libICE-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libXext-devel</Dependency>
<Dependency>firebird-devel</Dependency>
<Dependency>unixODBC-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>xcb-util-renderutil-devel</Dependency>
<Dependency>openssl-devel</Dependency>
<Dependency>freetype-devel</Dependency>
</BuildDependencies>
<Patches>
<!-- Pisilinux Patches -->
<Patch level="1">mkspecs1.patch</Patch>
<Patch level="1">mkspecs2.patch</Patch>
<Patch level="1">mkspecs3.patch</Patch>
</Patches>
</Source>
<Package>
<Name>qt5-base</Name>
<RuntimeDependencies>
<Dependency>cups</Dependency>
<Dependency>dbus</Dependency>
<Dependency>gtk2</Dependency>
<Dependency>mesa</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>libSM</Dependency>
<Dependency>libXi</Dependency>
<Dependency>pango</Dependency>
<Dependency>libICE</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libdrm</Dependency>
<Dependency>DirectFB</Dependency>
<Dependency>libpng</Dependency>
<Dependency>libxcb</Dependency>
<Dependency>libudev</Dependency>
<Dependency>openssl</Dependency>
<Dependency>freetype</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>libmtdev</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>xcb-util-wm</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>xcb-util-image</Dependency>
<Dependency>xcb-util-keysyms</Dependency>
<Dependency>xcb-util-renderutil</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5/imports</Path>
<Path fileType="library">/usr/lib/qt5/qml</Path>
<Path fileType="library">/usr/lib/qt5/plugins</Path>
<Path fileType="localdata">/usr/share/qt5/translations</Path>
<Path fileType="executable">/usr/lib/qt5/bin</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<Package>
<Name>qt5-base-devel</Name>
<Summary>Development files for Qt 5</Summary>
<Description>Development files for Qt 5</Description>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/lib/cmake</Path>
<Path fileType="data">/usr/lib/qt5/mkspecs</Path>
<Path fileType="data">/usr/lib/*.prl</Path>
</Files>
<RuntimeDependencies>
<Dependency release="current">qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-sql-mysql</Name>
<RuntimeDependencies>
<Dependency version="current">qt5-base</Dependency>
<Dependency>mariadb-lib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/qt5/plugins/sqldrivers/libqsqlmysql.so</Path>
</Files>
</Package>
<Package>
<Name>qt5-sql-postgresql</Name>
<RuntimeDependencies>
<Dependency version="current">qt5-base</Dependency>
<Dependency>postgresql-lib</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/qt5/plugins/sqldrivers/libqsqlpsql.so</Path>
</Files>
</Package>
<Package>
<Name>qt5-sql-sqlite</Name>
<RuntimeDependencies>
<Dependency version="current">qt5-base</Dependency>
<Dependency>sqlite</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/qt5/plugins/sqldrivers/libqsqlite.so</Path>
</Files>
</Package>
<Package>
<Name>qt5-sql-odbc</Name>
<RuntimeDependencies>
<Dependency version="current">qt5-base</Dependency>
<Dependency>unixODBC</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/qt5/plugins/sqldrivers/libqsqlodbc.so</Path>
</Files>
</Package>
<Package>
<Name>qt5-base-32bit</Name>
<PartOf>emul32</PartOf>
<Summary>32-bit shared libraries for qt5</Summary>
<BuildType>emul32</BuildType>
<BuildDependencies>
</BuildDependencies>
<Dependency>cups-32bit</Dependency>
<Dependency>dbus-32bit</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>gtk2-32bit</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>zlib-32bit</Dependency>
<Dependency>glib2-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
<Dependency>icu4c-32bit</Dependency>
<Dependency>pango-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libdrm-32bit</Dependency>
<Dependency>libpng-32bit</Dependency>
<Dependency>sqlite-32bit</Dependency>
<Dependency>libudev-32bit</Dependency>
<Dependency>openssl-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency>harfbuzz-32bit</Dependency>
<Dependency>libmtdev-32bit</Dependency>
<Dependency>fontconfig-32bit</Dependency>
<Dependency>libXrender-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>libpcre</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>cups-32bit</Dependency>
<Dependency>dbus-32bit</Dependency>
<Dependency>gtk2-32bit</Dependency>
<Dependency>mesa-32bit</Dependency>
<Dependency>zlib-32bit</Dependency>
<Dependency>glib2-32bit</Dependency>
<Dependency>glibc-32bit</Dependency>
<Dependency>icu4c-32bit</Dependency>
<Dependency>pango-32bit</Dependency>
<Dependency>libX11-32bit</Dependency>
<Dependency>libdrm-32bit</Dependency>
<Dependency>libpng-32bit</Dependency>
<Dependency>sqlite-32bit</Dependency>
<Dependency>libudev-32bit</Dependency>
<Dependency>openssl-32bit</Dependency>
<Dependency>freetype-32bit</Dependency>
<Dependency>harfbuzz-32bit</Dependency>
<Dependency>libmtdev-32bit</Dependency>
<Dependency>fontconfig-32bit</Dependency>
<Dependency>libXrender-32bit</Dependency>
<Dependency>libjpeg-turbo-32bit</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib32</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-06-02</Date>
<Version>5.4.2</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-04-23</Date>
<Version>5.4.1</Version>
<Comment>First Release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,46 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-base</Name>
<Summary xml:lang="tr">Qt5 araç takımı, sürüm 5</Summary>
<Description xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır.</Description>
<Description xml:lang="fr">Qt est une boîte à outils graphique multi-plateforme.</Description>
<Description xml:lang="es">Qt es un toolkit para GUI multiplataforma.</Description>
</Source>
<Package>
<Name>qt5-base-devel</Name>
<Summary xml:lang="tr">Qt5 için geliştirme dosyaları</Summary>
</Package>
<Package>
<Name>qt5-docs</Name>
<Summary xml:lang="tr">Qt5 için geliştirme belgeleri ve Qt Assistant aracı</Summary>
</Package>
<Package>
<Name>qt5-sql-ibase</Name>
<Summary xml:lang="tr">Qt5'in SQL sınıfları için IBase sürücüsü</Summary>
</Package>
<Package>
<Name>qt5-sql-mysql</Name>
<Summary xml:lang="tr">Qt5'in SQL sınıfları için MySQL sürücüsü</Summary>
</Package>
<Package>
<Name>qt5-sql-odbc</Name>
<Summary xml:lang="tr">Qt5'in SQL sınıfları için ODBC sürücüsü</Summary>
</Package>
<Package>
<Name>qt5-sql-postgresql</Name>
<Summary xml:lang="tr">Qt5'in SQL sınıfları için PostgreSQL sürücüsü</Summary>
</Package>
<Package>
<Name>qt5-sql-sqlite</Name>
<Summary xml:lang="tr">Qt5'in SQL sınıfları için SQLite sürücüsü</Summary>
</Package>
</PISI>
@@ -0,0 +1,25 @@
#!/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 get
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
def setup():
shelltools.makedirs("build")
shelltools.cd("build")
cmaketools.configure("-DCMAKE_INSTALL_PREFIX=/usr", sourceDir="..")
def build():
shelltools.cd("build")
cmaketools.make()
def install():
shelltools.cd("build")
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
pisitools.domove("/usr/lib64/*", "/usr/lib")
pisitools.removeDir("/usr/lib64")
shelltools.cd("..")
pisitools.dodoc("LICENSE.FDL", "LICENSE.GPL", "LICENSE.LGPL", "README.md")
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-configuration</Name>
<Homepage>https://github.com/hawaii-desktop/qt-accountsservice-addon</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Settings API with change notifications for Qt</Summary>
<Description>Settings API with change notifications for Qt</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="4be3a202c0187d7ea52ae7da0bafbba5c84c6179" type="targz">http://sourceforge.net/projects/mauios/files/hawaii/qtconfiguration/qtconfiguration-0.2.1.tar.gz</Archive>
<BuildDependencies>
<Dependency>libgcc</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dconf-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-configuration</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/share/licenses</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>libgcc</Dependency>
<Dependency>glib2</Dependency>
<Dependency>dconf</Dependency>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-configuration-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="1">
<Date>2015-06-03</Date>
<Version>0.2.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-configuration</Name>
<Summary xml:lang="tr">Settings API with change notifications for Qt</Summary>
<Description xml:lang="tr">Settings API with change notifications for Qt</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-connectivity/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,65 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-connectivity</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides access to Bluetooth hardware</Summary>
<Description>Provides access to Bluetooth hardware</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="66b9b3034b84cef7b21c71bafa755930d2f1e4ce" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtconnectivity-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency>bluez-libs-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-connectivity</Name>
<Files>
<Path fileType="library">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
<Dependency>bluez-libs</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-connectivity-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-02</Date>
<Version>5.4.2</Version>
<Comment>Version bump.</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-connectivity</Name>
<Summary xml:lang="tr">Bluetooth donanımlarına bağlantı sağlar</Summary>
<Description xml:lang="tr">Bluetooth donanımlarına bağlantı sağlar</Description>
</Source>
<Package>
<Name>qt5-connectivity-devel</Name>
<Summary xml:lang="tr">qt5-connectivity için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-declarative/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,66 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-declarative</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Classes for QML and JavaScript languages</Summary>
<Description>Classes for QML and JavaScript languages</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="3d5f346e3dd377f66bf193316c259d21e3eccb8d" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtdeclarative-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>qt5-xmlpatterns-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-declarative</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>mesa</Dependency>
<Dependency>qt5-xmlpatterns</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-declarative-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-02</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-declarative</Name>
<Summary xml:lang="tr">QML ve JavaScript dilleri için sınıflar</Summary>
<Description xml:lang="tr">QML ve JavaScript dilleri için sınıflar</Description>
</Source>
<Package>
<Name>qt5-declarative-devel</Name>
<Summary xml:lang="tr">qt5-declarative için geliştirme dosyaları</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/licenses/gpl.txt
from pisi.actionsapi import shelltools
from pisi.actionsapi import autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
qt5.make("docs")
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
qt5.install("install_docs")
+55
View File
@@ -0,0 +1,55 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-doc</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Icon>assistant5</Icon>
<Summary>A cross-platform application and UI framework (Documentation)</Summary>
<Description>A cross-platform application and UI framework (Documentation)</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="a9d511aa26cdf3c98b2a593e57c381d946c45275" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtdoc-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-tools-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-doc</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-script</Dependency>
<Dependency>qt5-svg</Dependency>
<Dependency>qt5-xmlpatterns</Dependency>
<Dependency>qt5-tools</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="doc">/usr/share/doc/qt5</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-06-02</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-doc</Name>
<Summary xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme)</Summary>
<Description xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme)</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-enginio/", "LGPL_EXCEPTION.txt")
+63
View File
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-enginio</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>A Backend-as-a-Service solution to ease the backend development for connected and data-driven application</Summary>
<Description>A Backend-as-a-Service solution to ease the backend development for connected and data-driven application</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="3be31b3178801ddc258d9f381fe034d77d1da5a3" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtenginio-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-enginio</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5/</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-enginio-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-enginio</Name>
<Summary xml:lang="tr">Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü</Summary>
<Description xml:lang="tr">Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü</Description>
</Source>
<Package>
<Name>qt5-enginio-devel</Name>
<Summary xml:lang="tr">qt5-enginio için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,28 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
qt5.make("docs")
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
qt5.install("install_docs")
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-graphicaleffects/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,51 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-graphicaleffects</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Graphical effects for use with Qt Quick 2</Summary>
<Description>Graphical effects for use with Qt Quick 2</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="72abe24fe63d56ce2142cf7aeb43ad7f7ee06b39" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtgraphicaleffects-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-graphicaleffects</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-graphicaleffects</Name>
<Summary xml:lang="tr">Qt Quick2 ile kullanım için grafiksel efektler</Summary>
<Description xml:lang="tr">Qt Quick2 ile kullanım için grafiksel efektler</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-imageformats/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,54 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-imageformats</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Plugins for additional image formats: TIFF, MNG, TGA, WBMP</Summary>
<Description>Plugins for additional image formats: TIFF, MNG, TGA, WBMP</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="15dab37445225f979509a4d0a1cef776955ca01b" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtimageformats-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>jasper-32bit</Dependency>
<Dependency>libmng-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-imageformats</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>libmng</Dependency>
<Dependency>tiff</Dependency>
<Dependency>webp</Dependency>
<Dependency>jasper</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-imageformats</Name>
<Summary xml:lang="tr">İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP</Summary>
<Description xml:lang="tr">İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-location/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,63 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-location</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides access to position, satellite and area monitoring classes</Summary>
<Description>Provides access to position, satellite and area monitoring classes</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="c3b49b1ae4eb4a02ae525b14a8096f0d1cac02e6" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtlocation-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-location</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>geoclue</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-location-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-location</Name>
<Summary xml:lang="tr">Konum, uydu ve alan izleme sınıflarına erişim sağlar</Summary>
<Description xml:lang="tr">Konum, uydu ve alan izleme sınıflarına erişim sağlar</Description>
</Source>
<Package>
<Name>qt5-location-devel</Name>
<Summary xml:lang="tr">qt5-location için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-multimedia/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,73 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-multimedia</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Classes for audio, video, radio and camera functionality</Summary>
<Description>Classes for audio, video, radio and camera functionality</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="4a76bfc2567de7a72ae22156e4d49e186d889848" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtmultimedia-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>openal-devel</Dependency>
<Dependency>pulseaudio-libs-32bit</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-multimedia</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>openal</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>gstreamer</Dependency>
<Dependency>pulseaudio-libs</Dependency>
<Dependency>qt5-declarative</Dependency>
<Dependency>gst-plugins-base</Dependency>
<Dependency>gst-plugins-bad</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-multimedia-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-multimedia</Name>
<Summary xml:lang="tr">Ses, video, radyo ve kamera işlevsellikleri için sınıflar</Summary>
<Description xml:lang="tr">Ses, video, radyo ve kamera işlevsellikleri için sınıflar</Description>
</Source>
<Package>
<Name>qt5-multimedia-devel</Name>
<Summary xml:lang="tr">qt5-multimedia için geliştirme dosyaları</Summary>
</Package>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-quic1/", "LGPL_EXCEPTION.txt")
+70
View File
@@ -0,0 +1,70 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-quick1</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework.</Summary>
<Description>Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices.</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="d47f8488f24e5de8328a844725afa6bd541a1699" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtquick1-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>mesa-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-script-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-quick1</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/share/licenses</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-xmlpatterns</Dependency>
<Dependency>qt5-script</Dependency>
<Dependency>qt5-webkit</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-quick1-devel</Name>
<Summary>Development file for qt5-quick1</Summary>
<Description>Development file for qt5-quick1</Description>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-script-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-quick1</Name>
<Summary xml:lang="tr">Qt4 uyumluluğu için Qt Declarative sunar</Summary>
<Description xml:lang="tr">Qt4 uyumluluğu için Qt Declarative sunar</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-quickcontrols/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,50 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-quickcontrols</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Reusable Qt Quick based UI controls to create classic desktop-style user interfaces</Summary>
<Description>Reusable Qt Quick based UI controls to create classic desktop-style user interfaces</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="fdd3e0cafe69bcf27870b1d1b8a2c94e91c1aaff" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtquickcontrols-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-quickcontrols</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-quickcontrols</Name>
<Summary xml:lang="tr">Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri</Summary>
<Description xml:lang="tr">Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri</Description>
</Source>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-script/", "LGPL_EXCEPTION.txt")
+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>qt5-script</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Classes for making Qt applications scriptable. Provided for Qt 4.x compatibility</Summary>
<Description>Classes for making Qt applications scriptable. Provided for Qt 4.x compatibility</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="91ca6d9c6a017ed47d9c731867a03c5be1f3ea88" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtscript-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-script</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="library">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-script-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-script</Name>
<Summary xml:lang="tr">Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar</Summary>
<Description xml:lang="tr">Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar.</Description>
</Source>
<Package>
<Name>qt5-script-devel</Name>
<Summary xml:lang="tr">qt5-script için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-sensors/", "LGPL_EXCEPTION.txt")
+61
View File
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-sensors</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides access to sensor hardware and motion gesture recognition</Summary>
<Description>Provides access to sensor hardware and motion gesture recognition</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="f585798e4620721224edc86220153de35077ccae" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtsensors-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-sensors</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-sensors-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-sensors</Name>
<Summary xml:lang="tr">Donanım ve hareket algılama sensörüne erişim sağlar</Summary>
<Description xml:lang="tr">Donanım ve hareket algılama sensörüne erişim sağlar</Description>
</Source>
<Package>
<Name>qt5-sensors-devel</Name>
<Summary xml:lang="tr">qt5-sensors için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-serialport/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-serialport</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides access to hardware and virtual serial ports</Summary>
<Description>Provides access to hardware and virtual serial ports</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="aa843f96fe1a49d91eb7582d3be5035de5b5508e" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtserialport-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-tools-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-serialport</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-serialport-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-serialport</Name>
<Summary xml:lang="tr">Donanım ve sanal seri portlara erişim sağlar</Summary>
<Description xml:lang="tr">Donanım ve sanal seri portlara erişim sağlar</Description>
</Source>
<Package>
<Name>qt5-serialport-devel</Name>
<Summary xml:lang="tr">qt5-serialport için geliştirme dosyaları</Summary>
</Package>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-svg/", "LGPL_EXCEPTION.txt")
+60
View File
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-svg</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Classes for displaying the contents of SVG files</Summary>
<Description>Classes for displaying the contents of SVG files</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="aaf98efe775cfba210b2a72281365f0612884f6a" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtsvg-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-svg</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses/</Path>
</Files>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-svg-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-svg</Name>
<Summary xml:lang="tr">SVG dosyalarının içeriğini görüntüleme için sınıflar</Summary>
<Description xml:lang="tr">SVG dosyalarının içeriğini görüntüleme için sınıflar</Description>
</Source>
<Package>
<Name>qt5-svg-devel</Name>
<Summary xml:lang="tr">qt5-svg için geliştirme dosyaları</Summary>
</Package>
</PISI>
+28
View File
@@ -0,0 +1,28 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
qt5.make("docs")
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
qt5.install("install_docs")
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-tools/", "LGPL_EXCEPTION.txt")
+137
View File
@@ -0,0 +1,137 @@
#!/usr/bin/env xdg-open
[Desktop Entry]
Encoding=UTF-8
Exec=assistant-qt5
Name=Qt5 Assistant
Name[af]=Qt5 Assistent
Name[ar]=معاون Qt5
Name[az]=Qt5 Yardımçısı
Name[bn]=কিউ-টি সহায়ক
Name[br]=Skoazeller Qt5
Name[bs]=Qt5 Asistent
Name[ca]=Assistent Qt5
Name[cs]=Qt5 asistent
Name[cy]=Cymhorthwr Qt5
Name[de]=Qt5-Assistent
Name[el]=Βοηθός Qt5
Name[eo]=Qt5-Asistilo
Name[es]=Asistente Qt5
Name[eu]=Qt5 laguntzailea
Name[fa]=دستیار Qt5
Name[fo]=Qt5-hjálpari
Name[fy]=Qt5-assistent
Name[hi]=क्यूटी सहायक
Name[hr]=Qt5 Asistent
Name[hsb]=Qt5 Asistent
Name[ja]=Qt5 アシスタント
Name[km]=អ្នក​ជំនួយការ Qt5
Name[ko]=Qt5 도우미
Name[lo]=ຄຳແນະນຳການໃ້ຊ້Qt5
Name[lv]=Qt5 Asistents
Name[mk]=Qt5-Асистент
Name[mn]=Qt5-туслагч
Name[ms]=Pembantu Qt5
Name[nds]=Qt5-Hölper
Name[nl]=Qt5 Assistent
Name[nso]=Mothusi wa Qt5
Name[pa]=Qt5 ਸਹਾਇਕ
Name[pt]=Assistente do Qt5
Name[pt_BR]=Assistente Qt5
Name[ro]=Asistent Qt5
Name[ru]=Помощник Qt5
Name[rw]=Umufasha Qt5
Name[sl]=Pomočnik za Qt5
Name[ss]=Lisekela leQt5
Name[ta]=Qt5 துணைவன்
Name[tg]=Дастёри Qt5
Name[th]=คำแนะนำการใช้ Qt5
Name[tr]=Qt5 Asistanı
Name[uk]=Qt5-асистент
Name[uz]=Qt53 ёрдамчи
Name[ven]=Qt5 Muthusi
Name[vi]=Trợ giúp Qt5
Name[wa]=Macrea Qt5
Name[xh]=Qt5 Umncedi
Name[zh_CN]=Qt5 助手
Name[zh_TW]=Qt5 助理
Name[zu]=Umsizi we-Qt5
GenericName=Document Browser
GenericName[af]=Dokument Blaaier
GenericName[ar]=متصفح المستندات
GenericName[az]=Sənəd Səyyahı
GenericName[bg]=Преглед на документи
GenericName[bn]=নথী ব্রাউজার
GenericName[br]=Furcher Teulioù
GenericName[bs]=Preglednik QT dokumenata
GenericName[ca]=Navegador de documents
GenericName[cs]=Prohlížeč dokumentace
GenericName[cy]=Porydd Dogfen
GenericName[da]=Dokumentfremviser
GenericName[de]=Dokumentbrowser
GenericName[el]=Προβολέας εγγράφων
GenericName[eo]=Dokumentorigardilo
GenericName[es]=Navegador de documentos
GenericName[et]=Dokumentatsiooni brauser
GenericName[eu]=Dokumentu arakatzailea
GenericName[fa]=مرورگر سند
GenericName[fi]=Asiakirjaselain
GenericName[fo]=Skjalakagari
GenericName[fr]=Explorateur de documentation Qt5
GenericName[fy]=Dokumintblêder
GenericName[ga]=Brabhsálaí Cáipéise
GenericName[gl]=Navegador de Documentos
GenericName[he]=דפדפן מסמכים
GenericName[hi]=दस्तावेज़ ब्राउज़रज़र
GenericName[hr]=Preglednik dokumenata
GenericName[hu]=Dokumentumböngésző
GenericName[id]=Peselancar Document
GenericName[is]=Skjalavafri
GenericName[it]=Visualizzatore di documenti
GenericName[ja]=ドキュメントブラウザ
GenericName[km]=កម្មវិធី​រុករក​ឯកសារ
GenericName[ko]=문서 탐색기
GenericName[lo]=ເຄື່ອງມືເລືອກເບິ່ງແຟ້ມເອກະສານ
GenericName[lt]=Dokumentų naršyklė
GenericName[lv]=Dokumentu Pārlūks
GenericName[mk]=Прелистувач на документи
GenericName[mn]=Баримтын хөтөч
GenericName[ms]=Pelungsur Dokumen
GenericName[mt]=Browser ta' Dokumenti
GenericName[nb]=Dokumentleser
GenericName[nds]=Dokmentkieker
GenericName[nl]=Documentbrowser
GenericName[nn]=Dokumentlesar
GenericName[nso]=Seinyakisi sa Tokomane
GenericName[pa]=ਦਸਤਾਵੇਜ਼ ਝਲਕਾਰਾ
GenericName[pl]=Przeglądarka dokumentów
GenericName[pt]=Navegador de Documentos
GenericName[pt_BR]=Navegador de Documentos
GenericName[ro]=Navigator de documente
GenericName[ru]=Программа просмотра документов
GenericName[rw]=Mucukumbuzi w'Inyandiko
GenericName[se]=Dokumeantalogan
GenericName[sk]=Prehliadač dokumentácie
GenericName[sl]=Pregledovalnik dokumentov
GenericName[sr]=Прегледач докумената
GenericName[sr@Latn]=Pregledač dokumenata
GenericName[ss]=Ibrawuza yelidokhumente
GenericName[sv]=Dokumentbläddrare
GenericName[ta]=ஆவண உலாவி
GenericName[tg]=Тафсири ҳуҷҷат
GenericName[th]=เครื่องมือเลือกดูแฟ้มเอกสาร
GenericName[tr]=Belge Tarayıcısı
GenericName[tt]=İstälek Küzätüçe
GenericName[uk]=Навігатор документів
GenericName[uz]=Ҳужжат браузери
GenericName[ven]=Buronza ya manwalwa
GenericName[vi]=Trình duyệt tài liệu
GenericName[wa]=Foyteu di documints
GenericName[xh]=Umkhangeli Wencwadi Zoxwebhu
GenericName[zh_CN]=文档浏览器
GenericName[zh_TW]=文件閱讀器
GenericName[zu]=Umcingi Woshicilelo
X-KDE-StartupNotify=true
Icon=assistant5
Terminal=false
Type=Application
Categories=Qt;Development;
Binary file not shown.

After

Width:  |  Height:  |  Size: 15 KiB

Binary file not shown.
@@ -0,0 +1,12 @@
[Desktop Entry]
Name=Qt5 Designer
Name[tr]=Qt5 Tasarımcı
GenericName=Interface Designer
Comment=Design GUIs for Qt applications
Exec=designer-qt5
Icon=designer5
MimeType=application/x-designer;
Terminal=false
Type=Application
Categories=Qt;Development;
Binary file not shown.

After

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.
@@ -0,0 +1,11 @@
[Desktop Entry]
Name=Qt5 Linguist
Name[tr]=Qt5 Dilci
GenericName=Translation tool
Comment=Add translations to Qt5 applications
Exec=linguist-qt5
Icon=linguist5
MimeType=text/vnd.trolltech.linguist;application/x-linguist;
Terminal=false
Type=Application
Categories=Qt;Development;
Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.
@@ -0,0 +1,9 @@
[Desktop Entry]
Name=Qt5 QDbusViewer
GenericName=D-Bus Debugger
Comment=Debug D-Bus applications
Exec=qdbusviewer-qt5
Icon=qdbusviewer5
Terminal=false
Type=Application
Categories=Qt;Development;Debugger;
+83
View File
@@ -0,0 +1,83 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-tools</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>A cross-platform application and UI framework (Development Tools, QtHelp)</Summary>
<Description>A cross-platform application and UI framework (Development Tools, QtHelp)</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="346f0c000203623559a24e75a7808390721f35bb" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qttools-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>mesa-devel</Dependency>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-tools</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>mesa</Dependency>
<Dependency>qt5-webkit</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="data">/usr/share/licenses/</Path>
<Path fileType="library">/usr/share/qt5/</Path>
<Path fileType="data">/usr/share/applications</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/pixmaps/</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<AdditionalFiles>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/qdbusviewer5.desktop">qdbusviewer.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/linguist5.desktop">linguist.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/designer5.desktop">designer.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/qt5/translations/assistant_tr.qm">assistant_tr.qm</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/qt5/translations/designer_tr.qm">designer_tr.qm</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/qt5/translations/linguist_tr.qm">linguist_tr.qm</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/applications/assistant5.desktop">assistant.desktop</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/qdbusviewer5.png">assistant.png</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/assistant5.png">assistant.png</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/linguist5.png">linguist.png</AdditionalFile>
<AdditionalFile owner="root" permission="0644" target="/usr/share/pixmaps/designer5.png">designer.png</AdditionalFile>
</AdditionalFiles>
</Package>
<Package>
<Name>qt5-tools-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="data">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-tools</Name>
<Summary xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım).</Summary>
<Description xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım).</Description>
</Source>
<Package>
<Name>qt5-tools-devel</Name>
<Summary xml:lang="tr">qt5-tools için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-translations/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,47 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-translations</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>A cross-platform application and UI framework (Translations)</Summary>
<Description>A cross-platform application and UI framework (Translations)</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="a7825e593526108e70bceaa274f184105a2bd465" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qttranslations-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-translations</Name>
<Files>
<Path fileType="library">/usr/share/qt5</Path>
<Path fileType="data">/usr/share/licenses/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-translations</Name>
<Summary xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler)</Summary>
<Description xml:lang="tr">Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler)</Description>
</Source>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-wayland/", "LGPL_EXCEPTION.txt")
+85
View File
@@ -0,0 +1,85 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-wayland</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides APIs for Wayland</Summary>
<Description>Provides APIs for Wayland</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="196412a4e90e3dde3d0ef0aa0464c00a843883e4" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwayland-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>xorg-server-xwayland</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>libudev-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-wayland</Name>
<RuntimeDependencies>
<Dependency>mesa</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libxkbcommon</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>wayland-client</Dependency>
<Dependency>wayland-cursor</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="executable">/usr/lib/qt5/bin</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
</Package>
<Package>
<Name>qt5-wayland-devel</Name>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-wayland</Name>
<Summary xml:lang="tr">Wayland için API'ler sağlar</Summary>
<Description xml:lang="tr">Wayland için API'ler sağlar</Description>
</Source>
<Package>
<Name>qt5-wayland-devel</Name>
<Summary xml:lang="tr">qt5-wayland için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-webchannel/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-webchannel</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients</Summary>
<Description>Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="6f5c15f50c45df6392ab0e01c47043fd0100a389" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebchannel-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-webchannel</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-webchannel-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-webchannel</Name>
<Summary xml:lang="tr">HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar</Summary>
<Description xml:lang="tr">HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar </Description>
</Source>
<Package>
<Name>qt5-webchannel-devel</Name>
<Summary xml:lang="tr">qt5-webchannel için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,30 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
shelltools.export("QT5LINK", "/usr/lib/qt5/bin")
shelltools.export("QT5DIR", "/usr/lib/qt5")
shelltools.export("CFLAGS", "%s -I/usr/lib/sqlite3.8.8.3" % get.CFLAGS())
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.dodoc("LICENSE.LGPLv3")
+135
View File
@@ -0,0 +1,135 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-webengine</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides support for web applications using the Chromium browser project</Summary>
<Description>Provides support for web applications using the Chromium browser project</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="5d6f4bfadc5e2aeca44266147b0e76a43feda987" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebengine-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency>nss-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>nspr-devel</Dependency>
<Dependency>expat-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libcap-devel</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>freetype-devel</Dependency>
<Dependency>libXtst-devel</Dependency>
<Dependency>libXcursor-devel</Dependency>
<Dependency>libXrandr-devel</Dependency>
<Dependency>alsa-lib-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>at-spi2-core-devel</Dependency>
<Dependency>ruby</Dependency>
<Dependency>gperf</Dependency>
<Dependency>bluez-libs-devel</Dependency>
<Dependency>cups-devel</Dependency>
<Dependency>desktop-file-utils</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>gtk2-devel</Dependency>
<Dependency>harfbuzz-devel</Dependency>
<Dependency>icon-theme-hicolor</Dependency>
<Dependency>firebird-superserver</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>mariadb-lib</Dependency>
<Dependency>libmng-devel</Dependency>
<Dependency>pulseaudio-libs-devel</Dependency>
<Dependency>libxcb-devel</Dependency>
<Dependency>libxkbcommon-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>mesa-devel</Dependency>
<Dependency>libmtdev-devel</Dependency>
<Dependency>openal-devel</Dependency>
<Dependency>postgresql-server</Dependency>
<Dependency>pciutils-devel</Dependency>
<Dependency>python-devel</Dependency>
<Dependency>unixODBC-devel</Dependency>
<Dependency>xcb-proto</Dependency>
<Dependency>xcb-util-devel</Dependency>
<Dependency>xcb-util-image-devel</Dependency>
<Dependency>xcb-util-keysyms-devel</Dependency>
<Dependency>xcb-util-wm-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-webengine</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="localedata">/usr/share/qt5/translations</Path>
<Path fileType="data">/usr/share/qt5</Path>
<Path fileType="doc">/usr/share/doc</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>nss</Dependency>
<Dependency>dbus</Dependency>
<Dependency>nspr</Dependency>
<Dependency>expat</Dependency>
<Dependency>glib2</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libcap</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>freetype</Dependency>
<Dependency>mesa</Dependency>
<Dependency>libXi</Dependency>
<Dependency>libXext</Dependency>
<Dependency>libXtst</Dependency>
<Dependency>qt5-base</Dependency>
<Dependency>alsa-lib</Dependency>
<Dependency>harfbuzz</Dependency>
<Dependency>libXfixes</Dependency>
<Dependency>libXrandr</Dependency>
<Dependency>fontconfig</Dependency>
<Dependency>libXcursor</Dependency>
<Dependency>libXdamage</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-webengine-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-28</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,8 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-webengine</Name>
<Summary xml:lang="tr">Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar</Summary>
<Description xml:lang="tr">Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar</Description>
</Source>
</PISI>
+26
View File
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.dodoc("LICENSE.GPLv2", "LICENSE.LGPLv3", "LICENSE.LGPLv21", "ChangeLog-2012-05-22")
+116
View File
@@ -0,0 +1,116 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-webkit</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Classes for a WebKit2 based implementation and a new QML API</Summary>
<Description>Classes for a WebKit2 based implementation and a new QML API</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="402cd585ed7fea63b338fa6f89aec8b21db3564a" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebkit-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-sensors-devel</Dependency>
<Dependency>qt5-location-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
<Dependency>libXtst-devel</Dependency>
<Dependency>gst-plugins-base-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>icu4c-devel</Dependency>
<Dependency>libjpeg-turbo-devel</Dependency>
<Dependency>fontconfig-devel</Dependency>
<Dependency>glib2-devel</Dependency>
<Dependency>dbus-devel</Dependency>
<Dependency>ruby-devel</Dependency>
<Dependency>gstreamer-devel</Dependency>
<Dependency>libpng-devel</Dependency>
<Dependency>libpcre-devel</Dependency>
<Dependency>libudev-devel</Dependency>
<Dependency>webp-devel</Dependency>
<Dependency>zlib-devel</Dependency>
<Dependency>libxslt-devel</Dependency>
<Dependency>libXcomposite-devel</Dependency>
<Dependency>libX11-devel</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libXrender-devel</Dependency>
<Dependency>sqlite-devel</Dependency>
<Dependency>perl-Digest-MD5</Dependency>
<Dependency>perl-Text-ParseWords</Dependency>
<Dependency>gperf</Dependency>
<Dependency>bison</Dependency>
<Dependency>flex</Dependency>
<Dependency>phonon-devel</Dependency>
</BuildDependencies>
<Patches>
<!--<Patch level="2">glib.patch</Patch>-->
</Patches>
</Source>
<Package>
<Name>qt5-webkit</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5/plugins</Path>
<Path fileType="library">/usr/lib/qt5/</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>mesa</Dependency>
<Dependency>webp</Dependency>
<Dependency>zlib</Dependency>
<Dependency>glib2</Dependency>
<Dependency>icu4c</Dependency>
<Dependency>libX11</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>libpng</Dependency>
<Dependency>sqlite</Dependency>
<Dependency>libxml2</Dependency>
<Dependency>libxslt</Dependency>
<Dependency>libXrender</Dependency>
<Dependency>qt5-sensors</Dependency>
<Dependency>qt5-location</Dependency>
<Dependency>libXcomposite</Dependency>
<Dependency>libjpeg-turbo</Dependency>
<Dependency>gstreamer-next</Dependency>
<Dependency>qt5-webchannel</Dependency>
<Dependency>qt5-declarative</Dependency>
<Dependency>gst-plugins-base-next</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-webkit-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-webkit</Name>
<Summary xml:lang="tr">WebKit2 tabanlı uygulama ve yeni QML API için sınıflar</Summary>
<Description xml:lang="tr">WebKit2 tabanlı uygulama ve yeni QML API için sınıflar</Description>
</Source>
<Package>
<Name>qt5-webkit-devel</Name>
<Summary xml:lang="tr">qt5-webkit için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
#pisitools.insinto("/usr/share/licenses/qt5-websockets/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,60 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-websockets</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides WebSocket communication compliant with RFC 6455</Summary>
<Description>Provides WebSocket communication compliant with RFC 6455</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="726523b736d252f7ef2247456858e27ca92697b9" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtwebsockets-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>qt5-declarative-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-websockets</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>qt5-declarative</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-websockets-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-websockets</Name>
<Summary xml:lang="tr">RFC 6455 ile yumuşak WebSocket iletişimi sağlar</Summary>
<Description xml:lang="tr">RFC 6455 ile yumuşak WebSocket iletişimi sağlar</Description>
</Source>
<Package>
<Name>qt5-websockets-devel</Name>
<Summary xml:lang="tr">qt5-websockets için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-x11extras/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,59 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-x11extras</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Provides platform-specific APIs for X11</Summary>
<Description>Provides platform-specific APIs for X11</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="a9b5a4e9ac2c179cb5176c7c0c08ba413f40ec21" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtx11extras-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-x11extras</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-x11extras-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5/</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-x11extras</Name>
<Summary xml:lang="tr">X11 için platforma özgü API'ler sağlar</Summary>
<Description xml:lang="tr">X11 için platforma özgü API'ler sağlar</Description>
</Source>
<Package>
<Name>qt5-x11extras-devel</Name>
<Summary xml:lang="tr">qt5-x11extras için geliştirme dosyaları</Summary>
</Package>
</PISI>
@@ -0,0 +1,26 @@
#!/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 autotools
from pisi.actionsapi import pisitools
from pisi.actionsapi import qt5
from pisi.actionsapi import get
def setup():
qt5.configure()
def build():
qt5.make()
def install():
qt5.install("INSTALL_ROOT=%s" % get.installDIR())
#I hope qtchooser will manage this issue
for bin in shelltools.ls("%s/usr/lib/qt5/bin" % get.installDIR()):
pisitools.dosym("/usr/lib/qt5/bin/%s" % bin, "/usr/bin/%s-qt5" % bin)
pisitools.insinto("/usr/share/licenses/qt5-xmlpatterns/", "LGPL_EXCEPTION.txt")
@@ -0,0 +1,61 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>qt5-xmlpatterns</Name>
<Homepage>http://qt.digia.com/</Homepage>
<Packager>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Packager>
<Summary>Support for XPath, XQuery, XSLT and XML schema validation</Summary>
<Description>Support for XPath, XQuery, XSLT and XML schema validation</Description>
<License>LGPLv2.1-linking-exception</License>
<Archive sha1sum="6c98c6a5b8fd4f07bf709e0470f9988c86dfe15c" type="tarxz">http://download.qt.io/official_releases/qt/5.4/5.4.2/submodules/qtxmlpatterns-opensource-src-5.4.2.tar.xz</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
</BuildDependencies>
</Source>
<Package>
<Name>qt5-xmlpatterns</Name>
<Files>
<Path fileType="library">/usr/lib</Path>
<Path fileType="library">/usr/lib/qt5</Path>
<Path fileType="data">/usr/share/licenses</Path>
<Path fileType="executable">/usr/lib/qt5/bin/</Path>
<Path fileType="executable">/usr/bin</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
</RuntimeDependencies>
</Package>
<Package>
<Name>qt5-xmlpatterns-devel</Name>
<Files>
<Path fileType="library">/usr/lib/pkgconfig</Path>
<Path fileType="headers">/usr/include/qt5</Path>
</Files>
<RuntimeDependencies>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
</Package>
<History>
<Update release="2">
<Date>2015-06-03</Date>
<Version>5.4.2</Version>
<Comment>Version bump</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
<Update release="1">
<Date>2015-05-09</Date>
<Version>5.4.1</Version>
<Comment>First release</Comment>
<Name>Ayhan Yalçınsoy</Name>
<Email>ayhanyalcinsoy@pisilinux.org</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,13 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>qt5-xmlpatterns</Name>
<Summary xml:lang="tr">XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar</Summary>
<Description xml:lang="tr">XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar</Description>
</Source>
<Package>
<Name>qt5-xmlpatterns-devel</Name>
<Summary xml:lang="tr">qt5-xmlpatterns için geliştirme dosyaları</Summary>
</Package>
</PISI>