From: Peter Michael Green Date: Sun, 7 Jun 2020 20:57:50 +0000 (+0100) Subject: akonadi (4:20.04.1-2+rpi1) bullseye-staging; urgency=medium X-Git-Tag: archive/raspbian/4%20.08.2-2+rpi1~5 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=ea5db0d386a211650d82e023f27af7c6b64a4806;p=akonadi.git akonadi (4:20.04.1-2+rpi1) bullseye-staging; urgency=medium * Link with libatomic on armhf too. [dgit import unpatched akonadi 4:20.04.1-2+rpi1] --- ea5db0d386a211650d82e023f27af7c6b64a4806 diff --cc debian/NEWS index 0000000,0000000..48927d7 new file mode 100644 --- /dev/null +++ b/debian/NEWS @@@ -1,0 -1,0 +1,25 @@@ ++akonadi (4:17.08.0-1) experimental; urgency=medium ++ ++ With this version the internal Akonadi database needs to be migrated for ++ every user using Akonadi. Akonadi will start the migration automatically, ++ when it is started the next time. The migration step can take a longer period ++ of time to start and will need a lot of ram and tmp space, because some ++ database tables need to be temporarily copied. ++ To see errors of the migration, you want to start akonadi by hand: ++ akonadictl start or akonadictl restart ++ and/or look into ~/.xsessions-errors. You may also need to set the tmpdir ++ to some filesystem with more space. You can tweak the database settings under ++ ~/.local/share/akonadi/ mysql.conf or other conf file for the different ++ supported databases. ++ ++ -- Sandro Knauß Tue, 12 Dec 2017 16:45:12 +0100 ++ ++akonadi (1.3.1-3+squeeze1) stable-proposed-updates; urgency=low ++ ++ The location of the socket used to communicate with the Akonadi server was ++ changed to better support home directories on network file systems. After ++ updating to this version, applications making use of Akonadi will only ++ work correctly after restarting both the Akonadi server and client ++ applications. ++ ++ -- Modestas Vainius Sat, 30 Apr 2011 12:50:31 +0300 diff --cc debian/README.Debian index 0000000,0000000..98b23e5 new file mode 100644 --- /dev/null +++ b/debian/README.Debian @@@ -1,0 -1,0 +1,105 @@@ ++1. Akonadi configuration ++------------------------ ++ ++Akonadi stores its settings and data in the subdirectory "akonadi" of the file ++system locations specified by XDG Base Directory Specification [1a]. ++ ++* Configuration files (e.g. akonadiserverrc) are stored in ++ $XDG_CONFIG_HOME/akonadi/ (defaults to ~/.config/akonadi/). If the file ++ cannot be found there, Akonadi will look in $XDG_CONFIG_DIRS/akonadi/ ++ (defaults to /etc/xdg/akonadi/). ++ ++* Similarly, data files are stored in $XDG_DATA_HOME/akonadi/ ++ (~/.local/share/akonadi/ by default). If the needed resource cannot be found ++ there, Akonadi will look in $XDG_DATA_DIRS/akonadi/ (that is ++ /usr/local/share/akonadi/ and /usr/share/akonadi/ by default) as well. ++ ++Please note that Akonadi never modifies config and/or data files in global ++directories. Changed files are always written to $XDG_CONFIG_HOME/akonadi/ and ++$XDG_DATA_HOME/akonadi/ respectively which will always have preference over ++global files the next time Akonadi starts up. ++ ++[1a] http://standards.freedesktop.org/basedir-spec/basedir-spec-latest.html ++ ++2. Akonadi storage backends ++--------------------------- ++ ++While Akonadi provides data caching, indexing and searching services for PIM ++applications, it does not do most of raw data manipulation itself. It relays ++these tasks to the external SQL database engine. Flexible Akonadi architecture ++allows a user to choose from a range of well-known SQL database servers and use ++them with Akonadi. ++ ++SQL server specific details are implemented in Akonadi storage backends which ++are provided by the respective akonadi-backend-* packages. Just install the ++backend package which is the most appropriate for your setup and edit ++akonadiserverrc configuration file accordingly. By default Akonadi uses MySQL ++backend which is configured to start a local instance of MySQL server for each ++user using Akonadi. ++ ++At the moment, the following backends are supported: ++ ++* MySQL backend (default) provided by the akonadi-backend-mysql package. ++ By default, the backend starts MySQL Server instance with privilegies of the ++ user that started akonadiserver. Alternatively (with StartServer=false) the ++ backend may connect to the specified database on the external MySQL server. ++ ++ This backend uses official QSql MySQL driver. The following configuration ++ options are available: ++ ++ [%General] ++ Driver=QMYSQL ++ ++ [QMYSQL] ++ StartServer= ; whether to start internal server instance, defaults to true ++ Name= ; database name ++ Host= ; name of host running external MySQL server ++ User= ; database user, external server only ++ Password= ; database user password, external server only ++ Options= ; connection options ++ ServerPath= ; absolute path to the mysqld executable, ++ ; defaults to /usr/sbin/mysqld, internal server only ++ CleanServerShutdownCommand= ; a command to shutdown internal server cleanly ++ ; default is reasonable ++ ++* PostgreSQL backend provided by the akonadi-backend-postgresql package. Like ++ MySQL backend, by default PostgreSQL backend starts an unpriviledged instance ++ of the PostgreSQL server for each user. Alternatively, if you switch ++ StartServer option off, you may specify an external PostgreSQL database to ++ connect to. ++ ++ This backend uses QSql PSQL driver. The following configuration options are ++ available: ++ ++ [%General] ++ Driver=QPSQL ++ ++ [QPSQL] ++ StartServer= ; whether to start internal server instance, defaults to true ++ Name= ; dababase name ++ Host= ; name of host running external PostgreSQL server ++ User= ; database user, external server only ++ Password= ; database user password, external server only ++ Options= ; connection options ++ ServerPath= ; path to the pg_ctl executable, internal server only ++ InitDbPath= ; path to the initdb executable, internal server only ++ CleanServerShutdownCommand= ; a command to shutdown internal server cleanly, ++ ; default is reasonable ++ ++* SQLite backend provided by the akonadi-backend-sqlite package. It uses ++ embedded SQLite database hence it does not need a separate instance of the ++ SQL server. ++ ++ This backend is based on the custom Qt SQLite3 driver which is ++ also shipped in the backend package. The following configuration options are ++ available: ++ ++ [%General] ++ Driver=QSQLITE3 ++ ++ [QSQLITE3] ++ Name= ; path to the database file ++ ; defaults to $XDG_DATA_HOME/akonadi/akonadi.db ++ ++NOTE: environment variables are not expanded in option values. Option must not ++be present in the configuration file in order for its default to have effect. diff --cc debian/TODO index 0000000,0000000..5163e48 new file mode 100644 --- /dev/null +++ b/debian/TODO @@@ -1,0 -1,0 +1,4 @@@ ++* Wrong default ODBC configuration string for Debian virtuoso. ++* debconf for switching default Akonadi backend? ++* akonadi-backend package? ++ diff --cc debian/akonadi-backend-mysql.install index 0000000,0000000..6289177 new file mode 100644 --- /dev/null +++ b/debian/akonadi-backend-mysql.install @@@ -1,0 -1,0 +1,2 @@@ ++etc/xdg/akonadi/mysql-global-mobile.conf ++etc/xdg/akonadi/mysql-global.conf diff --cc debian/akonadi-backend-mysql.maintscript index 0000000,0000000..6223afb new file mode 100644 --- /dev/null +++ b/debian/akonadi-backend-mysql.maintscript @@@ -1,0 -1,0 +1,4 @@@ ++rm_conffile /etc/akonadi/mysql-global-mobile.conf 4:17.08.3-2~ ++rm_conffile /etc/akonadi/mysql-global.conf 4:17.08.3-2~ ++rm_conffile /etc/apparmor.d/local/usr.sbin.mysqld-akonadi 4:18.08.3-10~ ++rm_conffile /etc/apparmor.d/usr.sbin.mysqld-akonadi 4:18.08.3-10~ diff --cc debian/akonadi-backend-postgresql.lintian-overrides index 0000000,0000000..948a6b4 new file mode 100644 --- /dev/null +++ b/debian/akonadi-backend-postgresql.lintian-overrides @@@ -1,0 -1,0 +1,2 @@@ ++# This package is empty, because everything else is done within the dependencies. ++akonadi-backend-postgresql: empty-binary-package diff --cc debian/akonadi-backend-sqlite.docs index 0000000,0000000..13cc6a2 new file mode 100644 --- /dev/null +++ b/debian/akonadi-backend-sqlite.docs @@@ -1,0 -1,0 +1,1 @@@ ++README.sqlite diff --cc debian/akonadi-backend-sqlite.install index 0000000,0000000..ae92a4a new file mode 100644 --- /dev/null +++ b/debian/akonadi-backend-sqlite.install @@@ -1,0 -1,0 +1,1 @@@ ++usr/lib/*/qt5/plugins/sqldrivers/libqsqlite3.so diff --cc debian/akonadi-server.install index 0000000,0000000..f9118fd new file mode 100644 --- /dev/null +++ b/debian/akonadi-server.install @@@ -1,0 -1,0 +1,14 @@@ ++etc/apparmor.d ++usr/bin/akonadi_agent_launcher ++usr/bin/akonadi_agent_server ++usr/bin/akonadi_control ++usr/bin/akonadi_rds ++usr/bin/akonadictl ++usr/bin/akonadiselftest ++usr/bin/akonadiserver ++usr/share/config.kcfg/resourcebase.kcfg ++usr/share/dbus-1/services/org.freedesktop.Akonadi.Control.service ++usr/share/icons/hicolor/*/apps/akonadi.png ++usr/share/icons/hicolor/scalable/apps/akonadi.svgz ++usr/share/kf5/akonadi/akonadi-xml.xsd ++usr/share/mime/packages/akonadi-mime.xml diff --cc debian/akonadi-server.manpages index 0000000,0000000..13cdaf4 new file mode 100644 --- /dev/null +++ b/debian/akonadi-server.manpages @@@ -1,0 -1,0 +1,1 @@@ ++debian/man/*.1 diff --cc debian/changelog index 0000000,0000000..6108bbf new file mode 100644 --- /dev/null +++ b/debian/changelog @@@ -1,0 -1,0 +1,2006 @@@ ++akonadi (4:20.04.1-2+rpi1) bullseye-staging; urgency=medium ++ ++ * Link with libatomic on armhf too. ++ ++ -- Peter Michael Green Sun, 07 Jun 2020 20:57:50 +0000 ++ ++akonadi (4:20.04.1-2) unstable; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Add linkage against atomic, where needed. (Closes: #961647) ++ Thanks to Adrian Bunk ++ ++ -- Sandro Knauß Wed, 27 May 2020 11:52:12 +0200 ++ ++akonadi (4:20.04.1-1) unstable; urgency=medium ++ ++ [ Sandro Knauß ] ++ * New upstream release (20.04.1). ++ * Update build-deps and deps with the info from cmake. ++ * Update patch hunks. ++ * Remove not needed Build-Depends. ++ ++ -- Sandro Knauß Tue, 26 May 2020 23:59:26 +0200 ++ ++akonadi (4:20.04.0-1) experimental; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Update watch file to the new release-service location. ++ * New upstream release (19.12.1). ++ * Update build-deps and deps with the info from cmake. ++ * Bump Standards-Version to 4.5.0 (No changes needed). ++ * Get rid of debug-symbol-migration package. ++ * Add Rules-Requires-Root field to control. ++ * New upstream release (19.12.3). ++ * Enable build for designer plugins. ++ * Bump compat level to 13. ++ * Update Build-Depends. ++ * Update libkf5akonadi-dev: Designer plugin was renamed. ++ * Use apparmor profiles from upstream. ++ * Switch to dh for building. ++ * use execute_after_dh_install for dh_apparmor. ++ * Enable auto_tests(mark them non-failing). ++ * New upstream release (20.04.0). ++ * Wrap long lines in changelog entries: 4:18.08.3-6, 4:16.04.3-2, ++ 4:16.04.3-1, 4:16.04.2-2, 4:16.04.1-1, 1.3.1-3ubuntu1, 1.2.1- ++ 1ubuntu1. ++ * Set field Upstream-Contact in debian/copyright. ++ * Remove obsolete fields Contact, Name from debian/upstream/metadata ++ (already present in machine-readable debian/copyright). ++ * Cleanup copyright file. ++ * Remove unused license definitions for Expat. ++ * Remove not needed linker flags. ++ ++ -- Sandro Knauß Wed, 13 May 2020 12:20:28 +0200 ++ ++akonadi (4:19.08.3-1) unstable; urgency=medium ++ ++ [ Sandro Knauß ] ++ * New upstream release (19.08.3). ++ ++ -- Sandro Knauß Sat, 30 Nov 2019 22:54:27 +0100 ++ ++akonadi (4:19.08.2-1) experimental; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Bump Standards-Version to 4.4.1 (No changes needed). ++ * New upstream release (19.08.2). ++ * Update build-deps and deps with the info from cmake. ++ * Delete backported patches. ++ * Update patch hunks. ++ * Move qlogging-categories5 files from akonadi-server to libkf5akonadi- ++ data ++ * Remove breaks against kde-l10n pacakges. ++ * Update libkf5akonadi-dev dependencies. ++ ++ -- Sandro Knauß Fri, 08 Nov 2019 10:39:02 +0100 ++ ++akonadi (4:18.08.3-11) unstable; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Fix "expermental version impossible to install due to old qt ++ dependency" (Closes: #943972) ++ ++ -- Sandro Knauß Thu, 14 Nov 2019 23:48:16 +0100 ++ ++akonadi (4:18.08.3-10) experimental; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Remove outdated AppAromor profiles. ++ * Fix broken Apparmor profile (Closes: #941902) ++ * Use xdg_data_home/xdg_config_home in AppArmor profiles. ++ ++ -- Sandro Knauß Tue, 08 Oct 2019 19:08:20 +0200 ++ ++akonadi (4:18.08.3-9) experimental; urgency=medium ++ ++ [ Sandro Knauß ] ++ * Improve AppArmor profile: ++ - Support for non merged-/usr system. ++ - Akonadiserver needs read access to mime database. ++ ++ -- Sandro Knauß Sun, 06 Oct 2019 23:52:15 +0200 ++ ++akonadi (4:18.08.3-8) experimental; urgency=medium ++ ++ [Maximiliano Curia] ++ * Drop kdesignerplugin dependency ++ ++ [ Sandro Knauß ] ++ * Use Apparmor profiles by upstream. ++ * Use virtual packages to bundle kdepim. ++ * Remove not needed break rules (as the versions are already in ++ stable). ++ * Bump to compat v12 (no changes needed). ++ * Bump to Standards-Version 4.4.0 (no changes needed). ++ * Move asapcat from akonadi-server -> libkf5akonadi-dev-bin. ++ * Add myself to Uploaders. ++ ++ -- Sandro Knauß Tue, 24 Sep 2019 00:21:04 +0200 ++ ++akonadi (4:18.08.3-7) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Add patch to fix: Akonadi components crash on logout. (Closes: #939013) ++ * Add patch to fix: Automatic recovery from Multiple Merge Candidates ++ error (Closes: #939012) ++ * Add patch with files, that are needed for other patches. ++ * Update symbols from buildds for 4:18.08.3 ++ ++ -- Sandro Knauß Fri, 30 Aug 2019 12:59:47 +0200 ++ ++akonadi (4:18.08.3-6) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Fix "Akonadi don't anwser any requests and ends in deadlock" ++ (Closes: #935981) by adding upstream patches. ++ - Akonadi-fix-dangling-transaction-after-itemsync-fail.patch ++ - ItemSync-skip-handling-remote-items-if-local-changes.patch ++ ++ -- Sandro Knauß Wed, 28 Aug 2019 19:31:31 +0200 ++ ++akonadi (4:18.08.3-5) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Switch back to use default-mysql-server-core instead of default- ++ mysql-server as dependency (see #910902). ++ ++ -- Sandro Knauß Mon, 29 Apr 2019 16:24:10 +0200 ++ ++akonadi (4:18.08.3-4) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Update symbols from buildds for 4:18.08.3 ++ ++ -- Sandro Knauß Thu, 14 Feb 2019 21:07:51 +0100 ++ ++akonadi (4:18.08.3-3) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Add Build-Depends-package field in symbolfiles. ++ * Add patch Call-QSqlQuery-finish-on-all-SELECT-queries-when-don ++ (Closes: #921535). ++ ++ -- Sandro Knauß Fri, 08 Feb 2019 23:20:48 +0100 ++ ++akonadi (4:18.08.3-2) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Rename {kubuntu_,}disable_secure_file_priv_check.diff. ++ * Update symbols from buildds for 4:18.08.3 ++ ++ [ Alf Gaida ] ++ * Replaced wrapper mysqld-akonadi with link mysqld -> mysqld-akonadi ++ (Closes: #921389) ++ * Replaced dependency for akonadi-backend-mysql: ++ - default-mysql-server-core -> default-mysql-server ++ - virtual-mysql-server-core -> virtual-mysql-server ++ ++ -- Sandro Knauß Wed, 06 Feb 2019 12:56:58 +0100 ++ ++akonadi (4:18.08.3-1) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * New upstream release (18.08.3). ++ * Bump Standards-Version to 4.3.0 (No changes needed). ++ * Removed acc autopkgtest. ++ ++ -- Sandro Knauß Mon, 04 Feb 2019 15:56:47 +0100 ++ ++akonadi (4:18.08.1-1) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Bump Standards-Version to 4.2.1 (No changes needed). ++ * Update symbols from buildds for 4:18.07.90 ++ * Remove armel specific symbols, that are not exposed anymore. ++ * Follow stable releases in KDE again.. ++ * New upstream release (18.08.1). ++ ++ -- Sandro Knauß Tue, 02 Oct 2018 23:16:04 +0200 ++ ++akonadi (4:18.07.90-1) experimental; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * New upstream release (18.07.90). ++ * Update build-deps and deps with the info from cmake ++ * Update copyright file for new upstream. ++ * Bump DebianAbi for libkf5akonadicore5 because of breakage to 2. ++ * Bump DebianAbi for libkf5akonadiprivate5 because of breakage to 2. ++ * Update symbols for libkf5akonadiagentbase5 for 18.07.90. ++ * Remove patch that got upstream. ++ * Update patch hunks. ++ ++ -- Sandro Knauß Thu, 16 Aug 2018 11:10:34 +0200 ++ ++akonadi (4:17.12.3-3) unstable; urgency=medium ++ ++ * Team upload. ++ * Backport upstream commit 310b6a26f58814568245c781c2136504d1a6f338 to fix ++ build with Qt 5.11; patch ++ upstream_Fix-build-with-Qt-5.11-missing-QAbstractItemView.patch. ++ * Remove empty line at the end of changelog. ++ * Bump Standards-Version to 4.1.5, no changes required. ++ * Remove the 'testsuite' autopkgtest: ++ - it runs the test suite from the build dir, not using the installed ++ packages (hence misusing what autopkgtest is for) ++ - it always failed (so it is not useful to even catch regressions), and ++ nobody bothered to fix it ++ - hence, pass -DBUILD_TESTING=OFF to cmake to disable the build of the ++ tests, and pass -DBUILD_TOOLS=ON to explicitly request the test tools ++ (which are installed) ++ * Update symbols files for GCC 8, and the loss of test-only symbols. ++ * Do not append -fvisibility=hidden -fvisibility-inlines-hidden to the ++ CFLAGS, and CXXFLAGS anymore, since they are already there since at least ++ the switch to KF5/ECM. ++ ++ -- Pino Toscano Tue, 31 Jul 2018 08:01:23 +0200 ++ ++akonadi (4:17.12.3-2) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Adds Breaks/Replaces against kapptemplate (Closes: #894913) ++ ++ -- Sandro Knauß Thu, 05 Apr 2018 19:45:46 +0200 ++ ++akonadi (4:17.12.3-1) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Add kdevelop templates to libkf5akonadi-dev. ++ * New upstream release (17.12.3). ++ * Update symbols from buildds for 4:17.12.2 ++ * bump epoch in symbolsfiles to match version of the package. ++ * use secure copyright format uri. ++ * small fixes in copyright file. ++ * Update package descriptions. ++ ++ -- Sandro Knauß Sat, 31 Mar 2018 18:21:21 +0200 ++ ++akonadi (4:17.12.2-1) experimental; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Drop transitional package libkf5akonadicore-bin (Closes: #873932) ++ * New upstream release (17.12.2). ++ * Update build-deps and deps with the info from cmake ++ * Remove unneded Build-Deps. ++ * Use DebianABIManager to handle libkf5akonadi* properly ++ * Update library from libkf5akonadicore5 -> libkf5akonadicore5abi1, ++ because of ABI breakage. ++ * Update library from libkf5akonadiprivate5 -> ++ libkf5akonadiprivate5abi1, because of ABI breakage. ++ * Update library from libkf5akonadiwidgets5 -> ++ libkf5akonadiwidgets5abi1, because of ABI breakage. ++ * Update copyright file. ++ * Split arch independet data out of libkf5akonadicore5abi1 into new ++ package libkf5akonadi-data. ++ * Update Vcs links to salsa. ++ * Bump debhelper build-dep and compat to 11. ++ * add akonadi-backend-postgresql.lintian-overrides to ignore empty ++ package. ++ ++ -- Sandro Knauß Fri, 09 Mar 2018 20:10:06 +0100 ++ ++akonadi (4:17.08.3-2) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Pino Toscano ] ++ * Fix typo in NEWS file. ++ * Remove the unused kio-dev build dependency. ++ * Remove obsolete /etc/akonadi/mysql-global.conf, and ++ /etc/akonadi/mysql-global-mobile.conf conffiles. (Closes: #868231) ++ * Update symbols files from logs of buildds. ++ * Bump Standards-Version to 4.1.3, no changes required. ++ * Simplify watch file, and switch it to https. ++ * Remove trailing whitespaces in changelog. ++ ++ [ Sandro Knauß ] ++ * libkf5akonadiserver-dev incorrectly marked as Multi-Arch: same ++ (Closes: #880385) ++ * Fix "usr.sbin.mysqld-akonadi: denied access to ++ /etc/mysql/mariadb.cnf" (Closes: #869865) ++ - Added patch to allow files under mariadb.conf.d ++ Thanks to Vincas Dargis for the patch ++ ++ -- Pino Toscano Wed, 03 Jan 2018 17:38:15 +0100 ++ ++akonadi (4:17.08.3-1) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Maximiliano Curia ] ++ * New revision ++ * Update the apparmor file for mariadb, and report errors ++ * Update uploaders list as requested by MIA team (Closes: #879284) ++ ++ [ Sandro Knauß ] ++ * New upstream release (17.08.3). ++ * Bump Standards-Version to 4.1.2 (No changes needed). ++ * Add NEWS entry about the db migration ++ * Bump debhelper build-dep and compat to 10. ++ * Update symbols from buildds for 4:17.08.0 ++ * Update symbols from buildds for 4:17.08.3 ++ * Bump l10npkgs_firstversion_ok to 4:16.04.3-9~ ++ ++ -- Sandro Knauß Thu, 21 Dec 2017 17:48:11 +0100 ++ ++akonadi (4:17.08.0-1) experimental; urgency=medium ++ ++ [ Maximiliano Curia ] ++ * New upstream release (17.08.0). (Closes: 871147, 871246) ++ * Drop Multi-Arch: foreign from the dev pkg. ++ Thanks to Helmut Grohne for the report (Closes: 872207) ++ * Uscan no longer supports two main components urls ++ * Update build-deps and deps with the info from cmake ++ * Drop upstream patches ++ * Bump Standards-Version to 4.0.1. ++ * Update symbols files ++ * Update install files ++ * Set Priority to optional ++ * Add breaks/replaces for the /mo files ++ * Add breaks for libkolab1 ++ * Bump group breaks (17.08) ++ * Drop kdepimlibs-data symbols injection ++ * Release to experimental ++ ++ [ Jonathan Riddell ] ++ * Sync debian/watch with neon ++ ++ -- Maximiliano Curia Fri, 01 Sep 2017 22:07:58 +0200 ++ ++akonadi (4:16.04.3-6) unstable; urgency=medium ++ ++ * Team upload. ++ * Backport upstream changes to not #include .cpp files in tests sources. ++ (Closes: #871147) ++ ++ -- Dmitry Shachnev Fri, 25 Aug 2017 20:26:14 +0300 ++ ++akonadi (4:16.04.3-5) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Maximiliano Curia ] ++ * Add new patch: Delete-the-properties-window-if-closed.patch. ++ Thanks to Nancy Anthracite for reporting (Closes: 845553) ++ ++ [ Dmitry Shachnev ] ++ * Add a patch from upstream to fix build with Qt 5.9. ++ ++ -- Dmitry Shachnev Fri, 07 Jul 2017 16:33:59 +0300 ++ ++akonadi (4:16.04.3-4) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Add patch from kubuntu: kubuntu_disable_secure_file_priv_check.diff ++ - fix compatibility with stricter defaults in mysql security update. ++ (Closes: 843534) Thanks to fld for the report and Marc Deslauriers ++ for the patch. ++ * Fix known typos. ++ * Update Build-Deps to use default-libmysqlclient-dev instead of ++ libmysqlclient-dev. ++ * Add Multi-Arch Hinters from tracker. ++ * Remove unused source.lintian-overrides file. ++ * Merge libkf5akonadicore-bin into akonadi-server package. ++ ++ [ Maximiliano Curia ] ++ * Use mysql default metapackages ++ * Replace dbus-launch with dbus-run-session in tests. ++ Thanks to Simon McVittie for reporting (Closes: 835827) ++ ++ -- Sandro Knauß Tue, 22 Nov 2016 21:42:07 +0100 ++ ++akonadi (4:16.04.3-3) unstable; urgency=medium ++ ++ * Team upload. ++ ++ [ Sandro Knauß ] ++ * Backport patch from upstream to build QSqlite3 backend with Qt5.7.1 ++ - QSqlite3-fix-build-with-Qt-5.7.patch ++ - Closes: 842502 ++ - The original patch written by Daniel Vratil: ++ 068c0bd5f93232eea97e492354eff2b9b62c6643 ++ - Added qtbase5-private-dev to build deps ++ * Update symbols files from buildds logs (4:16.04.3-2+b1). ++ ++ -- Sandro Knauß Wed, 02 Nov 2016 01:15:34 +0100 ++ ++akonadi (4:16.04.3-2) unstable; urgency=medium ++ ++ [ Automatic packaging ] ++ * Update symbols files from buildds logs (4:16.04.3-1). ++ ++ [ Maximiliano Curia ] ++ * Inject libkf5akonadicore-bin dependency through the akonadiwidgets symbols ++ file. Thanks to Bill Allombert for the report (Closes: 834099) ++ ++ -- Maximiliano Curia Sun, 14 Aug 2016 12:07:49 +0200 ++ ++akonadi (4:16.04.3-1) unstable; urgency=medium ++ ++ [ Automatic packaging ] ++ * Update symbols files from buildds logs (4:16.04.2-3). ++ ++ [ Maximiliano Curia ] ++ * Add Breaks from kmail, korganizer and akonadiconsole, to avoid invalid ++ installations ++ * Add conflicts for akonadi2xml against kdepimlibs5-dev. ++ Thanks to Andreas Beckmann for the report (Closes: 831226) ++ ++ -- Maximiliano Curia Tue, 19 Jul 2016 16:24:06 +0200 ++ ++akonadi (4:16.04.2-3) unstable; urgency=medium ++ ++ * Avoid depending on a reverse dependency. ++ ++ -- Maximiliano Curia Tue, 05 Jul 2016 11:08:48 +0200 ++ ++akonadi (4:16.04.2-2) unstable; urgency=low ++ ++ [ Maximiliano Curia ] ++ * Drop libakonadi-kde4 breaks/replaces to allow installing knode and ++ ktimetracker ++ * Release to unstable. ++ ++ [ Automatic packaging ] ++ * Update symbols files from buildds logs (4:16.04.2-1). ++ ++ -- Maximiliano Curia Mon, 04 Jul 2016 15:09:18 +0200 ++ ++akonadi (4:16.04.2-1) experimental; urgency=medium ++ ++ [ Maximiliano Curia ] ++ * Update copyright information ++ * Drop automoc build dependency ++ * testsuite: Set the akonaditest path ++ * Inject kdepimlibs-data dependency through the symbols files ++ ++ [ Automatic packaging ] ++ * Update symbols files from buildds logs (4:16.04.1-1). ++ * Update symbols files. ++ * Refresh patches ++ ++ -- Maximiliano Curia Thu, 23 Jun 2016 23:02:40 +0200 ++ ++akonadi (4:16.04.1-1) experimental; urgency=medium ++ ++ [ Automatic packaging ] ++ * Bump Standards-Version to 3.9.8 ++ * Refresh patches ++ * Add a .gitattributes file to use dpkg-mergechangelogs ++ * Update build-deps and deps with the info from cmake ++ * Update symbols files. ++ ++ [ Maximiliano Curia ] ++ * Add missing dependency on mysql server core. ++ * New upstream release (15.12.2). ++ * Replace the "Historical name" ddeb-migration by its "Modern, clearer" ++ replacement dbgsym-migration. ++ * Add upstream metadata (DEP-12) ++ * debian/control: Update Vcs-Browser and Vcs-Git fields ++ * Add kgendesignerplugin as a build dep ++ * Add missing breaks/replaces, knutresource was in in kdepimlibs5-dev ++ * Set the dev-bin as m-a: foreign ++ * Add new patch: set_dependency_order.diff ++ ++ -- Maximiliano Curia Fri, 27 May 2016 18:08:49 +0200 ++ ++akonadi (15.12.1-1) experimental; urgency=medium ++ ++ * New upstream release (15.12.0). ++ * New upstream release (15.12.1). ++ ++ -- Maximiliano Curia Mon, 01 Feb 2016 10:23:57 +0100 ++ ++akonadi (15.08.3-1) experimental; urgency=medium ++ ++ * New upstream release (15.08.3). ++ ++ -- Maximiliano Curia Wed, 02 Dec 2015 12:39:44 +0100 ++ ++akonadi (15.08.2-1) experimental; urgency=medium ++ ++ * New upstream release (15.08.2). ++ ++ -- Maximiliano Curia Fri, 16 Oct 2015 08:06:30 +0200 ++ ++akonadi (15.08.1-1) experimental; urgency=medium ++ ++ * New upstream release (15.08.1). ++ ++ -- Maximiliano Curia Sat, 19 Sep 2015 03:16:13 +0200 ++ ++akonadi (15.08.0-1) experimental; urgency=medium ++ ++ * New upstream release (15.07.90). ++ * New upstream release (15.08.0). ++ * Remove upstream patches. ++ * Refresh patches. ++ * Update copyright file. ++ ++ -- Maximiliano Curia Sat, 05 Sep 2015 21:41:58 +0200 ++ ++akonadi (4:15.08.0-0ubuntu1) wily; urgency=medium ++ ++ * new upstream release ++ ++ -- Jonathan Riddell Wed, 26 Aug 2015 16:52:58 +0100 ++ ++akonadi (4:15.07.90-0ubuntu1) wily; urgency=medium ++ ++ * New upstream release ++ * new upstream beta release ++ ++ -- Jonathan Riddell Tue, 18 Aug 2015 08:53:42 +0100 ++ ++akonadi (1.13.0-8) unstable; urgency=medium ++ ++ * Team upload. ++ * Update symbols files. ++ ++ -- Maximiliano Curia Sat, 29 Aug 2015 00:41:28 +0200 ++ ++akonadi (1.13.0-7) unstable; urgency=medium ++ ++ * Team upload. ++ * Removed some patches introduced in previous upload due to regressions ++ causing invalid SQL commands. ++ ++ -- Dmitry Smirnov Mon, 20 Jul 2015 12:30:32 +1000 ++ ++akonadi (1.13.0-6) unstable; urgency=medium ++ ++ * Team upload. ++ * New "upstream-MOVEcomplete.patch" (fixes deadlock). ++ * Bunch of optimisation patches from upstream 1.13 branch. ++ * Install "akonadictl.1" man page. ++ * copyright: reviewed, converted to copyright-format-1.0 and updated. ++ ++ -- Dmitry Smirnov Mon, 20 Jul 2015 03:26:42 +1000 ++ ++akonadi (1.13.0-5) unstable; urgency=medium ++ ++ * Team upload. ++ * New upstream patches: ++ + upstream-use-QAtomicInt.patch ++ + upstream-prevent-QTimer-negative-interval.patch ++ * Initialise PSQL database with "--data-checksums" (Closes: #791807). ++ * Build-Depends: removed "mysql-server-core" (not needed on build time). ++ ++ -- Dmitry Smirnov Sun, 19 Jul 2015 20:31:33 +1000 ++ ++akonadi (1.13.0-4) unstable; urgency=medium ++ ++ * Team upload. ++ * backend-mysql: depend on MySQL-5.6 or any MySQL flavour (Closes: #746651) ++ Depends: ++ - mysql-server-core-5.5 | mysql-server-core ++ + mysql-server-core-5.6 | virtual-mysql-server-core ++ * Standards-Version: 3.9.6. ++ * xs-testsuite-header-in-debian-control: removed "XS-Testsuite" header. ++ * Updated Vcs-Browser URL. ++ * Patches renamed to consistently end with ".patch". ++ * New patch to add PostgreSQL 9.4 search path (Closes: #791805). ++ ++ -- Dmitry Smirnov Mon, 13 Jul 2015 23:56:38 +1000 ++ ++akonadi (1.13.0-3) unstable; urgency=medium ++ ++ * Team upload. ++ * Apply upstream_dont_leak_old_external_payload_files.patch which fixes a bug ++ that let old files be kept when they should be removed. ++ ++ -- Lisandro Damián Nicanor Pérez Meyer Tue, 30 Jun 2015 12:03:32 -0300 ++ ++akonadi (1.13.0-2ubuntu5) wily; urgency=medium ++ ++ * No change rebuild for boost1.58/libstdc++6. ++ ++ -- Dimitri John Ledkov Sun, 02 Aug 2015 11:57:02 +0100 ++ ++akonadi (1.13.0-2ubuntu4) vivid; urgency=medium ++ ++ * debian/rules: re-enable the override_dh_installinit target, disabled ++ in an earlier merge from debian. This allows dh-apparmor to create ++ the postinst for the akonadi-backend-mysql package, which creates ++ the missing part of that package's apparmor profile at install time ++ (LP: #1440501) ++ ++ -- Steve Beattie Wed, 15 Apr 2015 10:48:33 -0700 ++ ++akonadi (1.13.0-2ubuntu3) vivid; urgency=medium ++ ++ * Still prefer mysql 5.6, but allow any mysql implementation that provides ++ virtual-mysql-server-core and virtual-mysql-client-core ++ (LP: #1336005) ++ * Force dependency on akonadi-backend-mysql for akonadi-server. ++ (was accidentally dropped in the last debian merge) ++ ++ -- Philip Muškovac Wed, 15 Apr 2015 16:57:20 +0200 ++ ++akonadi (1.13.0-2ubuntu2) vivid; urgency=medium ++ ++ * Allow using mariadb 10.0 as backend for akonadi-backend-mysql ++ (LP: #1441119) ++ ++ -- Philip Muškovac Thu, 09 Apr 2015 18:25:44 +0200 ++ ++akonadi (1.13.0-2ubuntu1) vivid; urgency=medium ++ ++ * Merge from Debian unstable. Remaining changes: ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.5 and ++ mysql-client-core-5.5 or *5.6 instead of mysql-server-core. ++ - Force dependency on akonadi-backend-mysql for akonadi-server. ++ - Keep debian/libakonadiprotocolinternals1.symbols from Ubuntu ++ - Add Kubuntu to the maintainers as we are moving to debian git. ++ ++ -- Scarlett Clark Fri, 31 Oct 2014 14:50:27 +0000 ++ ++akonadi (1.13.0-2) unstable; urgency=medium ++ ++ [ Pino Toscano ] ++ * Bump the priority of all the binaries, except akonadi-dbg, to optional ++ (as other packages depend on them). ++ ++ [ Maximiliano Curia ] ++ * New upstream patch: upstream-fix_typo_in_if_condition ++ * New upstream patch: upstream- ++ fix_buffer_overflow_in_AKTEST_FAKESERVER_MAIN ++ * New upstream patch: upstream- ++ do_not_crash_when_setmntent_returns_NULL ++ * Update symbols files from buildds logs (1.13.0-1). ++ * New upstream patch: upstream_dont_call_insert_from_Q_ASSERT ++ * libakonadi-dev: Add libqt4-dev Dependency. ++ ++ -- Maximiliano Curia Fri, 19 Sep 2014 11:04:57 +0200 ++ ++akonadi (1.13.0-1) unstable; urgency=medium ++ ++ * New upstream release. ++ * Remove upstream patches. ++ * Update symbols file. ++ * Add missing breaks for kdepim-runtime << 4:4.13. (Closes: #749776) ++ ++ -- Maximiliano Curia Tue, 19 Aug 2014 21:01:28 +0200 ++ ++akonadi (1.12.91-0ubuntu1) utopic; urgency=medium ++ ++ * New upstream release needed for KDE 4.13.90 beta 2 ++ * Remove patches applied upstream. ++ * Update symbols with batchpatch. ++ ++ -- Scarlett Clark Fri, 18 Jul 2014 15:38:49 -0700 ++ ++akonadi (1.12.1-1ubuntu3) utopic; urgency=medium ++ ++ * Allow using mysql 5.6 as DB for akonadi-backend-mysql (LP: #1330180) ++ ++ -- Philip Muškovac Wed, 18 Jun 2014 14:14:01 +0200 ++ ++akonadi (1.12.1-1ubuntu2) utopic; urgency=medium ++ ++ * Add upstream_1.12.1-invalid-gid.diff from upstream to fix broken upgrade ++ - LP: #1318718 ++ - https://bugs.kde.org/331867 ++ ++ -- Jonathan Riddell Mon, 12 May 2014 16:37:03 +0100 ++ ++akonadi (1.12.1-1ubuntu1) utopic; urgency=low ++ ++ * Merge from Debian unstable. Remaining changes: ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.5 and ++ mysql-client-core-5.5 instead of mysql-server-core. ++ - Force dependency on akonadi-backend-mysql for akonadi-server. ++ - Keep debian/libakonadiprotocolinternals1.symbols from Ubuntu ++ ++ -- Rohan Garg Thu, 08 May 2014 15:08:19 +0200 ++ ++akonadi (1.12.1-1) unstable; urgency=medium ++ ++ * New upstream release. ++ * Update symbols for 1.12.0 version. ++ * New upstream patch: upstream_1.12-Use-per-thread- ++ QDBusConnections.patch ++ * New upstream patch: upstream_1.12-Remove-the-invalid-GID-part-from- ++ PartTable-before-st.patch ++ * New upstream patch: upstream_1.12-Fix-retrieving-of-GID-from-SQL- ++ query-result-in-Fetch.patch ++ ++ -- Maximiliano Curia Tue, 06 May 2014 17:19:48 +0200 ++ ++akonadi (1.12.1-0ubuntu2) utopic; urgency=high ++ ++ * No change rebuild against boost1.55. ++ ++ -- Dimitri John Ledkov Sat, 26 Apr 2014 23:20:45 +0100 ++ ++akonadi (1.12.1-0ubuntu1) trusty; urgency=medium ++ ++ * New upstream bugfix release ++ ++ -- Harald Sitter Tue, 08 Apr 2014 10:30:38 +0200 ++ ++akonadi (1.12.0-1) experimental; urgency=medium ++ ++ * New upstream release. ++ * Remove patch: dont_do_redundant_flag_changes.diff ++ * Remove patch: always_verify_writing_data_to_external_file.diff ++ * Remove patch: correctly_detect_inter-resource_moves.diff ++ * Update install files. ++ * Remove old abi information, update acc file. ++ * Update symbols from 1.11.0. ++ * Update symbols. ++ ++ -- Maximiliano Curia Tue, 01 Apr 2014 15:37:32 +0200 ++ ++akonadi (1.12.0-0ubuntu1) trusty; urgency=medium ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Fri, 28 Mar 2014 21:40:59 +0000 ++ ++akonadi (1.11.90-0ubuntu1) trusty; urgency=medium ++ ++ * New upstream release (LP: #1296707) ++ ++ -- Scarlett Clark Mon, 24 Mar 2014 06:01:57 -0700 ++ ++akonadi (1.11.80-0ubuntu3) trusty; urgency=medium ++ ++ * Support mariadb as alternate database for the mysql backend as it is ++ also supported upstream said on IRC. ++ LP: #1289840 ++ ++ -- Harald Sitter Mon, 10 Mar 2014 23:09:34 +0100 ++ ++akonadi (1.11.80-0ubuntu2) trusty; urgency=medium ++ ++ * Install missing files ++ ++ -- Jonathan Riddell Mon, 10 Mar 2014 11:31:06 +0000 ++ ++akonadi (1.11.80-0ubuntu1) trusty; urgency=medium ++ ++ * New upstream alpha release ++ * Replace disable_dbus_requiring_tests.diff with starting dbus ++ in debian/rules ++ ++ -- Jonathan Riddell Wed, 05 Mar 2014 15:09:30 +0000 ++ ++akonadi (1.11.0-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Update build dependencies. ++ * Update subst var for akonadi-backend-mysql. ++ * Bump Standards-Version to 3.9.5, no changes needed. ++ * New upstream patch: dont_do_redundant_flag_changes.diff ++ * New upstream patch: always_verify_writing_data_to_external_file.diff ++ * Update symbols file. ++ * Update install files. ++ * New upstream patch: correctly_detect_inter-resource_moves.diff. ++ ++ -- Maximiliano Curia Wed, 08 Jan 2014 15:40:35 -0300 ++ ++akonadi (1.11.0-0ubuntu1) trusty; urgency=medium ++ ++ * New upstream release ++ * Add new symbol to libakonadiprotocolinternals1.symbols ++ ++ -- Philip Muškovac Tue, 24 Dec 2013 11:07:42 +0100 ++ ++akonadi (1.10.80-0ubuntu1) trusty; urgency=low ++ ++ * New upstream release ++ - Update install files ++ - Update disable_dbus_requiring_tests.diff ++ ++ -- Rohan Garg Mon, 11 Nov 2013 17:38:58 +0100 ++ ++akonadi (1.10.3-1) unstable; urgency=medium ++ ++ * New upstream release. (Closes: #729615, #716922) ++ * Update build dependencies. ++ ++ -- Maximiliano Curia Wed, 20 Nov 2013 14:53:11 +0100 ++ ++akonadi (1.10.3-0ubuntu2) trusty; urgency=low ++ ++ * No change rebuild for Boost 1.54 transition. ++ ++ -- Dmitrijs Ledkovs Mon, 21 Oct 2013 13:54:07 +0100 ++ ++akonadi (1.10.3-0ubuntu1) saucy; urgency=low ++ ++ * New upstream bug fix release (LP: #1236394) ++ ++ -- Rohan Garg Mon, 07 Oct 2013 16:39:34 +0200 ++ ++akonadi (1.10.2-2) unstable; urgency=low ++ ++ * Rebuild for unstable release. ++ ++ -- Maximiliano Curia Tue, 05 Nov 2013 12:54:23 +0100 ++ ++akonadi (1.10.2-1) experimental; urgency=low ++ ++ * Update vcs-fields. ++ * Refresh patch disable_dbus_requiring_tests. ++ * Update installed files. ++ * Update libakonadiprotocolinternals1 symbols file. ++ * Add empty dir in -dev package, to make AkonadiConfig.cmake happy. ++ ++ -- Maximiliano Curia Fri, 30 Aug 2013 12:42:10 +0200 ++ ++akonadi (1.10.2-0ubuntu2) saucy; urgency=low ++ ++ * Set INSTALL_QSQLITE_IN_QT_PREFIX=TRUE so the sqlite3 driver is installed ++ in a place where qt4 can find it (LP: #1218820) ++ ++ -- Philip Muškovac Wed, 18 Sep 2013 22:54:09 +0200 ++ ++akonadi (1.10.2-0ubuntu1) saucy; urgency=low ++ ++ * New upstream bugfix release (LP: #1218847) ++ ++ -- Howard Chan Fri, 30 Aug 2013 19:18:01 +0800 ++ ++akonadi (1.10.1-0ubuntu1) saucy; urgency=low ++ ++ * New upstream release ++ ++ -- Philip Muškovac Tue, 23 Jul 2013 19:16:46 +0200 ++ ++akonadi (1.9.80-0ubuntu1) saucy; urgency=low ++ ++ [ Rohan Garg ] ++ * New upstream release ++ - Update symbols ++ - Install asapcat with akonadi-server for now ++ - Install notificationmessagev2_p.h with -dev package ++ - Refresh disable_dbus_requiring_tests.diff ++ ++ [ Philip Muškovac ] ++ * libkonadi-dev needs to depend on akonadi-server for the dbus service ++ ++ -- Rohan Garg Thu, 13 Jun 2013 08:46:15 +0100 ++ ++akonadi (1.9.2-2) unstable; urgency=low ++ ++ * Team upload. ++ * Force the installation of the Qt plugins (such as qsqlite3) within Qt's ++ plugin directory: (Closes: #708007) ++ - pass -DINSTALL_QSQLITE_IN_QT_PREFIX=ON to cmake ++ - adjust akonadi-backend-sqlite.install ++ - add ${misc:Pre-Depends} in akonadi-backend-sqlite ++ ++ -- Pino Toscano Fri, 17 May 2013 15:39:30 +0200 ++ ++akonadi (1.9.2-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Bump debhelper build-dep and compat to 9. ++ * Add myself to the Uploaders field. ++ * Bump Standards-Version to 3.9.4. ++ ++ -- Maximiliano Curia Sat, 11 May 2013 00:57:28 +0200 ++ ++akonadi (1.9.1-2ubuntu1) saucy; urgency=low ++ ++ * Merge with debian experimental, remaining changes: ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.5 and ++ mysql-client-core-5.5 instead of mysql-server-core. ++ - Force dependency on akonadi-backend-mysql for akonadi-server. ++ ++ -- Philip Muškovac Tue, 30 Apr 2013 22:39:32 +0200 ++ ++akonadi (1.9.1-2) experimental; urgency=low ++ ++ * Merge in the uploads to unstable. ++ ++ -- Sune Vuorela Tue, 02 Apr 2013 22:52:29 +0200 ++ ++akonadi (1.9.1-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ [ José Manuel Santamaría Lema ] ++ * Update disable_dbus_requiring_tests.diff; some tests were added and ++ some of them need D-Bus. ++ * Update installed files. ++ ++ [ Sune Vuorela ] ++ * Add mysql-server-core to Build-Depends so it can be used by the test suite ++ ++ -- Sune Vuorela Mon, 25 Mar 2013 17:00:16 +0100 ++ ++akonadi (1.9.1-0ubuntu2) saucy; urgency=low ++ ++ * No change rebuild for Boost 1.53 transition. ++ ++ -- Dmitrijs Ledkovs Fri, 26 Apr 2013 19:18:39 +0100 ++ ++akonadi (1.9.1-0ubuntu1) raring; urgency=low ++ ++ * New upstream bugfix release ++ ++ -- Jonathan Riddell Thu, 04 Apr 2013 22:49:18 +0100 ++ ++akonadi (1.9.0-0ubuntu1) raring; urgency=low ++ ++ * New upstream release ++ ++ -- Philip Muškovac Thu, 03 Jan 2013 21:11:34 +0100 ++ ++akonadi (1.8.80-0ubuntu1) raring; urgency=low ++ ++ * New upstream beta release ++ ++ -- Jonathan Riddell Fri, 16 Nov 2012 15:16:10 +0000 ++ ++akonadi (1.8.1-0ubuntu1) raring; urgency=low ++ ++ * New upstream release ++ ++ -- Scott Kitterman Sat, 03 Nov 2012 23:00:43 -0400 ++ ++akonadi (1.8.0-0ubuntu1) quantal; urgency=low ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Thu, 26 Jul 2012 16:04:21 +0100 ++ ++akonadi (1.7.90-0ubuntu1) quantal; urgency=low ++ ++ * New upstream beta release ++ ++ -- Jonathan Riddell Mon, 09 Jul 2012 12:09:55 +0100 ++ ++akonadi (1.7.2-3) unstable; urgency=low ++ ++ * Team upload. ++ * akonadi-backend-mysql: depend on a real mysql-server-core-5.5 before the ++ virtual mysql-server-core. This should help apt in really choosing -mysql ++ when upgrading from squeeze. (Closes: #686147, #702919) ++ ++ -- Pino Toscano Tue, 26 Mar 2013 20:02:38 +0100 ++ ++akonadi (1.7.2-2) unstable; urgency=low ++ ++ * Team upload. ++ ++ [ Lisandro Damián Nicanor Pérez Meyer ] ++ * Change [General] to [%General] in README.Debian (Closes: #688236). ++ Thanks Alexander Wuerstlein for noticing. ++ ++ -- Pino Toscano Wed, 05 Dec 2012 11:07:57 +0100 ++ ++akonadi (1.7.2-1ubuntu1) quantal; urgency=low ++ ++ * Merge with Debian, remaining changes: ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.5 and ++ mysql-client-core-5.5 instead of mysql-server-core. ++ - Force dependency on akonadi-backend-mysql for akonadi-server. ++ ++ -- Jonathan Thomas Thu, 24 May 2012 19:27:56 -0400 ++ ++akonadi (1.7.2-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Drop x11_not_required.diff, no longer needed as internal FindQt4 was ++ dropped. ++ * Disable tests which require an active DBus daemon. It is not available on ++ buildds (patch disable_dbus_requiring_tests.diff). ++ * Bump Standards-Version to 3.9.3: no changes needed. ++ ++ -- Modestas Vainius Sat, 12 May 2012 23:41:01 +0300 ++ ++akonadi (1.7.2-0ubuntu2) quantal; urgency=low ++ ++ * No change rebuild for boost 1.49 transition ++ ++ -- Dmitrijs Ledkovs Thu, 03 May 2012 20:28:00 +0100 ++ ++akonadi (1.7.2-0ubuntu1) precise; urgency=low ++ ++ * New upstream release ++ ++ -- Philip Muškovac Tue, 10 Apr 2012 21:52:32 +0200 ++ ++akonadi (1.7.0-0ubuntu3) precise; urgency=low ++ ++ * make akonadi-server require the mysql backend. It's the only one really ++ supported upstream and as the default backend has to be installed. ++ (LP: #923189) ++ ++ -- Philip Muškovac Mon, 09 Apr 2012 18:49:42 +0200 ++ ++akonadi (1.7.0-0ubuntu2) precise; urgency=low ++ ++ * Add build-dep on dh-apparmor (LP: #948481) ++ ++ -- Philip Muškovac Thu, 08 Mar 2012 22:22:17 +0100 ++ ++akonadi (1.6.2-2) unstable; urgency=low ++ ++ * Team upload. Upload to unstable. ++ ++ [ Sune Vuorela ] ++ * Kill the odbc package. It won't currently work. ++ ++ -- Ana Beatriz Guerrero Lopez Mon, 05 Mar 2012 10:09:22 +0100 ++ ++akonadi (1.7.0-0ubuntu1) precise; urgency=low ++ ++ * New upstream release ++ * Remove x11_not_required.diff, file no longer shipped ++ * Disable test suite in debian/rules, it requires dbus ++ ++ -- Jonathan Riddell Tue, 24 Jan 2012 23:43:13 +0000 ++ ++akonadi (1.6.2-1ubuntu1) precise; urgency=low ++ ++ * Merge from Debian experimental, remaining changes: ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.5 and ++ mysql-client-core-5.5 instead of mysql-server-core. ++ - Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~". ++ ++ -- Felix Geyer Sun, 04 Dec 2011 21:06:19 +0100 ++ ++akonadi (1.6.2-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ [ Felix Geyer ] ++ * Add a watch file. ++ * Use DEB_*_MAINT_APPEND instead of setting CFLAGS/CXXFLAGS. ++ ++ -- Debian Qt/KDE Maintainers Thu, 01 Dec 2011 17:18:06 +0100 ++ ++akonadi (1.6.2-0ubuntu3) precise; urgency=low ++ ++ * Change dependency on client/server to 5.5 ++ ++ -- Clint Byrum Sun, 27 Nov 2011 01:49:35 -0800 ++ ++akonadi (1.6.2-0ubuntu2) precise; urgency=low ++ ++ * Rebuild for libmysqlclient transition ++ ++ -- Clint Byrum Wed, 23 Nov 2011 23:49:27 -0800 ++ ++akonadi (1.6.2-0ubuntu1) oneiric; urgency=low ++ ++ * New upstream bugfix release ++ ++ -- Scott Kitterman Tue, 04 Oct 2011 16:43:57 -0500 ++ ++akonadi (1.6.1+git110927-0ubuntu1) oneiric; urgency=low ++ ++ * Update to 1.6 branch snapshot for additional bug fixes ++ ++ -- Scott Kitterman Fri, 30 Sep 2011 06:45:45 -0400 ++ ++akonadi (1.6.1-0ubuntu1) oneiric; urgency=low ++ ++ * New upstream bug fix release (LP: #707878) ++ ++ -- Rohan Garg Fri, 16 Sep 2011 16:09:18 +0200 ++ ++akonadi (1.6.0-0ubuntu2) oneiric; urgency=low ++ ++ * No change rebuild due to multi-arch changes in qt4-x11 ++ ++ -- Scott Kitterman Thu, 18 Aug 2011 10:38:30 -0400 ++ ++akonadi (1.6.0-0ubuntu1) oneiric; urgency=low ++ ++ * New upstream release ++ ++ -- Philip Muškovac Sat, 16 Jul 2011 16:41:20 +0200 ++ ++akonadi (1.5.80-0ubuntu1) oneiric; urgency=low ++ ++ * New upstrem beta release ++ - bump debhelper version to fix lintian warning ++ - refresh libakonadiprotocolinternals1.symbols ++ ++ -- Philip Muškovac Thu, 07 Jul 2011 22:25:38 +0200 ++ ++akonadi (1.5.3-2ubuntu1) oneiric; urgency=low ++ ++ * Change Vcs-* from kubuntu-members to kubuntu-packagers ++ * Merge from debian unstable. Remaining changes: ++ - Use versioned boost build-depends ++ - Add a mysqld-akonadi wrapper script ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.1 and ++ mysql-client-core-5.1 instead of mysql-server-core ++ - Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~" ++ ++ -- Scott Kitterman Fri, 27 May 2011 23:06:47 -0400 ++ ++akonadi (1.5.3-2) unstable; urgency=low ++ ++ [ Pino Toscano ] ++ * Fix typo in README.Debian. (Closes: #627826) ++ ++ -- Debian Qt/KDE Maintainers Thu, 26 May 2011 00:22:36 +0300 ++ ++akonadi (1.5.3-1ubuntu1) oneiric; urgency=low ++ ++ * Merge from Debian experimental, remaining changes: ++ - Use versioned boost build-depends. ++ - Add a mysqld-akonadi wrapper script. ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi). ++ - Make akonadi-backend-mysql depend on mysql-server-core-5.1 and ++ mysql-client-core-5.1 instead of mysql-server-core. ++ - Bump Breaks/Replaces akonadi-sever version to "<< 1.5.3~". ++ ++ -- Felix Geyer Tue, 24 May 2011 21:04:40 +0200 ++ ++akonadi (1.5.3-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ -- Modestas Vainius Mon, 09 May 2011 00:50:11 +0300 ++ ++akonadi (1.5.2-0ubuntu1) natty; urgency=low ++ ++ * New upstream release. ++ - Fixes warnings about duplicated agent identifiers. (LP: #740488) ++ ++ -- Felix Geyer Tue, 05 Apr 2011 17:29:48 +0200 ++ ++akonadi (1.5.1-2) experimental; urgency=low ++ ++ * Replace $(overriden_command) with $(overridden_command) in debian/rules. ++ Requires pkg-kde-tools 0.12. ++ * Bump Standards-Version to 3.9.2: no changes needed. ++ * Merge 1.3.1-4 changes: ++ - Drop 04_socket_location.diff patch, merged upstream. ++ * Build with -fvisibility=hidden -fvisibility-inlines-hidden. ++ * Update symbol file: private symbols disappeared after building with hidden ++ visibility. ++ ++ -- Modestas Vainius Mon, 02 May 2011 01:40:34 +0300 ++ ++akonadi (1.5.1-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ [ Modestas Vainius ] ++ * Point debian/control Vcs fields to the new Git repository. ++ * Add libsqlite3-dev to build depends. This build has support for SQLite ++ backend. ++ * Drop 03_disable_usr_lib_install_rpath.diff patch, no longer needed as ++ the problem was fixed upstream differently. ++ * Add new packages for multiple backend split: ++ - akonadi-backend-mysql - a package which depends on the stuff needed for ++ MySQL backend (server and Qt module) and installs a configuration file ++ previously present in akonadi-server; ++ - akonadi-backend-postgresql - a package which depends on the stuff needed ++ for PostgreSQL backend. Even if default configuration starts an internal ++ PostgreSQL server instance, add postgresql package to Recommends because ++ the latter package enables the daemon system-wide. PostgreSQL needs to be ++ split to the -core part as MySQL was; ++ - akonadi-backend-odbc - a package which depends on the stuff needed to ++ enable Akonadi ODBC backend. It's primarily intended to be used with a ++ local Virtuoso instance that's started by Nepomuk; ++ - akonadi-backend-sqlite - a package with improved SQLite driver that is ++ needed for Akonadi SQLite backend; ++ * Make akonadi-server on both backends with | relation preferring MySQL for ++ now. Also suggest both backends. ++ * Move akonadi-dbg to the end of debian/control. ++ * Update install files. ++ * Add README.Debian with extensive information about Akonadi configuration ++ files and storage backends. ++ * Bump build dependency to libqt4-dev 4:4.6.0. SQLite backend needs it. ++ * Drop Replaces from libakonadi-dev for very old pre-4.1 KDE versions. ++ * Switch to quilt 3.0 format: ++ - add appropriate debian/source/format; ++ - remove quilt from Build-Depends; ++ - remove debian/README.source, no longer necessary. ++ * Bump Standards-Version to 3.9.1: add Breaks next to Replaces where needed ++ or replace Conflicts with Breaks respectively, ++ * Improve passing of MYSQLD_EXECUTABLE flag to cmake. ++ * Drop 02_hardcode_debian_mysqld_path.diff, not needed any more. ++ * Drop obsolete (pre-KDE 4.1) Breaks. ++ * Switch debian/rules engine to qt-kde-team/2/*. Fix FTBFS in the process. ++ (Closes: #618200) ++ * Strip sequence numbers from debian/patches/*. ++ * Install README.Debian to akonadi-server and all backend packages. ++ * Install README.sqlite to akonadi-backend-sqlite. ++ * Drop ${shlibs:Depends} from libakonadi-dev Depends. ++ * Update debian/copyright. ++ ++ [ José Manuel Santamaría Lema ] ++ * Rename libakonadiprivate1 as libakonadiprotocolinternals1 ++ (libakonadiprivate.so.1* doesn't exist anymore) and create symbols file. ++ ++ -- Modestas Vainius Sun, 13 Mar 2011 22:25:05 +0200 ++ ++akonadi (1.5.1-0ubuntu1) natty; urgency=low ++ ++ * New upstream release. (LP: #739424) ++ * Drop 03_disable_usr_lib_install_rpath.diff, fixed upstream. ++ * Call dh_apparmor instead of providing our own postinst/postrm scripts to ++ reload the AppArmor profile. ++ ++ -- Felix Geyer Tue, 22 Mar 2011 18:40:35 +0100 ++ ++akonadi (1.5.0-0ubuntu2) natty; urgency=low ++ ++ * Use a wrapper script instead of copying mysqld to mysqld-akonadi. ++ (LP: #728584) ++ - Update the AppArmor profile accordingly. ++ - Drop mysql-server-core-5.1 from build-deps. ++ ++ -- Felix Geyer Thu, 03 Mar 2011 18:06:42 +0100 ++ ++akonadi (1.5.0-0ubuntu1) natty; urgency=low ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Mon, 24 Jan 2011 09:48:32 +0000 ++ ++akonadi (1.4.95-0ubuntu1) natty; urgency=low ++ ++ * New upstream release ++ - Fix install files ++ ++ -- Rohan Garg Sun, 09 Jan 2011 16:19:52 +0530 ++ ++akonadi (1.4.90-0ubuntu1) natty; urgency=low ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Tue, 21 Dec 2010 13:57:05 +0000 ++ ++akonadi (1.4.80-0ubuntu2) natty; urgency=low ++ ++ * Give up on akonadi-agent-launcher and akonadi-agent-server binaries as a ++ bad idea ++ - Remove debian/akonadi-agent-launcher.install and ++ debian/akonadi-agent-server.install ++ - Move files to akonadi-server.install ++ - Remove binaries from debian/control ++ ++ -- Scott Kitterman Tue, 23 Nov 2010 10:10:30 -0500 ++ ++akonadi (1.4.80-0ubuntu1) natty; urgency=low ++ ++ * New upstream release to support KDE 4.6 beta 1 packaging ++ - Add new binary packages for usr/bin/akonadi_agent_server and ++ usr/bin/akonadi_agent_launcher ++ - Add org.freedesktop.Akonadi.NotificationSource.xml to ++ libakonadi-dev.install ++ - Refresh patches ++ - Update debian/copyright ++ * Rename libakonadiprivate1 to libakonadiprotocolinternals1 since the ++ private library has been removed and only protocolinternals remains ++ - Update debian/control ++ - Rename install file and drop remove shared objects ++ * Drop implicit-it=thumb workaround as it will no longer be needed once ++ armel is fixed ++ ++ -- Scott Kitterman Mon, 22 Nov 2010 09:32:48 -0500 ++ ++akonadi (1.4.1-0ubuntu2) natty; urgency=low ++ ++ * Add CXXFLAGS += -Wa,-mimplicit-it=thumb on armel to fix FTBFS ++ ++ -- Scott Kitterman Mon, 01 Nov 2010 12:14:01 -0400 ++ ++akonadi (1.4.1-0ubuntu1) natty; urgency=low ++ ++ * New upstream release ++ ++ -- Alessandro Ghersi Fri, 22 Oct 2010 19:14:31 +0200 ++ ++akonadi (1.4.0-0ubuntu1) maverick; urgency=low ++ ++ * New upstream release. ++ ++ -- Harald Sitter Sun, 01 Aug 2010 12:29:08 +0200 ++ ++akonadi (1.3.90-0ubuntu1) maverick; urgency=low ++ ++ * New upstream release ++ - Bump debhelper to 7.3.16 or greater ++ - Drop quilt from build-depends no longer need with source ++ format 3.0 (quilt) ++ ++ -- Alessandro Ghersi Tue, 06 Jul 2010 02:34:57 +0200 ++ ++akonadi (1.3.85-0ubuntu1) maverick; urgency=low ++ ++ * New upstream release ++ - Update akonadi-server.install ++ ++ -- Alessandro Ghersi Sat, 05 Jun 2010 17:13:53 +0200 ++ ++akonadi (1.3.80-0ubuntu1) maverick; urgency=low ++ ++ * New upstream release ++ - Bump libqt4-dev and libsoprano-dev ++ - Drop kubuntu_01_fix_init.diff no longer need ++ - Update 03_disable_usr_lib_install_rpath.diff ++ - Update akonadi-server.install ++ * Switch to dpkg-source 3.0 (quilt) format ++ ++ -- Alessandro Ghersi Wed, 26 May 2010 19:44:52 +0200 ++ ++akonadi (1.3.1-4) unstable; urgency=low ++ ++ * Add patch 04_socket_location.diff to allow akonadi-server to run when HOME ++ is mounted to the network filesystem (Closes: #545139). Thanks to Ansgar ++ Burchardt for the patch. ++ ++ -- Modestas Vainius Sat, 30 Apr 2011 12:31:46 +0300 ++ ++akonadi (1.3.1-3+squeeze1) stable-proposed-updates; urgency=low ++ ++ * Add patch 04_socket_location.diff to allow akonadi-server to run when HOME ++ is mounted to the network filesystem (Closes: #545139). Thanks to Ansgar ++ Burchardt for the patch. ++ ++ -- Modestas Vainius Sat, 30 Apr 2011 12:50:31 +0300 ++ ++akonadi (1.3.1-3ubuntu1) maverick; urgency=low ++ ++ * Merge with Debian Unstable, remaining changes: ++ - Build-depend on mysql-server-core-5.1 ++ - Use versioned boost build-depends ++ - Copy mysqld to mysqld-akonadi (rules) ++ - Make akonadi-server depend on mysql-server-core-5.1 rather than ++ mysql-server ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ - Add pre and postinst scripts for akonadi-server ++ - Keep kubuntu_01_fix_init.diff ++ - Don't apply 02_hardcode_debian_mysqld_path.diff, we set it in our ++ debian/rules file ++ * Update KUBUNTU-DEBIAN-DIFFERENCES ++ ++ -- Jonathan Thomas Mon, 17 May 2010 23:40:04 -0400 ++ ++akonadi (1.3.1-3) unstable; urgency=low ++ ++ [ Didier Raboud ] ++ * Make akonadi-mysql depend on mysql-server-core instead of mysql-server, ++ thanks to the split made in mysql-5.1. (Closes: #513382) ++ ++ -- Debian Qt/KDE Maintainers Sun, 11 Apr 2010 01:46:38 +0300 ++ ++akonadi (1.3.1-2) unstable; urgency=low ++ ++ [ Modestas Vainius ] ++ * Bump libakonadiprivate1 shlibs with each new upstream release. ++ * Generate strict local shlibs for libakonadiprivate1: use ++ library-packages.mk from pkg-kde-tools 0.6.4. ++ * Add ${misc:Depends} to akonadi-dbg Depends. ++ * Add 03_disable_usr_lib_install_rpath.diff patch in order to get rid of ++ /usr/lib RPATH. ++ ++ -- Debian Qt/KDE Maintainers Sat, 06 Mar 2010 01:51:56 +0200 ++ ++akonadi (1.3.1-1) unstable; urgency=low ++ ++ * New upstream release. ++ ++ [ Lisandro Damián Nicanor Pérez Meyer ] ++ * New upstream release. ++ * Refresh patches to apply cleanly: ++ - 01_x11_not_required.diff ++ - 02_hardcode_debian_mysqld_path.diff ++ * Fix the list of dbus interfaces files installed by libakonadi-dev. ++ ++ [ Martin Alfke ] ++ * Make libakonadiprivate1 depend on akonadi-server ++ binary version (Closes: #544431) ++ ++ [ Ana Beatriz Guerrero Lopez ] ++ * Remove myself from Uploaders. ++ * Update year on packaging copyright. ++ ++ [ Modestas Vainius ] ++ * Change my email address to modax@debian.org in Uploaders field. ++ * Fix Vcs-Browser URL. ++ ++ [ Fathi Boudra ] ++ * Bump Standards-Version to 3.8.4 (no changes needed). ++ ++ -- Debian Qt/KDE Maintainers Sat, 30 Jan 2010 22:09:48 -0300 ++ ++akonadi (1.3.1-0ubuntu3) lucid; urgency=low ++ ++ * Set VCS fields to Bazaar branches ++ * Sync kubuntu_01_fix_init.diff with upstream SVN as per KDE bug 185395. ++ + akonadi-server depends on mysql-server-core-5.1 (>= 5.1.41-3ubuntu11) ++ + akonadi-server depends on mysql-client-core-5.1 (>= 5.1.41-3ubuntu12) ++ * Expand apparmor profile to silence apparmor complaints in syslog, ++ additonally this seems to fix LP: #554514 ++ ++ -- Harald Sitter Mon, 12 Apr 2010 17:13:38 +0200 ++ ++akonadi (1.3.1-0ubuntu2) lucid; urgency=low ++ ++ * Add kubuntu_01_fix_init.diff in a mere attemt to fix akonadi startup. This ++ depends on a fixed verison of mysql (5.1.41-3ubuntu10) (LP: #448705) ++ + Unlike upstream this uses the --force cmdl argument to also work without ++ resolveip, an executable that is currently shipped in the main server ++ package. ++ ++ -- Harald Sitter Wed, 31 Mar 2010 22:08:13 +0200 ++ ++akonadi (1.3.1-0ubuntu1) lucid; urgency=low ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Tue, 09 Feb 2010 21:11:37 +0000 ++ ++akonadi (1.3.0-0ubuntu1) lucid; urgency=low ++ ++ * New upstream release ++ ++ -- Alessandro Ghersi Wed, 20 Jan 2010 10:27:54 +0100 ++ ++akonadi (1.2.80-0ubuntu1) lucid; urgency=low ++ ++ * New upstream release ++ - Refresh 01_x11_not_required.diff ++ - Refresh 02_hardcode_debian_notmysqld_path.diff ++ - Remove kubuntu_01_imap_line_endings.diff fixed by upstream ++ - Update libakonadi-dev.install ++ - Bump libboost to 1.40 ++ ++ -- Alessandro Ghersi Wed, 02 Dec 2009 03:12:37 +0100 ++ ++akonadi (1.2.1-1ubuntu3) lucid; urgency=low ++ ++ * Add missing epoch to Qt build-depends version ++ ++ -- Jonathan Riddell Wed, 25 Nov 2009 13:46:57 +0000 ++ ++akonadi (1.2.1-1ubuntu2) lucid; urgency=low ++ ++ * Rebuild against Qt 4.6 rc 1, which is binary incompatible with 4.6 ++ beta ++ ++ -- Jonathan Riddell Tue, 24 Nov 2009 08:59:50 +0000 ++ ++akonadi (1.2.1-1ubuntu1) lucid; urgency=low ++ ++ * Merge with Debian testing, remaining changes: ++ - Build-depend on mysql-server-core-5.1 ++ - Copy mysqld to mysqld-akonadi (rules) ++ - Make akonadi-server depend on mysql-server-core-5.1 rather than ++ mysql-server ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ - Add pre and postinst scripts for akonadi-server ++ - Keep kubuntu_01_imap_line_endings.diff ++ ++ -- Jonathan Thomas Sat, 07 Nov 2009 17:52:46 -0500 ++ ++akonadi (1.2.1-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Bump Standards-Version to 3.8.3 (no changes needed). ++ ++ -- Fathi Boudra Sat, 29 Aug 2009 12:00:51 +0200 ++ ++akonadi (1.2.1-0ubuntu4) karmic; urgency=low ++ ++ * Revert previous upload (LP: #418342). Apparently Akonadi ++ does not like being used with MySQL 5.0. This is probably ++ because both Qt and Akonadi are built against 5.1, and the ++ 5.1 libraries are apparently unable to access a 5.0 server ++ part. (LP: #459741) ++ ++ -- Harald Sitter Mon, 26 Oct 2009 11:11:44 +0100 ++ ++akonadi (1.2.1-0ubuntu3) karmic; urgency=low ++ ++ * Don't depend on mysql-server-core-5.1 but mysql-server-core ++ which is provided by both 5.0 and 5.1 (LP: #418342) ++ ++ -- Harald Sitter Thu, 22 Oct 2009 21:10:28 +0200 ++ ++akonadi (1.2.1-0ubuntu2) karmic; urgency=low ++ ++ * Add kubuntu_01_imap_line_endings.diff from ++ http://websvn.kde.org:80/trunk/kdesupport/akonadi/server/src/handler ++ /fetchhelper.cpp?r1=1032262&r2=1032261&pathrev=1032262 as advised by ++ upstream, 'Follow a literal size with CRLF as specified in the IMAP ++ RFC 3501' ++ ++ -- Jonathan Riddell Thu, 08 Oct 2009 15:49:57 +0100 ++ ++akonadi (1.2.1-1) unstable; urgency=low ++ ++ * New upstream release. ++ * Bump Standards-Version to 3.8.3 (no changes needed). ++ ++ -- Fathi Boudra Sat, 29 Aug 2009 12:00:51 +0200 ++ ++akonadi (1.2.1-0ubuntu1) karmic; urgency=low ++ ++ * New upstream release ++ ++ -- Alessandro Ghersi Fri, 28 Aug 2009 18:43:17 +0200 ++ ++akonadi (1.2.0-2ubuntu3) karmic; urgency=low ++ ++ * Make akonadi-server depend on mysql-server-core-5.1 rather than the whole ++ mysql-server package ++ * Update KUBUNTU-DEBIAN-DIFFERENCES to reflect the above so that this does ++ not happen again in the future ++ ++ -- Jonathan Thomas Thu, 20 Aug 2009 12:29:59 -0400 ++ ++akonadi (1.2.0-2ubuntu2) karmic; urgency=low ++ ++ * Copy rather than hard link mysql ++ ++ -- Jonathan Riddell Thu, 20 Aug 2009 01:05:58 +0100 ++ ++akonadi (1.2.0-2ubuntu1) karmic; urgency=low ++ ++ * Merge from Debian Unstable, remaining changes: ++ + Build-depend on mysql-server-core-5.1 ++ + Hardlink mysqld to mysqld-akonadi (rules) ++ + Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ + Add pre and postinst scripts for akonadi-server ++ * Transition over to MySQL 5.1, as part of the merge above (LP: #415191) ++ ++ -- Jonathan Thomas Wed, 19 Aug 2009 08:57:48 -0400 ++ ++akonadi (1.2.0-2) unstable; urgency=low ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Build depend on libmysqlclient-dev rather than libmysqlclient15-dev. ++ Backports friendly as libmysqlclient-dev is a virtual package in lenny. ++ (Closes: #541024). ++ ++ -- Debian Qt/KDE Maintainers Tue, 11 Aug 2009 12:58:10 +0300 ++ ++akonadi (1.2.0-1) unstable; urgency=low ++ ++ * New upstream release. ++ ++ -- Ana Beatriz Guerrero Lopez Tue, 04 Aug 2009 09:07:49 +0200 ++ ++akonadi (1.2.0-0ubuntu1) karmic; urgency=low ++ ++ * New upstream release: ++ - bump akonadi version in debian/rules ++ - bump pkg-kde-tools to 0.4.6 ++ - bump libsoprano-dev to 2.3.0 ++ - bump cdbs to 0.4.56 ++ ++ -- Alessandro Ghersi Wed, 29 Jul 2009 19:52:18 +0200 ++ ++akonadi (1.1.95-2) experimental; urgency=low ++ ++ * Make akonadi-dev depend on boost-dev, as several akonadi headers includes ++ boost headers. ++ ++ -- Sune Vuorela Sat, 11 Jul 2009 23:51:48 +0200 ++ ++akonadi (1.1.95-1) experimental; urgency=low ++ ++ * New upstream prerelease. ++ ++ +++ Changes by George Kiagiadakis: ++ ++ * Refresh patches. ++ * Update installed files. ++ ++ +++ Changes by Sune Vuorela: ++ ++ * Add lintian override for broken lintian checks in -dbg package ++ dependencies. ++ * Bump Standards-Version to 3.8.2. No changes needed. ++ ++ -- Debian Qt/KDE Maintainers Fri, 26 Jun 2009 19:25:36 +0300 ++ ++akonadi (1.1.95-0ubuntu1) karmic; urgency=low ++ ++ * New upstream release ++ - bump akonadi version in debian/rules ++ - bump libboost-program-options1.35-dev to libboost-program-options1.38-dev ++ ++ -- Alessandro Ghersi Wed, 24 Jun 2009 05:14:31 +0200 ++ ++akonadi (1.1.90-0ubuntu1) karmic; urgency=low ++ ++ * New upstream release: ++ - bump akonadi versino in debian/rules ++ - update libakonadi-dev.install ++ - refresh 02_hardcode_debian_mysqld_path.diff ++ ++ -- Steve Stalcup Thu, 04 Jun 2009 09:47:55 -0400 ++ ++akonadi (1.1.85-0ubuntu1) karmic; urgency=low ++ ++ * New upstream release ++ ++ -- Jonathan Riddell Wed, 13 May 2009 09:45:47 +0000 ++ ++akonadi (1.1.2-1ubuntu1) karmic; urgency=low ++ ++ * Merge from Debian unstable, remaining changes: (LP: #372700) ++ + Add mysql-server-5.0 as build dependency ++ + Add mysql-server-5.0 as dependency for akonadi-server ++ + Hardlink mysqld to mysqld-akonadi (rules) ++ + Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ + Add pre and postinst scripts for akonadi-server ++ ++ -- Jonathan Thomas Wed, 06 May 2009 09:09:00 -0400 ++ ++akonadi (1.1.2-1) unstable; urgency=low ++ ++ * New upstream release. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Point Debian Vcs URLs to pkg-kde/trunk (new location). ++ ++ +++ Changes by Fathi Boudra: ++ ++ * Bump Standards-Version to 3.8.1. No changes needed. ++ * Update akonadi-dbg package section: debug. ++ ++ -- Debian Qt/KDE Maintainers Fri, 01 May 2009 14:00:31 +0200 ++ ++akonadi (1.1.1-2ubuntu2) karmic; urgency=low ++ ++ * Add missing comma to build-depends, fixes FTBFS ++ ++ -- Jonathan Thomas Tue, 28 Apr 2009 13:21:15 -0400 ++ ++akonadi (1.1.1-2ubuntu1) karmic; urgency=low ++ ++ * Merge from Debian unstable, remaining changes: (LP: #367109) ++ + Add mysql-server-5.0 as build dependency ++ + Add mysql-server-5.0 as dependency for akonadi-server ++ + Hardlink mysqld to mysqld-akonadi (rules) ++ + Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ + Add pre and postinst scripts for akonadi-server ++ * Update KUBUNTU-DEBAIN-DIFFERENCES ++ ++ -- Jonathan Thomas Sat, 25 Apr 2009 22:25:00 -0400 ++ ++akonadi (1.1.1-2) unstable; urgency=low ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Switch from internal debian/cdbs/kde.mk to pkg-kde-tools: ++ - build depend on pkg-kde-tools 0.4; ++ - remove debian/cdbs directory; ++ - replace debian/cdbs/kde.mk with ++ /usr/share/pkg-kde-tools/qt-kde-team/1/debian-qt-kde.mk in debian/rules. ++ * Remove THIS_SHOULD_GO_TO_UNSTABLE from debian/rules. ++ ++ -- Debian Qt/KDE Maintainers Wed, 18 Feb 2009 23:19:08 +0100 ++ ++akonadi (1.1.1-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Bump Standards-Version to 3.8.0: add README.source. ++ * Build depend on libboost-program-options-dev. ++ * Bump cmake build depend to 2.6.2. ++ * Switch to new installgen format. ++ * Update install files. ++ * Bump shlibs. ++ * Make akonadi-server depend on libqt4-sql-mysql. ++ * Add 02_hardcode_debian_mysqld_path.diff patch to hardcode MySQLd ++ path instread of depending on mysql-server at build time. ++ * Bump debian/compat and debhelper build dependency to v7 (to get more ++ sophisticated debian/tmp handling). ++ ++ +++ Changes by Ana Beatriz Guerrero Lopez: ++ ++ * Remove no longer needed lintian override. ++ * Updating packaging copyright years. ++ ++ -- Debian Qt/KDE Maintainers Sat, 24 Jan 2009 13:37:05 +0100 ++ ++akonadi (1.1.1-0ubuntu3) jaunty; urgency=low ++ ++ * Change build-deps to boost 1.35, LP: #297152 ++ ++ -- Jonathan Riddell Thu, 29 Jan 2009 12:13:53 +0000 ++ ++akonadi (1.1.1-1) experimental; urgency=low ++ ++ * New upstream release. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Bump Standards-Version to 3.8.0: add README.source. ++ * Build depend on libboost-program-options-dev. ++ * Bump cmake build depend to 2.6.2. ++ * Switch to new installgen format. ++ * Update install files. ++ * Bump shlibs. ++ * Make akonadi-server depend on libqt4-sql-mysql. ++ * Add 02_hardcode_debian_mysqld_path.diff patch to hardcode MySQLd ++ path instread of depending on mysql-server at build time. ++ * Bump debian/compat and debhelper build dependency to v7 (to get more ++ sophisticated debian/tmp handling). ++ ++ +++ Changes by Ana Beatriz Guerrero Lopez: ++ ++ * Remove no longer needed lintian override. ++ * Updating packaging copyright years. ++ ++ -- Debian Qt/KDE Maintainers Sat, 24 Jan 2009 13:37:05 +0100 ++ ++akonadi (1.1.1-0ubuntu2) jaunty; urgency=low ++ ++ * akonadi-server depends on mysql-server-core-5.0 not ++ mysql-server-5.0, full server not needed ++ ++ -- Jonathan Riddell Thu, 22 Jan 2009 10:48:22 +0000 ++ ++akonadi (1.1.1-0ubuntu1) jaunty; urgency=low ++ ++ * New upstream release ++ * Changed build-dep on mysql-server-5.0 to mysql-server-core-5.0 ++ ++ -- Steve Stalcup Wed, 21 Jan 2009 14:03:55 -0500 ++ ++akonadi (1.1.0-0ubuntu1) jaunty; urgency=low ++ ++ * New upstream release ++ * Add libboost-program-options-dev as build dependency (libboost-dev doesn't ++ depend on it any longer) ++ ++ -- Harald Sitter Sat, 03 Jan 2009 17:45:48 +0100 ++ ++akonadi (1.0.81-0ubuntu2) jaunty; urgency=low ++ ++ * Really change build dependency ++ ++ -- Harald Sitter Wed, 17 Dec 2008 16:19:19 +0100 ++ ++akonadi (1.0.81-0ubuntu1) jaunty; urgency=low ++ ++ * New upstream release ++ * Replace kdesdk-scripts build dependency with pkg-kde-tools (files got moved) ++ ++ -- Harald Sitter Wed, 17 Dec 2008 14:38:55 +0100 ++ ++akonadi (1.0.80-0ubuntu1) jaunty; urgency=low ++ ++ * New upstream release ++ * Use kde4.mk from cdbs rather than embedded debian/cdbs ++ + Build depend on kdesdk-scripts for kde4.mk ++ * Remove obsolete THIS_SHOULD_GO_TO_UNSTABLE=1 from debian/rules ++ * Add new build dependency on libboost-dev ++ ++ -- Jonathan Thomas Sun, 23 Nov 2008 12:33:35 +0100 ++ ++akonadi (1.0.0-2ubuntu2) jaunty; urgency=low ++ ++ * Remove kubuntu_01_mysqldakonadi.diff, ++ set -DMYSQLD_EXECUTABLE=/usr/sbin/mysqld-akonadi ++ ++ -- Jonathan Riddell Wed, 05 Nov 2008 19:57:19 +0000 ++ ++akonadi (1.0.0-2ubuntu1) jaunty; urgency=low ++ ++ * Merge with Debian, remaining changes: ++ - Make akonadi-server depend on libqt4-sql-mysql ++ - Add mysql-server-5.0 as build dependency ++ - Add mysql-server-5.0 as dependency for akonadi-server ++ - Add kubuntu_01_mysqldakonadi.diff ensuring that akonadiserver uses ++ mysqld-akonadi instead of mysqld itself (to bypass apparmor) ++ - Hardlink mysqld to mysqld-akonadi (rules) ++ - Add apparmor profile for mysqld-akonadi (usr.sbin.mysqld-akonadi) ++ - Add pre and postinst scripts for akonadi-server ++ ++ -- Jonathan Riddell Wed, 05 Nov 2008 16:35:03 +0000 ++ ++akonadi (1.0.0-2) unstable; urgency=low ++ ++ +++ Changes by Ana Beatriz Guerrero Lopez: ++ ++ * Make libakonadi-dev depend on libakonadiprivate1 instead of ++ libakonadiprivate0. ++ ++ +++ Changes by Sune Vuorela: ++ ++ * Copyright file. Thanks Thomas. ++ ++ -- Debian Qt/KDE Maintainers Thu, 24 Jul 2008 16:35:45 +0200 ++ ++akonadi (1.0.0-1) unstable; urgency=low ++ ++ * New upstream release. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Update debian/copyright: download URL and copyright/license check. ++ * libakonadiprivate SONAME was changed to 1. Rename library package, update ++ debian/libakonadiprivate* files, update control and rules. ++ * Make akonadi-server depend on mysql-server. ++ * libakonadiprivate suggests akonadi-server instead of Recommends. ++ ++ -- Debian Qt/KDE Maintainers Wed, 23 Jul 2008 20:27:52 +0300 ++ ++akonadi (0.82.0-1) unstable; urgency=low ++ ++ * New upstream snapshot. ++ * Protocol changed in akonadi, add appropriate conflicts. ++ * Hardcode mysqld path in debian/rules. ++ ++ -- Sune Vuorela Fri, 27 Jun 2008 19:30:34 +0200 ++ ++akonadi (1.0.0-0ubuntu5) intrepid; urgency=low ++ ++ * Reprofile mysqld-akonadi (LP: #280404) ++ ++ -- Harald Sitter Thu, 09 Oct 2008 16:20:47 +0200 ++ ++akonadi (1.0.0-0ubuntu4) intrepid; urgency=low ++ ++ * Fix duplicated variable in akonadiserver apparmor profile ++ (LP: #271643) ++ ++ -- Steve Beattie Mon, 06 Oct 2008 20:53:43 -0700 ++ ++akonadi (1.0.0-0ubuntu3) intrepid; urgency=low ++ ++ * Apparmor shouldn't hate akonadiserver when it tries to create directories ++ (also add locking permissions in case it's necessary some day) ++ * Make the Apparmor profile also work as root ++ * Add postinst and postrm for akonadi-server, invoking an apparmor reload to ++ get immediate access permissions for the daemon ++ ++ -- Harald Sitter Fri, 05 Sep 2008 16:44:44 +0200 ++ ++akonadi (1.0.0-0ubuntu2) intrepid; urgency=low ++ ++ * Add akonadi-server dependency on libqt4-sql-mysql ++ ++ -- Harald Sitter Tue, 19 Aug 2008 00:05:05 +0200 ++ ++akonadi (1.0.0-0ubuntu1) intrepid; urgency=low ++ ++ * New upstream release ++ * libakonadiprivate0 -> libakonadiprivate1 ++ ++ -- Harald Sitter Thu, 24 Jul 2008 02:21:18 +0200 ++ ++akonadi (0.82.0-0ubuntu3) intrepid; urgency=low ++ ++ * libakonadiprivate0 suggests not recommends akonadi-server ++ ++ -- Jonathan Riddell Fri, 18 Jul 2008 09:31:54 +0100 ++ ++akonadi (0.82.0-0ubuntu2) intrepid; urgency=low ++ ++ * Add mysql-server-5.0 as build dependency ++ * Add mysql-server-5.0 as dependency for akonadi-server ++ * Add kubuntu_01_mysqldakonadi.diff ensuring that akonadiserver uses ++ mysqld-akonadi instead of mysqld itself (to bypass apparmor) ++ * Hardlink mysqld to mysqld-akonadi ++ * Add apparmor profile for mysqld-akonadi ++ * Bump Standards-Version to 3.8.0 ++ ++ -- Harald Sitter Thu, 26 Jun 2008 14:48:49 +0200 ++ ++akonadi (0.82.0-0ubuntu1) intrepid; urgency=low ++ ++ * New upstream beta release ++ ++ -- Jonathan Riddell Thu, 19 Jun 2008 14:03:43 +0000 ++ ++akonadi (0.81.0-1) experimental; urgency=low ++ ++ * New upstream snapshot. ++ ++ -- Debian Qt/KDE Maintainers Thu, 22 May 2008 11:22:26 +0200 ++ ++akonadi (0.80.0+svn807399-1) experimental; urgency=low ++ ++ * New upstream development snapshot: ++ - The latest upstream commit is r807399 by qbast ++ - Date: Tue May 13 19:03:19 2008 UTC ++ ++ -- Debian Qt/KDE Maintainers Fri, 16 May 2008 12:23:43 +0200 ++ ++akonadi (0.80.0+svn804999-1) experimental; urgency=low ++ ++ * New upstream development snapshot: ++ - The latest upstream commit is r804999 by mlaurent ++ - Date: Wed May 7 10:59:48 2008 UTC ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Corrections to *.install files: ++ - libakonadi-dev.install: 12 new file(s) added; 12 file(s) removed; ++ - akonadi-server.install: 1 new file(s) added; 1 file(s) removed; ++ ++ -- Debian Qt/KDE Maintainers Mon, 05 May 2008 21:13:37 +0300 ++ ++akonadi (0.80.0+svn802602-1) experimental; urgency=low ++ ++ * New upstream development snapshot: ++ - The latest upstream commit is r802602 by toma ++ - Date: Wed, 30 Apr 2008 08:45:32 -0000 ++ ++ +++ Changes by Sune Vuorela ++ ++ * Update debian/copyright. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Build depend on automoc. ++ * Add akonadi.pc, suggest pkg-config. ++ ++ +++ Changes by Armin Berres: ++ ++ * Add replaces to libakonadi-dev, to make it possible to install it before ++ upgrading kdepimlibs. ++ ++ -- Debian Qt/KDE Maintainers Wed, 30 Apr 2008 11:40:52 +0300 ++ ++akonadi (0.80.0-1) experimental; urgency=low ++ ++ +++ Changes by Sune Vuorela: ++ ++ * Initial packaging. ++ * Split from unuploaded kdepim. ++ ++ +++ Changes by Ana Beatriz Guerrero Lopez: ++ ++ * Rework descriptions and add Homepage field. ++ ++ +++ Changes by Modestas Vainius: ++ ++ * Patch FindQt4.cmake to make X11 optional. ++ * Add myself to uploaders. ++ * Add installgen files. ++ ++ -- Debian Qt/KDE Maintainers Fri, 25 Apr 2008 16:29:05 +0300 diff --cc debian/control index 0000000,0000000..960d805 new file mode 100644 --- /dev/null +++ b/debian/control @@@ -1,0 -1,0 +1,260 @@@ ++Source: akonadi ++Section: libs ++Priority: optional ++Maintainer: Debian/Kubuntu Qt/KDE Maintainers ++Uploaders: Sune Vuorela , ++ Modestas Vainius , ++ Maximiliano Curia , ++ Sandro Knauß ++Build-Depends: cmake (>= 3.5~), ++ debhelper-compat (= 13), ++ default-libmysqlclient-dev, ++ dh-apparmor, ++ extra-cmake-modules (>= 5.68.0~), ++ libaccounts-qt5-dev (>= 1.15~), ++ libboost-dev (>= 1.34.0~), ++ libkaccounts-dev (>= 19.08.0~), ++ libkf5config-dev (>= 5.68.0~), ++ libkf5configwidgets-dev (>= 5.68.0~), ++ libkf5coreaddons-dev (>= 5.68.0~), ++ libkf5crash-dev (>= 5.68.0~), ++ libkf5i18n-dev (>= 5.68.0~), ++ libkf5iconthemes-dev (>= 5.68.0~), ++ libkf5itemmodels-dev (>= 5.68.0~), ++ libkf5itemviews-dev (>= 5.68.0~), ++ libkf5kio-dev (>= 5.68.0~), ++ libkf5widgetsaddons-dev (>= 5.68.0~), ++ libkf5windowsystem-dev (>= 5.68.0~), ++ libkf5xmlgui-dev (>= 5.68.0~), ++ libsqlite3-dev (>= 3.6.23), ++ libxml2-dev, ++ libxml2-utils, ++ libxslt1-dev, ++ pkg-config, ++ pkg-kde-tools (>= 0.12), ++ qtbase5-dev (>= 5.12.0~), ++ qtbase5-private-dev, ++ qttools5-dev, ++ shared-mime-info (>= 1.3~), ++ xsltproc ++Standards-Version: 4.5.0 ++Homepage: http://pim.kde.org/akonadi ++Vcs-Browser: https://salsa.debian.org/qt-kde-team/kde/akonadi ++Vcs-Git: https://salsa.debian.org/qt-kde-team/kde/akonadi.git ++Rules-Requires-Root: no ++ ++Package: akonadi-backend-mysql ++Section: misc ++Architecture: all ++Depends: default-mysql-client-core | virtual-mysql-client-core, ++ default-mysql-server-core | virtual-mysql-server-core, ++ libqt5sql5-mysql, ++ ${misc:Depends} ++Recommends: akonadi-server ++Replaces: akonadi-server (<< 1.3.60~) ++Breaks: akonadi-server (<< 1.3.60~) ++Description: MySQL storage backend for Akonadi ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package installs everything what's needed for Akonadi to work with MySQL ++ as underlying data storage engine. By default, a local MySQL server instance ++ will be started for each user. Alternatively, connection to an external MySQL ++ database is supported as well. ++ ++Package: akonadi-backend-postgresql ++Section: misc ++Architecture: all ++Depends: libqt5sql5-psql, ${misc:Depends} ++Recommends: akonadi-server, postgresql ++Replaces: akonadi-server (<< 1.3.60~) ++Breaks: akonadi-server (<< 1.3.60~) ++Description: PostgreSQL storage backend for Akonadi ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package installs everything what's needed for Akonadi to work with ++ PostgreSQL as underlying data storage engine. By default, a local PostgreSQL ++ server instance will be started for each user. Alternatively, connection to an ++ external PostgreSQL database is supported as well. ++ ++Package: akonadi-backend-sqlite ++Section: misc ++Multi-Arch: same ++Architecture: any ++Pre-Depends: ${misc:Pre-Depends} ++Depends: libqt5sql5-sqlite, ${misc:Depends}, ${shlibs:Depends} ++Recommends: akonadi-server ++Description: SQLite storage backend for Akonadi ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package installs everything what's needed for Akonadi to work with SQLite ++ as underlying data storage engine. Since SQLite is an embedded database ++ engine, a separate SQL server daemon is not necessary. ++ . ++ In addition, the package contains an improved QSql driver for SQLite named ++ "QSQLite3". It can be used by any application that needs to access SQLite ++ databases via standard Qt QSql framework. ++ ++Package: akonadi-server ++Section: net ++Architecture: any ++Depends: akonadi-backend-mysql (= ${source:Version}) | akonadi-backend-sqlite (= ${binary:Version}) | akonadi-backend-postgresql (= ${source:Version}), ++ ${misc:Depends}, ++ ${shlibs:Depends} ++Suggests: akonadi-backend-mysql (= ${source:Version}), ++ akonadi-backend-postgresql (= ${source:Version}), ++ akonadi-backend-sqlite (= ${binary:Version}) ++Breaks: kdepimlibs-data (<< 4:16.04), ++ libkf5akonadi-data (<< 4:19.08.2-1~), ++ libkf5akonadi-dev-bin (<< 4:18.08.3-8~) ++Replaces: kdepimlibs-data (<< 4:16.04) ++Description: Akonadi PIM storage service ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package contains the Akonadi PIM storage server and associated programs. ++ ++Package: libkf5akonadi-data ++Architecture: all ++Multi-Arch: foreign ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Breaks: akonadi-server (<< 4:19.08.2-1~), libkf5akonadicore5 ++Replaces: akonadi-server (<< 4:19.08.2-1~), libkf5akonadicore5 ++Description: Akonadi arch independent data ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package ships arch independent data like translations etc. ++ ++Package: libkf5akonadi-dev ++Section: libdevel ++Architecture: any ++Depends: libboost-dev (>= 1.34.0~), ++ libkf5akonadiagentbase5 (= ${binary:Version}), ++ libkf5akonadicore5abi2 (= ${binary:Version}), ++ libkf5akonadiserver-dev (>= ${binary:Version}), ++ libkf5akonadiwidgets5abi1 (= ${binary:Version}), ++ libkf5akonadixml5 (= ${binary:Version}), ++ libkf5config-dev (>= 5.68.0~), ++ libkf5i18n-dev (>= 5.68.0~), ++ libkf5iconthemes-dev (>= 5.68.0~), ++ libkf5itemmodels-dev (>= 5.68.0~), ++ libkf5kio-dev (>= 5.68.0~), ++ libkf5xmlgui-dev (>= 5.68.0~), ++ qtbase5-dev (>= 5.12.0~), ++ ${misc:Depends}, ++ ${shlibs:Depends} ++Replaces: kapptemplate (<< 4:17.08.3-2), ++ kdepim-runtime (<< 4:4.13), ++ kdepimlibs5-dev ++Breaks: kapptemplate (<< 4:17.08.3-2), kdepim-runtime (<< 4:4.13) ++Conflicts: kdepimlibs5-dev ++Description: development files for the KDE Development Platform PIM libraries ++ This package contains development files for building software that uses ++ the KDE Development Platform Personal Information Management libraries. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. ++ ++Package: libkf5akonadi-dev-bin ++Section: libdevel ++Architecture: any ++Multi-Arch: foreign ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Breaks: akonadi-server (<< 4:18.08.3-8~), kdepimlibs5-dev ++Replaces: akonadi-server (<< 4:18.08.3-8~), kdepimlibs5-dev ++Description: Additional development binaries for the Akonadi KDE PIM libraries ++ This package contains development files for building software that uses ++ the KDE Development Platform Personal Information Management libraries. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. ++ . ++ It contains files to run Akonadi based tests. ++ ++Package: libkf5akonadiagentbase5 ++Architecture: any ++Multi-Arch: same ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Provides: ${ABI:VirtualPackage} ++Description: Akonadi agent base library ++ This library contains classes to implement agents for the Akonadi PIM ++ data server. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. ++ ++Package: libkf5akonadicore5abi2 ++X-Debian-ABI: 2 ++X-CMake-Target: KF5AkonadiCore ++Architecture: any ++Multi-Arch: same ++Provides: ${ABI:VirtualPackage} ++Depends: libkf5akonadi-data (= ${source:Version}), ++ ${misc:Depends}, ++ ${shlibs:Depends} ++Breaks: libkf5akonadicore5 ++Replaces: libkf5akonadicore5 ++Recommends: libkf5akonadiwidgets5abi1 (= ${binary:Version}) ++Description: Akonadi core library ++ This library contains Akonadi PIM data server core classes. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. ++ ++Package: libkf5akonadiprivate5abi2 ++X-Debian-ABI: 2 ++X-CMake-Target: KF5AkonadiPrivate ++Architecture: any ++Multi-Arch: same ++Provides: ${ABI:VirtualPackage} ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Suggests: akonadi-server (= ${binary:Version}) ++Description: libraries for the Akonadi PIM storage service ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package contains libraries used by the Akonadi PIM storage service. ++Breaks: akonadiconsole (<< 4:17.08), kdepim-runtime (<< 4:17.08) ++ ++Package: libkf5akonadiserver-dev ++Section: libdevel ++Architecture: any ++Depends: libkf5akonadiprivate5abi2 (= ${binary:Version}), ${misc:Depends} ++Breaks: libakonadi-dev ++Replaces: libakonadi-dev ++Description: development files for the Akonadi PIM storage service ++ Akonadi is an extensible cross-desktop Personal Information Management (PIM) ++ storage service. It provides a common framework for applications to store and ++ access mail, calendars, addressbooks, and other PIM data. ++ . ++ This package contains development files for building software that uses the ++ Akonadi PIM storage service. ++ ++Package: libkf5akonadiwidgets5abi1 ++X-Debian-ABI: 1 ++X-CMake-Target: KF5AkonadiWidgets ++Architecture: any ++Multi-Arch: same ++Provides: ${ABI:VirtualPackage} ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Breaks: libkf5akonadicore5 (<< 4:15.07.90+git20150817.0936) ++Replaces: libkf5akonadicore5 (<< 4:15.07.90+git20150817.0936) ++Description: Akonadi widgets library ++ This library contains standard widgets for the Akonadi PIM data server. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. ++ ++Package: libkf5akonadixml5 ++Architecture: any ++Multi-Arch: same ++Provides: ${ABI:VirtualPackage} ++Depends: ${misc:Depends}, ${shlibs:Depends} ++Description: Akonadi XML helper library ++ This library provides XML helpers using the Akonadi PIM data server. ++ . ++ This package is part of the KDE Development Platform PIM libraries module. diff --cc debian/copyright index 0000000,0000000..40fb33e new file mode 100644 --- /dev/null +++ b/debian/copyright @@@ -1,0 -1,0 +1,367 @@@ ++Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ ++Upstream-Name: Akonadi ++Source: http://download.kde.org/stable/akonadi/src/ ++Comment: ++ This package was debianized by Sune Vuorela ++ on Fri, 24 april 2008 09:49:34 +0200. ++Upstream-Contact: kde-devel@kde.org ++ ++Files: * ++Copyright: 2009, Andras Mantia ++ 2006, Andreas Gungl ++ 2009-2010, Bertjan Broeksema ++ 2007, Bruno Virlet ++ 2011, Christian Mollekopf ++ 2013-2014, Christian Mollekopf ++ 2007, Christian Schaarschmidt ++ 2009, Constantin Berzan ++ 2014-2018, Daniel Vrátil ++ 2013-2016, David Faure ++ 2016, David Faure s ++ 2002, Holger Freyther ++ 2009, Igor Trindade Oliveira ++ 2006-2008, Ingo Klöcker ++ 2010, KDAB ++ 2007-2009, Kevin Krammer ++ 2009, Kevin Ottens ++ 2010, Klarälvdalens Datakonsult AB ++ 2015, Klarälvdalens Datakonsult AB, a KDAB Group company ++ 2010-2018, Laurent Montel ++ 2006-2010, Marc Mutz ++ 1997, Matthias Kalle Dalheimer ++ 2010, Michael Jansen ++ 2010, Milian Wolff ++ 2008, Omat Holding B.V ++ 2007, Robert Zwerus ++ 2010, Rosetta Contributors and Canonical Ltd 2010 ++ 2015-2016, Sandro Knauß ++ 2010, Sebastian Trueg ++ 2008-2011, Stephen Kelly ++ 2009, Szymon Stefanek ++ 2008-2016, This_file_is_part_of_KDE ++ 2009, Thomas McGuire ++ 2008, Thomas McGuire ++ 2006-2010, Till Adam ++ 2000, Timo Hummel ++ 2006-2011, Tobias Koenig ++ 2000, Tom Braun ++ 2006-2015, Volker Krause ++ 2010, Will Stephenson ++ a KDAB Group company ++ author Stephen Kelly ++License: LGPL-2+ ++Comment: ++ See full list of contributors in "AUTHORS" file. ++ ++Files: autotests/akonadicontrol/agenttypetest.cpp ++ autotests/libs/testrunner/config.cpp ++ autotests/libs/testrunner/config.h ++ autotests/libs/testrunner/main.cpp ++ autotests/libs/testrunner/setup.cpp ++ autotests/libs/testrunner/setup.h ++ autotests/libs/testrunner/shellscript.cpp ++ autotests/libs/testrunner/shellscript.h ++ autotests/libs/testrunner/testrunner.cpp ++ autotests/libs/testrunner/testrunner.h ++ autotests/private/externalpartstoragetest.cpp ++ autotests/private/protocoltest.cpp ++ autotests/private/protocoltest.h ++ autotests/server/collectionstatisticstest.cpp ++ autotests/server/fakeakonadiserver.cpp ++ autotests/server/fakeakonadiserver.h ++ autotests/server/fakeclient.cpp ++ autotests/server/fakeclient.h ++ autotests/server/fakesearchmanager.cpp ++ autotests/server/fakesearchmanager.h ++ autotests/server/inspectablenotificationcollector.cpp ++ autotests/server/inspectablenotificationcollector.h ++ autotests/server/partstreamertest.cpp ++ autotests/server/searchtest.cpp ++ src/core/jobs/collectionattributessynchronizationjob.cpp ++ src/core/jobs/collectionattributessynchronizationjob.h ++ src/core/jobs/resourcesynchronizationjob.cpp ++ src/core/jobs/resourcesynchronizationjob.h ++ src/private/datastream_p.cpp ++ src/private/datastream_p_p.h ++ src/private/externalpartstorage.cpp ++ src/private/externalpartstorage_p.h ++ src/private/instance.cpp ++ src/private/instance_p.h ++ src/server/commandcontext.cpp ++ src/server/commandcontext.h ++ src/server/storage/collectionstatistics.cpp ++ src/server/storage/collectionstatistics.h ++ src/server/storage/partstreamer.cpp ++ src/server/storage/partstreamer.h ++ src/server/storage/storagedebugger.cpp ++ src/server/storage/storagedebugger.h ++ src/widgets/agenttypedialog.cpp ++ src/widgets/agenttypedialog.h ++Copyright: 2016-2018, Daniel Vrátil ++ 2013-2015, Daniel Vrátil ++ 2016, Elvis Angelaccio ++ 1991-1999, Free Software Foundation, Inc ++ 2008, Igor Trindade Oliveira ++ 2008, Omat Holding B.V ++ 2006, Tobias Koenig ++ 2009-2013, Volker Krause ++License: LGPL-2.1+ ++ ++Files: autotests/libs/fakeakonadiservercommand.cpp ++ autotests/libs/fakeakonadiservercommand.h ++ autotests/libs/fakeserverdata.cpp ++ autotests/libs/fakeserverdata.h ++ src/widgets/collectionmaintenancepage.cpp ++ src/widgets/collectionmaintenancepage.h ++ templates/akonadiresource/src/%{APPNAMELC}resource.cpp ++ templates/akonadiresource/src/%{APPNAMELC}resource.h ++ templates/akonadiserializer/src/akonadi_serializer_%{APPNAMELC}.cpp ++ templates/akonadiserializer/src/akonadi_serializer_%{APPNAMELC}.h ++Copyright: 2009-2018, Montel Laurent ++ 2009, Stephen Kelly ++License: GPL-2+ ++ ++Files: po/ca/* ++ po/ca@valencia/* ++ po/uk/* ++Copyright: 2009-2017, KDE e.V ++License: LGPL-2.1+3+KDEeV ++ ++Files: autotests/libs/newmailnotifierattributetest.cpp ++ autotests/libs/newmailnotifierattributetest.h ++ autotests/libs/pop3resourceattributetest.cpp ++ autotests/libs/pop3resourceattributetest.h ++ autotests/libs/tagselectwidgettest.cpp ++ autotests/libs/tagselectwidgettest.h ++Copyright: 2014-2018, Montel Laurent ++License: GPL-2 ++ ++Files: autotests/libs/collectioncreatetest.cpp ++ autotests/libs/collectionmodifytest.cpp ++ autotests/libs/tagmodeltest.cpp ++ src/core/itemchangelog.cpp ++ src/core/itemchangelog_p.h ++Copyright: 2015-2017, Daniel Vrátil ++License: GPL-2+3+KDEeV ++ ++Files: cmake/* ++Copyright: 2010, Christophe Giboudeaux ++ 2014, Daniel Vrátil ++ 2008, Gilles Caulier ++ 2000-2009, Kitware, Inc., Insight Software Consortium ++License: BSD-3-clause ++ ++Files: src/core/qtest_akonadi.h ++ src/xml/autotests/collectiontest.h ++Copyright: 2006, David Faure ++ 2008, Igor Trindade Oliveira ++ 2009, Volker Krause ++License: LGPL-2 ++ ++Files: src/qsqlite/src/qsql_sqlite.h ++ src/qsqlite/src/smain.cpp ++Copyright: 2009, Nokia Corporation and/or its subsidiary(-ies) ++License: GPL-3_or_LGPL-2.1-QTexception-1.0 ++ ++Files: src/qsqlite/src/qsql_sqlite.cpp ++Copyright: 2013, Digia Plc and/or its subsidiary(-ies) ++ 2009-2010, Nokia Corporation and/or its subsidiary(-ies) ++ 2013, Olivier Goffart ++License: GPL-3_or_LGPL-2.1-QTexception-1.1 ++ ++License: BSD-3-clause ++ Redistribution and use in source and binary forms, with or without ++ modification, are permitted provided that the following conditions ++ are met: ++ . ++ 1. Redistributions of source code must retain the copyright ++ notice, this list of conditions and the following disclaimer. ++ 2. Redistributions in binary form must reproduce the copyright ++ notice, this list of conditions and the following disclaimer in the ++ documentation and/or other materials provided with the distribution. ++ 3. The name of the Kitware, Inc. may not be used to endorse or promote products ++ derived from this software without specific prior written permission. ++ . ++ THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR ++ IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES ++ OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. ++ IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, ++ INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT ++ NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, ++ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY ++ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT ++ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF ++ THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. ++ ++License: GPL-2 ++ This program is free software; you can redistribute it and/or modify it ++ under the terms of the GNU General Public License, version 2, as ++ published by the Free Software Foundation. ++ . ++ This program is distributed in the hope that it will be useful, but ++ WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ General Public License for more details. ++ . ++ The complete text of the GNU General Public License version 2 can be found in ++ `/usr/share/common-licenses/GPL-2'. ++ ++License: GPL-2+ ++ This program is free software; you can redistribute it and/or modify ++ it under the terms of the GNU General Public License as published by ++ the Free Software Foundation; either version 2 of the License, or ++ (at your option) any later version. ++ . ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ . ++ The complete text of the GNU General Public License version 2 ++ can be found in `/usr/share/common-licenses/GPL-2'. ++ ++License: GPL-2+3+KDEeV ++ This program is free software; you can redistribute it and/or ++ modify it under the terms of the GNU General Public License as ++ published by the Free Software Foundation; either version 2 of ++ the License or (at your option) version 3 or any later version ++ accepted by the membership of KDE e.V. (or its successor approved ++ by the membership of KDE e.V.), which shall act as a proxy ++ defined in Section 14 of version 3 of the license. ++ . ++ This program is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++ GNU General Public License for more details. ++ . ++ The complete text of the GNU General Public License version 2 ++ can be found in `/usr/share/common-licenses/GPL-2', likewise, the ++ complete text of the GNU General Public License version 3 can be ++ found in `/usr/share/common-licenses/GPL-3'. ++ ++License: GPL-3_or_LGPL-2.1-QTexception-1.0 ++ $QT_BEGIN_LICENSE:LGPL$ ++ Commercial Usage ++ Licensees holding valid Qt Commercial licenses may use this file in ++ accordance with the Qt Commercial License Agreement provided with the ++ Software or, alternatively, in accordance with the terms contained in ++ a written agreement between you and Nokia. ++ . ++ GNU Lesser General Public License Usage ++ Alternatively, this file may be used under the terms of the GNU Lesser ++ General Public License version 2.1 as published by the Free Software ++ Foundation and appearing in the file LICENSE.LGPL included in the ++ packaging of this file. Please review the following information to ++ ensure the GNU Lesser General Public License version 2.1 requirements ++ will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ++ . ++ In addition, as a special exception, Nokia gives you certain ++ additional rights. These rights are described in the Nokia Qt LGPL ++ Exception version 1.0, included in the file LGPL_EXCEPTION.txt in this ++ package. ++ . ++ GNU General Public License Usage ++ Alternatively, this file may be used under the terms of the GNU ++ General Public License version 3.0 as published by the Free Software ++ Foundation and appearing in the file LICENSE.GPL included in the ++ packaging of this file. Please review the following information to ++ ensure the GNU General Public License version 3.0 requirements will be ++ met: http://www.gnu.org/copyleft/gpl.html. ++ . ++ If you are unsure which license is appropriate for your use, please ++ contact the sales department at http://www.qtsoftware.com/contact. ++ $QT_END_LICENSE$ ++ -- ++ On Debian systems, the complete text of the GNU General Public License ++ version 3 can be found in `/usr/share/common-licenses/GPL-3', likewise, the ++ complete text of the GNU Lesser General Public License version 2.1 can be ++ found in `/usr/share/common-licenses/LGPL-2.1'. ++ above. ++ ++License: GPL-3_or_LGPL-2.1-QTexception-1.1 ++ $QT_BEGIN_LICENSE:LGPL$ ++ Commercial Usage ++ Licensees holding valid Qt Commercial licenses may use this file in ++ accordance with the Qt Commercial License Agreement provided with the ++ Software or, alternatively, in accordance with the terms contained in ++ a written agreement between you and Nokia. ++ . ++ GNU Lesser General Public License Usage ++ Alternatively, this file may be used under the terms of the GNU Lesser ++ General Public License version 2.1 as published by the Free Software ++ Foundation and appearing in the file LICENSE.LGPL included in the ++ packaging of this file. Please review the following information to ++ ensure the GNU Lesser General Public License version 2.1 requirements ++ will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ++ . ++ In addition, as a special exception, Nokia gives you certain additional ++ rights. These rights are described in the Nokia Qt LGPL Exception ++ version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ++ . ++ GNU General Public License Usage ++ Alternatively, this file may be used under the terms of the GNU ++ General Public License version 3.0 as published by the Free Software ++ Foundation and appearing in the file LICENSE.GPL included in the ++ packaging of this file. Please review the following information to ++ ensure the GNU General Public License version 3.0 requirements will be ++ met: http://www.gnu.org/copyleft/gpl.html. ++ . ++ If you have questions regarding the use of this file, please contact ++ Nokia at qt-info@nokia.com. ++ $QT_END_LICENSE$ ++ -- ++ On Debian systems, the complete text of the GNU General Public License ++ version 3 can be found in `/usr/share/common-licenses/GPL-3', likewise, the ++ complete text of the GNU Lesser General Public License version 2.1 can be ++ found in `/usr/share/common-licenses/LGPL-2.1'. ++ ++License: LGPL-2 ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Library General Public ++ License version 2 as published by the Free Software Foundation. ++ . ++ This library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Library General Public License for more details. ++ . ++ The complete text of the GNU Library General Public License version 2 ++ can be found in `/usr/share/common-licenses/LGPL-2'. ++ ++License: LGPL-2+ ++ This library is free software; you can redistribute it and/or modify it ++ under the terms of the GNU Library General Public License as published by ++ the Free Software Foundation; either version 2 of the License, or (at your ++ option) any later version. ++ . ++ This library is distributed in the hope that it will be useful, but WITHOUT ++ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ++ FITNESS FOR A PARTICULAR PURPOSE. See the GNU Library General Public ++ License for more details. ++ . ++ The complete text of the GNU Library General Public License version 2 ++ can be found in `/usr/share/common-licenses/LGPL-2'. ++ ++License: LGPL-2.1+ ++ This library is free software; you can redistribute it and/or ++ modify it under the terms of the GNU Lesser General Public ++ License as published by the Free Software Foundation; either ++ version 2.1 of the License, or (at your option) any later version. ++ . ++ This library is distributed in the hope that it will be useful, ++ but WITHOUT ANY WARRANTY; without even the implied warranty of ++ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ++ Lesser General Public License for more details. ++ . ++ The complete text of the GNU Lesser General Public License version 2.1 ++ can be found in `/usr/share/common-licenses/LGPL-2.1'. ++ ++License: LGPL-2.1+3+KDEeV ++ This file is distributed under the license LGPL version 2.1 or ++ version 3 or later versions approved by the membership of KDE e.V. ++ . ++ The complete text of the GNU Lesser General Public License version 2.1 ++ can be found in `/usr/share/common-licenses/LGPL-2.1'. ++ . ++ The complete text of the GNU Lesser General Public License version 3 ++ can be found in `/usr/share/common-licenses/LGPL-3'. diff --cc debian/libkf5akonadi-data.install index 0000000,0000000..dc2f89b new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadi-data.install @@@ -1,0 -1,0 +1,3 @@@ ++usr/share/locale/*/LC_MESSAGES/libakonadi5.mo ++usr/share/qlogging-categories5/akonadi.categories ++usr/share/qlogging-categories5/akonadi.renamecategories diff --cc debian/libkf5akonadi-dev-bin.install index 0000000,0000000..1ba7624 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadi-dev-bin.install @@@ -1,0 -1,0 +1,6 @@@ ++usr/bin/akonadi_knut_resource ++usr/bin/asapcat ++usr/lib/*/qt5/plugins/akonadi/akonadi_test_searchplugin.so ++usr/share/akonadi/agents/knutresource.desktop ++usr/share/kf5/akonadi_knut_resource/knut-template.xml ++usr/share/locale/*/LC_MESSAGES/akonadi_knut_resource.mo diff --cc debian/libkf5akonadi-dev.install index 0000000,0000000..7d721af new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadi-dev.install @@@ -1,0 -1,0 +1,20 @@@ ++usr/bin/akonadi2xml ++usr/bin/akonaditest ++usr/include/KF5/AkonadiAgentBase/ ++usr/include/KF5/AkonadiCore/ ++usr/include/KF5/AkonadiWidgets/ ++usr/include/KF5/AkonadiXml/ ++usr/include/KF5/akonadi_version.h ++usr/lib/*/cmake/KF5Akonadi/ ++usr/lib/*/libKF5AkonadiAgentBase.so ++usr/lib/*/libKF5AkonadiCore.so ++usr/lib/*/libKF5AkonadiWidgets.so ++usr/lib/*/libKF5AkonadiXml.so ++usr/lib/*/qt5/mkspecs/modules/qt_AkonadiAgentBase.pri ++usr/lib/*/qt5/mkspecs/modules/qt_AkonadiCore.pri ++usr/lib/*/qt5/mkspecs/modules/qt_AkonadiWidgets.pri ++usr/lib/*/qt5/mkspecs/modules/qt_AkonadiXml.pri ++usr/lib/*/qt5/plugins/designer/akonadiwidgets.so ++usr/share/kdevappwizard/templates/akonadiresource.tar.bz2 ++usr/share/kdevappwizard/templates/akonadiserializer.tar.bz2 ++usr/share/kf5/akonadi/kcfg2dbus.xsl diff --cc debian/libkf5akonadiagentbase5.install index 0000000,0000000..3507c46 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadiagentbase5.install @@@ -1,0 -1,0 +1,2 @@@ ++usr/lib/*/libKF5AkonadiAgentBase.so.5 ++usr/lib/*/libKF5AkonadiAgentBase.so.5.* diff --cc debian/libkf5akonadicore5abi2.install index 0000000,0000000..672f1a8 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadicore5abi2.install @@@ -1,0 -1,0 +1,1 @@@ ++usr/lib/*/libKF5AkonadiCore.so.5* diff --cc debian/libkf5akonadiprivate5abi2.install index 0000000,0000000..9402d99 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadiprivate5abi2.install @@@ -1,0 -1,0 +1,1 @@@ ++usr/lib/*/libKF5AkonadiPrivate.so.5* diff --cc debian/libkf5akonadiserver-dev.install index 0000000,0000000..8166459 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadiserver-dev.install @@@ -1,0 -1,0 +1,3 @@@ ++usr/include/KF5/akonadi/ ++usr/lib/*/libKF5AkonadiPrivate.so ++usr/share/dbus-1/interfaces/ diff --cc debian/libkf5akonadiwidgets5abi1.install index 0000000,0000000..4851fde new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadiwidgets5abi1.install @@@ -1,0 -1,0 +1,1 @@@ ++usr/lib/*/libKF5AkonadiWidgets.so.5* diff --cc debian/libkf5akonadixml5.install index 0000000,0000000..396eb24 new file mode 100644 --- /dev/null +++ b/debian/libkf5akonadixml5.install @@@ -1,0 -1,0 +1,2 @@@ ++usr/lib/*/libKF5AkonadiXml.so.5 ++usr/lib/*/libKF5AkonadiXml.so.5.* diff --cc debian/man/akonadictl.1 index 0000000,0000000..2c33050 new file mode 100644 --- /dev/null +++ b/debian/man/akonadictl.1 @@@ -1,0 -1,0 +1,39 @@@ ++.TH AKONADI "1" "July 2015" "Akonadi 1.13.0" "User Commands" ++.SH NAME ++akonadictl \- Akonadi server manipulation tool ++.SH SYNOPSIS ++.B akonadictl ++[\fI\,command\/\fR] ++.SH DESCRIPTION ++.SS "Commands:" ++.TP ++start ++: Starts the Akonadi server with all its processes ++.TP ++stop ++: Stops the Akonadi server and all its processes cleanly ++.TP ++restart ++: Restart Akonadi server with all its processes ++.TP ++status ++: Shows a status overview of the Akonadi server ++.TP ++vacuum ++: Vacuum internal storage (WARNING: needs a lot of time and disk space!) ++.TP ++fsck ++: Check (and attempt to fix) consistency of the internal storage (can take some time) ++.SH OPTIONS ++.SS "General options:" ++.TP ++\fB\-h\fR [ \fB\-\-help\fR ] ++show this help message ++.TP ++\fB\-\-version\fR ++show version information ++.SS "Multi-instance options:" ++.TP ++\fB\-\-instance\fR arg ++Namespace for starting multiple Akonadi instances in ++the same user session diff --cc debian/patches/disable_secure_file_priv_check.diff index 0000000,0000000..3b051f2 new file mode 100644 --- /dev/null +++ b/debian/patches/disable_secure_file_priv_check.diff @@@ -1,0 -1,0 +1,33 @@@ ++From: Philip Muskovac ++Date: Tue, 6 Dec 2016 18:43:17 +0100 ++Subject: disable the secure_file_priv check ++ ++MySQL 5.7 introduced a premission check for export and import operations. ++In Debian and Ubuntu, only the full mysql-server package creates the set system ++wide directory causing mysqld-akonadi to error out on startup if only ++mysql-server-core-5.7 is installed. ++To prevent that the key is set to empty, which reverts mysqld to the 5.6 ++behavior. ++See http://dev.mysql.com/doc/refman/5.7/en/server-system-variables.html#sysvar_secure_file_priv ++Bug-Debian: https://bugs.debian.org/843534 ++Last-Update: 2016-04-18 ++Forwarded: not-needed ++Origin: vendor ++--- ++ src/server/storage/mysql-global.conf | 4 ++++ ++ 1 file changed, 4 insertions(+) ++ ++diff --git a/src/server/storage/mysql-global.conf b/src/server/storage/mysql-global.conf ++index 55b667b..a137f72 100644 ++--- a/src/server/storage/mysql-global.conf +++++ b/src/server/storage/mysql-global.conf ++@@ -100,5 +100,9 @@ wait_timeout=31536000 ++ # We use InnoDB, so don't let MyISAM eat up memory ++ key_buffer_size=16K ++ +++# Debian/KUBUNTU: +++# Unset the export dir check as only the full mysql-server package creates it +++secure_file_priv= +++ ++ [client] ++ default-character-set=utf8 diff --cc debian/patches/enable_debianabimanager.diff index 0000000,0000000..6281bec new file mode 100644 --- /dev/null +++ b/debian/patches/enable_debianabimanager.diff @@@ -1,0 -1,0 +1,7 @@@ ++--- a/CMakeLists.txt +++++ b/CMakeLists.txt ++@@ -362,3 +362,4 @@ install(FILES ++ ++ feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) ++ ki18n_install(po) +++include(/usr/share/pkg-kde-tools/cmake/DebianABIManager.cmake) diff --cc debian/patches/postgresql-data-checksums.patch index 0000000,0000000..96ba1bf new file mode 100644 --- /dev/null +++ b/debian/patches/postgresql-data-checksums.patch @@@ -1,0 -1,0 +1,18 @@@ ++From: Debian/Kubuntu Qt/KDE Maintainers ++Date: Wed, 13 Apr 2016 11:36:15 +0200 ++Subject: postgresql-data-checksums ++ ++--- ++ src/server/storage/dbconfigpostgresql.cpp | 1 + ++ 1 file changed, 1 insertion(+) ++ ++--- a/src/server/storage/dbconfigpostgresql.cpp +++++ b/src/server/storage/dbconfigpostgresql.cpp ++@@ -481,6 +481,7 @@ bool DbConfigPostgresql::startInternalSe ++ #endif ++ // call 'initdb --pgdata=/home/user/.local/share/akonadi/db_data' ++ execute(mInitDbPath, { QStringLiteral("--pgdata=%1").arg(mPgData), +++ QStringLiteral("--data-checksums"), ++ QStringLiteral("--locale=en_US.UTF-8") // TODO: check locale ++ }); ++ } else { diff --cc debian/patches/series index 0000000,0000000..df868ac new file mode 100644 --- /dev/null +++ b/debian/patches/series @@@ -1,0 -1,0 +1,3 @@@ ++postgresql-data-checksums.patch ++disable_secure_file_priv_check.diff ++enable_debianabimanager.diff diff --cc debian/rules index 0000000,0000000..df6aa4d new file mode 100755 --- /dev/null +++ b/debian/rules @@@ -1,0 -1,0 +1,44 @@@ ++#!/usr/bin/make -f ++ ++export DEB_BUILD_MAINT_OPTIONS = hardening=+all ++ ++include /usr/share/dpkg/pkg-info.mk ++ ++ifneq (,$(filter $(DEB_HOST_ARCH), armhf armel m68k mipsel powerpc sh4)) ++ export DEB_LDFLAGS_MAINT_APPEND = -Wl,--no-as-needed -latomic -Wl,--as-needed ++endif ++ ++AbiVirtualPackageVersion = $(call dpkg_late_eval,AbiVirtualPackageVersion,echo '${DEB_VERSION_UPSTREAM}' | sed -e 's/\.[0-9]\+$$//') ++pkgs_lib = $(filter-out %-dev %-dbg %-bin %-data,$(filter lib%,$(shell dh_listpackages))) ++backend_packages = $(filter akonadi-backend-%,$(shell dh_listpackages)) ++ ++%: ++ dh $@ --with kf5,pkgkde_symbolshelper --buildsystem kf5 --without build_stamp ++ ++override_dh_auto_configure: ++ dh_auto_configure -- \ ++ -DINSTALL_QSQLITE_IN_QT_PREFIX=ON \ ++ -DBUILD_TOOLS=ON \ ++ -DBUILD_DESIGNERPLUGIN=ON ++ ++execute_after_dh_install: ++ dh_apparmor -pakonadi-server --profile-name=mysqld_akonadi ++ dh_apparmor -pakonadi-server --profile-name=postgresql_akonadi ++ dh_apparmor -pakonadi-server --profile-name=usr.bin.akonadiserver ++ ++override_dh_installdocs: ++ # Install README.Debian to backend packages ++ dh_installdocs -A -pakonadi-server $(foreach p,$(backend_packages),-p$(p)) debian/README.Debian ++ dh_installdocs --remaining-packages ++ ++override_dh_makeshlibs: ++ for pkg in $(pkgs_lib); do \ ++ name=$$( echo "$${pkg}" | sed -e 's/abi[0-9]\+\s*//'); \ ++ echo "ABI:VirtualPackage=$${name}-$(AbiVirtualPackageVersion)" >> debian/$${pkg}.substvars; \ ++ dh_makeshlibs -p$${pkg} -V "$${pkg} (>= $(DEB_VERSION_EPOCH_UPSTREAM)), $${name}-$(AbiVirtualPackageVersion)"; \ ++ done ++ ++override_dh_auto_test: ++ # Avoid tests extra build dependencies, check them with autopkgtests ++ - xvfb-run -a --server-args="-screen 0 1024x768x24 +extension GLX" --\ ++ dh_auto_test --no-parallel diff --cc debian/salsa-ci.yml index 0000000,0000000..ff55d43 new file mode 100644 --- /dev/null +++ b/debian/salsa-ci.yml @@@ -1,0 -1,0 +1,9 @@@ ++include: ++ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/salsa-ci.yml ++ - https://salsa.debian.org/salsa-ci-team/pipeline/raw/master/pipeline-jobs.yml ++variables: ++ SALSA_CI_DISABLE_MISSING_BREAKS: 'no' ++ SALSA_CI_DISABLE_RC_BUGS: 'no' ++ SALSA_CI_REPROTEST_ARGS: '--variations=-build-path' ++ EXTRA_REPOSITORY: 'debian/salsa/extra_repository.list' ++ EXTRA_REPOSITORY_KEY: 'debian/salsa/qt-kde-team.debian.net.asc' diff --cc debian/salsa/extra_repository.list index 0000000,0000000..96b50ae new file mode 100644 --- /dev/null +++ b/debian/salsa/extra_repository.list @@@ -1,0 -1,0 +1,1 @@@ ++deb https://qt-kde-team.debian.net/debian qt-kde-snapshots main diff --cc debian/salsa/qt-kde-team.debian.net.asc index 0000000,0000000..6fc55da new file mode 100644 --- /dev/null +++ b/debian/salsa/qt-kde-team.debian.net.asc @@@ -1,0 -1,0 +1,51 @@@ ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++ ++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 ++bMTcHe5rk6snXqz1neEmP2K7qdNwwakRdAA= ++=o8PI ++-----END PGP PUBLIC KEY BLOCK----- diff --cc debian/source/format index 0000000,0000000..163aaf8 new file mode 100644 --- /dev/null +++ b/debian/source/format @@@ -1,0 -1,0 +1,1 @@@ ++3.0 (quilt) diff --cc debian/upstream/metadata index 0000000,0000000..43b0dfb new file mode 100644 --- /dev/null +++ b/debian/upstream/metadata @@@ -1,0 -1,0 +1,5 @@@ ++Changelog: https://quickgit.kde.org/?p=akonadi.git&a=log ++Donation: https://www.kde.org/community/donations/index.php ++Repository: https://anongit.kde.org/akonadi.git ++Repository-Browse: https://quickgit.kde.org/?p=akonadi.git ++Security-Contact: security@kde.org diff --cc debian/upstream/signing-key.asc index 0000000,0000000..e73f3e8 new file mode 100644 --- /dev/null +++ b/debian/upstream/signing-key.asc @@@ -1,0 -1,0 +1,112 @@@ ++-----BEGIN PGP PUBLIC KEY BLOCK----- ++Version: GnuPG v1 ++ ++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 ++RJWljvaVa8fj2U2D659nVsq8og== ++=5Ltf ++-----END PGP PUBLIC KEY BLOCK----- diff --cc debian/watch index 0000000,0000000..2c4d4e7 new file mode 100644 --- /dev/null +++ b/debian/watch @@@ -1,0 -1,0 +1,2 @@@ ++version=4 ++opts=pgpsigurlmangle=s/$/.sig/ https://download.kde.org/stable/release-service/([\d.]+)/src/@PACKAGE@-([\d.]+)\.tar\.xz