summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohannes Huber <johu@gentoo.org>2013-07-23 17:39:21 +0000
committerJohannes Huber <johu@gentoo.org>2013-07-23 17:39:21 +0000
commit834e2672c89e2564ef0a28d0660039d00cf4c65e (patch)
treedefaedbb30538426a23f7fd518ca28a972f323e3 /app-office/akonadi-server
parentx86 stable, see bug 369075 (diff)
downloadgentoo-2-834e2672c89e2564ef0a28d0660039d00cf4c65e.tar.gz
gentoo-2-834e2672c89e2564ef0a28d0660039d00cf4c65e.tar.bz2
gentoo-2-834e2672c89e2564ef0a28d0660039d00cf4c65e.zip
Version bump, remove old.
(Portage version: 2.2.0_alpha188/cvs/Linux x86_64, signed Manifest commit with key F3CFD2BD)
Diffstat (limited to 'app-office/akonadi-server')
-rw-r--r--app-office/akonadi-server/ChangeLog9
-rw-r--r--app-office/akonadi-server/akonadi-server-1.10.0-r1.ebuild128
-rw-r--r--app-office/akonadi-server/akonadi-server-1.10.1.ebuild (renamed from app-office/akonadi-server/akonadi-server-1.10.0.ebuild)2
-rw-r--r--app-office/akonadi-server/files/akonadi-server-1.10.0-fix-pgsql.patch22
4 files changed, 9 insertions, 152 deletions
diff --git a/app-office/akonadi-server/ChangeLog b/app-office/akonadi-server/ChangeLog
index 4448d12b395e..8412e72f8140 100644
--- a/app-office/akonadi-server/ChangeLog
+++ b/app-office/akonadi-server/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for app-office/akonadi-server
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.119 2013/07/14 14:36:30 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/ChangeLog,v 1.120 2013/07/23 17:39:21 johu Exp $
+
+*akonadi-server-1.10.1 (23 Jul 2013)
+
+ 23 Jul 2013; Johannes Huber <johu@gentoo.org> +akonadi-server-1.10.1.ebuild,
+ -akonadi-server-1.10.0-r1.ebuild, -akonadi-server-1.10.0.ebuild,
+ -files/akonadi-server-1.10.0-fix-pgsql.patch:
+ Version bump, remove old.
14 Jul 2013; Manuel Rüger <mrueg@gentoo.org> akonadi-server-1.10.0-r1.ebuild,
akonadi-server-1.10.0.ebuild:
diff --git a/app-office/akonadi-server/akonadi-server-1.10.0-r1.ebuild b/app-office/akonadi-server/akonadi-server-1.10.0-r1.ebuild
deleted file mode 100644
index affcb200acfd..000000000000
--- a/app-office/akonadi-server/akonadi-server-1.10.0-r1.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.10.0-r1.ebuild,v 1.2 2013/07/14 14:36:30 mrueg Exp $
-
-EAPI=5
-
-if [[ $PV = *9999* ]]; then
- scm_eclass=git-2
- EGIT_REPO_URI="git://anongit.kde.org/akonadi"
- SRC_URI=""
- KEYWORDS=""
-else
- SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2"
- KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
- S="${WORKDIR}/${P/-server/}"
-fi
-
-inherit cmake-utils ${scm_eclass}
-
-DESCRIPTION="The server part of Akonadi"
-HOMEPAGE="http://pim.kde.org/akonadi"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-IUSE="+mysql postgres +qt4 qt5 sqlite test"
-
-REQUIRED_USE="^^ ( qt4 qt5 ) || ( sqlite mysql postgres )"
-
-CDEPEND="
- dev-libs/boost:=
- >=dev-libs/soprano-2.6.51
- x11-misc/shared-mime-info
- qt4? (
- >=dev-qt/qtcore-4.5.0:4
- >=dev-qt/qtdbus-4.5.0:4
- >=dev-qt/qtgui-4.5.0:4[dbus(+)]
- >=dev-qt/qtsql-4.5.0:4[mysql?,postgres?]
- >=dev-qt/qttest-4.5.0:4
- )
- qt5? (
- >=dev-libs/soprano-2.6.51[-qt4,qt5]
- dev-qt/qtcore:5
- dev-qt/qtdbus:5
- dev-qt/qtgui:5
- dev-qt/qtnetwork:5
- dev-qt/qtsql:5[mysql?,postgres?]
- dev-qt/qttest:5
- dev-qt/qtwidgets:5
- dev-qt/qtxml:5
- )
- sqlite? ( dev-db/sqlite:3 )
-"
-DEPEND="${CDEPEND}
- dev-libs/libxslt
- >=dev-util/automoc-0.9.88
- test? ( sys-apps/dbus )
-"
-RDEPEND="${CDEPEND}
- postgres? ( dev-db/postgresql-server )
-"
-
-pkg_setup() {
- # Set default storage backend in order: MySQL, SQLite PostgreSQL
- # reverse driver check to keep the order
- if use postgres; then
- DRIVER="QPSQL"
- AVAILABLE+=" ${DRIVER}"
- fi
-
- if use sqlite; then
- DRIVER="QSQLITE3"
- AVAILABLE+=" ${DRIVER}"
- fi
-
- if use mysql; then
- DRIVER="QMYSQL"
- AVAILABLE+=" ${DRIVER}"
- fi
-
- # Notify about MySQL is recommend by upstream
- if use sqlite || has_version "<${CATEGORY}/${P}[sqlite]"; then
- ewarn
- ewarn "We strongly recommend you change your Akonadi database backend to MySQL in your"
- ewarn "user configuration. This is the backend recommended by KDE upstream."
- ewarn "In particular, kde-base/kmail-4.10 does not work properly with the sqlite"
- ewarn "backend anymore."
- ewarn "You can select the backend in your ~/.config/akonadi/akonadiserverrc."
- ewarn "Available drivers are:${AVAILABLE}"
- ewarn
- fi
-}
-
-src_configure() {
- epatch "${FILESDIR}/${P}-fix-pgsql.patch"
-
- local mycmakeargs=(
- -DAKONADI_USE_STRIGI_SEARCH=OFF
- -DINSTALL_QSQLITE_IN_QT_PREFIX=ON
- $(cmake-utils_use test AKONADI_BUILD_TESTS)
- $(cmake-utils_use sqlite AKONADI_BUILD_QSQLITE)
- $(cmake-utils_use qt5 QT5_BUILD)
- )
-
- cmake-utils_src_configure
-}
-
-src_test() {
- export $(dbus-launch)
- cmake-utils_src_test
-}
-
-src_install() {
- # Who knows, maybe it accidentally fixes our permission issues
- cat <<-EOF > "${T}"/akonadiserverrc
-[%General]
-Driver=${DRIVER}
-EOF
- insinto /usr/share/config/akonadi
- doins "${T}"/akonadiserverrc
-
- cmake-utils_src_install
-}
-
-pkg_postinst() {
- elog "${DRIVER} has been set as your default akonadi storage backend."
- elog "You can override it in your ~/.config/akonadi/akonadiserverrc."
- elog "Available drivers are: ${AVAILABLE}"
-}
diff --git a/app-office/akonadi-server/akonadi-server-1.10.0.ebuild b/app-office/akonadi-server/akonadi-server-1.10.1.ebuild
index 5f02b9e4418d..4a41f066b7e0 100644
--- a/app-office/akonadi-server/akonadi-server-1.10.0.ebuild
+++ b/app-office/akonadi-server/akonadi-server-1.10.1.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.10.0.ebuild,v 1.2 2013/07/14 14:36:30 mrueg Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/akonadi-server/akonadi-server-1.10.1.ebuild,v 1.1 2013/07/23 17:39:21 johu Exp $
EAPI=5
diff --git a/app-office/akonadi-server/files/akonadi-server-1.10.0-fix-pgsql.patch b/app-office/akonadi-server/files/akonadi-server-1.10.0-fix-pgsql.patch
deleted file mode 100644
index 253b405aae72..000000000000
--- a/app-office/akonadi-server/files/akonadi-server-1.10.0-fix-pgsql.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-commit fdedc830ca5061f45cd2412c11566ca84806c427
-Author: Andras Mantia <amantia@kde.org>
-Date: Fri Jul 12 15:03:36 2013 +0300
-
- Unbreak akonadi on Postgres
-
-diff --git a/server/src/storage/datastore.cpp b/server/src/storage/datastore.cpp
-index f5a1bc6..93e1ff2 100644
---- a/server/src/storage/datastore.cpp
-+++ b/server/src/storage/datastore.cpp
-@@ -208,8 +208,9 @@ bool DataStore::setItemsFlags( const PimItem::List &items, const QVector<Flag> &
- }
-
- QueryBuilder qb2( PimItemFlagRelation::tableName(), QueryBuilder::Insert );
-- qb2.setColumnValue( PimItemFlagRelation::leftFullColumnName(), insIds );
-- qb2.setColumnValue( PimItemFlagRelation::rightFullColumnName(), insFlags );
-+ qb2.setColumnValue( PimItemFlagRelation::leftColumn(), insIds );
-+ qb2.setColumnValue( PimItemFlagRelation::rightColumn(), insFlags );
-+ qb2.setIdentificationColumn( QString() );
- if ( !qb2.exec() ) {
- return false;
- }