From: "Andreas Sturmlechner" <asturm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: kde-apps/akonadi/
Date: Mon, 1 Jul 2019 19:36:30 +0000 (UTC) [thread overview]
Message-ID: <1562009754.b808a6db238748037f309ddb75a0de6b9f7daceb.asturm@gentoo> (raw)
commit: b808a6db238748037f309ddb75a0de6b9f7daceb
Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
AuthorDate: Mon Jul 1 19:35:54 2019 +0000
Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org>
CommitDate: Mon Jul 1 19:35:54 2019 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b808a6db
kde-apps/akonadi: Drop 18.12.3-r1
Package-Manager: Portage-2.3.68, Repoman-2.3.16
Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org>
kde-apps/akonadi/akonadi-18.12.3-r1.ebuild | 117 -----------------------------
1 file changed, 117 deletions(-)
diff --git a/kde-apps/akonadi/akonadi-18.12.3-r1.ebuild b/kde-apps/akonadi/akonadi-18.12.3-r1.ebuild
deleted file mode 100644
index 4f8e877897e..00000000000
--- a/kde-apps/akonadi/akonadi-18.12.3-r1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-KDE_DESIGNERPLUGIN="true"
-KDE_TEST="forceoptional"
-VIRTUALDBUS_TEST="true"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="Storage service for PIM data and libraries for PIM apps"
-HOMEPAGE="https://community.kde.org/KDE_PIM/akonadi"
-
-KEYWORDS="amd64 ~arm ~arm64 x86"
-LICENSE="LGPL-2.1+"
-IUSE="+mysql postgres sqlite tools xml"
-
-REQUIRED_USE="|| ( mysql postgres sqlite ) test? ( tools )"
-
-COMMON_DEPEND="
- $(add_frameworks_dep kcompletion)
- $(add_frameworks_dep kconfig)
- $(add_frameworks_dep kconfigwidgets)
- $(add_frameworks_dep kcoreaddons)
- $(add_frameworks_dep kcrash)
- $(add_frameworks_dep kdbusaddons)
- $(add_frameworks_dep ki18n)
- $(add_frameworks_dep kiconthemes)
- $(add_frameworks_dep kio)
- $(add_frameworks_dep kitemmodels)
- $(add_frameworks_dep kitemviews)
- $(add_frameworks_dep kwidgetsaddons)
- $(add_frameworks_dep kwindowsystem)
- $(add_frameworks_dep kxmlgui)
- $(add_qt_dep qtdbus)
- $(add_qt_dep qtgui)
- $(add_qt_dep qtnetwork)
- $(add_qt_dep qtsql 'mysql?,postgres?')
- $(add_qt_dep qtwidgets)
- $(add_qt_dep qtxml)
- sqlite? (
- $(add_qt_dep qtsql 'sqlite' '' '5=')
- dev-db/sqlite:3
- )
- xml? ( dev-libs/libxml2 )
-"
-DEPEND="${COMMON_DEPEND}
- dev-libs/boost
- dev-libs/libxslt
- test? ( sys-apps/dbus )
-"
-RDEPEND="${COMMON_DEPEND}
- !kde-apps/akonadi:4
- !<kde-apps/kapptemplate-17.11.80
- !kde-apps/kdepim-l10n
- !kde-apps/kdepimlibs
- mysql? ( virtual/mysql )
- postgres? ( dev-db/postgresql )
-"
-
-# some akonadi tests time out, that probably needs more work as it's ~700 tests
-RESTRICT+=" test"
-
-PATCHES=(
- "${FILESDIR}/${PN}-18.12.2-mysql56-crash.patch"
- "${FILESDIR}/${P}-major-regression-updating-attributes.patch"
- "${FILESDIR}/${P}-collection-detach-at-wrong-time-in-attribute.patch"
-)
-
-pkg_setup() {
- # Set default storage backend in order: MySQL, PostgreSQL, SQLite
- # reverse driver check to keep the order
- use sqlite && DRIVER="QSQLITE3"
- use postgres && DRIVER="QPSQL"
- use mysql && DRIVER="QMYSQL"
-
- if use sqlite || has_version "<${CATEGORY}/${P}[sqlite]"; then
- ewarn "We strongly recommend you change your Akonadi database backend to either MySQL"
- ewarn "or PostgreSQL in your user configuration."
- ewarn "In particular, kde-apps/kmail does not work properly with the sqlite backend."
- fi
-
- kde5_pkg_setup
-}
-
-src_configure() {
- local mycmakeargs=(
- -DAKONADI_BUILD_QSQLITE=$(usex sqlite)
- -DBUILD_TOOLS=$(usex tools)
- $(cmake-utils_use_find_package xml LibXml2)
- )
-
- kde5_src_configure
-}
-
-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
-
- kde5_src_install
-}
-
-pkg_postinst() {
- kde5_pkg_postinst
- elog "You can select the storage backend in ~/.config/akonadi/akonadiserverrc."
- elog "Available drivers are:"
- use mysql && elog " QMYSQL"
- use postgres && elog " QPSQL"
- use sqlite && elog " QSQLITE3"
- elog "${DRIVER} has been set as your default akonadi storage backend."
-}
next reply other threads:[~2019-07-01 19:36 UTC|newest]
Thread overview: 26+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-07-01 19:36 Andreas Sturmlechner [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-10-04 21:04 [gentoo-commits] repo/gentoo:master commit in: kde-apps/akonadi/ Andreas Sturmlechner
2024-07-01 21:06 Andreas Sturmlechner
2022-11-16 8:55 WANG Xuerui
2021-09-27 14:14 Yixun Lan
2021-02-16 22:59 Andreas Sturmlechner
2021-02-16 22:35 Andreas Sturmlechner
2021-01-07 17:35 Andreas Sturmlechner
2020-05-01 10:47 Andreas Sturmlechner
2019-07-27 13:56 Andreas Sturmlechner
2019-07-23 18:55 Andreas Sturmlechner
2019-07-01 19:36 Andreas Sturmlechner
2019-07-01 19:23 Thomas Deutschmann
2019-01-10 9:55 Andreas Sturmlechner
2018-07-12 19:38 Andreas Sturmlechner
2018-07-12 10:38 Andreas Sturmlechner
2017-11-30 2:07 Thomas Deutschmann
2017-09-22 16:06 Andreas Sturmlechner
2017-09-22 15:15 Andreas Sturmlechner
2017-09-22 15:15 Andreas Sturmlechner
2017-08-17 10:03 Andreas Sturmlechner
2017-08-17 10:03 Andreas Sturmlechner
2017-08-12 11:59 Andreas Sturmlechner
2017-08-12 11:59 Andreas Sturmlechner
2017-01-26 9:44 Michael Palimaka
2016-10-30 12:56 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=1562009754.b808a6db238748037f309ddb75a0de6b9f7daceb.asturm@gentoo \
--to=asturm@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