From: "Michael Palimaka" <kensington@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: app-office/akonadi-server/
Date: Wed, 23 Sep 2015 12:59:18 +0000 (UTC) [thread overview]
Message-ID: <1443013150.176cbaab4e18dc6baf69a7d2c98beec2ecc3f424.kensington@gentoo> (raw)
commit: 176cbaab4e18dc6baf69a7d2c98beec2ecc3f424
Author: Michael Palimaka <kensington <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 12:57:45 2015 +0000
Commit: Michael Palimaka <kensington <AT> gentoo <DOT> 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}"
-}
next reply other threads:[~2015-09-23 12:59 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-23 12:59 Michael Palimaka [this message]
-- strict thread matches above, loose matches on Subject: below --
2016-10-30 12:56 [gentoo-commits] repo/gentoo:master commit in: app-office/akonadi-server/ Johannes Huber
2016-07-16 16:52 Johannes Huber
2016-06-15 18:40 Michael Palimaka
2016-06-11 10:56 Agostino Sarubbo
2016-05-31 11:05 Johannes Huber
2015-10-30 14:30 Michael Palimaka
2015-10-30 10:15 Agostino Sarubbo
2015-10-26 5:31 Jeroen Roovers
2015-10-25 10:52 Mikle Kolyada
2015-10-23 9:05 Agostino Sarubbo
2015-10-19 19:50 Alex Brandt
2015-09-23 12:52 Agostino Sarubbo
2015-08-12 19:04 Johannes Huber
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1443013150.176cbaab4e18dc6baf69a7d2c98beec2ecc3f424.kensington@gentoo \
--to=kensington@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox