From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id AF3141381F3 for ; Wed, 8 May 2013 18:39:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 4116DE0984; Wed, 8 May 2013 18:39:21 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D2B41E0984 for ; Wed, 8 May 2013 18:39:20 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id E958133DFD6 for ; Wed, 8 May 2013 18:39:19 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id C08BDE4F2B for ; Wed, 8 May 2013 18:39:16 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1368038335.5eadadd5adc4da14c17d99953fd49ce80b67610c.johu@gentoo> Subject: [gentoo-commits] proj/kde:master commit in: app-office/akonadi-server/ X-VCS-Repository: proj/kde X-VCS-Files: app-office/akonadi-server/akonadi-server-9999.ebuild X-VCS-Directories: app-office/akonadi-server/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: 5eadadd5adc4da14c17d99953fd49ce80b67610c X-VCS-Branch: master Date: Wed, 8 May 2013 18:39:16 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 0e26ceb0-a76f-4fff-8d71-77372cc9d92c X-Archives-Hash: 4ce3695fd1d6736eb5b6c0e66ea35707 commit: 5eadadd5adc4da14c17d99953fd49ce80b67610c Author: Johannes Huber gentoo org> AuthorDate: Wed May 8 18:38:55 2013 +0000 Commit: Johannes Huber gentoo org> CommitDate: Wed May 8 18:38:55 2013 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/kde.git;a=commit;h=5eadadd5 [app-office/akonadi-server] Sync with tree. Package-Manager: portage-2.2.0_alpha174 --- .../akonadi-server/akonadi-server-9999.ebuild | 23 +++++++------------ 1 files changed, 9 insertions(+), 14 deletions(-) diff --git a/app-office/akonadi-server/akonadi-server-9999.ebuild b/app-office/akonadi-server/akonadi-server-9999.ebuild index 4840149..d7b6ca1 100644 --- a/app-office/akonadi-server/akonadi-server-9999.ebuild +++ b/app-office/akonadi-server/akonadi-server-9999.ebuild @@ -11,7 +11,7 @@ if [[ $PV = *9999* ]]; then KEYWORDS="" else SRC_URI="mirror://kde/stable/${PN/-server/}/src/${P/-server/}.tar.bz2" - KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux" + KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux" S="${WORKDIR}/${P/-server/}" fi @@ -78,21 +78,16 @@ pkg_setup() { AVAILABLE+=" ${DRIVER}" fi - # Notify about driver name change - if use sqlite && has_version "<=${CATEGORY}/${PN}-1.4.0[sqlite]"; then + # Notify about MySQL is recommend by upstream + if use sqlite || has_version "<${CATEGORY}/${P}[sqlite]"; then ewarn - ewarn "SQLite driver name changed from QSQLITE to QSQLITE3." - ewarn "Please edit your ~/.config/akonadi/akonadiserverrc." - fi - - # Notify about SQLite not being default anymore - if ! use sqlite && has_version "<=${CATEGORY}/${PN}-1.9.0[sqlite]"; then - ewarn - ewarn "The default storage drive has changed from SQLite to MySQL." - ewarn "If you want to stay with SQLite, enable the sqlite USE flag and reinstall" - ewarn "${CATEGORY}/${PN}." - ewarn "Otherwise, select a different driver in your ~/.config/akonadi/akonadiserverrc." + 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 }