Merge branch 'master' of github.com:pisilinux/main
This commit is contained in:
@@ -10,7 +10,7 @@
|
|||||||
</Packager>
|
</Packager>
|
||||||
<License>LGPLv2</License>
|
<License>LGPLv2</License>
|
||||||
<IsA>library</IsA>
|
<IsA>library</IsA>
|
||||||
<IsA>app:console</IsA>
|
<IsA>app:console</IsA>
|
||||||
<Summary>the KDE calendar access library.</Summary>
|
<Summary>the KDE calendar access library.</Summary>
|
||||||
<Description>A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information.</Description>
|
<Description>A calendar contains information like incidences (events, to-dos, journals), alarms, time zones, and other useful information.</Description>
|
||||||
<Archive sha1sum="6ed748d61ed2c9ca872c1d53bcdc3521737cdab7" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kcalcore-15.08.0.tar.xz</Archive>
|
<Archive sha1sum="6ed748d61ed2c9ca872c1d53bcdc3521737cdab7" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kcalcore-15.08.0.tar.xz</Archive>
|
||||||
@@ -68,6 +68,6 @@
|
|||||||
<Comment>First Release</Comment>
|
<Comment>First Release</Comment>
|
||||||
<Name>Stefan Gronewold (groni)</Name>
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
<Email>groni@pisilinux.org</Email>
|
<Email>groni@pisilinux.org</Email>
|
||||||
</Update>
|
</Update>
|
||||||
</History>
|
</History>
|
||||||
</PISI>
|
</PISI>
|
||||||
|
|||||||
Executable
+20
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING")
|
||||||
Executable
+69
@@ -0,0 +1,69 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kcalutils</Name>
|
||||||
|
<Homepage>http://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:library</IsA>
|
||||||
|
<Summary>The KDE calendar utility library</Summary>
|
||||||
|
<Description>Calendar utility library for KDE</Description>
|
||||||
|
<Archive sha1sum="32ac542ead490ce958601f9ade1a8bdeb8f23a2d" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kcalutils-15.08.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>kdoctools-devel</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcalutils</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>kcalcore</Dependency>
|
||||||
|
<Dependency>kidentitymanagement</Dependency>
|
||||||
|
<Dependency>ki18n</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>kcodecs</Dependency>
|
||||||
|
<Dependency>kconfig</Dependency>
|
||||||
|
<Dependency>kcoreaddons</Dependency>
|
||||||
|
<Dependency>kiconthemes</Dependency>
|
||||||
|
<Dependency>kwidgetsaddons</Dependency>
|
||||||
|
<Dependency>kdelibs4-support</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kcalutils-devel</Name>
|
||||||
|
<Summary>Development files for kcalutils</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kcalutils</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-22</Date>
|
||||||
|
<Version>15.08.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -17,9 +17,14 @@
|
|||||||
<Dependency>qt5-base-devel</Dependency>
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
<Dependency>boost-devel</Dependency>
|
<Dependency>boost-devel</Dependency>
|
||||||
<Dependency>gpgme-devel</Dependency>
|
<Dependency>gpgme-devel</Dependency>
|
||||||
<!--Dependency>prison-devel</Dependeny-->
|
<Dependency>qt5-sql-sqlite</Dependency>
|
||||||
|
<Dependency>qt5-sql-mysql</Dependency>
|
||||||
|
<Dependency>qt5-sql-odbc</Dependency>
|
||||||
|
<Dependency>qt5-sql-postgresql</Dependency>
|
||||||
|
<Dependency>prison-qt5-devel</Dependency>
|
||||||
|
<Dependency>kmbox-devel</Dependency>
|
||||||
<Dependency>qt5-phonon-devel</Dependency>
|
<Dependency>qt5-phonon-devel</Dependency>
|
||||||
<!--Dependency>akonadi-devel</Dependency-->
|
<Dependency>akonadi-devel</Dependency>
|
||||||
<Dependency>libical-devel</Dependency>
|
<Dependency>libical-devel</Dependency>
|
||||||
<Dependency>libqjson-devel</Dependency>
|
<Dependency>libqjson-devel</Dependency>
|
||||||
<Dependency>libgpg-error-devel</Dependency>
|
<Dependency>libgpg-error-devel</Dependency>
|
||||||
@@ -34,11 +39,12 @@
|
|||||||
<Dependency>kemoticons-devel</Dependency>
|
<Dependency>kemoticons-devel</Dependency>
|
||||||
<Dependency>kitemmodels-devel</Dependency>
|
<Dependency>kitemmodels-devel</Dependency>
|
||||||
<Dependency>kinit-devel</Dependency>
|
<Dependency>kinit-devel</Dependency>
|
||||||
<Dependency>kunitconversion-devel</Dependency>
|
<Dependency>kunitconversion-devel</Dependency>
|
||||||
<!--Dependency versionFrom="4.14.3">kdelibs-devel</Dependency>
|
<Dependency>kmime-devel</Dependency>
|
||||||
<Dependency versionFrom="4.14.3">nepomuk-core-devel</Dependency> -->
|
<Dependency>kcontacts-devel</Dependency>
|
||||||
<Dependency>extra-cmake-modules</Dependency>
|
<Dependency>kcalcore-devel</Dependency>
|
||||||
<!--Dependency>akonadi-devel</Dependency-->
|
<Dependency>kldap-devel</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
</BuildDependencies>
|
</BuildDependencies>
|
||||||
</Source>
|
</Source>
|
||||||
|
|
||||||
@@ -48,20 +54,23 @@
|
|||||||
<Dependency>qt5-base</Dependency>
|
<Dependency>qt5-base</Dependency>
|
||||||
<Dependency>gpgme</Dependency>
|
<Dependency>gpgme</Dependency>
|
||||||
<Dependency>qt5-phonon</Dependency>
|
<Dependency>qt5-phonon</Dependency>
|
||||||
<!--Dependency>prison</Dependency>
|
<Dependency>prison-qt5</Dependency>
|
||||||
<Dependency>akonadi</Dependency-->
|
<Dependency>akonadi</Dependency>
|
||||||
<Dependency>libical</Dependency>
|
<Dependency>libical</Dependency>
|
||||||
<Dependency>libqjson</Dependency>
|
<Dependency>libqjson</Dependency>
|
||||||
<Dependency releaseFrom="5">cyrus-sasl</Dependency>
|
<Dependency releaseFrom="5">cyrus-sasl</Dependency>
|
||||||
<Dependency versionFrom="4.14.3">kdelibs</Dependency>
|
|
||||||
<Dependency releaseFrom="4">openldap-client</Dependency>
|
<Dependency releaseFrom="4">openldap-client</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="library">/usr/lib</Path>
|
<Path fileType="library">/usr/lib</Path>
|
||||||
<Path fileType="doc">/usr/share/doc</Path>
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
<Path fileType="data">/usr/mkspecs/</Path>
|
||||||
<Path fileType="executable">/usr/bin</Path>
|
<Path fileType="executable">/usr/bin</Path>
|
||||||
<Path fileType="data">/usr/share/kde4</Path>
|
<Path fileType="data">/usr/share/kde4</Path>
|
||||||
<Path fileType="data">/usr/share/mime</Path>
|
<Path fileType="data">/usr/share/mime</Path>
|
||||||
|
<Path fileType="data">/usr/share/icons</Path>
|
||||||
|
<Path fileType="data">/usr/share/kservices5</Path>
|
||||||
|
<Path fileType="data">/usr/share/kservicetypes5</Path>
|
||||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||||
<Path fileType="data">/usr/share/config.kcfg</Path>
|
<Path fileType="data">/usr/share/config.kcfg</Path>
|
||||||
<Path fileType="data">/usr/share/akonadi/agents/knutresource.desktop</Path>
|
<Path fileType="data">/usr/share/akonadi/agents/knutresource.desktop</Path>
|
||||||
|
|||||||
Executable
+20
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
#pisitools.dodoc("COPYING.LIB", "README", "CHANGELOG", "AUTHORS")
|
||||||
Executable
+68
@@ -0,0 +1,68 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kholidays</Name>
|
||||||
|
<Homepage>http://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>KDE library for regional holiday information</Summary>
|
||||||
|
<Description>KDE library for regional holiday information</Description>
|
||||||
|
<Archive sha1sum="f08416f94f7829a4369943cb04bdc1b290331eeb" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kholidays-15.08.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>kitemviews-devel</Dependency>
|
||||||
|
<Dependency>kdoctools-devel</Dependency>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kholidays</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>kdelibs4-support</Dependency>
|
||||||
|
<Dependency>ki18n</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>kitemviews</Dependency>
|
||||||
|
<Dependency>kcompletion</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="config">/etc</Path>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kholidays-devel</Name>
|
||||||
|
<Summary>Development files for kdelibs4-support</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kholidays</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-22</Date>
|
||||||
|
<Version>15.08.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
+20
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING.LIB")
|
||||||
+73
@@ -0,0 +1,73 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kidentitymanagement</Name>
|
||||||
|
<Homepage>http://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:library</IsA>
|
||||||
|
<Summary>KDE PIM libraries</Summary>
|
||||||
|
<Description>Library for the KDE-PIM(Personal-Infomation-Management</Description>
|
||||||
|
<Archive sha1sum="bb0dc21d5df800751ea785e902d2955a379119e8" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kidentitymanagement-15.08.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>kdoctools-devel</Dependency>
|
||||||
|
<Dependency>kpimtextedit-devel</Dependency>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kidentitymanagement</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>kpimtextedit</Dependency>
|
||||||
|
<Dependency>kio</Dependency>
|
||||||
|
<Dependency>ki18n</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>kcodecs</Dependency>
|
||||||
|
<Dependency>kconfig</Dependency>
|
||||||
|
<Dependency>kxmlgui</Dependency>
|
||||||
|
<Dependency>kcompletion</Dependency>
|
||||||
|
<Dependency>kcoreaddons</Dependency>
|
||||||
|
<Dependency>ktextwidgets</Dependency>
|
||||||
|
<Dependency>kwidgetsaddons</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="data">/usr/share</Path>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kidentitymanagement-devel</Name>
|
||||||
|
<Summary>Development files for kidentitymanagement</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kidentitymanagement</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-22</Date>
|
||||||
|
<Version>15.08.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Executable
+20
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/python
|
||||||
|
# -*- coding: utf-8 -*-
|
||||||
|
#
|
||||||
|
# Licensed under the GNU General Public License, version 3.
|
||||||
|
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||||
|
|
||||||
|
from pisi.actionsapi import pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
from pisi.actionsapi import get
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING.LIB", "COPYING")
|
||||||
Executable
+70
@@ -0,0 +1,70 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kimap</Name>
|
||||||
|
<Homepage>http://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:console</IsA>
|
||||||
|
<Summary>Job-based API for interacting with IMAP servers</Summary>
|
||||||
|
<Description>API for interacting with IMAP servers</Description>
|
||||||
|
<Archive sha1sum="402e19a3be4e95a136bea709fadef4015574bb8d" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kimap-15.08.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>kdoctools-devel</Dependency>
|
||||||
|
<Dependency>kmime-devel</Dependency>
|
||||||
|
<Dependency>boost-devel</Dependency>
|
||||||
|
<Dependency>kdelibs4-support-devel</Dependency>
|
||||||
|
<Dependency>cmake</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kimap</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>kmime</Dependency>
|
||||||
|
<Dependency>kio</Dependency>
|
||||||
|
<Dependency>ki18n</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>kcodecs</Dependency>
|
||||||
|
<Dependency>cyrus-sasl</Dependency>
|
||||||
|
<Dependency>kcoreaddons</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kimap-devel</Name>
|
||||||
|
<Summary>Development files for kimap</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kimap</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-22</Date>
|
||||||
|
<Version>15.08.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
@@ -27,7 +27,7 @@
|
|||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>qt5-base</Dependency>
|
<Dependency>qt5-base</Dependency>
|
||||||
<Dependency>kmime</Dependency>
|
<Dependency>kmime</Dependency>
|
||||||
<Dependency>libgcc</Dependency>
|
<Dependency>libgcc</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="data">/usr/share</Path>
|
<Path fileType="data">/usr/share</Path>
|
||||||
@@ -37,13 +37,13 @@
|
|||||||
<Path fileType="doc">/usr/share/doc</Path>
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
</Files>
|
</Files>
|
||||||
</Package>
|
</Package>
|
||||||
|
|
||||||
<Package>
|
<Package>
|
||||||
<Name>kmbox-devel</Name>
|
<Name>kmbox-devel</Name>
|
||||||
<Summary>Development files for kmbox</Summary>
|
<Summary>Development files for kmbox</Summary>
|
||||||
<RuntimeDependencies>
|
<RuntimeDependencies>
|
||||||
<Dependency>qt5-base-devel</Dependency>
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
<Dependency release="current">kmbox</Dependency>
|
<Dependency release="current">kmbox</Dependency>
|
||||||
</RuntimeDependencies>
|
</RuntimeDependencies>
|
||||||
<Files>
|
<Files>
|
||||||
<Path fileType="header">/usr/include</Path>
|
<Path fileType="header">/usr/include</Path>
|
||||||
@@ -59,6 +59,6 @@
|
|||||||
<Comment>First Release</Comment>
|
<Comment>First Release</Comment>
|
||||||
<Name>Stefan Gronewold (groni)</Name>
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
<Email>groni@pisilinux.org</Email>
|
<Email>groni@pisilinux.org</Email>
|
||||||
</Update>
|
</Update>
|
||||||
</History>
|
</History>
|
||||||
</PISI>
|
</PISI>
|
||||||
|
|||||||
+19
@@ -0,0 +1,19 @@
|
|||||||
|
#!/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 pisitools
|
||||||
|
from pisi.actionsapi import kde5
|
||||||
|
|
||||||
|
def setup():
|
||||||
|
kde5.configure()
|
||||||
|
|
||||||
|
def build():
|
||||||
|
kde5.make()
|
||||||
|
|
||||||
|
def install():
|
||||||
|
kde5.install()
|
||||||
|
|
||||||
|
pisitools.dodoc("COPYING.LIB")
|
||||||
+71
@@ -0,0 +1,71 @@
|
|||||||
|
<?xml version="1.0" ?>
|
||||||
|
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||||
|
<PISI>
|
||||||
|
<Source>
|
||||||
|
<Name>kpimtextedit</Name>
|
||||||
|
<Homepage>http://www.kde.org</Homepage>
|
||||||
|
<Packager>
|
||||||
|
<Name>Pisi Linux Admins</Name>
|
||||||
|
<Email>admin@pisilinux.org</Email>
|
||||||
|
</Packager>
|
||||||
|
<License>LGPLv2</License>
|
||||||
|
<IsA>library</IsA>
|
||||||
|
<IsA>app:gui</IsA>
|
||||||
|
<Summary>A textedit with PIM-specific features.</Summary>
|
||||||
|
<Description>Text Edit with KDE-PIM specific features.</Description>
|
||||||
|
<Archive sha1sum="fef27a9bc13a433b6b902dbc0c387cf8b00cbb6a" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kpimtextedit-15.08.0.tar.xz</Archive>
|
||||||
|
<BuildDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency>ki18n-devel</Dependency>
|
||||||
|
<Dependency>kcodecs-devel</Dependency>
|
||||||
|
<Dependency>kconfig-devel</Dependency>
|
||||||
|
<Dependency>kio-devel</Dependency>
|
||||||
|
<Dependency>extra-cmake-modules</Dependency>
|
||||||
|
</BuildDependencies>
|
||||||
|
</Source>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kpimtextedit</Name>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base</Dependency>
|
||||||
|
<Dependency>ki18n</Dependency>
|
||||||
|
<Dependency>kcodecs</Dependency>
|
||||||
|
<Dependency>kio</Dependency>
|
||||||
|
<Dependency>sonnet</Dependency>
|
||||||
|
<Dependency>libgcc</Dependency>
|
||||||
|
<Dependency>kemoticons</Dependency>
|
||||||
|
<Dependency>kcompletion</Dependency>
|
||||||
|
<Dependency>ktextwidgets</Dependency>
|
||||||
|
<Dependency>kwidgetsaddons</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="library">/usr/lib/qt5</Path>
|
||||||
|
<Path fileType="library">/usr/lib</Path>
|
||||||
|
<Path fileType="doc">/usr/share/doc</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<Package>
|
||||||
|
<Name>kpimtextedit-devel</Name>
|
||||||
|
<Summary>Development files for kpimtextedit</Summary>
|
||||||
|
<RuntimeDependencies>
|
||||||
|
<Dependency>qt5-base-devel</Dependency>
|
||||||
|
<Dependency release="current">kpimtextedit</Dependency>
|
||||||
|
</RuntimeDependencies>
|
||||||
|
<Files>
|
||||||
|
<Path fileType="header">/usr/include</Path>
|
||||||
|
<Path fileType="data">/usr/lib/cmake</Path>
|
||||||
|
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||||
|
</Files>
|
||||||
|
</Package>
|
||||||
|
|
||||||
|
<History>
|
||||||
|
<Update release="1">
|
||||||
|
<Date>2015-08-20</Date>
|
||||||
|
<Version>15.08.0</Version>
|
||||||
|
<Comment>First Release</Comment>
|
||||||
|
<Name>Stefan Gronewold (groni)</Name>
|
||||||
|
<Email>groni@pisilinux.org</Email>
|
||||||
|
</Update>
|
||||||
|
</History>
|
||||||
|
</PISI>
|
||||||
Reference in New Issue
Block a user