signon:add pisi-2.0

This commit is contained in:
alihanozturk
2015-11-14 23:21:59 +02:00
parent 86112e8d8c
commit 9af0ea8a12
6 changed files with 176 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
#
# Licensed under the GNU General Public License, version 3.
# See the file http://www.gnu.org/licenses/gpl.txt
from pisi.actionsapi import qt5
from pisi.actionsapi import pisitools
from pisi.actionsapi import shelltools
from pisi.actionsapi import get
def setup():
shelltools.system("sed -i -e 's/qdbusxml2cpp/qdbusxml2cpp-qt5/' src/signond/signond.pro")
qt5.configure(parameters="PREFIX=/usr LIBDIR=/usr/lib")
def build():
qt5.make()
def install():
qt5.install()
@@ -0,0 +1,9 @@
--- a/lib/plugins/signon-plugins-common/SignOn/blobiohandler.cpp 2014-08-25 10:33:29.000000000 -0400
+++ b/lib/plugins/signon-plugins-common/SignOn/blobiohandler.cpp 2015-07-09 11:25:07.686154044 -0400
@@ -26,6 +26,7 @@
#include <QDBusArgument>
#include <QBuffer>
#include <QDebug>
+#include <QDataStream>
#include "SignOn/signonplugincommon.h"
@@ -0,0 +1,9 @@
diff --git a/src/remotepluginprocess/remotepluginprocess.cpp b/src/remotepluginprocess/remotepluginprocess.cpp
index bb11baf..58cc3f4 100644
--- a/src/remotepluginprocess/remotepluginprocess.cpp
+++ b/src/remotepluginprocess/remotepluginprocess.cpp
@@ -560,3 +560,4 @@ void CancelEventThread::cancel()
} //namespace RemotePluginProcessNS
+#include "moc_authpluginif.cpp"
@@ -0,0 +1,11 @@
=== modified file 'src/signond/signond.conf'
--- old/src/signond/signond.conf 2012-07-25 14:57:50 +0000
+++ new/src/signond/signond.conf 2012-07-25 19:27:16 +0000
@@ -17,6 +17,7 @@
FileSystemName=signonfs
Size=8
FileSystemType=ext2
+SecretsStorage=gnome-keyring
[ObjectTimeouts]
IdentityTimeout=300
+111
View File
@@ -0,0 +1,111 @@
<?xml version="1.0" ?>
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
<PISI>
<Source>
<Name>signon</Name>
<Homepage>https://code.google.com/p/accounts-sso</Homepage>
<Packager>
<Name>PisiLinux Community</Name>
<Email>admins@pisilinux.org</Email>
</Packager>
<License>LGPLv2</License>
<Summary>A framework for centrally storing authentication credentials</Summary>
<Description>Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of
a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system.</Description>
<Archive sha1sum="15a0963980ad596b0aafc6ff27eb28566ad7d4af" type="tarbz2">https://gitlab.com/accounts-sso/signond/repository/archive.tar.bz2</Archive>
<BuildDependencies>
<Dependency>qt5-base-devel</Dependency>
<Dependency>doxygen</Dependency>
</BuildDependencies>
<Patches>
<Patch level="1">qt5.5.diff</Patch>
<Patch level="1">use_keyring.patch</Patch>
<!-- <Patch level="1">signon-8.56-missing-moc-include.patch</Patch> -->
</Patches>
</Source>
<Package>
<Name>signon</Name>
<RuntimeDependencies>
<Dependency>qt5-base</Dependency>
<Dependency>libgcc</Dependency>
<Dependency>doxygen</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="executable">/usr/bin</Path>
<Path fileType="library">/usr/lib</Path>
<Path fileType="config">/etc</Path>
<Path fileType="data">/usr/share/dbus-1</Path>
</Files>
</Package>
<Package>
<Name>signon-devel</Name>
<Summary>Development files for signon</Summary>
<RuntimeDependencies>
<Dependency release="current">signon</Dependency>
<Dependency>qt5-base-devel</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="header">/usr/include</Path>
<Path fileType="data">/usr/lib/pkgconfig</Path>
</Files>
</Package>
<Package>
<Name>signon-docs</Name>
<IsA>data:doc</IsA>
<Summary>Help files and API documents for signon</Summary>
<RuntimeDependencies>
<Dependency release="current">signon</Dependency>
</RuntimeDependencies>
<Files>
<Path fileType="doc">/usr/share/doc</Path>
</Files>
</Package>
<History>
<Update release="6">
<Date>2015-11-14</Date>
<Version>8.58</Version>
<Comment>Version bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="5">
<Date>2014-05-24</Date>
<Version>8.56</Version>
<Comment>Version bump.</Comment>
<Name>Alihan Öztürk</Name>
<Email>alihan@pisilinux.org</Email>
</Update>
<Update release="4">
<Date>2014-03-09</Date>
<Version>8.48</Version>
<Comment>Rebuild</Comment>
<Name>Varol Maksutoğlu</Name>
<Email>waroi@pisilinux.org</Email>
</Update>
<Update release="3">
<Date>2013-07-28</Date>
<Version>8.48</Version>
<Comment>Dep Fixed</Comment>
<Name>Osman Erkan</Name>
<Email>osman.erkan@pisilinux.org</Email>
</Update>
<Update release="2">
<Date>2013-07-26</Date>
<Version>8.48</Version>
<Comment>Move pc files to devel pack,release bump.</Comment>
<Name>Erdinç Gültekin</Name>
<Email>erdincgultekin@gmail.com</Email>
</Update>
<Update release="1">
<Date>2013-03-08</Date>
<Version>8.48</Version>
<Comment>First release</Comment>
<Name>Erdinç Gültekin</Name>
<Email>erdincgultekin@gmail.com</Email>
</Update>
</History>
</PISI>
@@ -0,0 +1,15 @@
<?xml version="1.0" ?>
<PISI>
<Source>
<Name>signon</Name>
<Summary xml:lang="en">A framework for centrally storing authentication credentials</Summary>
<Description xml:lang="en">Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of
a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system.</Description>
</Source>
<Package>
<Name>signon-devel</Name>
<Summary xml:lang="tr">Signon için kütüphaneler</Summary>
<Description xml:lang="tr">Signon geliştirme paketi, Signon için geliştirme dosyaları sunar.</Description>
</Package>
</PISI>