~ubuntu-branches/ubuntu/precise/virt-manager/precise-updates

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
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
virt-manager (0.9.1-1ubuntu5.1) precise-proposed; urgency=low

  * debian/patches/fix_listen_address.patch: updated again to prevent
    regression when the remote server has a listen attribute that specifies
    "0.0.0.0". (LP: #837275)
  * debian/patches/more_helpful_error_message.patch: remove superfluous
    line and extra comma to fix error dialog. (LP: #998724)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 24 May 2012 15:35:48 -0400

virt-manager (0.9.1-1ubuntu5) precise; urgency=low

  * debian/patches/fix_listen_address.patch: updated to prevent regression
    when the remote server has a listen attribute that specifies
    "127.0.0.1". Upstream code which has been completely refactored
    essentially does this now too. (LP: #837275)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Fri, 06 Apr 2012 11:13:49 -0400

virt-manager (0.9.1-1ubuntu4) precise; urgency=low

  * debian/patches/fork_before_gtk_import.patch: updated to also parse
    command line options before forking so we get error messages and help.
    Unfortunately, this has the side-effect of preventing the use of GTK
    command-line options. (LP: #973585)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 04 Apr 2012 13:40:54 -0400

virt-manager (0.9.1-1ubuntu3) precise; urgency=low

  * debian/patches/fork_before_gtk_import.patch: work around global menu
    and appindicator not working correctly by forking before the gtk
    import. (LP: #965318)
  * debian/patches/fix_error_reporting.patch: fix error reporting without
    changing any strings as we are in UI freeze.
  * debian/patches/fix_accidental_recursion.patch: fix accidental recursion
    when reporting grab keys.
  * debian/patches/fix_listen_address.patch: fix connecting when graphics
    configuration uses graphics attribute. (LP: #954353)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 03 Apr 2012 08:00:49 -0400

virt-manager (0.9.1-1ubuntu2) precise; urgency=low

  * debian/virt-manager.links: removed to get rid of useless dangling
    symlink. (LP: #929206)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sun, 04 Mar 2012 11:49:04 -0500

virt-manager (0.9.1-1ubuntu1) precise; urgency=low

  * Merge from debian unstable. Remaining changes:
    - debian/control, debian/rules: Build using dh_python2
    - debian/control: Depend on python-appindicator for appindicator
      support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - debian/patches/more_helpful_error_message.patch: explain to the user
      why he can't connect to qemu:///system and what he can do fix it.
    - debian/control: lower libvirt-bin from Recommends to Suggests; seems
      some users (like netbooks) want to manage VMs, but not host them; see
      meta packages (ubuntu-virt, ubuntu-virt-server, ubuntu-virt-mgmt) for
      group installation of virt package sets.
    - debian/control: drop python-spice-client-gtk to Suggests as it is in
      universe.
    - debian/patches/use_ubuntu_package_names.patch: Suggest installing the
      packages that are actually available in Ubuntu.
    - debian/rules: Set qemu user to libvirt-qemu so appropriate
      permissions get set.
    - debian/rules: Set Ubuntu as the preferred distro so we appear first
      in the list.
    - debian/rules: disable TUI for now, since the required dependencies
      are not available (Newt Syrup).
    - debian/rules: Drop patchsys-quilt include since dpkg-source does the
      quilt dance for us.
    - Removed python-ipy dependency as it is in universe:
      - debian/control: remove python-ipy from Depends
      - debian/series: disable 0002-Use-IPy-from-python-ipy.patch patch so
        we use the one that's included in the virt-manager source.
      - debian/rules: don't delete the IPy file.
  * Removed patches:
    - debian/patches/fix_resize_to_vm.patch: has equivalent Debian patch.
    - debian/patches/fix-remote-vnc-reconnect.patch: Fixed upstream.
    - debian/patches/fix_grep_portability.patch: Fixed upstream.
    - debian/patches/fix_net_stats.patch: Fixed upstream.
  * debian/patches/fix_dbus_deprecation_warning.patch: fix deprecation
    warning by switching to new way of setting up the event loop.
    (LP: #925890)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sat, 11 Feb 2012 11:33:27 -0500

virt-manager (0.9.1-1) unstable; urgency=low

  * [b4fdde6] Imported Upstream version 0.9.1
  * [6782cf0] Drop patches
    - 0003-virt-manager-Fix-Resize-to-VM-menu-option.patch - fixed upstream
    - 0004-console-Fix-crashes-when-deleting-vm-on-F16.patch - fixed upstream
    - 0005-storagebrowser-ignore-unparseable-volumes.patch - fixed upstream
    - 0006-Improve-error-message-if-netcat-can-t-forward-Unix-d.patch - fixed
      upstream
    - 0007-console-Fix-hang-when-reconnecting-to-remote-VNC-con.patch - fixed
      upstream
  * [0f418f5] Bump virtinst dependency version to 0.600.1

 -- Laurent Léonard <laurent@open-minds.org>  Thu, 02 Feb 2012 11:59:43 +0100

virt-manager (0.9.0-5) unstable; urgency=low

  * [e18d4f4] Improve error message if netcat can't forward Unix domain sockets
    (Closes: #614291)
  * [d5baa70] console: Fix hang when reconnecting to remote VNC console.
    Cherry-picked from upstream (e18d4f40946598b1bc929fbc401074183ae5b4c9)

 -- Guido Günther <agx@sigxcpu.org>  Sun, 15 Jan 2012 13:49:06 +0100

virt-manager (0.9.0-4) unstable; urgency=low

  * [e7e6e5b] New patch 0005-storagebrowser-ignore-unparseable-volumes.patch

 -- Guido Günther <agx@sigxcpu.org>  Tue, 10 Jan 2012 20:04:08 +0100

virt-manager (0.9.0-3ubuntu1) precise; urgency=low

  * Merge from debian unstable. Remaining changes:
    - debian/control, debian/rules: Build using dh_python2
    - debian/control: Depend on python-appindicator for appindicator
      support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - debian/patches/more_helpful_error_message.patch: explain to the user
      why he can't connect to qemu:///system and what he can do fix it.
    - debian/control: lower libvirt-bin from Recommends to Suggests; seems
      some users (like netbooks) want to manage VMs, but not host them; see
      meta packages (ubuntu-virt, ubuntu-virt-server, ubuntu-virt-mgmt) for
      group installation of virt package sets.
    - debian/patches/use_ubuntu_package_names.patch: Suggest installing the
      packages that are actually available in Ubuntu.
    - debian/patches/fix-remote-vnc-reconnect.patch: Force ssh tunnels to
      close when closing a Viewer window, so that reconnections will work.
    - debian/patches/fix_grep_portability.patch: support target systems
      where the grep utility has no -q option.
    - debian/patches/fix_net_stats.patch: fix broken net stats gathering.
    - debian/rules: Set qemu user to libvirt-qemu so appropriate
      permissions get set.
    - debian/rules: Set Ubuntu as the preferred distro so we appear first
      in the list.
    - debian/rules: disable TUI for now, since the required dependencies
      are not available (Newt Syrup).
    - debian/rules: Drop patchsys-quilt include since dpkg-source does the
      quilt dance for us.
    - Removed python-ipy dependency as it is in universe:
      - debian/control: remove python-ipy from Depends
      - debian/series: disable 0002-Use-IPy-from-python-ipy.patch patch so
        we use the one that's included in the virt-manager source.
      - debian/rules: don't delete the IPy file.
  * Removed patches:
    - debian/patches/fix_resize_to_vm.patch: has equivalent Debian patch.
  * debian/control: drop python-spice-client-gtk to Suggests as it is in
    universe.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 22 Dec 2011 11:01:53 -0500

virt-manager (0.9.0-3) unstable; urgency=low

  * [0b10320] New patch 0003-virt-manager-Fix-Resize-to-VM-menu-option.patch
  * [fd980dc] New patch 0004-console-Fix-crashes-when-deleting-vm-on-F16.patch
    (Closes: #648420)

 -- Laurent Léonard <laurent@open-minds.org>  Sat, 19 Nov 2011 19:00:17 +0100

virt-manager (0.9.0-2) unstable; urgency=low

  * [d9ddb0e] Suggest python-guestfs for gathering image introspection data.
  * [2183ad6] Add dependency on python-spice-client-gtk (Closes: #646624)

 -- Guido Günther <agx@sigxcpu.org>  Wed, 26 Oct 2011 09:10:13 +0200

virt-manager (0.9.0-1ubuntu5) precise; urgency=low

  * Build using dh_python2

 -- Matthias Klose <doko@ubuntu.com>  Sat, 17 Dec 2011 15:16:12 +0000

virt-manager (0.9.0-1ubuntu4) precise; urgency=low

  * Force ssh tunnels to close when closing a Viewer window, so that
    reconnections will work.  (LP: #903307)

 -- Serge Hallyn <serge.hallyn@ubuntu.com>  Wed, 14 Dec 2011 12:29:44 -0600

virt-manager (0.9.0-1ubuntu3) oneiric; urgency=low

  * debian/patches/fix_resize_to_vm.patch: fix "Resize to VM" menu option
    by correcting inverted return values in /src/virtManager/autodrawer.py.
    (LP: #828787)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Fri, 19 Aug 2011 11:52:29 -0400

virt-manager (0.9.0-1ubuntu2) oneiric; urgency=low

  * debian/patches/fix_grep_portability.patch: support target systems where
    the grep utility has no -q option. (LP: #792985)
  * debian/patches/fix_net_stats.patch: fix broken net stats gathering.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 16 Aug 2011 13:34:42 -0400

virt-manager (0.9.0-1ubuntu1) oneiric; urgency=low

  * Merge from debian unstable. Remaining changes:
    - debian/control: Depend on python-appindicator for appindicator
      support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - debian/patches/more_helpful_error_message.patch: explain to the user
      why he can't connect to qemu:///system and what he can do fix it.
    - debian/control: lower libvirt-bin from Recommends to Suggests; seems
      some users (like netbooks) want to manage VMs, but not host them; see
      meta packages (ubuntu-virt, ubuntu-virt-server, ubuntu-virt-mgmt) for
      group installation of virt package sets.
    - debian/patches/use_ubuntu_package_names.patch: Suggest installing the
      packages that are actually available in Ubuntu.
    - debian/rules: Set qemu user to libvirt-qemu so appropriate
      permissions get set.
    - debian/rules: Set Ubuntu as the preferred distro so we appear first
      in the list.
    - debian/rules: disable TUI for now, since the required dependencies
      are not available (Newt Syrup).
    - debian/rules: Drop patchsys-quilt include since dpkg-source does the
      quilt dance for us.
    - Removed python-ipy dependency as it is in universe:
      - debian/control: remove python-ipy from Depends
      - debian/series: disable 0002-Use-IPy-from-python-ipy.patch patch so
        we use the one that's included in the virt-manager source.
      - debian/rules: don't delete the IPy file.
  * Removed patches:
    - debian/patches/fullscreen_show_toolbar.patch: not needed with new
      version.
    - debian/patches/fork_before_using_gconf.patch: not needed with new
      version.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Mon, 08 Aug 2011 13:59:03 -0400

virt-manager (0.9.0-1) unstable; urgency=low

  * [5fffe42] Imported Upstream version 0.9.0
  * [77f1b30] Update patch 0005-Use-IPy-from-python-ipy.patch
  * [dfe1b89] Bump virtinst dependency version to 0.600.0
  * [84ea640] Bump Standards-Version to 3.9.2

 -- Laurent Léonard <laurent@open-minds.org>  Sat, 30 Jul 2011 21:01:45 +0200

virt-manager (0.8.7-1ubuntu2) oneiric; urgency=low

  * debian/patches/fullscreen_show_toolbar.patch: When switching to fullscreen
    under Unity, the top menu bar doesn't display anymore, so there's no
    way to exit fullscreen mode. This patch displays the toolbar when in
    fullscreen to work around the issue. It also hides the menu so it
    doesn't waste more real estate when using the classic desktop.
    (LP: #772729)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 18 May 2011 17:08:51 -0400

virt-manager (0.8.7-1ubuntu1) oneiric; urgency=low

  * Merge from debian unstable. Remaining changes: (LP: #747078)
    - debian/control: Depend on python-appindicator for appindicator
      support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - debian/patches/more_helpful_error_message.patch: explain to the user
      why he can't connect to qemu:///system and what he can do fix it.
    - debian/control: lower libvirt-bin from Recommends to Suggests; seems
      some users (like netbooks) want to manage VMs, but not host them; see
      meta packages (ubuntu-virt, ubuntu-virt-server, ubuntu-virt-mgmt) for
      group installation of virt package sets.
    - debian/patches/use_ubuntu_package_names.patch: Suggest installing the
      packages that are actually available in Ubuntu.
    - debian/rules: Set qemu user to libvirt-qemu so appropriate
      permissions get set.
    - debian/rules: Set Ubuntu as the preferred distro so we appear first
      in the list.
    - debian/rules: disable TUI for now, since the required dependencies
      are not available (Newt Syrup).
    - debian/rules: Drop patchsys-quilt include since dpkg-source does the
      quilt dance for us.
    - debian/patches/fork_before_using_gconf.patch: fork earlier to resolve
      cpu usage issue and appindicator issue.
    - Removed python-ipy dependency as it is in universe:
      - debian/control: remove python-ipy from Depends
      - debian/series: disable 0002-Use-IPy-from-python-ipy.patch patch so
        we use the one that's included in the virt-manager source.
      - debian/rules: don't delete the IPy file.
  * Removed patches:
    - debian/patches/dont-always-launch-consoles.patch: Upstream
    - debian/patches/fix_apparmor_details.patch: Upstream
    - debian/patches/fix-cpu-wrong-types.patch: Upstream
    - debian/patches/no_hal_traceback.patch: Upstream

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 18 May 2011 14:11:16 -0400

virt-manager (0.8.7-1) unstable; urgency=low

  * [e1716e0] Imported Upstream version 0.8.7
  * [b97d3a0] Drop patches
    - 0003-manager-Don-t-always-launch-consoles-for-running-dom.patch - fixed
      upstream
    - 0004-l10n-Updates-to-French-fr-translation.patch - fixed upstream
  * [c7e2a66] Bump virtinst dependency version to 0.500.6

 -- Laurent Léonard <laurent@open-minds.org>  Fri, 25 Mar 2011 09:44:57 +0100

virt-manager (0.8.6-2) unstable; urgency=low

  [ Laurent Léonard ]
  * [e30d190] New patch 0003-manager-Don-t-always-launch-consoles-for-
    running-dom.patch

  [ Guido Günther ]
  * [ff2e16b] Suggest hal since it's used by virt-manager for bridge
    detection. (Closes: #612013)

  [ Laurent Léonard ]
  * [358e4a0] New patch 0004-l10n-Updates-to-French-fr-translation.patch

 -- Laurent Léonard <laurent@open-minds.org>  Sat, 19 Feb 2011 17:37:33 +0100

virt-manager (0.8.6-1ubuntu8) natty; urgency=low

  * debian/rules: disable TUI for now, since the required dependencies
    are not available (Newt Syrup). (LP: #758797)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 14 Apr 2011 08:42:44 -0400

virt-manager (0.8.6-1ubuntu7) natty; urgency=low

  * debian/patches/fix_apparmor_details.patch: Don't show selinux specific
    information in the VM overview screen if AppArmor is being used.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Mon, 28 Feb 2011 20:08:19 -0500

virt-manager (0.8.6-1ubuntu6) natty; urgency=low

  * debian/patches/no_hal_traceback.patch: since we don't ship hal by
    default, don't print a traceback at each startup, just the error
    message.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sun, 27 Feb 2011 14:26:59 -0500

virt-manager (0.8.6-1ubuntu5) natty; urgency=low

  * debian/patches/use_ubuntu_package_names.patch: Suggest installing the
    packages that are actually available in Ubuntu.
  * debian/patches/more_helpful_error_message.patch: unbreak, and make
    error message even more helpful.
  * debian/patches/da_l10n.patch: dropped. Translation fixes should be
    done in Launchpad.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sun, 27 Feb 2011 08:54:14 -0500

virt-manager (0.8.6-1ubuntu4) natty; urgency=low

  * debian/patches/show_session_or_system_in_console.diff: removed, recent
    versions of virt-manager already show this.
  * debian/patches/qemu-system-by-default.patch: removed, virt-manager has
    been using qemu:///system by default for a while now, and this patch is
    broken, which prevents the helpful message from coming up upon first
    run.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Sat, 26 Feb 2011 21:08:43 -0500

virt-manager (0.8.6-1ubuntu3) natty; urgency=low

  * debian/rules:
    - Set qemu user to libvirt-qemu so appropriate permissions get set.
      (LP: #722107)
    - Set Ubuntu as the preferred distro so we appear first in the list.
  * debian/patches/fork_before_using_gconf.patch: add bug tags
  * Correct bug number typo in previous changelog entry

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 24 Feb 2011 23:12:56 -0500

virt-manager (0.8.6-1ubuntu2) natty; urgency=low

  * debian/patches/fork_before_using_gconf.patch: fork earlier to resolve
    cpu usage issue and appindicator issue. (LP: #720724, LP: #707313)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 24 Feb 2011 21:15:18 -0500

virt-manager (0.8.6-1ubuntu1) natty; urgency=low

  * Merge from debian experimental. Remaining changes:
    - Depend on python-appindicator for appindicator support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - Add patch da_l10n.patch since it is not integrated. (refreshed)
    - Add patch show_session_or_system_in_console to make the overview
      screen show which local qemu session you're connected to. (refreshed)
    - Add patch more_helpful_error_message to explain to the user why he
      can't connect to qemu:///system and what he can do fix it.
    - Add patch qemu-system-by-default to automatically add qemu:///system
      to the list of hypervisors if the user has write access to the UNIX
      socket.
    - Drop patchsys-quilt include since dpkg-source does the quilt dance for
      us.
    - debian/control: lower libvirt-bin from Recommends to Suggests; seems
      some users (like netbooks) want to manage VMs, but not host them; see
      meta packages (ubuntu-virt, ubuntu-virt-server, ubuntu-virt-mgmt) for
      group installation of virt package sets.
  * Removed patches:
    - debian/patches/custom-icon-installation.patch: Upstream.
    - debian/patches/remove-appindicator-workarounds.patch: Upstream.
    - debian/patches/fix-nc-with-zsh.patch: Upstream
  * Removed python-ipy dependency as it is in universe:
    - debian/control: remove python-ipy from Depends
    - debian/series: disable 0002-Use-IPy-from-python-ipy.patch patch so
      we use the one that's included in the virt-manager source.
    - debian/rules: don't delete the IPy file.
  * debian/patches/fix-cpu-wrong-types.patch: fix "value is of wrong type
    for this column" error by making sure we are using strings in
    src/virtManager/details.py.
  * debian/patches/dont-always-launch-consoles.patch: Don't always launch
    consoles for running domains in src/virtManager/manager.py.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 03 Feb 2011 10:35:22 -0500

virt-manager (0.8.6-1) experimental; urgency=low

  [ Guido Günther ]
  * [6fbc153] Suggest gnome-keyring (Closes: #605685)
  * [0f4af7d] Also suggest python-gnome-keyring

  [ Laurent Léonard ]
  * [3c3b839] New patch 0002-Use-IPy-from-python-ipy.patch (Closes:
    #605967)
  * [878fdfc] Remove its own version of IPy
  * [1f554ec] Add python-ipy dependency
  * [b3e7ca4] Imported Upstream version 0.8.6
  * [e763c6e] Drop patches
    - 0002-l10n-Updates-to-French-fr-translation.patch - fixed upstream
    - 0003-l10n-Updates-to-French-fr-translation.patch - fixed upstream
    - 0004-Add-AM_MAINTAINER_MODE-and-drop-m4-include.patch - fixed upstream
  * [f213a57] Bump virtinst dependency version to 0.500.5

 -- Laurent Léonard <laurent@open-minds.org>  Sun, 30 Jan 2011 15:25:40 +0100

virt-manager (0.8.4-8) unstable; urgency=low

  [ Laurent Léonard ]
  * [2254aba] Bump Standards-Version to 3.9.1
  * [5c4e495] Update patch 
        0003-Update-french-translation.patch.
    Fix origin URL, yse author, date and description from the upstream patch.
    Rename the file to match upstream patch description.
  * [be93227] New patch
         0007-Fix-livecd-customize-before-install-traceback.patch
    Closes: #591808
 
 -- Guido Günther <agx@sigxcpu.org>  Thu, 30 Sep 2010 13:32:01 +0200

virt-manager (0.8.5-1) experimental; urgency=low

  [ Laurent Léonard ]
  * [9e83cac] Imported Upstream version 0.8.5 (Closes: #591808, #579555)
  * [cc1f7ce] Drop patches fixed upstream:
        0002-console-Don-t-throw-traceback-if-we-can-t-read-error.patch
           http://hg.fedorahosted.org/hg/virt-manager/rev/c206b12a8c7a
        0003-Update-french-translation.patch 
           http://hg.fedorahosted.org/hg/virt-manager/rev/1f78c4ea0692
        0004-create-Skip-post-install-restart-if-user-destroys-VM.patch 
           http://hg.fedorahosted.org/hg/virt-manager/rev/d8c0607c68dc
        0005-Add-conn-info-to-virtinst.VirtualGraphics.patch
           http://hg.fedorahosted.org/hg/virt-manager/rev/99cf13a133f3
        0006-Fix-error-launching-create-wizard-on-qemu-session.patch 
           http://hg.fedorahosted.org/hg/virt-manager/rev/ea94314da7d5
  * [f6cc98d] Bump virtinst dependency version to 0.500.4
  * [32e247c] Bump Standards-Version to 3.9.1
  * [4d8c427] New patch 
        0002-l10n-Updates-to-French-fr-translation.patch
  * [66ebeaf] New patch
        0003-l10n-Updates-to-French-fr-translation.patch

  [ Guido Günther ]
  * [0254e41] Drop icon symlinks, Fixed upstream.
  * [9b15358] New patch 0004-Add-AM_MAINTAINER_MODE-and-drop-m4-
    include.patch. Add AM_MAINTAINER_MODE and drop m4/ include

 -- Guido Günther <agx@sigxcpu.org>  Wed, 29 Sep 2010 16:27:50 +0200

virt-manager (0.8.4-8ubuntu1) natty; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - Depend on python-appindicator for appindicator support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - Add patch da_l10n.patch since it is not integrated.
    - Add patch show_session_or_system_in_console to make the overview
      screen show which local qemu session you're connected to.
    - Add patch more_helpful_error_message to explain to the user why he
      can't connect to qemu:///system and what he can do fix it. LP #198957
    - Add patch qemu-system-by-default to automatically add qemu:///system
      to the list of hypervisors if the user has write access to the UNIX
      socket. LP #226899
    - Add patch fix-nc-with-zsh.patch to really fix compatibility with
      tcsh. (LP: #605172)
    - Add patch remove-appindicator-workarounds.patch to remove workarounds
      that impact performance as they are unnecessary now that LP: #530138
      has been resolved.
    - Add patch custom-icon-installation.patch: fix icon installation
      location. (LP: #597378)
    - Drop debian/links as the previous patch fixes the icon location
    - Drop patchsys-quilt include since dpkg-source does the quilt dance for
      us.
    - debian/control: lower libvirt-bin from Recommends to Suggests,
      LP: #556312; seems some users (like netbooks) want to manage VMs, but
      not host them; see meta packages (ubuntu-virt, ubuntu-virt-server,
      ubuntu-virt-mgmt) for group installation of virt pacakge sets

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 16 Nov 2010 14:45:59 -0500

virt-manager (0.8.4-7ubuntu1) maverick; urgency=low

  * Merge from debian unstable (LP: #627593). Remaining changes:
    - Depend on python-appindicator for appindicator support.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - Add patch da_l10n.patch since it is not integrated.
    - Add patch show_session_or_system_in_console to make the overview
      screen show which local qemu session you're connected to.
    - Add patch more_helpful_error_message to explain to the user why he
      can't connect to qemu:///system and what he can do fix it. LP #198957
    - Add patch qemu-system-by-default to automatically add qemu:///system
      to the list of hypervisors if the user has write access to the UNIX
      socket. LP #226899
    - Add patch fix-nc-with-zsh.patch to really fix compatibility with
      tcsh. (LP: #605172)
    - Add patch remove-appindicator-workarounds.patch to remove workarounds
      that impact performance as they are unnecessary now that LP: #530138
      has been resolved.
    - Add patch custom-icon-installation.patch: fix icon installation
      location. (LP: #597378)
    - Drop debian/links as the previous patch fixes the icon location
    - Drop patchsys-quilt include since dpkg-source does the quilt dance for
      us.
    - debian/control: lower libvirt-bin from Recommends to Suggests,
      LP: #556312; seems some users (like netbooks) want to manage VMs, but
      not host them; see meta packages (ubuntu-virt, ubuntu-virt-server,
      ubuntu-virt-mgmt) for group installation of virt pacakge sets

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Fri, 03 Sep 2010 08:48:56 -0400

virt-manager (0.8.4-7) unstable; urgency=low

  * [b234741] Recommend gnome-icon-theme for missing icons like system-
    shutdown (Closes: #588964)
  * [8757061] Suggest ssh-askpass. (Closes: #590649)
  * [e07202f] New patch 0006-Fix-error-launching-create-wizard-on-qemu-
    session.patch. Fix error launching create wizard on qemu:///session
    (Closes: #590491) - thanks to Cole Robinson

 -- Guido Günther <agx@sigxcpu.org>  Wed, 28 Jul 2010 09:47:41 +0200

virt-manager (0.8.4-6) unstable; urgency=low

  * [bacb45b] Add README.Debian (Closes: #501824)
  * [b5e83b0] Fix icon location (Closes: #588964)
  * [6466da1] New patch 0005-Add-conn-info-to-virtinst.VirtualGraphics.patch
    Add conn info to virtinst.VirtualGraphics (Closes: #583534) - thanks to
    Cole Robinson

 -- Guido Günther <agx@sigxcpu.org>  Thu, 15 Jul 2010 09:31:07 +0200

virt-manager (0.8.4-5) unstable; urgency=low

  * create: Skip post-install restart if user destroys VM
  * Bump Standards-Version to 3.9.0.

 -- Laurent Léonard <laurent@open-minds.org>  Thu, 08 Jul 2010 12:36:21 +0200

virt-manager (0.8.4-4) unstable; urgency=low

  [ Guido Günther ]
  * [81ab451] Add README.Debian (Closes: #501824)

  [ Loïc Minier ]
  * [8d83b97] Tweaks to rules:
     * Don't include python-distutils class, I don't think it's reasonnable to
       include multiple CDBS classes and this package has no setup.py anyway;
       instead, add a binary- install/virt-manager:: target and call
       dh_pysupport manually.
     * Include gnome class instead of autotools class; this will call dh_gconf
       and properly register/unregister the schemas, hopefully fixes
       LP: #583279.
     * Include gnome class after the other includes, it used to make a
       significant difference, but probably doesn't make one anymore nowadays.
     (Closes: #582668)

 -- Guido Günther <agx@sigxcpu.org>  Fri, 04 Jun 2010 11:55:22 +0200

virt-manager (0.8.4-3ubuntu6) maverick; urgency=low

  * debian/patches/fix-nc-with-zsh.patch: Add a new upstream commit to
    really fix compatibility with tcsh. (LP: #605172)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 25 Aug 2010 12:22:38 -0400

virt-manager (0.8.4-3ubuntu5) maverick; urgency=low

  * debian/patches/fix-nc-with-zsh.patch: Fix connecting to a remote server
    when using zsh or tcsh. (LP: #605172)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 13 Jul 2010 16:59:47 -0400

virt-manager (0.8.4-3ubuntu4) maverick; urgency=low

  * Re-enable appindicator support. (LP: #525462)
    - debian/patches/disable-appindicator.patch: removed now that
      LP: #530138 has been resolved.
    - debian/patches/remove-appindicator-workarounds.patch: remove
      workarounds that impact performance as they are unnecessary now
      that LP: #530138 has been resolved.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Fri, 09 Jul 2010 12:24:17 -0400

virt-manager (0.8.4-3ubuntu3) maverick; urgency=low

  * debian/patches/disable-appindicator.patch: disable appindicator support
    for now until python-appindicator issue is resolved. See patch for
    details.
  * debian/patches/custom-icon-installation.patch: fix icon installation
    location. (LP: #597378)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 22 Jun 2010 14:14:11 -0400

virt-manager (0.8.4-3ubuntu2) maverick; urgency=low

  * debian/control: lower libvirt-bin from Recommends to Suggests,
    LP: #556312; seems some users (like netbooks) want to manage VMs, but
    not host them; see meta packages (ubuntu-virt, ubuntu-virt-server,
    ubuntu-virt-mgmt) for group installation of virt pacakge sets

 -- Dustin Kirkland <kirkland@ubuntu.com>  Fri, 04 Jun 2010 18:58:48 -0500

virt-manager (0.8.4-3ubuntu1) maverick; urgency=low

  * Merge with Debian; remaining changes:
    - Depend on python-appindicator for appindicator support.
    - Saner rules, using gnome.mk and an explicit call to dh_pysupport
      instead of risky constructs, and using proper inclusion order.
    - Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
      where the Application Indicator can find it.
    - Add patch da_l10n.patch since it is not integrated.
    - Add patch show_session_or_system_in_console to make the overview
      screen show which local qemu session you're connected to.
    - Add patch more_helpful_error_message to explain to the user why he
      can't connect to qemu:///system and what he can do fix it. LP #198957
    - Add patch qemu-system-by-default to automatically add qemu:///system
      to the list of hypervisors if the user has write access to the UNIX
      socket. LP #226899
    - Add patch send-conn-to-virtinst to add connection info to
      virtinst.VirtualGraphics so a resonable keymap can be decided based on
      driver.
    - Drop patchsys-quilt include since dpkg-source does the quilt dance for
      us.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sun, 30 May 2010 15:50:18 +0200

virt-manager (0.8.4-3) unstable; urgency=low

  [ Guido Günther ]
  * New patch 0002-console-Don-t-throw-traceback-if-we-can-t-read-
    error.patch

  [ Laurent Léonard ]
  * Update french translation.

 -- Laurent Léonard <laurent@open-minds.org>  Tue, 18 May 2010 15:44:51 +0200

virt-manager (0.8.4-2ubuntu1) maverick; urgency=low

  * Merge with Debian:
    - Drop patches 0004-Fix-tapering-issue-for-fully-filled-graph,
      app_indicator_support, autodetect-nc-params, dont-lie-about-keymap,
      merged upstream.
    - Update patch send-conn-to-virtinst to match the final upstream commit.
    - Update patch qemu-system-by-default to match upstream changes.
    - Refresh patches da_l10n, show_session_or_system_in_console,
      more_helpful_error_message.
    - Remaining changes:
      + Depend on python-appindicator for appindicator support.
      + Saner rules, using gnome.mk and an explicit call to dh_pysupport
        instead of risky constructs, and using proper inclusion order.
      + Add a /usr/share/pixmaps/virt-manager-icon.svg symlink to link icon to
        where the Application Indicator can find it.
      + Add patch da_l10n.patch since it is not integrated.
      + Add patch show_session_or_system_in_console to make the overview
        screen show which local qemu session you're connected to.
      + Add patch more_helpful_error_message to explain to the user why he
        can't connect to qemu:///system and what he can do fix it. LP #198957
      + Add patch qemu-system-by-default to automatically add qemu:///system
        to the list of hypervisors if the user has write access to the UNIX
        socket. LP #226899
      + Add patch send-conn-to-virtinst to add connection info to
        virtinst.VirtualGraphics so a resonable keymap can be decided based on
        driver.
  * Drop patchsys-quilt include since dpkg-source does the quilt dance for us.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sat, 29 May 2010 11:48:03 +0200

virt-manager (0.8.4-2) unstable; urgency=low

  [ Laurent Léonard ]
  * [3a0130f] Bump virtinst dependency version to 0.500.3. Closes: #575522

 -- Guido Günther <agx@sigxcpu.org>  Fri, 26 Mar 2010 16:34:08 +0100

virt-manager (0.8.4-1) unstable; urgency=low

  * [884f511] Imported Upstream version 0.8.4
  * [835766b] Drop patches.
  * [cc8c30f] Switch to new source format 3.0 (quilt).
  * [d4d54cd] Clean debian/rules clean target.

 -- Laurent Léonard <laurent@open-minds.org>  Thu, 25 Mar 2010 09:14:38 +0100

virt-manager (0.8.3-3) unstable; urgency=low

  * [1373ca0] Fix tapering issue for fully filled graph. (Closes:
    #572065) - thanks to Jan Ondrej

 -- Laurent Léonard <laurent@open-minds.org>  Thu, 18 Mar 2010 09:29:17 +0100

virt-manager (0.8.3-2) unstable; urgency=low

  * [598b4ea] Update french translation.

 -- Laurent Léonard <laurent@open-minds.org>  Fri, 12 Feb 2010 10:22:47 +0100

virt-manager (0.8.3-1) unstable; urgency=low

  [ Guido Günther ]
  * [becccfa] Drop hal dependency

  [ Laurent Léonard ]
  * [c1e3848] Imported Upstream version 0.8.3
  * [f234d09] Drop patches.
  * [380454f] Bump virtinst dependency version to 0.500.2.
  * [0876fbe] Bump Standards-Version to 3.8.4.
  * [7fa85de] Change python-dev and python-gtk2-dev dependencies to
    python-all.

 -- Laurent Léonard <laurent@open-minds.org>  Wed, 10 Feb 2010 12:24:38 +0100

virt-manager (0.8.2-2ubuntu10) maverick; urgency=low

  * Drop langpack.mk include since gnome.mk does the right thing already.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sat, 22 May 2010 19:10:19 +0200

virt-manager (0.8.2-2ubuntu9) maverick; urgency=low

  * Don't include python-distutils class, I don't think it's reasonnable to
    include multiple CDBS classes and this package has no setup.py anyway;
    instead, add a binary-install/virt-manager:: target and call dh_pysupport
    manually.
  * Include gnome class instead of autotools class; this will call dh_gconf
    and properly register/unregister the schemas, hopefully fixes LP: #583279.
  * Include gnome class after the other includes, it used to make a
    significant different, but probably doesn't make one anymore nowadays.

 -- Loïc Minier <loic.minier@ubuntu.com>  Sat, 22 May 2010 17:29:28 +0200

virt-manager (0.8.2-2ubuntu8) lucid; urgency=low

  * debian/patches/send-conn-to-virtinst.patch: Updated to also send
    connection info when creating a new VM so a reasonable keymap can be
    decided based on driver. (LP: #551243)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Mon, 29 Mar 2010 18:46:45 -0400

virt-manager (0.8.2-2ubuntu7) lucid; urgency=low

  * debian/patches/0004-Fix-tapering-issue-for-fully-filled-graph.patch:
    fix malformed CPU and memory usage graphs.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 25 Mar 2010 10:33:39 -0400

virt-manager (0.8.2-2ubuntu6) lucid; urgency=low

  * debian/patches/dont-lie-about-keymap.patch: Don't lie and print "en-us"
    if the keymap isn't actually defined.
  * debian/patches/send-conn-to-virtinst.patch: Add connection info to
    virtinst.VirtualGraphics so a resonable keymap can be decided based
    on driver.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Thu, 04 Mar 2010 14:17:02 -0500

virt-manager (0.8.2-2ubuntu5) lucid; urgency=low

  * debian/patches/app_indicator_support.patch: disable for now until
    python-appindicator issue is resolved.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 03 Mar 2010 11:32:36 -0500

virt-manager (0.8.2-2ubuntu4) lucid; urgency=low

  * debian/patches/autodetect-nc-params.patch: autodetect if the remote
    nc command supports the -q option. (LP: #474107)
  * debian/patches/0003-Make-sure-we-quit-afer-EOF-on-stdin.patch: disabled
    as the previous patch replaces it.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 02 Mar 2010 14:43:43 -0500

virt-manager (0.8.2-2ubuntu3) lucid; urgency=low

  * debian/patches/app_indicator_support.patch: Add Application Indicator
    support. (LP: #525462)
  * debian/virt-manager.links: link icon to where the Application Indicator
    can find it.
  * debian/control: add python-appindicator dependency

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Wed, 24 Feb 2010 17:33:10 -0500

virt-manager (0.8.2-2ubuntu2) lucid; urgency=low

  * debian/rules: include langpack.mk so translations get handled properly
    in the .desktop file. (LP: #514271)

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Mon, 08 Feb 2010 09:49:29 -0500

virt-manager (0.8.2-2ubuntu1) lucid; urgency=low

  * Merge from debian testing, remaining changes:
    - debian/patches/da_l10n.patch since it is not integrated.
    - debian/patches/more_helpful_error_message.patch since it is not
      integrated.
    - debian/patches/qemu-system-by-default.patch since it is not integrated.
    - debian/patches/show_session_or_system_in_console.diff since it is not
      integrated.

 -- Marc Deslauriers <marc.deslauriers@ubuntu.com>  Tue, 02 Feb 2010 12:44:09 -0800

virt-manager (0.8.2-2) unstable; urgency=low

  [ Laurent Léonard ]
  * [77f4251] Remove Priority and Section binary fields.
  * [8665d7c] Clean debian/watch.

  [ Guido Günther ]
  * [83b6b38] Make sure we quit afer EOF on stdin when using qemu+ssh.  This
    patch is identical to the recently dropped 0002-close-nc-
    connection-on-EOF - the issue isn't fixed upstream yet. (Closes: #564034)
    - thanks to Vaclav Ovsik

 -- Guido Günther <agx@sigxcpu.org>  Sun, 10 Jan 2010 20:06:25 +0100

virt-manager (0.8.2-1) unstable; urgency=low

  [ Laurent Léonard ]
  * [986f851] Imported Upstream version 0.8.2
  * [f120b48] Redo patch 0001-use-usr-share-gconf-for-schema-data.patch.
  * [0071e36] Allow DM upload and add myself as uploader.
  * [35121e4] Update french translation.

 -- Guido Günther <agx@sigxcpu.org>  Sat, 19 Dec 2009 19:56:35 +0100

virt-manager (0.8.1-1) unstable; urgency=low

  [ Laurent Léonard ]
  * [7806746] Imported Upstream version 0.8.1
  * [e551c64] Drop patches. 0002-close-nc-connection-on-EOF.patch - fixed
    upstream. 0003-Update-french-translation.patch - applied upstream.
    0004-Don-t-close-connection-on-all-libvirt-errors.patch - fixed upstream.
  * [d205786] Bump virtinst dependency version to 0.500.1.

 -- Guido Günther <agx@sigxcpu.org>  Mon, 07 Dec 2009 15:32:49 +0100

virt-manager (0.8.0-2) unstable; urgency=low

  [ Laurent Léonard ]
  * [61651ae] Drop ${shlibs:Depends} from dependencies since there is no more
    C code.
  * [3319434] Drop redo-patches target from debian/rules. Since gbp-pq
    is used now.
  * [b04541e] Clean debian/rules. Drop commented post-patches target
    since there is no more autogen.sh.
  * [145ba60] Update french translation.
  * [799f18e] Update 0001-use-usr-share-gconf-for-schema-data.patch.
  * [052f7bb] Remove XS-Python-Version field from debian/control. Since
    it is deprecated with pysupport.
  * [bfb1611][1a66b27][a8ce142][4116d07][31ff60a] Fix some misspellings in
    french translation.
  * [6e23aff] Clean build dependencies.
  * [b71c8c9] Bump Debhelper version to 7.
  * [c614f09] Bump Standards-Version to 3.8.3.
  * [99a52c2] Clean debian/rules.
  * [52f3b63] Add clean target in debian/rules. To clean automatically
    generated files: - debian/pycompat (see #424898)
  * [d5e2ef7] Remove tests/Makefile in the debian/rules clean target. To get a
    clean Debian diff at rebuild time, the file is automatically generated.
  * [7da6d9b] Don't close connection on all libvirt errors. Pulled from
    upstream 1c886d1863f7.

  [ Guido Günther ]
  * upload to unstable
  * [464fb65] make package arch all since there is no more C code.
  * [25f7663] switch to python-support and use python-distutils
  * [c4da06a] bump python-libvirt dependency so we get all of VMs new
    features.

 -- Guido Günther <agx@sigxcpu.org>  Wed, 07 Oct 2009 14:04:03 +0200

virt-manager (0.8.0-1) experimental; urgency=low

  [ Laurent Léonard ]
  * [4fbe61d] Bump Standards-Version to 3.8.2.

  [ Guido Günther ]
  * [4eafeb9] Imported Upstream version 0.8.0
  * [e8a42e6] drop patches applied upstream
        0003-don-t-crop-vnc-display.patch
        0004-make-check-match-return-value-of-self.get_config_key.patch
        0005-Enable-Xen-HVM-virtual-machines-creation.patch
  * [2dac2fd] reformat debian/control

 -- Guido Günther <agx@sigxcpu.org>  Wed, 29 Jul 2009 20:24:26 +0200

virt-manager (0.7.0-4) unstable; urgency=low

  [ Laurent Léonard ]
  * [78b1652] Enable Xen HVM virtual machines creation. (Closes: #536301)

 -- Guido Günther <agx@sigxcpu.org>  Fri, 17 Jul 2009 10:03:35 +0200

virt-manager (0.7.0-3ubuntu1) karmic; urgency=low

  * Merge from debian unstable, remaining changes (LP: #389564):
    - debian/control keep python-virtinst as the name for the virtinst python
      package.
    - debian/patches/da_l10n.patch since it is not integrated.
    - debian/patches/more_helpful_error_message.patch since it is not
      integrated.
    - debian/patches/qemu-system-by-default.patch since it is not integrated.
    - debian/patches/show_session_or_system_in_console.diff since it is not
      integrated.
  * Drop debian/patches/test_kvm_perms.patch has been dropped since it is now 
    fixed now thanks to LP #273764

 -- Christophe Sauthier <christophe.sauthier@objectif-libre.com>  Fri, 19 Jun 2009 18:27:06 +0200

virt-manager (0.7.0-3) unstable; urgency=low

  * [61b67c1] don't crop vnc display (Closes: #525764) - thanks to
    Laurent Léonard for testing
  * [4522aa1] make check match return value of self.get_config_keymap()
    In the "Add hardware" wizard summary, the keymap field is set to
    "None" instead of "Same as host" when "Same as host" option is used.
    (Closes: #528447) - thanks to Laurent Léonard

 -- Guido Günther <agx@sigxcpu.org>  Wed, 20 May 2009 19:07:00 +0200

virt-manager (0.7.0-2) unstable; urgency=low

  * [2f604a6] close nc connection on EOF (Closes: #519979, #521137)

 -- Guido Günther <agx@sigxcpu.org>  Thu, 16 Apr 2009 17:34:29 +0200

virt-manager (0.7.0-1) unstable; urgency=low

  [ Guido Günther ]
  * [7ec628a] Imported Upstream version 0.7.0
        - e0f0b017caa9: ctrl-alt-backspace fixed (Closes: #520762)
        - 6126a50801de: migration uris fixed (Closes: #520772)
  * [4b493f6] drop patches applied upstream: 
          0002-remove-disambiguity-in-storage-dialog.patch
          0003-hint-to-ssh-askpass.patch
          0004-make-fullscreen-mode-more-useful.patch
          0005-gtk-vnc-0.3.8-handles- rescaling-with-compiz.patch

  [ Paul Menzel ]
  * [90f0ac9] Fix typo in changelog of Debian package.

 -- Guido Günther <agx@sigxcpu.org>  Mon, 23 Mar 2009 08:11:31 +0100

virt-manager (0.6.1-4) unstable; urgency=low

  * [24b33f6] add ${misc:Depends}
  * [8e2899f] make fullscreen mode more useful if the guests resolution is
    larger than the one of the host.
  * [17b69af] gtk-vnc 0.3.8 uses cairo so no need to forbid scaling with
    compiz

 -- Guido Günther <agx@sigxcpu.org>  Thu, 19 Feb 2009 17:26:57 +0100

virt-manager (0.6.1-3) unstable; urgency=low

  * upload to unstable

 -- Guido Günther <agx@sigxcpu.org>  Thu, 19 Feb 2009 09:22:16 +0100

virt-manager (0.6.1-2) experimental; urgency=low

  * [d0da6be] remove disambiguity in storage dialog (Closes: #514324)
  * [de2dae7] hint to ssh-askpass (Closes: #513599) - thanks to
    Sebastian Andrzej Siewior for the patch

 -- Guido Günther <agx@sigxcpu.org>  Fri, 13 Feb 2009 14:59:33 +0100

virt-manager (0.6.1-1ubuntu4) jaunty; urgency=low

  * Pass engine object to default_uri. (LP: #332108)

 -- Soren Hansen <soren@ubuntu.com>  Mon, 02 Mar 2009 10:05:37 -0800

virt-manager (0.6.1-1ubuntu3) jaunty; urgency=low

  * uri_split is no longer available in connection.py. Use the one from
    virtinst.util instead. This fixes the hypervisor list's idea about whether
    a given connection is a session or system one.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 20 Feb 2009 16:41:40 +0100

virt-manager (0.6.1-1ubuntu2) jaunty; urgency=low

  * getuid() is in the os module, not the sys module (LP: #331835)
  * Update bzr reference in debian/control.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 20 Feb 2009 16:34:08 +0100

virt-manager (0.6.1-1ubuntu1) jaunty; urgency=low

  * Merge with Debian experimental. Remaining changes:
    - show_session_or_system_in_console.diff:
      + Make the overview screen show which local qemu session, you're connected
        to.
    - more_helpful_error_message.patch:
      + Explain to the user why he can't connect to qemu:///system and what he
        can do fix it. (LP #198957)
    - qemu-system-by-default.patch:
      + Automatcially add qemu:///system to the list of hypervisors if the user
        has write access to the UNIX socket. (LP #226899)
    - test_kvm_perms.patch:
      + Test read/write access to /dev/kvm before trying to create a new virtual
        machine and h/w acceleration is enabled, display a message about missing
        group membership if rw access fails.  (LP #187048)
    - Add dh_gconf call to properly register the schemas.

 -- Soren Hansen <soren@ubuntu.com>  Mon, 16 Feb 2009 11:40:55 +0100

virt-manager (0.6.1-1) experimental; urgency=low

  * [31465dc] allow non root users for ssh connections
  * [e43ed8a] Imported Upstream version 0.6.1 (Closes: #513290), 
    has our non-root ssh patch (Closes: #505936)
  * [12f2cc7] drop patches 
        * fixed upstream:
              0007-populate-hostinfo-earlier-in-tick-function-so-it-isn.patch
        * applied ustream:
              0002-check-for-qemu-session-instead-of-uid-0.patch
              0003-start-network-if-it-s-not-already-active.patch
              0004-cd-chooser-fixes.patch
              0005-clear-list-of-optical-devices.patch
              0006-fix-sorting-exceptions.patch
              0008-qemu-session-can-t-write-to-the-pool-so-use-curren.patch
              0009-allow-non-root-users-for-ssh-connections.patch
  * [2d72548] depend on recent virtinst helper
  * [4a55e79] remove files that were added by the intial merge from
    ubuntu

 -- Guido Günther <agx@sigxcpu.org>  Thu, 29 Jan 2009 17:51:29 +0100

virt-manager (0.6.0-6ubuntu1) jaunty; urgency=low

  * Merge from debian unstable, remaining changes:
    - show_session_or_system_in_console.diff:
      + Make the overview screen show which local qemu session, you're connected
        to.
    - more_helpful_error_message.patch:
      + Explain to the user why he can't connect to qemu:///system and what he
        can do fix it. (LP #198957)
    - qemu-system-by-default.patch:
      + Automatcially add qemu:///system to the list of hypervisors if the user
        has write access to the UNIX socket. (LP #226899)
    - test_kvm_perms.patch:
      + Test read/write access to /dev/kvm before trying to create a new virtual
        machine and h/w acceleration is enabled, display a message about missing
        group membership if rw access fails.  (LP #187048)
    - libtool.diff:
      + Reran libtool to fix ftbfs.
    - Add dh_gconf call to properly register the schemas.

 -- Soren Hansen <soren@ubuntu.com>  Mon, 24 Nov 2008 08:24:20 +0100

virt-manager (0.6.0-6) unstable; urgency=low

  * Upload to unstable
  * [a43bbb1] version the libvirt-bin recommends need a recent version
    for storage pools

 -- Guido Günther <agx@sigxcpu.org>  Wed, 19 Nov 2008 13:09:10 +0100

virt-manager (0.6.0-5) experimental; urgency=low

  * [2c57e52] Don't try to use the storage pool with qemu:///session
    (Closes: #500260)
  * [62c6e49] add README.source
  * [87e5620] bump standards version to 3.8.0

 -- Guido Günther <agx@sigxcpu.org>  Tue, 11 Nov 2008 22:44:43 +0100

virt-manager (0.6.0-4) experimental; urgency=low

  * [e8d9a67] fix exceptions when sorting columns (0006-fix-sorting-
    exceptions.patch)
  * [677afb8] fix exception when opening a connection and "Automatically
    open consoles" is activated. Patch from upstream (0007-populate-
    hostinfo-....patch)

 -- Guido Günther <agx@sigxcpu.org>  Tue, 07 Oct 2008 08:53:48 +0200

virt-manager (0.6.0-3) experimental; urgency=low

  * [c77ca5a] depend on python-libvirt >= 0.4.6 we need libvirt >= 0.4.6
    for improved storage pool support
  * [e61e724] always select a proper element in the cd chooser and fill
    the list on reset. (0004-cd-chooser-fixes.patch) (Closes: #500263)
  * [e171231] clear list of optical devices on populate_media()
    otherwise we keep on adding the same device over and over again.
    (0005-clear-list-of-optical-devices.patch)

 -- Guido Günther <agx@sigxcpu.org>  Thu, 02 Oct 2008 16:46:01 +0200

virt-manager (0.6.0-2) experimental; urgency=low

  * [9fddc09] check for qemu session instead of uid != 0 allows to
    manage kvm/qemu network hardware as non root (0002-check-for-qemu-
    session-instead-of-uid-0.patch)
  * [8c96c5b] drop autogen_use_copy.diff
  * [588fcf5] start network if it's not already active (0003-start-
    network-if-it-s-not-already-active.patch) (Closes: #499867)

 -- Guido Guenther <agx@sigxcpu.org>  Thu, 25 Sep 2008 12:28:03 +0200

virt-manager (0.6.0-1) experimental; urgency=low

  * [67d97e5] Imported Upstream version 0.6.0
  * [03a49b9] uses virtinst (>= 0.400.0)
  * [b59c12f] depend on python-gtk-vnc that hat the focus bugs fixed
  * [b1d46cd] refresh gconf-dir patch
  * [0b2b50f] drop ctrl_alt_del.diff - fixed upstream

 -- Guido Guenther <agx@sigxcpu.org>  Thu, 18 Sep 2008 23:23:11 +0200

virt-manager (0.5.4-4) unstable; urgency=low

  * [10da8e8] fix ctrl-alt-delete (Closes: #495290) - thanks to Per
    Andersson

 -- Guido Guenther <agx@sigxcpu.org>  Sat, 30 Aug 2008 00:09:16 +0200

virt-manager (0.5.4-3) unstable; urgency=low

  * [a45b8b5] Recommend libvirt-bin (Closes: #487872)

 -- Guido Guenther <agx@sigxcpu.org>  Sat, 02 Aug 2008 20:56:28 +0200

virt-manager (0.5.4-2ubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - show_session_or_system_in_console.diff:
      + Make the overview screen show which local qemu session, you're connected
        to.
    - ctrl-alt-f9.patch:
      + Add Ctrl-Alt-F9 to the list of key combos you can send from the
        console.
    - more_helpful_error_message.patch:
      + Explain to the user why he can't connect to qemu:///system and what he
        can do fix it. (LP #198957)
    - restore_saved_images.patch:
      + Teach virt-manager to recognise libvirt qemu style saved vm's.
    - save_separate_connection.patch:
      + Use a separate connection to save vm state. (LP #201221)
    - virtio.patch
      + debian/patches/virtio.patch: update create.py to update virtio flag for
        disks and network interfaces.
    - debian/control: Depend on python-virtinst >= 0.300.2-0ubuntu4 to make
      virtio.patch work properly.
    - qemu-system-by-default.patch:
      + Automatcially add qemu:///system to the list of hypervisors if the user
        has write access to the UNIX socket. (LP #226899)
    - application_name_glade.patch:
      + Change attribute type in About dialog's glade file to correctly show the
        name of the application. (LP #206891)
    - test_kvm_perms.patch:
      + Test read/write access to /dev/kvm before trying to create a new virtual
        machine and h/w acceleration is enabled, display a message about missing
        group membership if rw access fails.  (LP #187048)
    - Add dh_gconf call to postinst to properly register the schemas.

 -- Soren Hansen <soren@ubuntu.com>  Thu, 26 Jun 2008 10:05:33 +0200

virt-manager (0.5.4-2) unstable; urgency=low

  * add XS-Python-Version and XB-Python-Version fields so we don't
    escape another python transition  (Closes: #480738) - thanks to
    Andreas B. Mundt
  * depend on recent virtinst (API change) and python-gtk-vnc for
    scaling
  * fix homepage URL
  * add Vcs-{Git,Browser} and Homepage fields

 -- Guido Guenther <agx@sigxcpu.org>  Mon, 12 May 2008 18:39:34 +0200

virt-manager (0.5.4-1ubuntu1) intrepid; urgency=low

  * Merge from debian unstable, remaining changes:
    - show_session_or_system_in_console.diff:
      + Make the overview screen show which local qemu session, you're connected
        to.
    - ctrl-alt-f9.patch:
      + Add Ctrl-Alt-F9 to the list of key combos you can send from the
        console.
    - more_helpful_error_message.patch:
      + Explain to the user why he can't connect to qemu:///system and what he
        can do fix it. (LP #198957)
    - restore_saved_images.patch:
      + Teach virt-manager to recognise libvirt qemu style saved vm's.
    - save_separate_connection.patch:
      + Use a separate connection to save vm state. (LP #201221)
    - virtio.patch
      + debian/patches/virtio.patch: update create.py to update virtio flag for
        disks and network interfaces.
    - debian/control: Depend on python-virtinst >= 0.300.2-0ubuntu4 to make
      virtio.patch work properly.
    - qemu-system-by-default.patch:
      + Automatcially add qemu:///system to the list of hypervisors if the user
        has write access to the UNIX socket. (LP #226899)
    - application_name_glade.patch:
      + Change attribute type in About dialog's glade file to correctly show the
        name of the application. (LP #206891)
    - test_kvm_perms.patch:
      + Test read/write access to /dev/kvm before trying to create a new virtual
        machine and h/w acceleration is enabled, display a message about missing
        group membership if rw access fails.  (LP #187048)
    - Add dh_gconf call to postinst to properly register the schemas.

 -- Soren Hansen <soren@ubuntu.com>  Tue, 13 May 2008 12:33:14 +0200

virt-manager (0.5.4-1) unstable; urgency=low

  * New Upstream Version

 -- Guido Guenther <agx@sigxcpu.org>  Thu, 20 Mar 2008 13:21:00 +0100

virt-manager (0.5.3-2) unstable; urgency=low

  * upload to unstable

 -- Guido Guenther <agx@sigxcpu.org>  Thu, 17 Jan 2008 11:14:58 +0100

virt-manager (0.5.3-1) experimental; urgency=low

  * New Upstream Version
  * disable autogen.sh since it's a released version

 -- Guido Guenther <agx@sigxcpu.org>  Wed, 16 Jan 2008 11:11:35 +0100

virt-manager (0.5.3-0ubuntu9) hardy; urgency=low

  [ Jamie Strandboge ]
  * debian/patches/virtio.patch: update create.py to update virtio flag for
    disks and network interfaces
  * debian/control: Depends on python-virtinst >= 0.300.2-0ubuntu4

  [ Soren Hansen ]
  * connection.py.patch:
    - Fix bridge detection. Thanks to noddy for finding the patch! (LP: #192605)

 -- Soren Hansen <soren@ubuntu.com>  Tue, 22 Apr 2008 01:55:06 +0200

virt-manager (0.5.3-0ubuntu8) hardy; urgency=low

  * Clean up: Use patches instead of editing stuff directly in the tree.
  * Add Vcs-Bzr header to debian/control.
  * Make the error message when failing to connect to the hypervisor more
    helpful. (LP: #198957)
  * Use separate libvirt connection when saving a domain. (LP: #201221)
  * Detect magic string in saved qemu/kvm images.

 -- Soren Hansen <soren@ubuntu.com>  Thu, 13 Mar 2008 10:07:03 +0100

virt-manager (0.5.3-0ubuntu7) hardy; urgency=low

  * Add patch from upstream to make it possible to choose boot device (LP:
    #182050).
  * Make the overview screen show which local qemu session, you're connected to.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 07 Mar 2008 08:52:15 +0100

virt-manager (0.5.3-0ubuntu6) hardy; urgency=low

  * Revert "Add usermode networking to the set of networking options".
    Rejected by upstream.
  * Add fix to make sure non privileged users get a network.
  * Fix adding a bridged network after initial installation.

 -- Soren Hansen <soren@ubuntu.com>  Fri, 18 Jan 2008 18:55:23 +0100

virt-manager (0.5.3-0ubuntu5) hardy; urgency=low

  * Add dh_gconf call to properly register the schemas.

 -- Soren Hansen <soren@ubuntu.com>  Wed, 16 Jan 2008 11:16:36 +0100

virt-manager (0.5.3-0ubuntu4) hardy; urgency=low

  * Fix heuristic for detecting if you're a privileged user.
  * Add usermode networking to the set of networking options.

 -- Soren Hansen <soren@ubuntu.com>  Wed, 16 Jan 2008 09:38:36 +0100

virt-manager (0.5.3-0ubuntu3) hardy; urgency=low

  * Connect to console as the correct user when using +ssh:// type urls.

 -- Soren Hansen <soren@ubuntu.com>  Tue, 15 Jan 2008 14:13:41 +0100

virt-manager (0.5.3-0ubuntu2) hardy; urgency=low

  * Made Ctrl+Alt+Delete work when connected to a VM.
  * Added Ctrl-Alt-F9 to list of keys you can send to a VM (LP: #182067).

 -- Soren Hansen <soren@ubuntu.com>  Sat, 12 Jan 2008 23:44:24 +0100

virt-manager (0.5.3-0ubuntu1) hardy; urgency=low

  * New upstream release

 -- Soren Hansen <soren@ubuntu.com>  Fri, 11 Jan 2008 09:44:15 +0100

virt-manager (0.5.2+hg071220-2) experimental; urgency=low

  * build-depend on intltool (Closes: #457735)
  * bump standards version

 -- Guido Guenther <agx@sigxcpu.org>  Tue, 25 Dec 2007 16:26:05 +0100

virt-manager (0.5.2+hg071220-1) experimental; urgency=low

  * new upstream version
  * run autogen.sh 

 -- Guido Guenther <agx@sigxcpu.org>  Thu, 20 Dec 2007 19:32:56 +0100

virt-manager (0.5.2-3ubuntu1) hardy; urgency=low

  * Change dependency on virtinst to python-virtinst. (LP: #179196)
  * Modify Maintainer value to match the DebianMaintainerField
    specification.

 -- Soren Hansen <soren@ubuntu.com>  Mon, 07 Jan 2008 23:00:45 +0100

virt-manager (0.5.2-3) unstable; urgency=low

  * gconf-dir.diff: fix typo in datadir
  * recommend hal for network device detection
  * move to team maintenance
  * drop ubuntu patches
  * add a watch file

 -- Guido Guenther <agx@sigxcpu.org>  Tue, 11 Dec 2007 12:54:04 +0100

virt-manager (0.5.2-2) experimental; urgency=low

  * update debian/copyright (help/, src/grpahWidgets)

 -- Guido Guenther <agx@sigxcpu.org>  Fri, 23 Nov 2007 22:56:47 +0100

virt-manager (0.5.2-1) experimental; urgency=low

  * New Upstream Version
  * first upload to Debian (Closes: #384443)
  * debian/copyright: update URL and FSF address, add upstream authors
  * update config.{sub,guess}
  * set gconf-dir to /usr/share/gconf
  * link with -Wl,--as-needed
  * update description
  * debhelper version 5
  * disable Ubuntu patches for now
  * Thanks to Marcello for packaging this up!

 -- Guido Guenther <agx@sigxcpu.org>  Fri, 23 Nov 2007 16:18:58 +0100

virt-manager (0.5.0-0ubuntu0~ppa2) feisty; urgency=low

  * debian/patches:
    - 01_vnc_connect_localhost.dpatch
    - 02-fixed_call_to_get_local_hostname.dpatch
    - 03-console_connection_retries_more_robust.dpatch
  * Remove various Build-deps

 -- Marcelo Boveto Shima <marceloshima@gmail.com>  Sat, 15 Sep 2007 01:27:27 -0300

virt-manager (0.5.0-0ubuntu0~ppa1) feisty; urgency=low

  * New upstream release.
  * Depends on python-libvirt, virtinst, python-gtk-vnc.

 -- Marcelo Boveto Shima <marceloshima@gmail.com>  Fri, 14 Sep 2007 18:53:12 -0300

virt-manager (0.4.0-0ubuntu0~ppa2) feisty; urgency=low

  * Change Architecture from all to any.

 -- Marcelo Boveto Shima <marceloshima@gmail.com>  Fri, 14 Sep 2007 16:05:12 -0300

virt-manager (0.4.0-0ubuntu0~ppa1) feisty; urgency=low

  * Initial release based on xenbr packages.

 -- Marcelo Boveto Shima <marceloshima@gmail.com>  Thu,  7 Jun 2007 01:08:24 -0300