akonadi (4:22.08.0-2) unstable; urgency=medium
authorPatrick Franz <deltaone@debian.org>
Sat, 10 Sep 2022 11:07:21 +0000 (12:07 +0100)
committerPatrick Franz <deltaone@debian.org>
Sat, 10 Sep 2022 11:07:21 +0000 (12:07 +0100)
  [ Patrick Franz ]
  * Upload to unstable.

[dgit import unpatched akonadi 4:22.08.0-2]

37 files changed:
1  2 
debian/NEWS
debian/README.Debian
debian/TODO
debian/akonadi-backend-mysql.install
debian/akonadi-backend-mysql.maintscript
debian/akonadi-backend-postgresql.lintian-overrides
debian/akonadi-backend-sqlite.docs
debian/akonadi-backend-sqlite.install
debian/akonadi-server.install
debian/akonadi-server.maintscript
debian/akonadi-server.manpages
debian/changelog
debian/control
debian/copyright
debian/libkf5akonadi-data.install
debian/libkf5akonadi-dev-bin.install
debian/libkf5akonadi-dev.install
debian/libkf5akonadiagentbase5.install
debian/libkf5akonadicore5abi2.install
debian/libkf5akonadiprivate5abi2.install
debian/libkf5akonadiserver-dev.install
debian/libkf5akonadiwidgets5abi1.install
debian/libkf5akonadixml5.install
debian/man/akonadictl.1
debian/patches/disable_secure_file_priv_check.diff
debian/patches/enable_debianabimanager.diff
debian/patches/load_local_apparmor_rules.diff
debian/patches/postgresql-data-checksums.patch
debian/patches/series
debian/rules
debian/salsa-ci.yml
debian/salsa/extra_repository.list
debian/salsa/qt-kde-team.debian.net.asc
debian/source/format
debian/upstream/metadata
debian/upstream/signing-key.asc
debian/watch

