works for kdepimlibs -1 , kmime moved to application
This commit is contained in:
@@ -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 kde4
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
kde4.configure("-DCMAKE_BUILD_TYPE=Release \
|
||||
-DINSTALL_QSQLITE_IN_QT_PREFIX=TRUE \
|
||||
-DWITH_SOPRANO=OFF")
|
||||
|
||||
def build():
|
||||
kde4.make()
|
||||
|
||||
def install():
|
||||
kde4.install()
|
||||
pisitools.dodoc("AUTHORS", "NEWS", "README")
|
||||
@@ -0,0 +1,41 @@
|
||||
commit 4ca8b846baaad48ebbd723f6411f9571a3b0f5ad
|
||||
Author: Dan Vrátil <dvratil@redhat.com>
|
||||
Date: Tue Apr 22 11:28:07 2014 +0200
|
||||
|
||||
Remove the invalid GID part from PartTable before starting PartTable migration
|
||||
|
||||
More people than we expected have invalid 'GID' part in their PartTable,
|
||||
which breaks migration to schema 25, because it expects all part types
|
||||
to have a valid name.
|
||||
|
||||
To work around this fact, we DELETE all parts with name 'GID' from PartTable
|
||||
before starting the actual migration. This will not fix the migration for
|
||||
people with other invalid parts, but I haven't heard of any such. To make
|
||||
this completely bullet-proof, we would need to iterate through all entries,
|
||||
which would be massively slower than current INSERT INTO ... SELECT FROM approach.
|
||||
|
||||
Distributions, this is a good choice for backporting into 1.12.1 ;-)
|
||||
|
||||
BUG: 331867
|
||||
FIXED-IN: 1.12.2
|
||||
|
||||
diff --git a/server/src/storage/dbupdater.cpp b/server/src/storage/dbupdater.cpp
|
||||
index ccaf584..d6368b5 100644
|
||||
--- a/server/src/storage/dbupdater.cpp
|
||||
+++ b/server/src/storage/dbupdater.cpp
|
||||
@@ -261,6 +261,15 @@ bool DbUpdater::complexUpdate_25()
|
||||
}
|
||||
}
|
||||
|
||||
+ {
|
||||
+ // It appears that more users than expected have the invalid "GID" part in their
|
||||
+ // PartTable, which breaks the migration below (see BKO#331867), so we apply this
|
||||
+ // wanna-be fix to remove the invalid part before we start the actual migration.
|
||||
+ QueryBuilder qb( QLatin1String( "PartTable" ), QueryBuilder::Delete );
|
||||
+ qb.addValueCondition( QLatin1String( "PartTable.name" ), Query::Equals, QLatin1String( "GID" ) );
|
||||
+ qb.exec();
|
||||
+ }
|
||||
+
|
||||
akDebug() << "Creating a PartTable_new";
|
||||
{
|
||||
TableDescription description;
|
||||
@@ -0,0 +1,186 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>akonadi</Name>
|
||||
<Homepage>http://pim.kde.org/akonadi</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Icon>akonadi</Icon>
|
||||
<IsA>library</IsA>
|
||||
<Summary>PIM (Personal Information Management) Storage Service</Summary>
|
||||
<Description>akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access.</Description>
|
||||
<Archive sha1sum="06dec25cee0151766fe5aa3628aeae2396ed0268" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/akonadi-15.08.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-sql-mysql</Dependency>
|
||||
<Dependency>qt5-sql-sqlite</Dependency>
|
||||
<Dependency>qt5-sql-odbc</Dependency>
|
||||
<Dependency>qt5-sql-postgresql</Dependency>
|
||||
<Dependency>sqlite-devel</Dependency>
|
||||
<!--Dependency>soprano-devel</Dependency-->
|
||||
<Dependency>shared-mime-info</Dependency>
|
||||
<Dependency>mariadb-client</Dependency>
|
||||
<Dependency>mariadb-server</Dependency>
|
||||
<Dependency>postgresql-server</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">dbupdater.diff</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>akonadi</Name>
|
||||
<IsA>app:console</IsA>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>sqlite</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<!--Dependency>soprano</Dependency-->
|
||||
<!--Dependency>boost</Dependency-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="config">/etc/akonadi</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/kde4</Path>
|
||||
<Path fileType="doc">/usr/share/doc/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>akonadi-devel</Name>
|
||||
<Summary>Development files for akonadi</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">akonadi</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="15">
|
||||
<Date>2015-08-21</Date>
|
||||
<Version>15.08.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2014-12-15</Date>
|
||||
<Version>1.13.0</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Ergün Salman</Name>
|
||||
<Email>Poyraz76@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2014-08-21</Date>
|
||||
<Version>1.13.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>1.12.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2014-03-24</Date>
|
||||
<Version>1.12.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2014-03-18</Date>
|
||||
<Version>1.11.0</Version>
|
||||
<Comment>Dep fixed.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2014-01-13</Date>
|
||||
<Version>1.11.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-11-09</Date>
|
||||
<Version>1.10.3</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-10-06</Date>
|
||||
<Version>1.10.3</Version>
|
||||
<Comment>Version bump.
|
||||
Fix crash when there are no flags to update during flags change
|
||||
Fix crash on Akonadi shutdown when using PostgreSQL
|
||||
Fix notification to clients about database upgrade
|
||||
Send dummy requests to MySQL from time to time to keep the connection alive
|
||||
Bug #277839 – Fix problem with too long socket paths
|
||||
Bug #323977 – Check minimum MySQL version at runtime
|
||||
Bug #252120, Bug #322931 – Use text instead of bytea column type for QString in PostgreSQL</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-08-18</Date>
|
||||
<Version>1.10.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-07-11</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-07-10</Date>
|
||||
<Version>1.9.80</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-07-03</Date>
|
||||
<Version>1.9.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-03-08</Date>
|
||||
<Version>1.9.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-01-08</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Idris Kalp</Name>
|
||||
<Email>yaralikurt15@hotmail.com</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>akonadi</Name>
|
||||
<Summary xml:lang="tr">PIM (Kişisel Bilgi Yönetimi) Depolama Servisi</Summary>
|
||||
<Description xml:lang="tr">Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>akonadi-devel</Name>
|
||||
<Summary xml:lang="tr">akonadi için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -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 kde4
|
||||
|
||||
def setup():
|
||||
kde4.configure()
|
||||
|
||||
def build():
|
||||
kde4.make()
|
||||
|
||||
def install():
|
||||
kde4.install()
|
||||
|
||||
pisitools.dodoc("COPYING*", "DEBUG", "HACKING", "MAINTAINERS", "PLAN", "POLICIES", "README")
|
||||
@@ -0,0 +1,14 @@
|
||||
--- cmake/modules/FindGpgme.cmake
|
||||
+++ cmake/modules/FindGpgme.cmake
|
||||
@@ -226,10 +226,8 @@
|
||||
set( _gpgme_config_pthread_libs )
|
||||
endif()
|
||||
|
||||
- exec_program( ${_GPGMECONFIG_EXECUTABLE} ARGS --thread=pth --libs OUTPUT_VARIABLE _gpgme_config_pth_libs RETURN_VALUE _ret )
|
||||
- if ( _ret )
|
||||
+ # disable pth
|
||||
set( _gpgme_config_pth_libs )
|
||||
- endif()
|
||||
|
||||
# append -lgpg-error to the list of libraries, if necessary
|
||||
foreach ( _flavour vanilla pthread pth )
|
||||
@@ -0,0 +1,259 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kdepimlibs</Name>
|
||||
<Homepage>http://www.kde.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>KDE4 PIM libraries</Summary>
|
||||
<Description>Contains KDE4 PIM (Personal Information Management) base libraries.</Description>
|
||||
<Archive sha1sum="83c85cabc85e3db1b9df4e8d58346bb6b34c2f40" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kdepimlibs-15.08.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>gpgme-devel</Dependency>
|
||||
<!--Dependency>prison-devel</Dependeny-->
|
||||
<Dependency>qt5-phonon-devel</Dependency>
|
||||
<!--Dependency>akonadi-devel</Dependency-->
|
||||
<Dependency>libical-devel</Dependency>
|
||||
<Dependency>libqjson-devel</Dependency>
|
||||
<Dependency>libgpg-error-devel</Dependency>
|
||||
<Dependency>libxslt-devel</Dependency>
|
||||
<Dependency releaseFrom="4">openldap-client</Dependency>
|
||||
<Dependency releaseFrom="5">cyrus-sasl-devel</Dependency>
|
||||
<Dependency>kitemviews-devel</Dependency>
|
||||
<Dependency>kio-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
<Dependency>kdesignerplugin</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>kemoticons-devel</Dependency>
|
||||
<Dependency>kitemmodels-devel</Dependency>
|
||||
<Dependency>kinit-devel</Dependency>
|
||||
<Dependency>kunitconversion-devel</Dependency>
|
||||
<!--Dependency versionFrom="4.14.3">kdelibs-devel</Dependency>
|
||||
<Dependency versionFrom="4.14.3">nepomuk-core-devel</Dependency> -->
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<!--Dependency>akonadi-devel</Dependency-->
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kdepimlibs</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>gpgme</Dependency>
|
||||
<Dependency>qt5-phonon</Dependency>
|
||||
<!--Dependency>prison</Dependency>
|
||||
<Dependency>akonadi</Dependency-->
|
||||
<Dependency>libical</Dependency>
|
||||
<Dependency>libqjson</Dependency>
|
||||
<Dependency releaseFrom="5">cyrus-sasl</Dependency>
|
||||
<Dependency versionFrom="4.14.3">kdelibs</Dependency>
|
||||
<Dependency releaseFrom="4">openldap-client</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="data">/usr/share/kde4</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/dbus-1</Path>
|
||||
<Path fileType="data">/usr/share/config.kcfg</Path>
|
||||
<Path fileType="data">/usr/share/akonadi/agents/knutresource.desktop</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>kdepimlibs-devel</Name>
|
||||
<Summary>Development package for KDE4 PIM libraries</Summary>
|
||||
<Description>Contains development tools and header files for KDE4 PIM (Personal Information Management) base libraries.</Description>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt-devel</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>kdelibs-devel</Dependency>
|
||||
<Dependency release="current">kdepimlibs</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/gpgmepp</Path>
|
||||
<Path fileType="data">/usr/share/kde4/apps/cmake</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="24">
|
||||
<Date>2015-08-21</Date>
|
||||
<Version>15.08.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="23">
|
||||
<Date>2014-11-13</Date>
|
||||
<Version>4.14.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="22">
|
||||
<Date>2014-10-15</Date>
|
||||
<Version>4.14.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="21">
|
||||
<Date>2014-09-20</Date>
|
||||
<Version>4.14.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="20">
|
||||
<Date>2014-08-21</Date>
|
||||
<Version>4.14.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="19">
|
||||
<Date>2014-06-13</Date>
|
||||
<Version>4.13.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="18">
|
||||
<Date>2014-05-14</Date>
|
||||
<Version>4.13.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="17">
|
||||
<Date>2014-05-03</Date>
|
||||
<Version>4.13.0</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="16">
|
||||
<Date>2014-04-05</Date>
|
||||
<Version>4.12.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="15">
|
||||
<Date>2014-03-04</Date>
|
||||
<Version>4.12.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="14">
|
||||
<Date>2014-02-06</Date>
|
||||
<Version>4.12.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="13">
|
||||
<Date>2014-01-13</Date>
|
||||
<Version>4.11.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="12">
|
||||
<Date>2014-01-09</Date>
|
||||
<Version>4.11.4</Version>
|
||||
<Comment>Rebuild for cyrus-sasl.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="11">
|
||||
<Date>2013-12-03</Date>
|
||||
<Version>4.11.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="10">
|
||||
<Date>2013-11-05</Date>
|
||||
<Version>4.11.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="9">
|
||||
<Date>2013-10-02</Date>
|
||||
<Version>4.11.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="8">
|
||||
<Date>2013-09-07</Date>
|
||||
<Version>4.11.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="7">
|
||||
<Date>2013-07-02</Date>
|
||||
<Version>4.10.5</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="6">
|
||||
<Date>2013-06-10</Date>
|
||||
<Version>4.10.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2013-05-06</Date>
|
||||
<Version>4.10.3</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2013-04-03</Date>
|
||||
<Version>4.10.2</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-03-06</Date>
|
||||
<Version>4.10.1</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-02-15</Date>
|
||||
<Version>4.10.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-01-19</Date>
|
||||
<Version>4.9.98</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>kdepimlibs</Name>
|
||||
<Summary xml:lang="tr">KDE4 PIM kitaplıkları</Summary>
|
||||
<Description xml:lang="tr">KDE4 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıkları içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>kdepimlibs-devel</Name>
|
||||
<Summary xml:lang="tr">KDE4 PIM kitaplıkları için geliştirme paketi</Summary>
|
||||
<Description xml:lang="tr">KDE4 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) uygulamaları için gerekli kitaplıklarla ilgili geliştirme araçları ve başlık dosyalarını içerir.</Description>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -10,18 +10,18 @@
|
||||
</Packager>
|
||||
<License>LGPLv2</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>KDE library for handling mail messages and newsgroup articles.</Summary>
|
||||
<Description>Kmime library for handling mail messages and newsgroup articles.</Description>
|
||||
<Archive sha1sum="12fccaef4defb9bfe5fe3140789323d05009a012" type="tarxz">http://download.kde.org/stable/applications/15.08.0/src/kmime-15.08.0.tar.xz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kcodecs-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
<Dependency>extra-cmake-modules</Dependency>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>ki18n-devel</Dependency>
|
||||
<Dependency>kcodecs-devel</Dependency>
|
||||
<Dependency>kdoctools-devel</Dependency>
|
||||
<Dependency>kdelibs4-support-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
@@ -29,31 +29,30 @@
|
||||
<Name>kmime</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base</Dependency>
|
||||
<Dependency>boost</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>kcodecs</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
<Dependency>ki18n</Dependency>
|
||||
<Dependency>kcodecs</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="library">/usr/lib/qt5</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</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>kmime-devel</Name>
|
||||
<Summary>Development files for kmime</Summary>
|
||||
<Summary>Development files for kmime</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency>qt5-base-devel</Dependency>
|
||||
<Dependency release="current">kmime</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/cmake</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="config">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
@@ -66,4 +65,4 @@
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user