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 A1DAF139BC6 for ; Wed, 23 Sep 2015 12:59:24 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id EF83BE0852; Wed, 23 Sep 2015 12:59:23 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 7BDA4E0852 for ; Wed, 23 Sep 2015 12:59:23 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 48086340A26 for ; Wed, 23 Sep 2015 12:59:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D18A9238 for ; Wed, 23 Sep 2015 12:59:18 +0000 (UTC) From: "Michael Palimaka" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michael Palimaka" Message-ID: <1443013150.176cbaab4e18dc6baf69a7d2c98beec2ecc3f424.kensington@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/akonadi-server/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-office/akonadi-server/akonadi-server-1.13.0.ebuild X-VCS-Directories: app-office/akonadi-server/ X-VCS-Committer: kensington X-VCS-Committer-Name: Michael Palimaka X-VCS-Revision: 176cbaab4e18dc6baf69a7d2c98beec2ecc3f424 X-VCS-Branch: master Date: Wed, 23 Sep 2015 12:59:18 +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: 7bb42dce-a1fe-4c40-b7b7-dcb8f3f513fa X-Archives-Hash: 01cdf6287c1f6a812eac42d726c2ba6c commit: 176cbaab4e18dc6baf69a7d2c98beec2ecc3f424 Author: Michael Palimaka gentoo org> AuthorDate: Wed Sep 23 12:57:45 2015 +0000 Commit: Michael Palimaka gentoo org> CommitDate: Wed Sep 23 12:59:10 2015 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=176cbaab app-office/akonadi-server: remove old. Package-Manager: portage-2.2.20.1 .../akonadi-server/akonadi-server-1.13.0.ebuild | 134 --------------------- 1 file changed, 134 deletions(-) diff --git a/app-office/akonadi-server/akonadi-server-1.13.0.ebuild b/app-office/akonadi-server/akonadi-server-1.13.0.ebuild deleted file mode 100644 index 84d6bf0..0000000 --- a/app-office/akonadi-server/akonadi-server-1.13.0.ebuild +++ /dev/null @@ -1,134 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -if [[ $PV = *9999* ]]; then - scm_eclass=git-r3 - 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="https://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:= - x11-misc/shared-mime-info - qt4? ( - >=dev-qt/qtcore-4.8.5:4 - >=dev-qt/qtdbus-4.8.5:4 - >=dev-qt/qtgui-4.8.5:4 - >=dev-qt/qtsql-4.8.5:4[mysql?,postgres?] - >=dev-qt/qttest-4.8.5:4 - ) - 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] ) -" - -RESTRICT="test" - -pkg_pretend() { - if [[ ${MERGE_TYPE} != binary ]]; then - [[ $(gcc-major-version) -lt 4 ]] || \ - ( [[ $(gcc-major-version) -eq 4 && $(gcc-minor-version) -lt 7 ]] ) \ - && die "Sorry, but gcc-4.6 and earlier won't work (see bug #520102)." - fi -} - -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() { - local mycmakeargs=( - -DINSTALL_QSQLITE_IN_QT_PREFIX=ON - -DWITH_SOPRANO=FALSE - $(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}" -}