~ubuntu-branches/ubuntu/quantal/akonadi/quantal

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
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-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