diff --cc debian/NEWS
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..48927d738b8dfef8087caec7b1309e337c54cd9c
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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ß <hefee@debian.org>  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 <modax@debian.org>  Sat, 30 Apr 2011 12:50:31 +0300
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..98b23e55a8bf641ebff4c8e7ce428939cffedeba
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..5163e48a8f78c8667bd75a5bf0964f6ea8a4b6ff
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,4 @@@
++* Wrong default ODBC configuration string for Debian virtuoso.
++* debconf for switching default Akonadi backend?
++* akonadi-backend package?
++
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..62891777c0da709f5d0f93b4558d7f0a4b07c63e
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++etc/xdg/akonadi/mysql-global-mobile.conf
++etc/xdg/akonadi/mysql-global.conf
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..6223afb383c626248e2446fef2be91dfdc738e8c
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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~
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..948a6b4f6b14af0474f0f9d90ddbe72da9d86aea
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++# This package is empty, because everything else is done within the dependencies.
++akonadi-backend-postgresql: empty-binary-package
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..13cc6a24593354ea232e790429cbfe61eb60809e
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++README.sqlite
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..ae92a4a413105a39139f94485686022b6a236bd5
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++usr/lib/*/qt5/plugins/sqldrivers/libqsqlite3.so
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..f9118fd84c59251a7549cea4f52fa5876c778034
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..79394ffed4758eea6679b57d32bcdf292a57578e
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++rm_conffile /etc/xdg/akonadi.categories 4:20.08.2-3~
++rm_conffile /etc/xdg/akonadi.renamecategories 4:20.08.2-3~
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..13cdaf4b241445f6a0e0d80cd168f5789d326994
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++debian/man/*.1
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..f1c1a03e5d58f57716ee7882f5a0d85265d8c564
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2172 @@@
++akonadi (4:22.08.0-2) unstable; urgency=medium
++
++  [ Patrick Franz ]
++  * Upload to unstable.
++
++ -- Patrick Franz <deltaone@debian.org>  Sat, 10 Sep 2022 13:07:21 +0200
++
++akonadi (4:22.08.0-1) experimental; urgency=medium
++
++  [ Patrick Franz ]
++  * Update upstream signing-key.
++  * Bump Standards-Version to 4.6.1 (No changes needed).
++  * New upstream release (22.08.0).
++  * Update build-deps and deps with the info from cmake.
++  * Update list of installed files.
++
++ -- Patrick Franz <deltaone@debian.org>  Wed, 31 Aug 2022 01:44:12 +0200
++
++akonadi (4:22.04.3-1) unstable; urgency=medium
++
++  [ Patrick Franz ]
++  * New upstream release (22.04.3).
++
++ -- Patrick Franz <deltaone@debian.org>  Thu, 14 Jul 2022 21:55:57 +0200
++
++akonadi (4:22.04.2-2) unstable; urgency=medium
++
++  [ Patrick Franz ]
++  * Upload to unstable.
++
++ -- Patrick Franz <deltaone@debian.org>  Mon, 27 Jun 2022 21:59:18 +0200
++
++akonadi (4:22.04.2-1) experimental; urgency=medium
++
++  [ Patrick Franz ]
++  * New upstream release (22.04.2).
++
++ -- Patrick Franz <deltaone@debian.org>  Sun, 19 Jun 2022 02:45:40 +0200
++
++akonadi (4:22.04.1-1) experimental; urgency=medium
++
++  [ Patrick Franz ]
++  * New upstream release (22.04.1).
++  * Update build-deps and deps with the info from cmake.
++  * Update list of installed files.
++
++ -- Patrick Franz <deltaone@debian.org>  Wed, 25 May 2022 01:57:24 +0200
++
++akonadi (4:21.12.3-2) unstable; urgency=medium
++
++  [ Patrick Franz ]
++  * Upload to unstable.
++
++ -- Patrick Franz <deltaone@debian.org>  Fri, 01 Apr 2022 22:08:57 +0200
++
++akonadi (4:21.12.3-1) experimental; urgency=medium
++
++  [ Patrick Franz ]
++  * New upstream release (21.12.3).
++  * Update build-deps and deps with the info from cmake.
++  * Add myself to Uploaders.
++  * Refresh patches.
++
++ -- Patrick Franz <deltaone@debian.org>  Thu, 24 Mar 2022 22:22:11 +0100
++
++akonadi (4:21.08.1-1) unstable; urgency=medium
++
++  [ Norbert Preining ]
++  * New upstream release (21.08.1).
++  * Bump Standards-Version to 4.6.0, no change required.
++
++ -- Norbert Preining <norbert@preining.info>  Sat, 11 Sep 2021 07:19:14 +0900
++
++akonadi (4:21.08.0-1) unstable; urgency=medium
++
++  [ Norbert Preining ]
++  * New upstream release (21.08.0).
++
++ -- Norbert Preining <norbert@preining.info>  Mon, 16 Aug 2021 15:41:09 +0900
++
++akonadi (4:21.04.3-1) experimental; urgency=medium
++
++  [ Norbert Preining ]
++  * New upstream release (21.04.3).
++
++ -- Norbert Preining <norbert@preining.info>  Fri, 09 Jul 2021 10:32:19 +0900
++
++akonadi (4:21.04.1-1) experimental; urgency=medium
++
++  [ Norbert Preining ]
++  * New upstream release (21.04.1).
++
++ -- Norbert Preining <norbert@preining.info>  Fri, 14 May 2021 06:08:24 +0900
++
++akonadi (4:21.04.0-1) experimental; urgency=medium
++
++  [ Norbert Preining ]
++  * New upstream release (21.04.0).
++  * Update upstream signing key.
++  * Drop Modestas and Max from uploaders, thanks for your work.
++  * Add myself to uploaders.
++  * Drop Kubuntu from maintainer name.
++  * Update dependencies according to cmake.
++  * Update patches.
++
++ -- Norbert Preining <norbert@preining.info>  Thu, 13 May 2021 09:45:57 +0900
++
++akonadi (4:20.08.3-3) unstable; urgency=medium
++
++  * Handle mariadbd_akonadi with dh_apparmor (Closes: #986635).
++
++ -- Sandro Knauß <hefee@debian.org>  Tue, 13 Apr 2021 22:30:46 +0200
++
++akonadi (4:20.08.3-2) unstable; urgency=medium
++
++  * Add patch to load local apparmor rules (Closes: #985080).
++
++ -- Sandro Knauß <hefee@debian.org>  Mon, 05 Apr 2021 13:09:40 +0200
++
++akonadi (4:20.08.3-1) unstable; urgency=medium
++
++  [ Sandro Knauß ]
++  * New upstream release (20.08.3).
++  * Bump Standards-Version to 4.5.1 (No changes needed).
++
++ -- Sandro Knauß <hefee@debian.org>  Wed, 16 Dec 2020 01:38:46 +0100
++
++akonadi (4:20.08.2-3) unstable; urgency=medium
++
++  * Team upload.
++  * Unregister the old /etc/xdg/akonadi.categories, and
++    /etc/xdg/akonadi.renamecategories conffiles. (Closes: #946512)
++  * Explicitly add the gettext build dependency.
++  * Minimize the upstream GPG signing key.
++
++ -- Pino Toscano <pino@debian.org>  Wed, 28 Oct 2020 10:24:03 +0100
++
++akonadi (4:20.08.2-2) unstable; urgency=medium
++
++  * Team upload to unstable.
++
++ -- Sandro Knauß <hefee@debian.org>  Tue, 20 Oct 2020 00:07:40 +0200
++
++akonadi (4:20.08.2-1) experimental; urgency=medium
++
++  [ Sandro Knauß ]
++  * New upstream release (20.08.2).
++  * Update build-deps and deps with the info from cmake.
++  * Update Homepage link to point to new invent.kde.org
++  * Update field Source in debian/copyright to invent.kde.org move.
++  * Update repository related entries to metadata file.
++  * Add Bug-* entries to metadata file.
++  * Update patch hunks.
++  * Remove backported patch.
++  * Update copyright file for 20.08.
++
++ -- Sandro Knauß <hefee@debian.org>  Fri, 16 Oct 2020 00:51:55 +0200
++
++akonadi (4:20.04.1-4) unstable; urgency=medium
++
++  [ Sandro Knauß ]
++  * Fix AppArmor profile patch for Mariadb 10.5.
++
++ -- Sandro Knauß <hefee@debian.org>  Wed, 30 Sep 2020 13:04:52 +0200
++
++akonadi (4:20.04.1-3) unstable; urgency=medium
++
++  [ Sandro Knauß ]
++  * Fix AppArmor profile for Mariadb 10.5.
++
++ -- Sandro Knauß <hefee@debian.org>  Tue, 29 Sep 2020 12:49:10 +0200
++
++akonadi (4:20.04.1-2) unstable; urgency=medium
++
++  [ Sandro Knauß ]
++  * Add linkage against atomic, where needed. (Closes: #961647)
++    Thanks to Adrian Bunk <bunk@debian.org>
++
++ -- Sandro Knauß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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 <pino@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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 <vindrg@gmail.com> for the patch
++
++ -- Pino Toscano <pino@debian.org>  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ß <hefee@debian.org>  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 <helmut@subdivi.de> 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 <maxy@debian.org>  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 <mitya57@debian.org>  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 <mitya57@debian.org>  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ß <hefee@debian.org>  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ß <hefee@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  Mon, 01 Feb 2016 10:23:57 +0100
++
++akonadi (15.08.3-1) experimental; urgency=medium
++
++  * New upstream release (15.08.3).
++
++ -- Maximiliano Curia <maxy@debian.org>  Wed, 02 Dec 2015 12:39:44 +0100
++
++akonadi (15.08.2-1) experimental; urgency=medium
++
++  * New upstream release (15.08.2).
++
++ -- Maximiliano Curia <maxy@debian.org>  Fri, 16 Oct 2015 08:06:30 +0200
++
++akonadi (15.08.1-1) experimental; urgency=medium
++
++  * New upstream release (15.08.1).
++
++ -- Maximiliano Curia <maxy@debian.org>  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 <maxy@debian.org>  Sat, 05 Sep 2015 21:41:58 +0200
++
++akonadi (4:15.08.0-0ubuntu1) wily; urgency=medium
++
++  * new upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <jriddell@ubuntu.com>  Tue, 18 Aug 2015 08:53:42 +0100
++
++akonadi (1.13.0-8) unstable; urgency=medium
++
++  * Team upload.
++  * Update symbols files.
++
++ -- Maximiliano Curia <maxy@debian.org>  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 <onlyjob@debian.org>  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 <onlyjob@debian.org>  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 <onlyjob@debian.org>  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 <onlyjob@debian.org>  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 <lisandro@debian.org>  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 <dimitri.j.ledkov@linux.intel.com>  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 <sbeattie@ubuntu.com>  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 <yofel@kubuntu.org>  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 <yofel@kubuntu.org>  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 <sgclark@kubuntu.org>  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 <maxy@debian.org>  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 <maxy@debian.org>  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 <scarlett@scarlettgatelyclark.com>  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 <yofel@kubuntu.org>  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 <jriddell@ubuntu.com>  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 <rohangarg@kubuntu.org>  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 <maxy@debian.org>  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 <xnox@ubuntu.com>  Sat, 26 Apr 2014 23:20:45 +0100
++
++akonadi (1.12.1-0ubuntu1) trusty; urgency=medium
++
++  * New upstream bugfix release
++
++ -- Harald Sitter <apachelogger@kubuntu.org>  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 <maxy@debian.org>  Tue, 01 Apr 2014 15:37:32 +0200
++
++akonadi (1.12.0-0ubuntu1) trusty; urgency=medium
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 28 Mar 2014 21:40:59 +0000
++
++akonadi (1.11.90-0ubuntu1) trusty; urgency=medium
++
++  * New upstream release (LP: #1296707)
++
++ -- Scarlett Clark <scarlett@scarlettgatelyclark.com>  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 <apachelogger@kubuntu.org>  Mon, 10 Mar 2014 23:09:34 +0100
++
++akonadi (1.11.80-0ubuntu2) trusty; urgency=medium
++
++  * Install missing files
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <jriddell@ubuntu.com>  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 <maxy@debian.org>  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 <yofel@kubuntu.org>  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 <rohangarg@kubuntu.org>  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 <maxy@debian.org>  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 <xnox@ubuntu.com>  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 <rohangarg@kubuntu.org>  Mon, 07 Oct 2013 16:39:34 +0200
++
++akonadi (1.10.2-2) unstable; urgency=low
++
++  * Rebuild for unstable release.
++
++ -- Maximiliano Curia <maxy@debian.org>  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 <maxy@debian.org>  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 <yofel@kubuntu.org>  Wed, 18 Sep 2013 22:54:09 +0200
++
++akonadi (1.10.2-0ubuntu1) saucy; urgency=low
++
++  * New upstream bugfix release (LP: #1218847)
++
++ -- Howard Chan <smartboyhw@gmail.com>  Fri, 30 Aug 2013 19:18:01 +0800
++
++akonadi (1.10.1-0ubuntu1) saucy; urgency=low
++
++  * New upstream release
++
++ -- Philip Muškovac <yofel@kubuntu.org>  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 <rohangarg@kubuntu.org>  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 <pino@debian.org>  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 <maxy@debian.org>  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 <yofel@kubuntu.org>  Tue, 30 Apr 2013 22:39:32 +0200
++
++akonadi (1.9.1-2) experimental; urgency=low
++
++  * Merge in the uploads to unstable.
++
++ -- Sune Vuorela <sune@debian.org>  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 <sune@debian.org>  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 <dmitrij.ledkov@ubuntu.com>  Fri, 26 Apr 2013 19:18:39 +0100
++
++akonadi (1.9.1-0ubuntu1) raring; urgency=low
++
++  * New upstream bugfix release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 04 Apr 2013 22:49:18 +0100
++
++akonadi (1.9.0-0ubuntu1) raring; urgency=low
++
++  * New upstream release
++
++ -- Philip Muškovac <yofel@kubuntu.org>  Thu, 03 Jan 2013 21:11:34 +0100
++
++akonadi (1.8.80-0ubuntu1) raring; urgency=low
++
++  * New upstream beta release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Fri, 16 Nov 2012 15:16:10 +0000
++
++akonadi (1.8.1-0ubuntu1) raring; urgency=low
++
++  * New upstream release
++
++ -- Scott Kitterman <scott@kitterman.com>  Sat, 03 Nov 2012 23:00:43 -0400
++
++akonadi (1.8.0-0ubuntu1) quantal; urgency=low
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 26 Jul 2012 16:04:21 +0100
++
++akonadi (1.7.90-0ubuntu1) quantal; urgency=low
++
++  * New upstream beta release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <pino@debian.org>  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 <pino@debian.org>  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 <echidnaman@kubuntu.org>  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 <modax@debian.org>  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 <dmitrij.ledkov@ubuntu.com>  Thu, 03 May 2012 20:28:00 +0100
++
++akonadi (1.7.2-0ubuntu1) precise; urgency=low
++
++  * New upstream release
++
++ -- Philip Muškovac <yofel@kubuntu.org>  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 <yofel@kubuntu.org>  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 <yofel@kubuntu.org>  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 <ana@debian.org>  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 <jriddell@ubuntu.com>  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 <debfx@ubuntu.com>  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 <debian-qt-kde@lists.debian.org>  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 <clint@ubuntu.com>  Sun, 27 Nov 2011 01:49:35 -0800
++
++akonadi (1.6.2-0ubuntu2) precise; urgency=low
++
++  * Rebuild for libmysqlclient transition
++
++ -- Clint Byrum <clint@ubuntu.com>  Wed, 23 Nov 2011 23:49:27 -0800
++
++akonadi (1.6.2-0ubuntu1) oneiric; urgency=low
++
++  * New upstream bugfix release
++
++ -- Scott Kitterman <scott@kitterman.com>  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 <scott@kitterman.com>  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 <rohangarg@kubuntu.org>  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 <scott@kitterman.com>  Thu, 18 Aug 2011 10:38:30 -0400
++
++akonadi (1.6.0-0ubuntu1) oneiric; urgency=low
++
++  * New upstream release
++
++ -- Philip Muškovac <yofel@kubuntu.org>  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 <yofel@kubuntu.org>  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 <scott@kitterman.com>  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 <debian-qt-kde@lists.debian.org>  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 <debfx-pkg@fobos.de>  Tue, 24 May 2011 21:04:40 +0200
++
++akonadi (1.5.3-1) experimental; urgency=low
++
++  * New upstream release.
++
++ -- Modestas Vainius <modax@debian.org>  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 <debfx-pkg@fobos.de>  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 <modax@debian.org>  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 <modax@debian.org>  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 <debfx-pkg@fobos.de>  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 <debfx-pkg@fobos.de>  Thu, 03 Mar 2011 18:06:42 +0100
++
++akonadi (1.5.0-0ubuntu1) natty; urgency=low
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Mon, 24 Jan 2011 09:48:32 +0000
++
++akonadi (1.4.95-0ubuntu1) natty; urgency=low
++
++  * New upstream release
++    - Fix install files
++
++ -- Rohan Garg <rohangarg@kubuntu.org>  Sun, 09 Jan 2011 16:19:52 +0530
++
++akonadi (1.4.90-0ubuntu1) natty; urgency=low
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <scott@kitterman.com>  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 <scott@kitterman.com>  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 <scott@kitterman.com>  Mon, 01 Nov 2010 12:14:01 -0400
++
++akonadi (1.4.1-0ubuntu1) natty; urgency=low
++
++  * New upstream release
++
++ -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  Fri, 22 Oct 2010 19:14:31 +0200
++
++akonadi (1.4.0-0ubuntu1) maverick; urgency=low
++
++  * New upstream release.
++
++ -- Harald Sitter <apachelogger@ubuntu.com>  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 <alessandro-ghersi@kubuntu.org>  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 <alessandro-ghersi@kubuntu.org>  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 <alessandro-ghersi@kubuntu.org>  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 <modax@debian.org>  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 <modax@debian.org>  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 <echidnaman@kubuntu.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <apachelogger@ubuntu.com>  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 <apachelogger@ubuntu.com>  Wed, 31 Mar 2010 22:08:13 +0200
++
++akonadi (1.3.1-0ubuntu1) lucid; urgency=low
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Tue, 09 Feb 2010 21:11:37 +0000
++
++akonadi (1.3.0-0ubuntu1) lucid; urgency=low
++
++  * New upstream release
++
++ -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  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 <alessandro-ghersi@kubuntu.org>  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 <jriddell@ubuntu.com>  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 <jriddell@ubuntu.com>  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 <echidnaman@kubuntu.org>  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 <fabo@debian.org>  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 <apachelogger@ubuntu.com>  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 <apachelogger@ubuntu.com>  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 <jriddell@ubuntu.com>  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 <fabo@debian.org>  Sat, 29 Aug 2009 12:00:51 +0200
++
++akonadi (1.2.1-0ubuntu1) karmic; urgency=low
++
++  * New upstream release
++
++ -- Alessandro Ghersi <alessandro-ghersi@kubuntu.org>  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 <echidnaman@kubuntu.org>  Thu, 20 Aug 2009 12:29:59 -0400
++
++akonadi (1.2.0-2ubuntu2) karmic; urgency=low
++
++  * Copy rather than hard link mysql
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <echidnaman@kubuntu.org>  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 <debian-qt-kde@lists.debian.org>  Tue, 11 Aug 2009 12:58:10 +0300
++
++akonadi (1.2.0-1) unstable; urgency=low
++
++  * New upstream release.
++
++ -- Ana Beatriz Guerrero Lopez <ana@debian.org>  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 <alessandro-ghersi@kubuntu.org>  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 <debian@pusling.com>  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 <debian-qt-kde@lists.debian.org>  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 <alessandro-ghersi@kubuntu.org>  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 <vorian@ubuntu.com>  Thu, 04 Jun 2009 09:47:55 -0400
++
++akonadi (1.1.85-0ubuntu1) karmic; urgency=low
++
++  * New upstream release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <echidnaman@kubuntu.org>  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 <debian-qt-kde@lists.debian.org>  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 <echidnaman@kubuntu.org>  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 <echidnaman@kubuntu.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <jriddell@ubuntu.com>  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 <debian-qt-kde@lists.debian.org>  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 <jriddell@ubuntu.com>  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 <vorian@ubuntu.com>  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 <apachelogger@ubuntu.com>  Sat, 03 Jan 2009 17:45:48 +0100
++
++akonadi (1.0.81-0ubuntu2) jaunty; urgency=low
++
++  * Really change build dependency
++
++ -- Harald Sitter <apachelogger@ubuntu.com>  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 <apachelogger@ubuntu.com>  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 <echidnaman@kubuntu.org>  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 <jriddell@ubuntu.com>  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 <jriddell@ubuntu.com>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian@pusling.com>  Fri, 27 Jun 2008 19:30:34 +0200
++
++akonadi (1.0.0-0ubuntu5) intrepid; urgency=low
++
++  * Reprofile mysqld-akonadi (LP: #280404)
++
++ -- Harald Sitter <apachelogger@ubuntu.com>  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 <sbeattie@ubuntu.com>  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 <apachelogger@ubuntu.com>  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 <apachelogger@ubuntu.com>  Tue, 19 Aug 2008 00:05:05 +0200
++
++akonadi (1.0.0-0ubuntu1) intrepid; urgency=low
++
++  * New upstream release
++  * libakonadiprivate0 -> libakonadiprivate1
++
++ -- Harald Sitter <apachelogger@ubuntu.com>  Thu, 24 Jul 2008 02:21:18 +0200
++
++akonadi (0.82.0-0ubuntu3) intrepid; urgency=low
++
++  * libakonadiprivate0 suggests not recommends akonadi-server
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  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 <apachelogger@ubuntu.com>  Thu, 26 Jun 2008 14:48:49 +0200
++
++akonadi (0.82.0-0ubuntu1) intrepid; urgency=low
++
++  * New upstream beta release
++
++ -- Jonathan Riddell <jriddell@ubuntu.com>  Thu, 19 Jun 2008 14:03:43 +0000
++
++akonadi (0.81.0-1) experimental; urgency=low
++
++  * New upstream snapshot.
++
++ -- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  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 <debian-qt-kde@lists.debian.org>  Fri, 25 Apr 2008 16:29:05 +0300
diff --cc debian/control
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..653055d581f5dc48e0ada5aad1a31906cac61905
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,262 @@@
++Source: akonadi
++Section: libs
++Priority: optional
++Maintainer: Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
++Uploaders: Sune Vuorela <debian@pusling.com>,
++           Sandro Knauß <hefee@debian.org>,
++           Norbert Preining <norbert@preining.info>,
++           Patrick Franz <deltaone@debian.org>
++Build-Depends: cmake (>= 3.16~),
++               debhelper-compat (= 13),
++               default-libmysqlclient-dev,
++               dh-apparmor,
++               extra-cmake-modules (>= 5.95.0~),
++               gettext,
++               libaccounts-qt5-dev (>= 1.16~),
++               libboost-dev (>= 1.34.0~),
++               libkaccounts-dev (>= 4:19.08.0~),
++               libkf5config-dev (>= 5.95.0~),
++               libkf5configwidgets-dev (>= 5.95.0~),
++               libkf5coreaddons-dev (>= 5.95.0~),
++               libkf5crash-dev (>= 5.95.0~),
++               libkf5i18n-dev (>= 5.95.0~),
++               libkf5iconthemes-dev (>= 5.95.0~),
++               libkf5itemmodels-dev (>= 5.95.0~),
++               libkf5itemviews-dev (>= 5.95.0~),
++               libkf5kio-dev (>= 5.95.0~),
++               libkf5widgetsaddons-dev (>= 5.95.0~),
++               libkf5windowsystem-dev (>= 5.95.0~),
++               libkf5xmlgui-dev (>= 5.95.0~),
++               liblzma-dev (>= 5.0.0~),
++               libsqlite3-dev (>= 3.6.23),
++               libxml2-dev,
++               libxml2-utils,
++               libxslt1-dev,
++               pkg-config,
++               pkg-kde-tools (>= 0.12),
++               qtbase5-dev (>= 5.15.2~),
++               qtbase5-private-dev (>= 5.15.2~),
++               qttools5-dev,
++               shared-mime-info (>= 1.3~),
++               xsltproc
++Standards-Version: 4.6.1
++Homepage: https://invent.kde.org/pim/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.95.0~),
++         libkf5i18n-dev (>= 5.95.0~),
++         libkf5iconthemes-dev (>= 5.95.0~),
++         libkf5itemmodels-dev (>= 5.95.0~),
++         libkf5kio-dev (>= 5.95.0~),
++         libkf5xmlgui-dev (>= 5.95.0~),
++         qtbase5-dev (>= 5.15.2~),
++         ${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.
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..5e0d098db2073f1e1f7a0305afff420fa5e97cfd
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,344 @@@
++Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
++Upstream-Name: akonadi
++Source: https://invent.kde.org/pim/akonadi
++Comment:
++ This package was debianized by Sune Vuorela <debian@pusling.com>
++ on Fri, 24 april 2008 09:49:34 +0200.
++Upstream-Contact: kde-devel@kde.org
++
++Files: *
++Copyright: 2009, Andras Mantia <amantia@kde.org>
++           2006, Andreas Gungl <a.gungl@gmx.de>
++           2009-2010, Bertjan Broeksema <broeksema@kde.org>
++           2007, Bruno Virlet <bruno.virlet@gmail.com>
++           2011, Christian Mollekopf <chrigi_1@fastmail.fm>
++           2013-2014, Christian Mollekopf <mollekopf@kolabsys.com>
++           2007, Christian Schaarschmidt <schaarsc@gmx.de>
++           2009, Constantin Berzan <exit3219@gmail.com>
++           2014-2019, Daniel Vrátil <dvratil@kde.org>
++           2013-2016, David Faure <faure@kde.org>
++           2002, Holger Freyther <freyther@kde.org>
++           2009, Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
++           2006-2008, Ingo Klöcker <kloecker@kde.org>
++           2010, KDAB
++           2007-2009, Kevin Krammer <kevin.krammer@gmx.at>
++           2009, Kevin Ottens <ervin@kde.org>
++           2010, Klarälvdalens Datakonsult AB
++           2015, Klarälvdalens Datakonsult AB, a KDAB Group company <info@kdab.com>
++           2010-2018, Laurent Montel <montel@kde.org>
++           2006-2010, Marc Mutz <mutz@kde.org>
++           1997, Matthias Kalle Dalheimer <kalle@kde.org>
++           2010, Michael Jansen <kde@michael-jansen>
++           2010, Milian Wolff <mail@milianw.de>
++           2008, Omat Holding B.V <info@omat.nl>
++           2007, Robert Zwerus <arzie@dds.nl>
++           2010, Rosetta Contributors and Canonical Ltd
++           2015-2016, Sandro Knauß <knauss@kde.org>
++           2010, Sebastian Trueg <trueg@kde.org>
++           2008-2011, Stephen Kelly <steveire@gmail.com>
++           2009, Szymon Stefanek <s.stefanek@gmail.com>
++           2008-2019, This_file_is_part_of_KDE
++           2009, Thomas McGuire <mcguire@kde.org>
++           2008, Thomas McGuire <thomas.mcguire@gmx.net>
++           2006-2010, Till Adam <adam@kde.org>
++           2000, Timo Hummel <timo.hummel@sap.com>
++           2006-2011, Tobias Koenig <tokoe@kde.org>
++           2000, Tom Braun <braunt@fh-konstanz.de>
++           2006-2015, Volker Krause <vkrause@kde.org>
++           2010, Will Stephenson <wstephenson@kde.org>
++           a KDAB Group company <info@kdab.net>
++           author Stephen Kelly <stephen@kdab.com>
++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 <dvratil@kde.org>
++           2013-2015, Daniel Vrátil <dvratil@redhat.com>
++           2016, Elvis Angelaccio <elvis.angelaccio@kdemail.net>
++           1991-1999, Free Software Foundation, Inc
++           2008, Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
++           2008, Omat Holding B.V <info@omat.nl>
++           2006, Tobias Koenig <tokoe@kde.org>
++           2009-2013, Volker Krause <vkrause@kde.org>
++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 <montel@kde.org>
++           2009, Stephen Kelly <steveire@gmail.com>
++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/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 <dvratil@kde.org>
++License: GPL-2+3+KDEeV
++
++Files: cmake/*
++Copyright: 2010, Christophe Giboudeaux <cgiboudeaux@gmail.com>
++           2014, Daniel Vrátil <dvratil@redhat.com>
++           2008, Gilles Caulier <caulier.gilles@gmail.com>
++           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 <faure@kde.org>
++           2008, Igor Trindade Oliveira <igor_trindade@yahoo.com.br>
++           2009, Volker Krause <vkrause@kde.org>
++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 <ogoffart@woboq.com>
++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 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'.
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..dc2f89b23fd5604aa2f58e28625bc9ea19ed32b4
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..ec1f11ef657ad51e6e6d1e74480afc4bc697bdb5
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,6 @@@
++usr/bin/akonadi_knut_resource
++usr/bin/asapcat
++usr/lib/*/qt5/plugins/pim5/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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..8a02620ec0b2b4f330e536664e8ff5a57dc1569d
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,17 @@@
++usr/bin/akonadi2xml
++usr/bin/akonaditest
++usr/include/KF5/AkonadiAgentBase/
++usr/include/KF5/AkonadiCore/
++usr/include/KF5/AkonadiWidgets/
++usr/include/KF5/AkonadiXml/
++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/kf5/akonadi/kcfg2dbus.xsl
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..3507c4696612d71c002f0736ed30e41ee1dbd240
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++usr/lib/*/libKF5AkonadiAgentBase.so.5
++usr/lib/*/libKF5AkonadiAgentBase.so.5.*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..672f1a80f20b04059a6f7647249279e1e057c312
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++usr/lib/*/libKF5AkonadiCore.so.5*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..9402d99d2b61c221f97de65d51c554edbe73c334
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++usr/lib/*/libKF5AkonadiPrivate.so.5*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..798de8e8cb75ed10125b60bf9348aaef4606ca56
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,3 @@@
++usr/include/KF5/Akonadi/
++usr/lib/*/libKF5AkonadiPrivate.so
++usr/share/dbus-1/interfaces/
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..4851fde64f1616ae3bc24c7591d4603593ba65b8
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++usr/lib/*/libKF5AkonadiWidgets.so.5*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..396eb249931c06aaab80004e3234b48b8c5d73a7
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,2 @@@
++usr/lib/*/libKF5AkonadiXml.so.5
++usr/lib/*/libKF5AkonadiXml.so.5.*
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..2c330500d06c72f9ab1043f9cd967cef9aab9ff7
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..3b051f23fdf8674e732eec6a79168e8ff7b1fb31
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,33 @@@
++From: Philip Muskovac <yofel@gmx.net>
++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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..87f82eeb2c46b885f05449ebb6cec90c720474d9
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,7 @@@
++--- a/CMakeLists.txt
+++++ b/CMakeLists.txt
++@@ -401,3 +401,4 @@ install(FILES
++ kde_configure_git_pre_commit_hook(CHECKS CLANG_FORMAT)
++ ki18n_install(po)
++ feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES)
+++include(/usr/share/pkg-kde-tools/cmake/DebianABIManager.cmake)
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..1faacd9e0a4f22147f6788212d8b6b9e4723e35d
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,51 @@@
++Description: Load Apparmor site-specific additions and overrides.
++ Debian allows users to add site-specific additions and overrides via local
++ apparmor rule files. Those local rule files are created and handled by
++ dh_apparmor.
++Author: Hefee <hefee@debian.org>
++Origin: Debian
++Bug-Debian: https://bugs.debian.org/985080
++Last-Update: 2021-04-13
++Forwarded: Not-needed
++---
++This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
++--- a/apparmor/mariadbd_akonadi
+++++ b/apparmor/mariadbd_akonadi
++@@ -36,4 +36,7 @@ profile mariadbd_akonadi {
++   owner @{xdg_data_home}/akonadi/** rwk,
++   owner @{PROC}/@{pid}/loginuid r,
++   owner /{,var/}run/user/@{uid}/akonadi** rwk,
+++
+++  # Site-specific additions and overrides.  See local/README for details.
+++  #include <local/mariadbd_akonadi>
++ }
++--- a/apparmor/mysqld_akonadi
+++++ b/apparmor/mysqld_akonadi
++@@ -36,4 +36,7 @@ profile mysqld_akonadi {
++   owner @{xdg_data_home}/akonadi/** rwk,
++   owner @{PROC}/@{pid}/loginuid r,
++   owner /{,var/}run/user/@{uid}/akonadi** rwk,
+++
+++  # Site-specific additions and overrides.  See local/README for details.
+++  #include <local/mysqld_akonadi>
++ }
++--- a/apparmor/postgresql_akonadi
+++++ b/apparmor/postgresql_akonadi
++@@ -45,4 +45,7 @@ profile postgresql_akonadi flags=(attach_disconnected) {
++   @{postgresqlpath}/bin/psql mrix,
++   @{postgresqlpath}/bin/pg_restore mrix,
++   /{usr/,}bin/cp mrix,
+++
+++  # Site-specific additions and overrides.  See local/README for details.
+++  #include <local/postgresql_akonadi>
++ }
++--- a/apparmor/usr.bin.akonadiserver
+++++ b/apparmor/usr.bin.akonadiserver
++@@ -77,4 +77,7 @@
++   owner /{,var/}run/user/@{uid}/kdeinit** rwk,
++   owner /{,var/}run/user/@{uid}/kcrash** rwk,
++   owner /tmp/#[0-9]* m,
+++
+++  # Site-specific additions and overrides.  See local/README for details.
+++  #include <local/usr.bin.akonadiserver>
++ }
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..25ee4fb36459ce3ff29028de2a0ce7df69e5ced2
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,19 @@@
++From: Debian/Kubuntu Qt/KDE Maintainers <debian-qt-kde@lists.debian.org>
++Date: Wed, 13 Apr 2016 11:36:15 +0200
++Subject: postgresql-data-checksums
++
++---
++ src/server/storage/dbconfigpostgresql.cpp | 2 +-
++ 1 file changed, 1 insertion(+), 1 deletion(-)
++
++--- a/src/server/storage/dbconfigpostgresql.cpp
+++++ b/src/server/storage/dbconfigpostgresql.cpp
++@@ -495,7 +495,7 @@ bool DbConfigPostgresql::startInternalSe
++         }
++ #endif
++         // call 'initdb --pgdata=/home/user/.local/share/akonadi/db_data'
++-        execute(mInitDbPath, {QStringLiteral("--pgdata=%1").arg(mPgData), QStringLiteral("--encoding=UTF8"), QStringLiteral("--no-locale")});
+++        execute(mInitDbPath, {QStringLiteral("--pgdata=%1").arg(mPgData), QStringLiteral("--encoding=UTF8"), QStringLiteral("--data-checksums"), QStringLiteral("--no-locale")});
++     } else {
++         const auto versions = checkPgVersion();
++         if (versions.has_value() && (versions->clusterVersion < versions->pgServerVersion)) {
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..2b5dec94b3c4c3cb9a2c274c711deebd5ce38e6e
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,4 @@@
++enable_debianabimanager.diff
++postgresql-data-checksums.patch
++disable_secure_file_priv_check.diff
++load_local_apparmor_rules.diff
diff --cc debian/rules
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..7d57e795b7c2bba3ba07b8a811acb18fcc6393e9
new file mode 100755 (executable)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,45 @@@
++#!/usr/bin/make -f
++
++export DEB_BUILD_MAINT_OPTIONS = hardening=+all
++
++include /usr/share/dpkg/pkg-info.mk
++
++ifneq (,$(filter $(DEB_HOST_ARCH), 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=mariadbd_akonadi
++      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
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..d9470f920fc2c826dc8f128bda46c310811ce5df
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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_BLHC: 'yes'
++  EXTRA_REPOSITORY: debian/salsa/extra_repository.list
++  EXTRA_REPOSITORY_KEY: debian/salsa/qt-kde-team.debian.net.asc
++  RELEASE: unstable
++  SALSA_CI_REPROTEST_ARGS: --variations=-build-path
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..96b50ae95f2afe5dab05a615ef4d6b89e544474c
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++deb https://qt-kde-team.debian.net/debian qt-kde-snapshots main
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..6fc55da9b2d13be83acf27ddea2af8e85de6b8bd
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,51 @@@
++-----BEGIN PGP PUBLIC KEY BLOCK-----
++
++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
++bMTcHe5rk6snXqz1neEmP2K7qdNwwakRdAA=
++=o8PI
++-----END PGP PUBLIC KEY BLOCK-----
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..163aaf8d82b6c54f23c45f32895dbdfdcc27b047
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,1 @@@
++3.0 (quilt)
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..c4d913208e3a6406200f125cf6bf94514b143012
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,7 @@@
++Bug-Database: https://bugs.kde.org/buglist.cgi?product=akonadi&resolution=---
++Bug-Submit: https://bugs.kde.org/enter_bug.cgi?product=akonadi
++Changelog: https://invent.kde.org/pim/akonadi/-/commits/master
++Donation: https://www.kde.org/community/donations/index.php
++Repository: https://invent.kde.org/pim/akonadi.git
++Repository-Browse: https://invent.kde.org/pim/akonadi
++Security-Contact: security@kde.org
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..9087a9ee18460de6a58cc321e08415a2505eb35e
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -1,0 -1,0 +1,140 @@@
++-----BEGIN PGP PUBLIC KEY BLOCK-----
++
++mQENBFlRpEYBCACecX3F5xzF6wzeXiuBAuHq74bVHON7I89U+ROloEWYUYMRNTz2
++l1BkNHWRTTqfmPO7LhMY6g4gOPeQVCwgTGVjI8bn6sJd3SFdeiRvvaFBpmn7SjBd
++s1rkKKJIjeMUl1w8dFnmf22V0PnhSSepmNwmd8RQnl1umCTSihDJydGxixw6ZNhr
++4tzbn+Rfadybli61H2hc6/JJHe91i+V1ltgkHwGcs6MUCqXgSL0dUIJs49gSrla0
++gkrcJYF5MWyGxKlajbCjkMCJtN+8bhEmpc4Oe8NZ33arEWnlyh1RVgi5p3RTNApY
++Pxctcg57ExczbKn9R8VLYmPJ7Di3gX0cmotrABEBAAG0HkNocmlzdG9waCBGZWNr
++IDxjZmVja0BrZGUub3JnPokBTgQTAQgAOBYhBPIydeS/EK/B32kUptvSzok+LRyH
++BQJZUaRGAhsDBQsJCAcCBhUICQoLAgQWAgMBAh4BAheAAAoJENvSzok+LRyHeWcH
++/A1E2d5UL2oHsrLIolIiWMmheRorcac+0Hgll1mMUQ5tfPH+LVzgrlMMG7g1Amky
++Hk1qZ5oszrXUg2H/28/cOF/WVlHgQcSGr7aQbHieUivPtZMua+lHUdILC3UV2l1V
++22Zz8HIDl4kxmK6EpoNIOK5Mo550S3e3AKYq5pa/FlckCV9/JoK9+thRCsoAAj3g
++oWwTx9RY5pmLPtklqyC5961Je7KHSIVqapJ/G5DX+yfOC1Psc+vIfyQVqnaefZPW
++dIxXQQhn46i6IRRimw94Gkwca+wslkimt/L/Z7ByZqBsXMyixSQPq+dtSO9CMgr0
++WxTX78wATkTGzh5oSwKCMga5AQ0EWVGkRgEIAMuUnfNfrdx8xn7Jjcm6MGkB/Yep
++XVysrlHxUUS6q7629JdSlVWnQo9GFO927GZClWI9rCGLQMfZZk/jfgKV/nkpLod3
++I51remOg7ohSkwRLAdwJ7xCuNrafhKntFh5/NxuaXxaVIY1muvZbTAsIRyks2jCE
++pUoK43Z8dr4/QPhBstssB8czDME1Tw4r7X+RwjFrQqDItFv6f0BIdEwR462khLEw
++vbXRN1nzs+6Y0foJbJCS3VDZC9scsrrMVMV+OEBF3DXp9ypSWsLnkuBPPIus6Y8G
++j7JvYUBtrUhKL5a7o5G3Te9YhwGgOKVqWlncs6ZLiOV6HnG0BO3xdPcn09cAEQEA
++AYkBNgQYAQgAIBYhBPIydeS/EK/B32kUptvSzok+LRyHBQJZUaRGAhsMAAoJENvS
++zok+LRyHaRMIAI5YaTfGeQDmR08I2LvztOEH/3YF63cNCP/Vp+WAtF/Kr8mMFpFS
++oTHJNMi7p964lHYTTPzPeQzLzV3ayiQjq+DHs6HFmYl73ukzlGGc7KDlyhugQjm6
++AqNtqqXAVykaixnFj8jf2WtQGl1hqpm8GhDRBmZycqMqne4tZokujhtpdC6suRvc
++AB0S+lRZUwrY05k6Nc1A8J8k/lxXXa9KzXNaqKsqppgBZoqKN3zS4146uEjvuLsh
++CarZ/6uUidvP0LBTR7HKye5A9Qdbjlg9qvtR7YF3hqy4g1PRNZWRlsQ1pkCdCTfN
++TA+HYUzK0ESVpY72lWvH49lNg+ufZ1bKvKI=
++=MZJ5
++-----END PGP PUBLIC KEY BLOCK-----
++-----BEGIN PGP PUBLIC KEY BLOCK-----
++
++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
++=PVLg
++-----END PGP PUBLIC KEY BLOCK-----
++-----BEGIN PGP PUBLIC KEY BLOCK-----
++
++mQINBFfNZD4BEACo0YKCUEhTY7v8VZVw3csAtnsRSFQ18G8xfYIt7mJEBrtfiGG4
++g28EjNeWQfN8wGIaAeRGl5nb7s9RRpxXStUu719jGX1Z9Sr8p/JOmBS5kdfAtYId
++9Cl3VsGRvf4Smg1ClrEv6tQ97j+d1FY8QfgW/GS46YBOEeOFVQRtfi7Yv9lZkiBF
++rzP0Nr7JV9u1GkBsFgNkVuYs/3RDYULItBwGFerduOyQCOt819QvHHSZkXqJWwNR
++OA6lc8gW36lKbDHoZ1jSkDnDV0bW0cX1/6WJSzWYdcPiceA1vj/VDg0Kr23SVQ1P
++yPvBirT7ToirQm6KrIiKHWLSg156ht8/K2C1Dgypf+YMseMbHQxVLrI2p4zpmxu3
++B2SrSj3ImM5FO0XGd1gxn/qywNVJDQBfcYnndksD2i/9/Es8I/F6OymBZl4HWBvx
++7ixm2JPXkmwVPEC/lJn3eCBb1fAaJSlroHtaAEteCWuE5/Mg/uYEh1UeAstP47N3
++P0B3l1E4Ccw1ne2/O1BdsnXeUaI3YVYz9aZkVlL7ywda3h/goRKxc1b18bmgu/Ed
++QmcTEMj29B3szMpetWNt1ZbaMJzfDw+z+SiQ3toOTUiqMuWq+l+JK0dVUzOvpGhG
++VHv5m9CtJFP671ivEc4it0hJRH5kdW9aNbeG0g9TxHQqQMJIpeLvRq5WKwARAQAB
++iHUEEBYIAB0WIQRTIgRBURyuQ72pUgZ/g8L9hDZbOAUCW3p5ogAKCRB/g8L9hDZb
++OBsyAP9zp1VRowcJS9DKo3jMp1q857G36pnLrbTE3lt39FD3mgEA4vFkEWD130Be
++lBt/DqF4gOAYvjx2/vbXAVtdJuj8YgiIdQQQFgoAHRYhBOk/24GEriQcNFziNcIf
+++f3IeqlvBQJbcyVNAAoJEMIf+f3IeqlvY70A/Rw6pI//tE8uk59n1yTkCauMa1yk
++DwfZiUCpo62k6avWAP4466XrMwU7Ae7FGJ3tD2ujXCwGZuf42AoMx3R58s5fA7Qh
++QWxiZXJ0IEFzdGFscyBDaWQgPGFhY2lkQGtkZS5vcmc+iQJUBBMBCAA+AhsDBQsJ
++CAcCBhUICQoLAgQWAgMBAh4BAheAFiEEyiYsbIPeTS+yijMqOmpNuDnqptcFAmEG
++Yw8FCQsqBFEACgkQOmpNuDnqptc5mw//a8E4zzOIIs6ve8KkUfz6RVdVAGOkplOJ
++9cnIIbopms265ceD0KSpqlLkgGONn/ROAvOe1xrJCw2SiELlc4Z/kM4nrwVaZvkn
++F3pJCAOTDBhJlqXeMSGLDDEDV5k/nUeIGanmj4wAfkvKzjBMJSaZau3BCB18v/mI
++0foEqIdUFFukoHNOu8mk4ZHRzdZqYu+f1waZR/tLGK71Dl916itsk+EbSir+XSdg
++SJgn63f1p0bL2DOPLjShgs+o6L/Hvy3Jdq5nlfbSUHfqT213Y1Ld5k0ChNDPcSZo
++F9mgFH9vUyE6G6gTWauH5EWiG/2HrDaaBQQQtXAPEUqElDpzfyPEoJriMgb6ezeA
++Swt1Hsyk8WXkbYHZvuti0oCowWpE39NIIXIYzZoT0h+MKMsvkJT/FsRa2b7FhnMi
++SNQjVbZdTVX+6SAzCxnS6Mb4fojXlWz3TFAq4uev3xPG5OVi5VdkvzO6sj2XVEoi
++U+9jG06sl6gcmhciBXerPG8XJeQILPyfD8+vHj2IFnrQD7ORMBBFTYddmAkvrKop
++suYACVTZqTDaxvih9VMgj7KFZAQXpylDMcS+IBSJIfGSOq1SQAER/KJlvKGKMmt5
++ego5oQcR73sPJdCuFzo+Ia/dr1PCM2tYTb1AMJ+hBRSPV1n7XOleel5pKNkBDzNh
++s2Ne6r9xAHQ=
++=rW7Y
++-----END PGP PUBLIC KEY BLOCK-----
diff --cc debian/watch
index 0000000000000000000000000000000000000000,0000000000000000000000000000000000000000..2c4d4e7e4b4542d7bd9f50e74fffdca6fef1ba34
new file mode 100644 (file)
--- /dev/null
--- /dev/null
@@@ -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