~ken-vandine/empathy/merge_from_experimental

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
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
empathy (2.28.0.1-1ubuntu4) UNRELEASED; urgency=low

  * debian/patches/20_libindicate.patch
    - Don't set draw-attention for login events (LP: #434726)
    - Don't display time for login events (LP: #438237)

 -- Ken VanDine <ken.vandine@canonical.com>  Thu, 08 Oct 2009 23:25:27 -0400

empathy (2.28.0.1-1ubuntu3) karmic; urgency=low

  * debian/patches/20_libindicate.patch
    - Fixed a crasher caused by not properly removing 
      indicators.  When comparing events, we shouldn't compare
      the message content. (LP: #435216)

 -- Ken VanDine <ken.vandine@canonical.com>  Wed, 07 Oct 2009 17:19:48 -0400

empathy (2.28.0.1-1ubuntu2) karmic; urgency=low

  * debian/patches/20_libindicate.patch
    - Updated patch to apply cleanly against 2.28.0.1
  * debian/patches/99_autoconf.patch
    - regenerated

 -- Ken VanDine <ken.vandine@canonical.com>  Tue, 06 Oct 2009 09:40:21 -0400

empathy (2.28.0.1-1ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes (LP: #441795):
    - Add Suggests on telepathy-idle
    - Bump telepathy-butterfly, telepathy-haze to recommends
    - Drop geoloc support, dependencies not in main
    - add Vcs-Bzr tag
    - Add libindicate support:
      + 20_libindicate.patch: Integrate into messaging menu
      + 30_raise_not_toggle.patch: Always raise contact list when clicked
      + 99_autoconf.patch: Rebuild autofoo stuff
      + debian/empathy.preinst: remove the old indicator from /etc and remove
        the directory if it is empty
      + debian/rules: Add empathy launcher to the messaging menu
    - 10_use_notify_osd_icons.patch: Use the notify-OSD icons for new messages
  * Readd documentation in empathy-doc package as it seems not installed in
    previous version

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 05 Oct 2009 14:18:34 +0200

empathy (2.28.0.1-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 04 Oct 2009 13:09:34 +0100

empathy (2.28.0-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * libempathy-gtk-dev: add missing Depends on libcanberra-gtk-dev

  [ Jonny Lamb ]
  * New upstream release.
  * debian/control:
    + Upped build-depend versions on libtelepathy-glib and libchamplain.

 -- Jonny Lamb <jonny@debian.org>  Mon, 21 Sep 2009 23:23:38 +0100

empathy (2.28.0-0ubuntu3) karmic; urgency=low

  * debian/empathy.preinst:
    - fixed the version compare to be friendly on new installs 

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 25 Sep 2009 02:41:51 -0400

empathy (2.28.0-0ubuntu2) karmic; urgency=low

  * debian/postinst:
    - renamed empathy.preinst and did some tweaking there 

  [ Ken VanDine ]
  * debian/rules:
    - Moved the indicator launcher to /usr/share (LP: #434097)
  * debian/postinst:
    - remove the old indicator from /etc and remove the directory
      if it is empty

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 24 Sep 2009 23:56:55 +0200

empathy (2.28.0-0ubuntu1) karmic; urgency=low

  [ Ken VanDine ]
  * debian/patches/20_libindicate.patch:
    - Updated patch to set "draw-attention" (LP: #433999) 
    - Updated patch to set the avatar in the indicator (LP: #434209)

  [ Iain Lane ]
  *  New upstream release 2.28.0 (LP: #434264)
   - Empathy theme doesn't work (and opens a folder in Nautilus!)
   - icq accounts import from pidgin not working
   - Invalid read when terminating an audio call
   - Room auto-connect doesn't work
   - using *_run_* calls prevents quitting Empathy
   - Chat windows don't show when we are reconnected
   - Use GOptionContext to parse options
   - Empathy misbehaviour
   - Empathy forgets IRC bookmarks
   - Empathy 2.27.92 fails to build
   - asserts in empathy_idle_set_presence() after suspend/resume
   - empathy crashed with SIGSEGV in empathy_account_settings_get_uint32() (Guillaume Desmottes)
   - cannot add yahoo account (Frédéric Péters)
   - Empathy crashing with CSW (Danielle Madeley)
   - empathy crashed with SIGSEGV in empathy_audio_sink_set_volume() (LP: #427579)
   - empathy crashed with SIGSEGV in tp_contact_list_got_added_members_cb()
   - Doesn't respawn existing channel when trying to reopen it
   - crash when dragging user from roster to MUC window
   - Pasting text into a disconnected chat window crashes (Cosimo Cecchi)
   - EmpathyIdle should wait for account manager to be ready
   - double click on a contact should raise the window
  * debian/patches/20_libindicate.patch: Update for new code
  * debian/patches/99_autoconf.patch: Refresh (autoreconf -f -i -s) 

 -- Iain Lane <laney@ubuntu.com>  Tue, 22 Sep 2009 00:19:48 +0100

empathy (2.27.92-1ubuntu3) karmic; urgency=low

  [Ken VanDine]
  * debian/control:
    - Added libindicate-gtk-dev and libindicate-dev (>=0.2.0) to build depends
  * debian/patches/30_raise_not_toggle.patch:
    - Always raise contact list when clicked (LP: #392153)
  * debian/patches/99_autoconf.patch added

  [Robert Ancell]
  * debian/patches/10_use_notify_osd_icons.patch:
    - Use the notify-OSD icons for new messages (LP: #409828)
  * debian/patches/20_libindicate.patch:
    - Integrate into messaging menu (LP: #340180)
  * debian/control:
    - Remove Debian VCS links as they confuse debcheckout

 -- Ken VanDine <ken.vandine@canonical.com>  Mon, 21 Sep 2009 14:34:40 +0200

empathy (2.27.92-1ubuntu2) karmic; urgency=low

  * debian/rules:
    - Add empathy launcher to the messaging menu (LP: #424494) 

 -- Ken VanDine <ken.vandine@canonical.com>  Fri, 11 Sep 2009 11:55:59 -0400

empathy (2.27.92-1ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes:
    - Add Suggests on telepathy-idle
    - Bump telepathy-butterfly, telepathy-haze to recommends
    - Drop geoloc support, dependencies not in main
    - add Vcs-Bzr tag
    - libempathy-gtk-dev: add missing Depends on libcanberra-gtk-dev

 -- Laurent Bigonville <bigon@ubuntu.com>  Thu, 10 Sep 2009 09:13:00 +0200

empathy (2.27.92-1) experimental; urgency=low

  * New upstream release
    - Drop debian/patches/0001-Remove-libmissioncontrol-deps.patch:
      fixed upstream
    - Bump libraries soname and adjust .symbols files
  * Split GNOME documentation out of arch-dependent package

 -- Laurent Bigonville <bigon@debian.org>  Wed, 09 Sep 2009 19:28:22 +0200

empathy (2.27.92-0ubuntu2) karmic; urgency=low

  * debian/control: Re-add telepathy-butterfly recommends, it's in main now.
    (LP: #388898)

 -- Martin Pitt <martin.pitt@ubuntu.com>  Thu, 10 Sep 2009 16:10:15 +0200

empathy (2.27.92-0ubuntu1) karmic; urgency=low

  * New upstream version
  * debian/patches/0001-Remove-libmissioncontrol-deps.patch:
    - dropped the change is in the new version
  * updated for the soname changes

 -- Sebastien Bacher <seb128@ubuntu.com>  Tue, 08 Sep 2009 23:22:20 +0200

empathy (2.27.91.1-3) experimental; urgency=low

  * debian/control:
    - Add missing build-deps
    - Add missing dependencies to -dev packages (LP: #423174)
  * Re-enable map support now that new versions of champlain and clutter
    are in debian

 -- Laurent Bigonville <bigon@debian.org>  Thu, 03 Sep 2009 12:08:00 +0200

empathy (2.27.91.1-2ubuntu5) karmic; urgency=low

  * libempathy-gtk-dev: add missing Depends on libcanberra-gtk-dev
    (lp: #425692)

 -- Michael Bienia <geser@ubuntu.com>  Mon, 07 Sep 2009 15:00:41 +0200

empathy (2.27.91.1-2ubuntu4) karmic; urgency=low

  * Correctly update the vcs with the recent changes

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 04 Sep 2009 18:09:08 +0200

empathy (2.27.91.1-2ubuntu3) karmic; urgency=low

  [ Steve Langasek ]
  * libempathy-dev: add missing Depends on libtelepathy-glib-dev.

 -- Sebastien Bacher <seb128@ubuntu.com>  Fri, 04 Sep 2009 17:21:59 +0200

empathy (2.27.91.1-2ubuntu2) karmic; urgency=low

  * debian/libempathy-gtk27.symbols: remove symbols related to geoloc
    (LP: #422010)

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 31 Aug 2009 16:51:55 +0200

empathy (2.27.91.1-2ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes (LP: #419811):
    - Add Suggests on telepathy-idle
    - Bump telepathy-haze to recommends
    - Drop geoloc support, dependencies not in main
    - add build-dep libx11-dev (old missing one), libgstfarsight0.10-dev,
      libdbus-glib-1-dev and libnm-glib-dev
    - add Vcs-Bzr tag
  * debian/control: Set the maintainer to the core team

 -- Laurent Bigonville <bigon@ubuntu.com>  Fri, 28 Aug 2009 19:48:30 +0200

empathy (2.27.91.1-2) experimental; urgency=low

  * debian/control:
    + Remove libtelepathy-dev dependency from libempathy-dev
    + Remove libmissioncontrol-dev dependency from libempathy-dev
  * debian/patches/0001-Remove-libmissioncontrol-deps.patch:
    * Remove missioncontrol deps from the pc files, patch from upstream git

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 27 Aug 2009 10:20:15 +0100

empathy (2.27.91.1-1) experimental; urgency=low

  * New upstream release.
  * debian/control:
    + Upped dependencies as appropriate for the new release.
    + Upped Standards-Version. (no changes)
    + Upped sonames as appropriate.
    + s/Gadu Gadu/Gadu-Gadu/g
    + Change dep on libempathy29 to telepathy-mission-control-5.
  * debian/rules:
    + Use --with-connectivity instead of --enable-network-manager.
  * Disable building with map as new enough clutter-gtk and champlain
    packages aren't in the archive yet.
  * debian/libempathy-common.install: Don't install profiles anymore.
  * debian/empathy.install: Don't try to install omf files.
  * debian/*.symbols: Updated.
  * debian/{empathy,libempathy-common}.install: Update to include some new
    files.

 -- Jonny Lamb <jonny@debian.org>  Wed, 26 Aug 2009 10:36:05 +0100

empathy (2.27.5-1) experimental; urgency=low

  * New Upstream Version
    - Bump libraries soname and adjust .symbols files
  * debian/control:
    - Add geoclue-yahoo recommends for libempathy-gtk
    - Use more meaningful desctiptions (LP: #259788)
  * debian/update-patches.mk: Update script to work with recent git version
  * Enable network manager support

 -- Laurent Bigonville <bigon@debian.org>  Tue, 04 Aug 2009 11:20:18 +0200

empathy (2.27.5-0ubuntu1) karmic; urgency=low

  * New upstream version:
    Bugs fixed:
    - Fixed #459161, Remove should be insensitive for salut contact
    - Fixed #494007, Empathy should conform to the XDG directory specification 
    - Fixed #545282, [accessibility] the names of items in friends list are not correct 
    - Fixed #547327, Wrongly sized dialog
    - Fixed #579724, Enable building with shave
    - Fixed #579940, Show a notification when a buddy goes to offline or online
    - Fixed #584120, "Video call" button shouldn't be sensitive in Contact menu if contact supports only audio
    - Fixed #584122, "Send Video" should be disable if contact doesn't support video
    - Fixed #586967, Remeber chat window size and configuration 
    - Fixed #588498, Mark muc tabs in which you are highlighted differently 
    - Fixed #588662, Add gconf option to enable usage of the WebKit inspector, for adium themes.
    - Fixed #588810, respect the button-images setting 
    - Fixed #588886, crash when selecting an image and clicking "open link" in adium 
    - Fixed #589091, Feature Share My Desktop for Empathy
    - Fixed #589830, Online status combo box items are not correctly spoken with the Orca screen reader. 
    - Fixed #589846, wrap text in contact label status 
  * debian/patches/01_autoconf_forgot_by_upstream.patch:
    - the change is in the new version
  * debian/libempathy27.symbols, debian/libempathy-gtk25.symbols:
    - new version update

 -- Sebastien Bacher <seb128@ubuntu.com>  Thu, 30 Jul 2009 10:02:28 +0200

empathy (2.27.4-0ubuntu1) karmic; urgency=low

  * New upstream release: (LP: #399878)
     - Segfault when the contact selector dispose
     - Remove should be insensitive for salut contact
     - empathy should be able to take colours from the GTK theme
     - IRC widget is cut (Matthias Clasen)
     - Add option to hide muc roster
     - time banner is added at each sentence when the remote contact is offline
     - Should take a well-known bus name (Jonny Lamb)
     - Contact list view options are scattered over "Chat" menu and "General" Preferences
     - Doesn't poke block devices to figure out their file size. (Frédéric Péters)
     - Remove libgnomevfs include in megaphone-applet.c
     - "Video preview" menu item doesn't do anything
     - Use call-stop icon (Frédéric Péters)
     - Should play a sound when calling
     - Favourite Chat Room tickybox doesn't work. (Abner Silva)
     - Adds an Adium theme parsing to have a nicer theme selector
     - EmpathyProfileChooser should extend GtkComboBox
     - Show a notification when a buddy goes to offline or online
     - Implement o.fd.Tp.Debug to publish debug messages (Jonny Lamb)
     - Shouldn't be able to send video and enable preview if no webcam is plugged
     - Call window: "send video" widgets should be enabled according the state of the call
     - we should not see the last video frame.
     - Crash when starting if status-presets.xml contains an 'unset' presence (Guillaume Desmottes)
     - Crash when trying to add an 'unset' status as favorite (Guillaume Desmottes)
     - Contact list doesn't appear in windows list when respawned
     - %service% is not replaced in adium themes (Patryk Zawadzki)
     - Use libchamplain 0.3.3's API
     - Adium theme is not reloaded on /clear or Ctrl+L or clear menu item
     - Empathy does not import from Pidgin on start
     - Capitalisation incorrect
     - Can't easily copy URL's when using Adium themes
     - Lines are not smashed together when using Adium themes (Patryk Zawadzki)
     - "Publish my location" causes a crash
     - Remove markup from translatable strings
     - Remove "new message from" from notification message (Guillaume Desmottes)
     - don't autoscroll on new messages
     - Display part reasons and messages.
     - Imported Google account (from Pidgin) not connecting (LP: #388522)
     - Adium theme should only join messages if time delta is less than 5 minutes (Patryk Zawadzki)
     - Use themed avatar as fallback if provided
     - "history" messageClasses is not set for backlogs
     - We are not using Info.plist settings for adium themes (Patryk Zawadzki)
     - telepathy-idle IRC chat window has no users or chat content
     - Status icon not updated when going offline (Guillaume Desmottes)
     - Modules linking cleanup
     - empaty crashs whenever a file trasnfert request is received
     - NM integration doesn't work if NM is started after empathy (Sjoerd Simons)
     - Don't use McAccount (Sjoerd Simons)
     - Crash when trying to add a contact while connecting (Guillaume Desmottes)
     - Labels with RTL control code don't right-align
     - please add bug-database to doap (Guillaume Desmottes)
     - typo for enable_network_manager in configure.ac (Ken VanDine)
     - Crasher: click on the microphone once disconnected
  * debian/control.in:
    - bump soname for libempathy26 -> 27 (and associated {.install,.symbols files})
    - bump soname for libempathy-gtk24 -> 25 (and associated {.install,.symbols files})
    - add build-dep libx11-dev (old missing one), libgstfarsight0.10-dev,
      libdbus-glib-1-dev and libnm-glib-dev
    - add Vcs-Bzr tag
  * add debian/patches/01_autoconf_forgot_by_upstream.patch to update configure
    from configure.ac
  * update libempathy27.symbols and libempathy-gtk25.symbols

 -- Didier Roche <didrocks@ubuntu.com>  Thu, 16 Jul 2009 18:34:37 +0200

empathy (2.27.3-2ubuntu3) karmic; urgency=low

  * debian/control: Temporarily drop telepathy-butterfly recommends. The pymsn
    replacement is still being sorted out, and in the meantime, -haze provides
    support for MSN. (See LP #388898 for status). This will be added back
    later.

 -- Martin Pitt <martin.pitt@ubuntu.com>  Tue, 14 Jul 2009 19:15:56 +0200

empathy (2.27.3-2ubuntu2) karmic; urgency=low

  * Drop geoclue dependencies, really

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 06 Jul 2009 09:48:10 +0200

empathy (2.27.3-2ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes:
    - Add Suggests on telepathy-idle
    - Bump telepathy-butterfly and telepathy-haze to recommends
  * Drop libindicate support for now
  * Drop geoloc support, dependencies not in main (yet)

 -- Laurent Bigonville <bigon@ubuntu.com>  Thu, 25 Jun 2009 10:02:52 +0200

empathy (2.27.3-2) experimental; urgency=low

  * debian/rules: Remove duplicate include
  * debian/control:
    - Bump Standards-Version (no further changes)
    - Drop all conflicts, packages not even in old-stable anymore
  * Enable Adium themes support
    - debian/rules: Pass --enable-webkit to configure
    - debian/control: Add libwebkit-dev build-dep
    - debian/libempathy-gtk24.symbols: Add new exported symbols
  * Enable geoclue support
    - debian/rules: Pass --enable-location to configure
    - debian/control: Add libgeoclue-dev build-dep
    - debian/libempathy-gtk24.symbols: Add new exported symbols
  * Enable map (champlain) support
    - debian/rules: Pass --enable-map to configure
    - debian/control: Add libchamplain-0.3-dev, libchamplain-gtk-0.3-dev
      and libclutter-gtk-0.8-dev build-dep

 -- Laurent Bigonville <bigon@debian.org>  Tue, 23 Jun 2009 11:10:25 +0200

empathy (2.27.3-1ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes: (LP: #388590)
    - Add Suggests on telepathy-idle
    - Bump telepathy-butterfly and telepathy-haze to recommends
  * debian/patches/001_add_indicator.patch:
    - Add libindicate support (LP: #340180)
  * debian/patches/099_autoreconf.patch: Run autoreconf

 -- Laurent Bigonville <bigon@ubuntu.com>  Tue, 23 Jun 2009 11:43:15 +0200

empathy (2.27.3-1) experimental; urgency=low

  * New upstream release.
    - Bump libraries soname and adjust .symbols files
  * debian/control: Bump libtelepathy-glib-dev build-dep
  * debian/libempathy-gtk-common.install: Add default adium theme

 -- Laurent Bigonville <bigon@debian.org>  Wed, 17 Jun 2009 20:38:21 +0200

empathy (2.27.2-1ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes:
    - Add Suggests on telepathy-idle
    - Bump telepathy-butterfly and telepathy-haze to recommends

 -- Laurent Bigonville <bigon@ubuntu.com>  Sun, 31 May 2009 19:05:28 +0200

empathy (2.27.2-1) experimental; urgency=low

  * New upstream release
    - Bump libraries soname and adjust .symbols files

 -- Laurent Bigonville <bigon@debian.org>  Sun, 31 May 2009 16:52:39 +0200

empathy (2.27.1.1-1ubuntu1) karmic; urgency=low

  * Merge from debian experimental, remaining changes:
    - Add Suggests on telepathy-idle
  * Bump telepathy-butterfly and telepathy-haze to recommends

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 20 May 2009 09:52:57 +0200

empathy (2.27.1.1-1) experimental; urgency=low

  * New upstream release
    - Bump libraries soname and adjust .symbols files
  * debian/control:
    - Bump libgtk2.0-dev and libtelepathy-glib-dev build-dep
    - Bump libgtk2.0-dev dependency for libempathy-gtk-dev
    - Remove all libglade references
  * debian/libempathy-gtk-common.install: now install .ui files instead
    of .glade files
  * Bump debhelper version to 7

 -- Laurent Bigonville <bigon@debian.org>  Tue, 19 May 2009 14:18:13 +0200

empathy (2.26.2-1) unstable; urgency=low

  [ Jonny Lamb ]
  * debian/control: Added haze and butterfly as empathy Suggests.

  [ Laurent Bigonville ]
  * New upstream release

 -- Laurent Bigonville <bigon@debian.org>  Mon, 18 May 2009 21:43:25 +0200

empathy (2.26.1-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Tue, 14 Apr 2009 12:03:23 +0200

empathy (2.26.1-1) unstable; urgency=low

  * New upstream release
  * debian/control: Add Homepage field

 -- Laurent Bigonville <bigon@debian.org>  Tue, 14 Apr 2009 11:44:14 +0200

empathy (2.26.0.1-0ubuntu1) jaunty; urgency=low

  * New upstream release (LP: #351884)

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 01 Apr 2009 20:22:40 +0200

empathy (2.26.0-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 18 Mar 2009 13:43:01 +0100

empathy (2.26.0-1) unstable; urgency=low

  * New Upstream Version
    - Bump libtelepathy-glib-dev build-dependency
    - Bump libempathy soname and adjust .symbols file
  * debian/control:
    - Bump Standards-Version to 3.8.1 (no further changes)
    - Remove telepathy-stream-engine recommends and conflicts
  * python-empathy.install: Fix FTBFS with python >= 2.6

 -- Laurent Bigonville <bigon@debian.org>  Wed, 18 Mar 2009 13:18:54 +0100

empathy (2.25.92-1ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle
  * Fix FTBFS with python >= 2.6

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 11 Mar 2009 01:28:38 +0100

empathy (2.25.92-1) unstable; urgency=low

  * New Upstream Version
  * Bump libempathy soname again

 -- Sjoerd Simons <sjoerd@debian.org>  Tue, 03 Mar 2009 23:46:29 +0000

empathy (2.25.91-2) unstable; urgency=low

  [ Laurent Bigonville ]
  * debian/control: Add minimal version for libtelepathy-farsight-dev build-dep

  [ Jonny Lamb ]
  * Upload to unstable.

 -- Jonny Lamb <jonny@debian.org>  Tue, 03 Mar 2009 18:05:50 +0000

empathy (2.25.91-1) experimental; urgency=low

  [ Sjoerd Simons ]
  * debian/patches/0001-Set-initial-value-for-sound-pref-checkboxes.patch
    - Removed, fixed upstream

  [ Jonny Lamb ]
  * New upstream release.
    + Bumped libempathy{,-gtk} sonames.
  * debian/gbp.conf: Removed no-create-orig field.
  * debian/control:
    + Added myself to Uploaders.
    + Removed XS-Dm-Upload-Allowed field.
    + Upped build-dep on libtelepathy-glib-dev to >= 0.7.21.
    + Removed duplicate Section fields.
    + Made short descriptions unique.
  * debian/libempathy21.symbols: Updated symbols file.
  * debian/libempathy-gtk19.symbols: Updated symbols file.
  * debian/empathy-logs.1: Added new manpage.
  * debian/copyright: Completely rewrote.

 -- Jonny Lamb <jonny@debian.org>  Fri, 27 Feb 2009 15:20:03 +0000

empathy (2.25.4-1ubuntu1) jaunty; urgency=low

  * Merge from debian experimental, remaining changes:
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle
  * Drop debian/patches/01fixtabbehavour.diff: Upstream is not happy
    with this patch.

 -- Laurent Bigonville <bigon@ubuntu.com>  Sun, 18 Jan 2009 14:31:56 +0100

empathy (2.25.4-1) experimental; urgency=low

  [ Simon McVittie ]
  * Switch packaging to git
  * Add gbp.conf (for git-buildpackage) and `debian/rules update-patches`
    target
  * Add README.source

  [ Sjoerd Simons ]
  * New Upstream Version
  * debian/control: Add libcanberra-gtk-dev to build-depends
  * debian/control: Bump libempathy soname from 17 to 19
  * debian/libempathy-gtk17.symbols: Update with new symbols
  * debian/libempathy19.symbols: Update with new symbols
  * debian/patches/0001-Set-initial-value-for-sound-pref-checkboxes.patch
    - Added. Set the initial values of the sound preferences from the
      configuration. (From upstream git)

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 07 Jan 2009 18:33:49 +0000

empathy (2.25.3-1) experimental; urgency=low

  * New upstream release
    - Bump libempathy-gtk soname
    - Fix symbols files
  * debian/control:
    - Bump libgtk2.0-dev build-dependency
    - Drop libgnomeui-dev build-dep
  * Drop debian/patches/64bit-build-fix.patch: fixed upstream

 -- Laurent Bigonville <bigon@debian.org>  Sat, 20 Dec 2008 21:45:15 +0100

empathy (2.25.2-2ubuntu1) jaunty; urgency=low

  * Merge from debian experimental, remaining changes:
    - debian/patches/01fixtabbehavour.diff: Change behaviour of tabs in chat
      dialogs
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Thu, 04 Dec 2008 15:31:52 +0100

empathy (2.25.2-2) experimental; urgency=low

  * debian/patches/64bit-build-fix.patch:
    - Fix build on 64 bit platforms

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 04 Dec 2008 00:46:53 +0000

empathy (2.25.2-1ubuntu1) jaunty; urgency=low

  * Merge from debian experimental, remaining changes:
    - debian/patches/01fixtabbehavour.diff: Change behaviour of tabs in chat
      dialogs
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 01 Dec 2008 22:20:36 +0100

empathy (2.25.2-1) experimental; urgency=low

  * New upstream release.
    - Bump libtelepathy-glib-dev build-dep and add libgnomeui-dev
    - Bump soname of libempathy

 -- Laurent Bigonville <bigon@debian.org>  Mon, 01 Dec 2008 21:35:56 +0100

empathy (2.24.1-1ubuntu1) intrepid; urgency=low

  * Merge from debian experimental, remaining changes:
    - debian/patches/01fixtabbehavour.diff: Change behaviour of tabs in chat
      dialogs
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 20 Oct 2008 21:48:50 +0200

empathy (2.24.1-1) experimental; urgency=low

  * New upstream release.

 -- Laurent Bigonville <bigon@debian.org>  Mon, 20 Oct 2008 21:12:27 +0200

empathy (2.24.0-1ubuntu1) intrepid; urgency=low

  * Merge from debian experimental, remaining changes:
    - debian/patches/01fixtabbehavour.diff: Change behaviour of tabs in chat
      dialogs
    - Add Recommends on telepathy-butterfly and telepathy-haze
    - Add Suggests on telepathy-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 22 Sep 2008 23:32:45 +0200

empathy (2.24.0-1) experimental; urgency=low

  * New upstream release.

 -- Laurent Bigonville <bigon@debian.org>  Mon, 22 Sep 2008 21:37:47 +0200

empathy (2.23.92-1ubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - debian/patches/01fixtabbehavour.diff: Change behaviour of tabs in chat
      dialogs
  * Re-add lost recommends and suggests on tp-butterfly, tp-haze and tp-idle

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 10 Sep 2008 00:09:14 +0200

empathy (2.23.92-1) experimental; urgency=low

  * New upstream release
    - Adjust libempathy-gtk15.symbols
  * Use my debian.org address in Uploaders

 -- Laurent Bigonville <bigon@debian.org>  Tue, 09 Sep 2008 19:03:12 +0200

empathy (2.23.91-0ubuntu1) intrepid; urgency=low

  * New upstream release
    - Adjust libempathy-gtk15.symbols
  * Put the telepathy team as maintainer of the package

 -- Laurent Bigonville <bigon@ubuntu.com>  Tue, 02 Sep 2008 19:48:54 +0200

empathy (2.23.90-2) experimental; urgency=low

  * debian/libempathy14.symbols: Fix version of an exported symbol
  * Use rarian-compat and librarian-dev instead of scrollkeeper as build-dep
  * Bump build-deps and remove libtelepathy-dev (not needed anymore)
  * Remove --enable-voip flags (voip enabled by default), rename
    --enable-aspell to --enable-spell
  * Add explicit build-depends against libglib2.0-dev
  * Install gnome help and omf files in empathy package

 -- Laurent Bigonville <bigon@bigon.be>  Mon, 25 Aug 2008 08:04:11 +0200

empathy (2.23.90-1) experimental; urgency=low

  * New upstream release.

 -- Dafydd Harries <daf@debian.org>  Sun, 24 Aug 2008 22:03:36 +0100

empathy (2.23.90-0ubuntu1) intrepid; urgency=low

  * New upstream release, adjust symbols files
  * Revert to cdbs instead of debhelper 7
  * Move Scott James Remnant <scott@ubuntu.com> patch to debian/patches

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 20 Aug 2008 19:00:04 +0200

empathy (2.23.6-0ubuntu8) intrepid; urgency=low

  * Finally got something like the effect I was after.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 18 Aug 2008 12:01:35 +0100

empathy (2.23.6-0ubuntu7) intrepid; urgency=low

  * Err, it wasn't a homogenous tabs problem, it was simply a packing
    problem.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 18 Aug 2008 11:42:55 +0100

empathy (2.23.6-0ubuntu6) intrepid; urgency=low

  * Don't use homogeneous tabs in the chat window.

 -- Scott James Remnant <scott@ubuntu.com>  Mon, 18 Aug 2008 10:32:43 +0100

empathy (2.23.6-0ubuntu5) intrepid; urgency=low

  * Install gnome help and omf files in empathy package (LP: #257189)

 -- Laurent Bigonville <bigon@ubuntu.com>  Thu, 14 Aug 2008 18:53:35 +0200

empathy (2.23.6-0ubuntu4) intrepid; urgency=low

  * Demotte telepathy-idle to Suggests

 -- Laurent Bigonville <bigon@ubuntu.com>  Mon, 11 Aug 2008 23:37:22 +0200

empathy (2.23.6-0ubuntu3) intrepid; urgency=low

  * Add telepathy-idle as recommends for the empathy package (LP: #256783)

 -- David Futcher <bobbo@ubuntu.com>  Mon, 11 Aug 2008 16:34:16 +0100

empathy (2.23.6-0ubuntu2) intrepid; urgency=low

  * Add telepathy-butterfly and telepathy-haze as recommends for the empathy
    package

 -- Laurent Bigonville <bigon@ubuntu.com>  Fri, 08 Aug 2008 17:02:45 +0200

empathy (2.23.6-0ubuntu1) intrepid; urgency=low

  * New upstream release
  * Drop debian/patches/00_mark_unknown_presence_id_as_unset.patch: applied
    upstream
  * Use rarian-compat and librarian-dev instead of scrollkeeper as build-dep
  * Bump debhelper compat to 7
  * Use new dh mechanism instead of cdbs
  * Bump build-deps and remove libtelepathy-dev (not needed anymore)
  * Remove --enable-voip flags (voip enabled by default), rename
    --enable-aspell to --enable-spell

 -- Laurent Bigonville <bigon@ubuntu.com>  Fri, 08 Aug 2008 16:15:17 +0200

empathy (0.23.4-1) experimental; urgency=low

  [ Laurent Bigonville ]
  * Bump Standards-Version to 3.8.0 (no further changes)

  [ Sjoerd Simons ]
  * New upstream release
  * Bumped soname of libempathy-gtk again and update symbols file
  * Add a version depend on telepathy-glib-dev matching the configure.ac

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 02 Aug 2008 22:08:58 +0100

empathy (0.23.3-3) unstable; urgency=low

  * Use my debian.org address in Uploaders
  * debian/patches/00empathy_486683.patch: Fix crash when adding SIP contacts
    (Closes: #486683)

 -- Laurent Bigonville <bigon@debian.org>  Sat, 25 Oct 2008 00:30:02 +0200

empathy (0.23.3-2) unstable; urgency=low

  * Add recommend on gvfs-backends. These are used for the url handlers in the
    chat window.
  * debian/patches/00_mark_unknown_presence_id_as_unset.patch
    + Added. Mark presence as unknown when the presence string isn't
    recognized

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 02 Aug 2008 19:56:46 +0100

empathy (0.23.3-1ubuntu2) intrepid; urgency=low

  * Also pass --disable-scrollkeeper to configure.
    (fixes FTBFS, LP: #247720, #253295)

 -- Michael Bienia <geser@ubuntu.com>  Wed, 30 Jul 2008 16:36:27 +0200

empathy (0.23.3-1ubuntu1) intrepid; urgency=low

  * libempathy-gtk/empathy-ui-utils.c, src/empathy-status-icon.c:
    - Add format "%s" to function calls. Fixes FTBFS caused by default compiler
      flags (error: format not a string literal and no format arguments)
  * Modify Maintainer value to match the DebianMaintainerField specification.

 -- Albin Tonnerre <lutin@ubuntu.com>  Thu, 19 Jun 2008 12:33:47 +0200

empathy (0.23.3-1) unstable; urgency=low

  [ Sjoerd Simons ]
  * New upstream release (0.23.3)
  * Bump libempathy and libempathy-gtk sonames
  * debian/*.symbols: Remove the debian version number from all symbols

  [ Laurent Bigonville ]
  * New upstream release (0.23.2)
    - Bump libempathy and libempathy-gtk soname and fix symbols files
  * Add dbus-x11 dependency on empathy package (Closes: #480486)
  * Add licence information about files libempathy-gtk/totem-subtitle-encoding.c
    and libempathy-gtk/totem-subtitle-encoding.h

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 06 Jun 2008 17:14:31 +0100

empathy (0.23.1-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * debian/control: Add telepathy-stream-engine as a recommends for empathy
    package

  [ Sjoerd Simons ]
  * New upstream release
  * debian/control: Add conflict with older version of stream-engine
  * debian/patches/00_fix_python_bindings.patch:
    - Removed. Fixed upstream
  * debian/patches/01_remove_unused_code.patch:
    - Removed. Fixed upstream
  * Bump libempathy and libempathy-gtk soname
  * debian/control: Add build-depend on gnome-doc-utils

  [ Simon McVittie ]
  * Use my debian.org address in Uploaders

 -- Sjoerd Simons <sjoerd@debian.org>  Thu, 01 May 2008 11:42:57 +0200

empathy (0.22.1-1) unstable; urgency=low

  * debian/rules, debian/empathy.install: Enable VOIP support
  * debian/empathy.install: Chat handler is now part of the main empathy
    process
  * debian/patches/00_fix_python_bindings.patch:
    + Added. Don't try to import objects that don't exist anymore (from
      upstream git) (Closes: #474260)
  * debian/patches/01_remove_unused_code.patch:
    + Added. Remove unused code. Fixes compilation errors with Gcc 4.3
      (Closes: #466817)
  * debian/libempathy-gtk11.symbols, debian/libempathy-gtk11.shlibs: Update
    symbols and shlibs

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 06 Apr 2008 23:33:50 +0200

empathy (0.22.0-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 10 Mar 2008 16:39:07 +0100

empathy (0.21.91-1) unstable; urgency=low

  * New upstream release
  * debian/patches/00_set_null_presence_message.patch:
    - Removed. Merged upstream
  * debian/control: Add xsltproc to build-depends
  * Bump libempathy and libempathy-gtk soname to 11
  * debian/control: Bump libtelepathy-dev build-depend to 0.3.1
  * debian/libempathy-common.install: Add irc network definitions

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 03 Mar 2008 20:45:26 +0100

empathy (0.21.90-2) unstable; urgency=low

  * debian/*.symbols: Remove the debian versioning
  * debian/patches/00_set_null_presence_message.patch:
    - Added. If there is no presence-message, (re)set it to NULL. So the UI
      can choose the right default message

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 10 Feb 2008 12:46:53 +0100

empathy (0.21.90-1) unstable; urgency=low

  * New upstream release
  * Removed patches merge upstream:
    - debian/patches/fix-pyftbfs.patch
    - debian/patches/accounts-icons-path.patch
  * Bump sonames for libempathy and libempathy-gtk

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 09 Feb 2008 23:25:59 +0100

empathy (0.21.5.2-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * New upstream release (0.21.5.2)
  * Add XS-Dm-Upload-Allowed: yes, really
  * Bump libmissioncontrol-client-dev build-dep version
  * Bump soname of libempathy-gtk
  * Drop debian/msn-haze.profile: merged upstream
  * debian/patches/fix-pyftbfs.patch: Fix FTBFS of the python binding
    (taken from upstream)
  * debian/patches/accounts-icons-path.patch: Fix search path for icons (taken
    from upstream)
  * debian/rules: remove installed test program

  [ Sjoerd Simons ]
  * Add symbol files for libempathy and libempathy-gtk
  * libempathy7: Bumped shlibs
  * debian/libempathy-common.install: Install empathy-log-manager.xsl
  * debian/libempathy-common, debian/libempathy-gtk-common.install: Install
    empathy-chatroom-manager.dtd in libempathy-common instead of
    libempathy-gtk-common
  * debian/control: Let libempathy-common conflict with older versions of
    libempathy-gtk-common
  * debian/rules: Disable the building of tests

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 21 Jan 2008 20:28:49 +0100

empathy (0.21.4-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * New upstream release
  * Bump Standards-Version to 3.7.3, no further changes.

  [ Sjoerd Simons ]
  * debian/patches/fix_setting_avatar.patch
    - Added. Fix setting avatars
  * debian/patches/listen_to_presence_changed.patch
    - Added. Listen to the PresenceChanged signal from the MC instead of the
      deprecated PresenceStatusActual.

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 05 Jan 2008 19:06:01 +0100

empathy (0.21.3-1) unstable; urgency=low

  * New upstream release
  * Add XS-Dm-Upload-Allowed: yes
  * Bump soname of both libraries
  * Drop debian/patches/00_configure.patch: applied upstream
  * Make -common packages arch:all and let the libs depends on
    ${source:Version} of their respective -common packages again.
  * Let the -dev packages depends on ${binary:Version} of their
    respective lib packages.

 -- Laurent Bigonville <bigon@bigon.be>  Tue, 04 Dec 2007 00:00:31 +0100

empathy (0.21.2-2) unstable; urgency=low

  * debian/patches/00_configure.patch
    - Added. Use the pkg-config file for X11 to get the right linker arguments
      Fixes FTBFS (Closes: #451902)

 -- Sjoerd Simons <sjoerd@debian.org>  Wed, 21 Nov 2007 20:59:11 +0100

empathy (0.21.2-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * New upstream release, bump soname for both libraries
  * Drop debian/patch/add-haze-profiles.patch and add debian/msn-haze.profile
    to avoid patching autofoo, installing it via debian/rules
  * debian/empathy.install: empathy.desktop is now installed in
    /etc/xdg/autostart/
  * debian/libempathy-gtk-common.install:
    - Also install icons that are under /usr/share/empathy/icons/
  * debian/control:
    - Add gnome-icon-theme to libempathy-gtk-common dependencies
    - Bump libmissioncontrol-client-dev build-dep version
  * Add manpages for empathy and empathy-account,
    thanks to Simon McVittie <smcv@ianadd.pseudorandom.co.uk> (Closes: #448620)
  * Use now official Vcs-* field
  * Install empathy-chat-chandler in /usr/lib/empathy/
  * Disable voip support and remove recommends for tp-se, not stable enough yet
  * Install .desktop file in /usr/share/applications

  [ Sjoerd Simons ]
  * debian/control: Let the libs depend on ${binary:Version} of their
    respective -common packages.

 -- Sjoerd Simons <sjoerd@debian.org>  Fri, 16 Nov 2007 11:03:08 +0100

empathy (0.14-1ubuntu1) hardy; urgency=low

  * Merge from debian unstable, remaining changes: (LP: #89431)
    - Depends: telepathy-gabble | telepathy-connection-manager,
    - Suggests: telepathy-core.
    - Change Conflicts and Replaces accordingly
    - Change bzr url to the Ubuntu branch
  * Drop debian/patches/no-date-crash.patch and
    debian/patches/search-contact-list.patch: applied upstream
  * debian/patches/add-haze-profiles.patch: use debian one

 -- Laurent Bigonville <bigon@ubuntu.com>  Wed, 24 Oct 2007 12:23:47 +0200

empathy (0.14-1) unstable; urgency=low

  [ Loic Minier ]
  * Fix typo in control.

  [ Laurent Bigonville ]
  * New upstream version
    - Drop debian/patches/disable-voip.patch, applied upstream
  * Enable VOIP and add telepathy-stream-engine to Recommends

 -- Laurent Bigonville <bigon@bigon.be>  Mon, 01 Oct 2007 18:46:11 +0200

empathy (0.13-1) unstable; urgency=low

  [ Laurent Bigonville ]
  * New upstream release, bump soname for libempathy and libempathy-gtk
    - Drop build-dep on libgnomeui-dev
    - Add build-dep on libpanel-applet2-dev
    - Bump build-dep version of libgtk2.0-dev
    - Build and install the megaphone applet
    - Add libtelepathy-dev as build-dep
  * Fix typo in libempathy-dev description
  * debian/patches/add-haze-profiles.patch: ship .profile files to support
    telepathy-haze (Closes: #444032)

  [ Sjoerd Simons ]
  * debian/patches/disable-voip.patch: Disable voip user interface elements as
    their noops in this version.
  * debian/copyright: Updated

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 29 Sep 2007 18:41:39 +0200

empathy (0.12-2ubuntu2) gutsy; urgency=low

  * debian/control: Fix typo => telepathy-core (LP: #146415)

 -- Laurent Bigonville <bigon@bigon.be>  Fri, 28 Sep 2007 20:28:26 +0200

empathy (0.12-2ubuntu1) gutsy; urgency=low

  * Merge from debian unstable, remaining Ubuntu changes: (LP: #138027)
    - Add profiles for haze support
    - Depends: telepathy-gabble | telepathy-connection-manager,
    - Suggests: telepaty-core.
  * Add debian/patches/no-date-crash.patch: Fix crash if there is no date in
    conversation (Taken from upstream)
  * Add debian/patches/search-contact-list.patch: Fix search function in
    contact list (Taken from upstream)
  * Fix typo in libempathy-dev description
  * Change Conflicts and Replaces accordingly
  * Change bzr url to the Ubuntu branch

 -- Laurent Bigonville <bigon@bigon.be>  Mon, 10 Sep 2007 17:12:54 +0200

empathy (0.12-2) unstable; urgency=low

  * debian/control: Let the -common packages conflict and replace the old
    empathy
  * debian/control: Let libempathy-gtk-dev depends on libglade2-dev instead of
    libglade-dev
  * debian/control: Tighten depends of libempathy-gtk-dev a bit more

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 08 Sep 2007 21:00:58 +0200

empathy (0.12-1) unstable; urgency=low

  [ Sjoerd Simons ]
  * New upstream release
  * Conflict with cohoba and gossip-telepathy

  [ Laurent Bigonville ]
  * debian/control:
    - Add myself as Uploaders
    - Add libaspell-dev and iso-codes as build-dep and enable spellchecker
    - Add XS-Vcs-Bzr field
    - Bump mission-control build-dep
    - Remove unneeded libmissioncontrol-sever builddep and rename
      libmissioncontrol-dev to libmissioncontrol-client-dev

  [ Loic Minier ]
  * Tweak copyright.
  * Wrap build-deps and deps.
  * Use HTTP in watch file.
  * Include CDBS' utils.mk.

  [ Sjoerd Simons ]
  * Added build-depend on libebook1.2-dev
  * Split up empathy into a whole slew of packages
  * Set linker flags to  -Wl,-z,defs -Wl,-O1
  * debian/rules: Call dh_pysupport on python-empathy
  * debian/control, debian/rules: Explicitely enable the python bindings

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 25 Aug 2007 18:41:08 +0200

empathy (0.12-0ubuntu2) gutsy; urgency=low

  * debian/control:
    - Depends: telepathy-gabble | telepathy-connection-manager (LP: #137689),
    - Suggests: telepaty-core.

 -- Daniel Holbach <daniel.holbach@ubuntu.com>  Thu, 06 Sep 2007 09:18:01 +0200

empathy (0.12-0ubuntu1) gutsy; urgency=low

  * Fake sync with not yet published version

 -- Laurent Bigonville <bigon@bigon.be>  Sat, 25 Aug 2007 01:02:43 +0200

empathy (0.10-0ubuntu2) gutsy; urgency=low

  * Add profiles for haze support

 -- Matthew Garrett <mjg59@srcf.ucam.org>  Tue, 21 Aug 2007 19:19:41 +0100

empathy (0.10-0ubuntu1) gutsy; urgency=low

  * New upstream release

 -- Baptiste Mille-Mathias <baptiste.millemathias@gmail.com>  Mon, 30 Jul 2007 18:49:02 +0200

empathy (0.8-1ubuntu1) gutsy; urgency=low

  * Merge from Debian unstable. Remaining Ubuntu changes:
    - debian/control: add libaspell-dev, iso-codes to Build-Depends
    - debian/rules: --enable-aspell
    - Update Maintainer field to match Debian-Maintainer-Spec

 -- Vincent Legout <bixente44@gmail.com>  Tue,  3 Jul 2007 11:56:56 +0200

empathy (0.8-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 23 Jun 2007 14:45:31 +0100

empathy (0.8-0ubuntu1) gutsy; urgency=low

  * New upstream release:
    - Fixed contact list handling.
    - Make use of NetworkManager to set presence to OFFILE when we are
      disconnected and restore presence once we are reconnected.
    - UI for searching in conversation history and to view all conversations
      with a given contact.
    - Do not use 2 different processes (empathy and empathy-chat), merge them
      into one client. This is easier for debugging and share data.
    - Do not create log directory for a chat if there is no messages to put
      in.
    - Do not set active contacts when creating the store, and when contact
      groups changed.
    - Fix warning when using command-line options.
    - Ignore ssl errors by default. This is needed to connect jabber accounts
      using ssl.
    - Adding spellcheck support using aspell.
    - Lots of bugs fixed.
  * debian/control: add libaspell-dev, iso-codes to Build-Depends.
  * debian/rules: --enable-aspell.

 -- Daniel Holbach <daniel.holbach@ubuntu.com>  Thu, 21 Jun 2007 22:43:45 +0200

empathy (0.7-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 11 Jun 2007 10:31:19 +0200

empathy (0.6-1) unstable; urgency=low

  [ Dafydd Harries ]
  * Add watch file.

  [ Sjoerd Simons ]
  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 04 Jun 2007 09:27:47 +0200

empathy (0.5-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Sat, 26 May 2007 19:02:41 +0200

empathy (0.4-1) unstable; urgency=low

  * New upstream release

 -- Sjoerd Simons <sjoerd@debian.org>  Sun, 20 May 2007 15:31:42 +0200

empathy (0.3-1) unstable; urgency=low

  * Initial release

 -- Sjoerd Simons <sjoerd@debian.org>  Mon, 14 May 2007 22:32:24 +0200