~ci-train-bot/phablet-tools/phablet-tools-ubuntu-yakkety-2136

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
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
phablet-tools (1.2.1+16.10.20160905-0ubuntu1) yakkety; urgency=medium

  * Rename citrain script to bileto and support 4+ digit PPA numbers.

 -- Timo Jyrinki <timo.jyrinki@canonical.com>  Mon, 05 Sep 2016 13:05:54 +0000

phablet-tools (1.2+16.10.20160902.4-0ubuntu1) yakkety; urgency=medium

  * Rename citrain script to bileto and support 4+ digit PPA numbers.

 -- Robert Bruce Park <robert.park@canonical.com>  Fri, 02 Sep 2016 20:30:40 +0000

phablet-tools (1.2+16.10.20160629.1-0ubuntu1) yakkety; urgency=medium

  [ Chris Wayne ]
  * Allow click-buddy to use sessions, so we can install stuff without
    polluting the main chroot

  [ Jeremy Bicha ]
  * Depend on distro-packaged repo instead of bundling it (LP: #1525605)
    (LP: #1525605)

 -- Michael Terry <michael.terry@canonical.com>  Wed, 29 Jun 2016 21:00:32 +0000

phablet-tools (1.2+16.10.20160504-0ubuntu1) yakkety; urgency=medium

  * This fixes Bug #1427559 (phablet-network requires NetworkManager).
    (LP: #1427559)

 -- Selene Scriven <selene.scriven@canonical.com>  Wed, 04 May 2016 01:06:14 +0000

phablet-tools (1.2+16.04.20160317-0ubuntu1) xenial; urgency=medium

  [ Michael Terry ]
  * Be more forgiving about current edge-intro state before setting it.

 -- Michael Zanetti <michael.zanetti@canonical.com>  Thu, 17 Mar 2016 22:30:14 +0000

phablet-tools (1.2+16.04.20160219.1-0ubuntu1) xenial; urgency=medium

  [ Zoltán Balogh ]
  * let's make this workaround official

 -- Zoltan Balogh <zoltan.balogh@canonical.com>  Fri, 19 Feb 2016 10:46:34 +0000

phablet-tools (1.2+16.04.20151103-0ubuntu1) xenial; urgency=medium

  [ Albert Astals Cid ]
  * apt-get update too when installing packages

 -- Robert Bruce Park <robert.park@canonical.com>  Tue, 03 Nov 2015 18:01:43 +0000

phablet-tools (1.2+16.04.20151022-0ubuntu1) xenial; urgency=medium

  [ CI Train Bot ]
  * No-change rebuild.

 -- Robert Bruce Park <robert.park@canonical.com>  Thu, 22 Oct 2015 18:25:11 +0000

phablet-tools (1.2+15.10.20151015-0ubuntu1) wily; urgency=medium

  [ Robert Bruce Park ]
  * Bump version because '15.10' has been copied to non-wily series.

  [ CI Train Bot ]
  * New rebuild forced.

 -- Robert Bruce Park <robert.park@canonical.com>  Thu, 15 Oct 2015 20:31:37 +0000

phablet-tools (1.1+15.10.20151014.1-0ubuntu1) wily; urgency=medium

  * Make citrain tool able to install silo packages with deps & without
    extras. (LP: #1378245)

 -- Robert Bruce Park <robert.park@canonical.com>  Wed, 14 Oct 2015 22:36:23 +0000

phablet-tools (1.1+15.10.20150925.2-0ubuntu1) wily; urgency=medium

  [ Robert Bruce Park ]
  * Improve helpfulness of help output.

  [ Simon Fels ]
  * Fixes and new features (multiple silo support) for citrain

 -- Simon Fels <simon.busch@canonical.com>  Fri, 25 Sep 2015 18:10:55 +0000

phablet-tools (1.1+15.10.20150519-0ubuntu1) wily; urgency=medium

  [ Zoltán Balogh ]
  * Suppress warnings about deprecated UITK APIS during AP tests. Fixes
    LP: #1456350 (LP: #1456350)

 -- CI Train Bot <ci-train-bot@canonical.com>  Tue, 19 May 2015 07:35:19 +0000

phablet-tools (1.1+15.10.20150507-0ubuntu1) wily; urgency=medium

  [ Robert Bruce Park ]
  * Fix silo pinning issue. (LP: #1452190)

 -- CI Train Bot <ci-train-bot@canonical.com>  Thu, 07 May 2015 17:08:23 +0000

phablet-tools (1.1+15.04.20150330-0ubuntu1) vivid; urgency=medium

  [ Robert Bruce Park ]
  * Stop interpreting existing zero-pad as octal.

 -- CI Train Bot <ci-train-bot@canonical.com>  Mon, 30 Mar 2015 23:00:25 +0000

phablet-tools (1.1+15.04.20150218-0ubuntu1) vivid; urgency=medium

  [ Zoltán Balogh ]
  * Use different nmcli command on 15.04 than on 14.10 or 14.04

 -- CI Train Bot <ci-train-bot@canonical.com>  Wed, 18 Feb 2015 20:01:50 +0000

phablet-tools (1.1+15.04.20141107.1-0ubuntu1) vivid; urgency=low

  [ Ubuntu daily release ]
  * New rebuild forced

  [ Oliver Grawert ]
  * update phablet-bootchart for new developer mode and password
    handling (LP: #1384450) (LP: #1384450)

  [ Robert Bruce Park ]
  * Fix pep8 test causing trunk build failures.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Nov 2014 16:15:45 +0000

phablet-tools (1.1+14.10.20141010-0ubuntu1) utopic; urgency=low

  [ Łukasz 'sil2100' Zemczak ]
  * Allow the citrain script to be passed a custom distribution to use
    during device-upgrade.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 10 Oct 2014 11:05:26 +0000

phablet-tools (1.1+14.10.20141002-0ubuntu1) utopic; urgency=low

  [ Giulio Collura ]
  * fix phablet-demo-setup (LP: #1373779)

  [ Oliver Grawert ]
  * phablet-shell: create local ~/.ssh directory if it does not exist,
    stop execution and tell user to generate a key first before re-
    running (LP: #1364913) (LP: #1364913)

  [ nskaggs ]
  * allow source from outside release pocket, bug 1371241 (LP: #1371241)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 02 Oct 2014 10:24:53 +0000

phablet-tools (1.1+14.10.20140929-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * phablet-test-run: Do not force an environment-less shell (to prevent
    unsetting of DBUS_SESSION_BUS_ADDRESS by using /bin/sh in commands).
    Add password/PIN option for using root commands. Require password or
    PIN for package installation tasks.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 29 Sep 2014 07:57:18 +0000

phablet-tools (1.1+14.10.20140925-0ubuntu1) utopic; urgency=low

  [ Paul Larson ]
  * Don't use sudo in phablet-network unless it's really needed

  [ Robert Bruce Park ]
  * Support RTM in citrain tool.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 25 Sep 2014 23:20:39 +0000

phablet-tools (1.1+14.10.20140923-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * phablet-config: move handling of the edge-demo setting into dbus-
    property-service and do a proper dbus call from phablet-config (LP:
    #1365725) (LP: #1365725)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 23 Sep 2014 17:19:22 +0000

phablet-tools (1.1+14.10.20140919-0ubuntu1) utopic; urgency=low

  [ Martin Pitt ]
  * phablet-config: Add "network" group for saving/restoring current
    wifi connection. (LP: #1359622)

  [ Oliver Grawert ]
  * phablet-network: support network files with spaces in their filename
    (LP: #1367180), make finding the active UUID not break on non-
    english locale settings, quieten down glib noise from nmcli on the
    device (LP: #1367180)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Sep 2014 17:36:15 +0000

phablet-tools (1.1+14.10.20140918-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * 'phablet-shell: only start/stop ssh if it is not already running, do
    not wipe authorized_keys (breaks the SDK) and instead only append
    the key if it is not there yet. make sure ~/.ssh exists before
    trying to do anything with it (LP: #1355286) (LP: #1337289) (LP:
    #1326805) (LP: #1337289, #1326805, #1355286)

  [ nskaggs ]
  * Make phablet-test-run use only python3 and the autopilot3 binary.
    Fixes bug 1321463 and bug 1364369 (LP: #1364369, #1321463)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Sep 2014 11:52:02 +0000

phablet-tools (1.1+14.10.20140917-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * fix phablet-config to not require a reboot when already writable,
    fix ASKPASS handling, make output of phablet-config writable-image
    more verbose for ppa and package actions

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Sep 2014 14:28:37 +0000

phablet-tools (1.1+14.10.20140916-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * add proper adb.reboot() call to phablet-config writable-image, if we
    wait for the upstart shutdwon adb wait-for-device returns to early.
    (LP: #1369504) (LP: #1369504)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 16 Sep 2014 12:55:06 +0000

phablet-tools (1.1+14.10.20140909-0ubuntu1) utopic; urgency=low

  [ Michael Vogt ]
  * click-buddy: adding --allow-untrusted to the pkcon install-local
    call.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 09 Sep 2014 20:43:43 +0000

phablet-tools (1.1+14.10.20140905.2-0ubuntu1) utopic; urgency=low

  [ Sergio Schvezov ]
  * Add a --distribution option (for rtm) and remove the extract of the
    obsolete python2 packages.

  [ Francis Ginther ]
  * Replace '.' with ',' in adb_shell command to mv the local-pin-1100
    file.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Sep 2014 21:06:33 +0000

phablet-tools (1.1+14.10.20140905-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * move phablet-config password option to -r (--remotepassword) to
    avoid a clash with the --serial option, add proper error handling if
    no password is set when attempting a package operation (LP:
    #1365933) (LP: #1365933)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 05 Sep 2014 12:22:33 +0000

phablet-tools (1.1+14.10.20140903-0ubuntu1) utopic; urgency=low

  [ Paul Larson ]
  * Add support for krillin device type in settings.py

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 03 Sep 2014 13:47:59 +0000

phablet-tools (1.1+14.10.20140829-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * drop the need for root on the target device when configuring the
    wlan
  * switch ssh handling in phablet-shell to dbus in preparation to not
    require any root access under developer mode anymore
  * add changes to phablet-config autopilot and writable-image functions
    to work with the new adbd running as phablet (needs latest dbus-
    property-service on the device)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Aug 2014 14:11:06 +0000

phablet-tools (1.1+14.10.20140820-0ubuntu1) utopic; urgency=low

  [ Robert Bruce Park ]
  * Drop deprecated citrain stuff and make device-upgrade work much
    better.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 20 Aug 2014 03:45:41 +0000

phablet-tools (1.1+14.10.20140715-0ubuntu1) utopic; urgency=low

  [ Ricardo Salveti de Araujo ]
  * Updating phablet-dev-bootstrap and dropping CM support (we currently
    only support AOSP based builds)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 15 Jul 2014 13:30:05 +0000

phablet-tools (1.1+14.10.20140703-0ubuntu2) utopic; urgency=medium

  [ Dimitri John Ledkov ]
  * Upload patch from June the 6th.
  
  [ Francis Ginther ]
  * In phablet-test-run, check the return code when attempting to import
    tests with python3 instead of just looking for text output. Log
    messages generated on import will cause the import check to fail when
    it should not.

 -- Dimitri John Ledkov <xnox@ubuntu.com>  Mon, 14 Jul 2014 18:07:36 +0100

phablet-tools (1.1+14.10.20140703-0ubuntu1) utopic; urgency=low

  [ Michał Sawicz ]
  * Fix PEP8 errors.

  [ Robert Bruce Park ]
  * Don't delete PPAs because this breaks ppa-purge. (LP: #1333184) (LP:
    #1333184)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 03 Jul 2014 18:07:57 +0000

phablet-tools (1.1+14.10.20140620-0ubuntu1) utopic; urgency=medium

  [ Michael Terry ]
  * phablet-config: Add support for "welcome-wizard --enable" or
    "welcome-wizard --disable". Note that you'll need
     ubuntu-system-settings-wizard installed for this to mean anything.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 20 Jun 2014 18:50:53 +0000

phablet-tools (1.0+14.10.20140616-0ubuntu1) utopic; urgency=low

  [ Oliver Grawert ]
  * phablet-screenshot: mirscreencast needs the socket location handed over now
    that the Mir socket moved to /run/mir_socket (LP: #1327139).

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 16 Jun 2014 19:16:47 +0000

phablet-tools (1.0+14.10.20140528.1-0ubuntu1) utopic; urgency=low

  [ Robert Bruce Park ]
  * Add some missing citrain deps.
  * Don't copy bashrc by default (Fixes #1324052) (LP: #1324052)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 28 May 2014 13:03:41 +0000

phablet-tools (1.0+14.10.20140527-0ubuntu1) utopic; urgency=low

  [ Robert Bruce Park ]
  * Add phablet-shell tool for a nicer shell experience on device.
  * New citrain tool with more options. (LP: #1321333)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 May 2014 15:53:32 +0000

phablet-tools (1.0+14.10.20140515.1-0ubuntu1) utopic; urgency=low

  [ Sergio Schvezov ]
  * Adding a common script to ref from other scripts and removing
    ADBOPTS in favor of ANDROID_SERIAL Fixing minor whitespace issues

  [ Robert Bruce Park ]
  * Add scripts to ease interactions with CI Train silos.

  [ Andy Doan ]
  * support click setup on x86 emulator We have different packaging
    names for x86 emulator. This adds the ability to do an arch specific
    package lookup.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 15 May 2014 19:59:44 +0000

phablet-tools (1.0+14.10.20140509-0ubuntu1) utopic; urgency=low

  [ Sergio Schvezov ]
  * Allowing multiple devices to be hooked up

  [ Oliver Grawert ]
  * make sure we use a fixed and predictable filename for mirscreencast
    (LP: #1316806)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 May 2014 14:53:07 +0000

phablet-tools (1.0+14.04.20140416-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * phablet-screenshot: allow spaces in file names and path (LP:
    #1307734)
  * phablet-screenshot: don't special case manta for screenshots (LP:
    #1276683)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Apr 2014 11:21:54 +0000

phablet-tools (1.0+14.04.20140414.3-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * phablet-flash: add deprecation warning
  * phabletutils: allow flo in settings
  * click-buddy: let click chroot error out on use of missing framework
    instead of trying to access non exposed interfaces to figure it out
  * phablet-screenshot: making sure that the adb server is running
    before trying to grab a screenshot (LP: #1306251)
  * phablet-network: make sure that we fail gracefully if more than one
    device is connected and no serial is passed (LP: #1306366)

  [ Chris Gagnon ]
  * phablet-network: make it work in latest trusty (LP: #1289525)

  [ Colin Watson ]
  * click-buddy: Pass -f$FRAMEWORK to click chroot.

  [ Andy Doan ]
  * phablet-bootchart: allow custom arguments to be passed to bootchart

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 14 Apr 2014 20:48:24 +0000

phablet-tools (1.0+14.04.20140410-0ubuntu1) trusty; urgency=low

  [ Oliver Grawert ]
  * we do not need sudo if we can read the network credentials file we
    hand over via commandline option to phablet-network, so lets not
    require it.
  * phablet-bootchart: fix tmpdir creation to not try to use the full
    path of the command

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 10 Apr 2014 16:03:52 +0000

phablet-tools (1.0+14.04.20140409-0ubuntu1) trusty; urgency=low

  [ Oliver Grawert ]
  * add phablet-bootchart script that generates bootcharts for touch devices
  * add recommends for pybootchartgui

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 09 Apr 2014 10:53:54 +0000

phablet-tools (1.0+14.04.20140401-0ubuntu1) trusty; urgency=low

  [ Barry Warsaw ]
  * Make sure to install any missing dependencies when local debs are
    installed. Create the /home/phablet/autopilot directory if needed
    and missing. Fix a checkbashisms failure in phablet-screenshot that
    somehow previously snuck past CI (LP: #1298550)

  [ Steve Langasek ]
  * Eliminate unnecessary doubled login shells in adb shell commands.
    We're already running under sudo -i, which gives us all the
    environment setup associated with the login shell; the subshell for
    running command sequences only needs to be 'sh -c', never 'sh -lc'
    or 'bash -ic'.
  * phablet-screenshot: Fix a use of sed which while technically not a
    bashism, causes checkbashisms to be able to parse the file,
    resulting in a test failure. In the process, make the pipeline more
    robust with regards to the 'fbset' output across platforms.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 01 Apr 2014 01:36:40 +0000

phablet-tools (1.0+14.04.20140326-0ubuntu1) trusty; urgency=low

  [ Andrew Starr-Bochicchio ]
  * Port to mir_screencast. Fixes LP: #1284790. (LP: #1284790)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 26 Mar 2014 21:56:52 +0000

phablet-tools (1.0+14.04.20140310-0ubuntu1) trusty; urgency=low

  [ Dmitrijs Ledkovs ]
  * Support python2 and python3 based autopilot tests.

  [ Dimitri John Ledkov ]
  * Support python2 and python3 based autopilot tests.

  [ Andy Doan ]
  * phablet-test-run: support different result formats Autopilot
    supports text, xml, and subunit result formats. This keeps the
    default to xml, but allows users to choose the other formats as
    well. I also took the chance to clean up some of the usage statement
    line wrapping.
  * phablet-test-run: add generic mechanism to pass arguments to
    autopilot I was in need of changing autopilot's "--timeout-profile"
    option. Rather than build another option to this command, I just
    created a generic way to pass options directly to autopilot.

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 10 Mar 2014 18:12:53 +0000

phablet-tools (1.0+14.04.20140227.1-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * Recommend ubuntu-device-flash
  * Adding initial cross build support for click-buddy (LP: #1281234)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 27 Feb 2014 15:28:28 +0000

phablet-tools (1.0+14.04.20140207-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * Allow choosing between aosp and cyanogenmod to init and the branch
  * Updating repo to 1.21 (LP: #1275635)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 07 Feb 2014 15:47:03 +0000

phablet-tools (1.0+14.04.20140122-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * Tool to make it easier to build and test clicks. (LP: #1269163)
  * Removing device serial detection and using the same mechanism as in
    other tools. Removing the unnecessary call to adb root. (LP:
    #1270497)

  [ Francis Ginther ]
  * Allow use of a local package archive when installing packages by
    using 'phablet-config --package-dir'.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 234

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 22 Jan 2014 17:23:59 +0000

phablet-tools (1.0+14.04.20131129-0ubuntu1) trusty; urgency=low

  [ Jean-Baptiste Lallement ]
  * Add script phablet-screenshot to take screenshots on devices running
    Mir. (LP: #1238839)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 230

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 29 Nov 2013 09:47:03 +0000

phablet-tools (1.0+14.04.20131126.1-0ubuntu1) trusty; urgency=low

  [ Chris Wayne ]
  * Add in ability to set locale from phablet-config.

  [ Sergio Schvezov ]
  * phablet-flash: Allow flashing from recovery among others by forcing
    phablet-flash with a flag that the environment meets the
    requirements for a non bootstrap scenario.
  * phablet-flash: Verifying if we really are in recovery before issuing
    recovery commands.

  [ chris.gagnon ]
  * run non-autopilot tests with phablet-test-run using -x flag.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 228

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 26 Nov 2013 18:29:40 +0000

phablet-tools (1.0+14.04.20131108-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * Updating repo tool to 1.20. (LP: #1243386)

  [ Ricardo Salveti de Araujo ]
  * phablet-dev-bootstrap: changing default series to trusty.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 223

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 08 Nov 2013 08:25:05 +0000

phablet-tools (1.0+14.04.20131030.2-0ubuntu1) trusty; urgency=low

  [ Sergio Schvezov ]
  * phablet-flash: Adding a friendly error message when device detection
    fails. (LP: #1228129)
  * Using wait_for_recovery when flashig. (LP: #1215436)
  * Provide some information of revision/version and channel used when
    flashing. (LP: #1233800)
  * phablet-flash: Switching default from saucy to trusty for cdimage-
    touch. (LP: #1245569)
  * phablet-flash: not formatting data when already on a system image
    and not doing a bootstrap and removing support from cdimage ->
    upgradable image backup support. --no-backup is a deprecated option.
    (LP: #1218270)

  [ Andy Doan ]
  * get error information from phablet-config package installation Since
    adb-shell sends the actual stderr via stdout, we were hiding the key
    information to a user if a package failed to install. This prints it
    out for them.
  * remove an incorrect logging statement about rebooting the device.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 220

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 30 Oct 2013 18:06:01 +0000

phablet-tools (1.0+14.04.20131025-0ubuntu1) trusty; urgency=low

  [ Andy Doan ]
  * phablet-click-test-setup: remove python-gi dependency The only test
    needing this is unity8 and we are currently not installing the
    gobject.so file. We'll install the .deb from lp:ubuntu-test-
    cases/touch for now. .
  * phablet-config: reboots aren't required disable and enable
    operations happen instantly without requiring a reboot.
  * phablet-test-run doesn't support click-packages when -o used When
    using the -o option, phablet-test-run fails to cd into the
    /home/phablet/autopilot directory where click-tests live. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 212

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 25 Oct 2013 10:05:46 +0000

phablet-tools (1.0+13.10.20131016.3-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Downloading capability for python 'binaries' for click testing.
  * phablet-flash: Add an option for an alternate server for system
    images.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 208

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 16 Oct 2013 10:46:24 +0000

phablet-tools (1.0+13.10.20131014.1-0ubuntu1) saucy; urgency=low

  [ Jani Monoses ]
  * phablet-dev-bootstrap: no longer rely on bzr to get ubuntu specific
    repos. The ROM manifest now includes git repositories mirroring the
    bzr repos, so it is no longer needed to bzr branch when
    bootstrapping the source tree.

  [ Andy Doan ]
  * add developer-mode subcommand to phablet-config This creates a new
    option that allows easy customization of a syste-image via "phablet-
    config developer-mode". One more PPAs and packages can be given to
    this command. This allows adds some addition logic to
    AndroidBridge.shell so that it can detect errors on the target and
    return them to the caller.
  * add phablet-config option to enable/disable the edges-intro.
  * fix spelling of "writable" in phablet-config.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 205

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 14 Oct 2013 18:06:24 +0000

phablet-tools (1.0+13.10.20131007-0ubuntu1) saucy; urgency=low

  [ Chris Wayne ]
  * Fixes lp:1233489 Correcting the script in phablet-demo-setup to
    ensure theres a space between su - phablet and -c 'manage-address-
    books'. (LP: #1233489)

  [ Andy Doan ]
  * phablet-config: add autopilot option that toggles the apparmor rule
    that allows autopilot to introspect DBUS objects.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 200

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 07 Oct 2013 09:40:38 +0000

phablet-tools (1.0+13.10.20130925.2-0ubuntu1) saucy; urgency=low

  [ Chris Wayne ]
  * Making phablet-demo-setup work on a R/O image. It will also now work
    on an image that doesn't have working networking. Also updated to
    fix contacts and conversations.

  [ Andy Doan ]
  * allow phablet-test-run to collect artifacts upon on error phablet-
    test-run now has the ability to return the error code from
    autopilot. However, when the -o option is used it fails to collect
    the logs because it runs with "set -e". This change allows the
    script to continue and try to collect log files upon an autopilot
    testcase error. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 197

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Sep 2013 18:03:50 +0000

phablet-tools (1.0+13.10.20130925.1-0ubuntu1) saucy; urgency=low

  [ Chris Wayne ]
  * Adding in phablet-timezone-setup.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 194

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 25 Sep 2013 12:54:35 +0000

phablet-tools (1.0+13.10.20130924.1-0ubuntu1) saucy; urgency=low

  [ Andy Doan ]
  * run autopilot from /home/phablet/autopilot.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 192

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 24 Sep 2013 06:04:14 +0000

phablet-tools (1.0+13.10.20130919.3-0ubuntu1) saucy; urgency=low

  [ Andy Doan ]
  * Improve autopilot test output and error handling. adb-shell always
    returns 0, so phablet-test-run always exits with a good return code
    even if there was a failure. This code works around that.
    Additionally, it also adds the ability to get more verbose autopilot
    output by using the "-v" option.
  * allow system-image downloads of specific revision numbers.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 190

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 19 Sep 2013 14:03:50 +0000

phablet-tools (1.0+13.10.20130917.1-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Allowing to boostrap directly into an Ubuntu system. Added a
    wait_for_recovery to avoid timing issues. Added bootstrap option for
    user consistency. (LP: #1226565)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 187

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 17 Sep 2013 22:54:13 +0000

phablet-tools (1.0+13.10.20130916.2-0ubuntu1) saucy; urgency=low

  [ Loïc Minier ]
  * Fix log when downloading sigs.
  * Run pyflakes and pep8 static checkers in test suite and at build
    time; fix a pyflakes warning. .

  [ Sergio Schvezov ]
  * Removing dead code, moving ubuntu_stamp retrieval and minor fixes to
    flashing plain android.
  * Delete new writable flash when flashing ubuntu-system (touch_ro).
  * Updating to reflect changes in update server.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 185

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 16 Sep 2013 21:28:53 +0000

phablet-tools (1.0+13.10.20130904.1-0ubuntu1) saucy; urgency=low

  [ Chris Johnston ]
  * Adds python-lzma as a depends.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 179

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Sep 2013 20:18:35 +0000

phablet-tools (1.0+13.10.20130904-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Using device file from system image server to extract recovery
    instead of downloading the latest from cdimage.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 177

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 04 Sep 2013 15:57:39 +0000

phablet-tools (1.0+13.10.20130830-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Fix arguments for no backup in ubuntu system images.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 175

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 30 Aug 2013 02:06:10 +0000

phablet-tools (1.0+13.10.20130828-0ubuntu1) saucy; urgency=low

  [ Loïc Minier ]
  * Add support for selecting other channels for system-image.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 173

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 28 Aug 2013 22:04:21 +0000

phablet-tools (1.0+13.10.20130827-0ubuntu1) saucy; urgency=low

  [ Andy Doan ]
  * rename phablet-network-setup to phablet-network and do some cleanups
    1) remove the SSH setup options. These aren't going to be supported
    in read-only images 2) add ability to wait for the network to become
    active before continuing.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 171

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 27 Aug 2013 18:04:24 +0000

phablet-tools (1.0+13.10.20130826-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Backup and restore when flashing ubuntu image based upgrade.

  [ Andy Doan ]
  * remove the need for ssh forwarding in phablet-test-run This also
    removes the autopilot setup code since its no longer needed. .

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 169

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 26 Aug 2013 18:05:09 +0000

phablet-tools (1.0+13.10.20130823-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Separating Ubuntu Image Based Upgrade downloads into specific device
    download directories. (LP: #1213177, #1211956, #1215209)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 166

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 23 Aug 2013 06:04:19 +0000

phablet-tools (1.0+13.10.20130821-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Adding tool to provision devices with artifacts for click package
    testing.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 164

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 21 Aug 2013 22:04:31 +0000

phablet-tools (1.0+13.10.20130819-0ubuntu1) saucy; urgency=low

  [ Chris Johnston ]
  * Removes extra forward slash from system image download urls. (LP:
    #1212108)

  [ Evan Dandrea ]
  * Respect the --base-path argument.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 162

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 19 Aug 2013 02:04:19 +0000

phablet-tools (1.0+13.10.20130814-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Don't use file locking and just pass on the exception if the dir
    already exists. (LP: #1211708)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 159

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 14 Aug 2013 06:04:26 +0000

phablet-tools (1.0+13.10.20130813-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * phablet-flash: Locking while directories are created by different
    parallel runs. (LP: #1209408)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 157

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 13 Aug 2013 02:05:36 +0000

phablet-tools (1.0+13.10.20130809.2-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * phablet-flash: Using the correct script for an Image Based Upgrade.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 155

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 Aug 2013 22:04:10 +0000

phablet-tools (1.0+13.10.20130809.1-0ubuntu1) saucy; urgency=low

  [ Ricardo Salveti de Araujo ]
  * phablet-dev-bootstrap: changing default repo to phablet-saucy .

  [ Sergio Schvezov ]
  * phablet-flash: Adding common options to ubuntu-system.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 153

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 Aug 2013 18:04:07 +0000

phablet-tools (1.0+13.10.20130809-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * phablet-flash:
    - Refactoring to accommodate multiple provisioning scenarios.
    - Command line switched into using positional arguments.
    - Adding support to flash community devices.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 150

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 09 Aug 2013 11:13:40 +0000

phablet-tools (0.15+13.10.20130806-0ubuntu1) saucy; urgency=low

  [ Andy Doan ]
  * Add flocking ability to downloader for safer concurrent operations.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 148

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 06 Aug 2013 00:01:55 +0000

phablet-tools (0.15+13.10.20130730-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Adding option to ubuntu bootstrap a relative revision and explicitly
    delete /data/.developer_mode. Cosmetic pep8 fixes as well.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 146

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 30 Jul 2013 21:03:25 +0000

phablet-tools (0.15+13.10.20130723-0ubuntu1) saucy; urgency=low

  [ Rex Tsai ]
  * Fixed the image name typo in bootstrap_files. (LP: #1203652). (LP:
    #1203652)

  [ Alexander Sack ]
  * check device and ip state _after_ sleep in network bringup code.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 144

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 23 Jul 2013 00:02:16 +0000

phablet-tools (0.15+13.10.20130720.1-0ubuntu1) saucy; urgency=low

  [ Stéphane Graber ]
  * Fix broken load_keyring call.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 141

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 20 Jul 2013 14:44:16 +0000

phablet-tools (0.15+13.10.20130720-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Added image signing and master download and copy to device.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 139

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 20 Jul 2013 00:01:58 +0000

phablet-tools (0.15+13.10.20130719.1-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Adding option for image based updates bootstraps.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 137

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Jul 2013 15:26:42 +0000

phablet-tools (0.15+13.10.20130719-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Removing fastboot -w and adding manual cleanups in adb for recovery
    zips with a new --wipe option, bootstrap uses this safe wipe
    mechanism as well. (LP: #1185074)
  * Update tests for upstart sessions.
  * Using DEBIAN_FRONTEND=noninteractive for phablet-network-setup and
    phablet-test-run.

  [ Omer Akram ]
  * Update tests for upstart sessions.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 135

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 19 Jul 2013 00:02:34 +0000

phablet-tools (0.15+13.10.20130718-0ubuntu1) saucy; urgency=low

  [ Mathieu Trudel-Lapierre ]
  * Exclude tests from the files being installed.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 131

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 18 Jul 2013 00:01:58 +0000

phablet-tools (0.15+13.10.20130716-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Initial testing with small code refactors.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 129

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 16 Jul 2013 00:02:40 +0000

phablet-tools (0.15+13.10.20130712-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Allow for installing from pending using --pending and picking up
    current from its link.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 127

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 12 Jul 2013 15:02:41 +0000

phablet-tools (0.15+13.10.20130711-0ubuntu1) saucy; urgency=low

  [ Ricardo Salveti de Araujo ]
  * phablet-dev-bootstrap: don't need to branch hybris anymore.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 125

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Jul 2013 00:01:49 +0000

phablet-tools (0.15+13.10.20130710-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 123

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Jul 2013 06:18:50 +0000

phablet-tools (0.15-0ubuntu1) saucy; urgency=low

  * New release so we can easily identify if version is compatible with the
    flipped image.

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Tue, 09 Jul 2013 20:03:40 -0300

phablet-tools (0.14+13.10.20130704-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * phablet-network-setup: detect flipped or non flipped images and
    deploy the right way.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 121

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 04 Jul 2013 00:01:12 +0000

phablet-tools (0.14+13.10.20130703-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * * flipped images are default. * legacy option added for older
    builds. * if cdimage creates a SHA256SUMS it will be used (Fixes
    lp:1196585). * recreated download code. * created environment module
    to hide all the environment differences. (LP: #1196585)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 119

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 03 Jul 2013 10:11:30 +0000

phablet-tools (0.14+13.10.20130701.1-0ubuntu1) saucy; urgency=low

  [ Jean-Baptiste Lallement ]
  * * phablet-test-run: - Adds support for flipped images to - Fixes
    option -n.

  [ Sergio Schvezov ]
  * phablet-flash: fix list-revisions option.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 117

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 01 Jul 2013 17:04:39 +0000

phablet-tools (0.14daily13.06.22-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 114

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 22 Jun 2013 00:01:06 +0000

phablet-tools (0.14daily13.06.21-0ubuntu1) saucy; urgency=low

  * Updated phabletutils/downloads.py so curl will follow http redirects

 -- Sean Feole <sean.feole@canonical.com>  Fri, 21 Jun 2013 10:37:20 -0400

phablet-tools (0.14daily13.06.20-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 112

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 20 Jun 2013 00:01:14 +0000

phablet-tools (0.14daily13.06.15-0ubuntu1) saucy; urgency=low

  [ Omer Akram ]
  * fix phablet-test-run -n by using the right binary name.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 110

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Sat, 15 Jun 2013 00:02:06 +0000

phablet-tools (0.14daily13.06.12.1-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Enabling -l for latest and grabbing the latest tagged revision by
    default.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 108

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 12 Jun 2013 16:31:27 +0000

phablet-tools (0.14daily13.06.12-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Lowering the space check and adding an option to skip it completely.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 106

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 12 Jun 2013 00:02:07 +0000

phablet-tools (0.14daily13.06.05-0ubuntu1) saucy; urgency=low

  [ Omer Akram ]
  * Fix phablet-test-run -n .
  * Fix autopilot install.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 104

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 05 Jun 2013 00:02:38 +0000

phablet-tools (0.14daily13.05.31-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Adding tool to install demo content.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 101

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 31 May 2013 00:02:02 +0000

phablet-tools (0.14daily13.05.30-0ubuntu1) saucy; urgency=low

  [ Ursula Junque (Ursinha) ]
  * Removing vendors as a required argument as it's not being used right
    now (no support for "breakfast"), so the script can be used to setup
    the environment for any devices.

  [ Mike Carifio ]
  * Remember the user agreed to the license previously so s/he isn't
    continually prompted.

  [ Albert Astals ]
  * Add "" to the -z test This way i can run phablet-network-setup -n
    "/etc/NetworkManager/system-connections/tsdgeos 4" and not get an
    error about phablet-network-setup: line 79: [:
    /etc/NetworkManager/system-connections/tsdgeos: binary operator
    expected.

  [ Matthew Fischer ]
  * Move the disk space check before the download to reduce annoyance
    when you're out of space.

  [ Michael Zanetti ]
  * fix installation of multiple local packages.

  [ Sergio Schvezov ]
  * Initial version of tool to deploy on maguro from jenkins build
  * Adding more options and making script more robust
  * Name change so it's friendlier and identifiable when packaged. Use
    of cyanogen jenkins job by default. Added -l option to retrieve from
    the previous AOSP builds
  * Packaging added New script phablet-jenkins-recovery-deploy to
    download and push recovery Fixed opt in phablet-jenkins-deploy
    script.
  * Moving instead of copying to save a useles delete
  * Making changes to settings for backwards compatibility with UfA.
  * Using the uuid to find the active network instead of ssid. (LP:
    #1159874)
  * Provide options on phablet-flash to download and list available
    releases on cdimage. (LP: #1163277)
  * Artificially waiting 2 seconds before wait-for-device which fails to
    wait if called too soon. (LP: #1176929)
  * Wiping user data on bootstrap Adding fastboot helper Removing the
    need of sudo to fastboot.
  * Don't validate device when bootstraping and move wait logic to only
    happen when needed which was increased to 15.

  [ Alistair Buxton ]
  * Adds an option to only download image files and skip device
    flashing. (LP: #1153346)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 99

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 30 May 2013 00:24:13 +0000

phablet-tools (0.14daily13.05.29.1ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  * Automatic snapshot from revision 98 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 May 2013 16:55:40 +0000

phablet-tools (0.14daily13.05.29ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Sergio Schvezov ]
  * Don't validate device when bootstraping and move wait logic to only
    happen when needed which was increased to 15.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 97 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 29 May 2013 00:02:03 +0000

phablet-tools (0.14daily13.05.22ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Sergio Schvezov ]
  * Wiping only when a recovery file is provided and doing the right thing 
    up for the case when it is not there.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 95 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 22 May 2013 00:01:56 +0000

phablet-tools (0.13daily13.05.16ubuntu.unity.next-0ubuntu1) saucy; urgency=low

  [ Sergio Schvezov ]
  * Wiping user data on bootstrap Adding fastboot helper Removing the
    need of sudo to fastboot.

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 93 (ubuntu-unity/next)

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 20 May 2013 11:18:16 -0300

phablet-tools (0.13daily13.05.10ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Sergio Schvezov ]
  * phablet-network-setup: adding wait before refreshing packagnig cache.
  * phablet-flash sometimes fails saying "error: device not found" (LP:
    #1176929)
  * phablet-network-setup doesn't wait for DNS when installing ssh (LP:
    #1175806)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 91 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Fri, 10 May 2013 00:01:02 +0000

phablet-tools (0.12daily13.05.07ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 88 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Tue, 07 May 2013 00:01:02 +0000

phablet-tools (0.12daily13.04.25ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 85 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 25 Apr 2013 00:01:59 +0000

phablet-tools (0.12-0ubuntu1) raring; urgency=low

  * Allowing alternate settings without a default_series entry to work 

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Wed, 24 Apr 2013 18:30:35 -0300

phablet-tools (0.11daily13.04.24ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 83 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 24 Apr 2013 00:02:12 +0000

phablet-tools (0.11daily13.04.17ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * phablet-flash: 
    - Setting raring as the default.
    - Performing series automagic.

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 22 Apr 2013 17:19:37 -0300

phablet-tools (0.10daily13.04.17ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 81 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 17 Apr 2013 00:01:45 +0000

phablet-tools (0.10daily13.04.15ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * phablet-test-run:
    - New test tool.
  * phablet-network-setup:
    - Installing keys if ssh setup is requested

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 15 Apr 2013 15:22:23 -0300

phablet-tools (0.9daily13.04.15ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 79 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Mon, 15 Apr 2013 00:01:52 +0000

phablet-tools (0.9daily13.04.11ubuntu.unity.next-0ubuntu1) raring; urgency=low

  * Automatic snapshot from revision 77 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Thu, 11 Apr 2013 00:02:04 +0000

phablet-tools (0.9daily13.04.10ubuntu.unity.next-0ubuntu1) raring; urgency=low

  [ Mathieu Trudel-Lapierre ]
  * debian/control:
    - Wrap and sort Depends/Build-Depends, use trailing commas.
    - Add/Update Vcs-Bzr, Vcs-Browser, add comment to developers.
    - Update Maintainer for upload to the archive.
  * debian/rules:
    - Override dh_install to use --fail-missing.

  [ Sergio Schvezov ]
  * Grabbing the latest is now the default (LP: #1163274)
    - The -l option is now deprecated
  * Attempt to start the adb server before executing anything (LP: #1143946) 
  * Don't attempt to re-download if complete (LP: #1163898)

  [ Ubuntu daily release ]
  * Automatic snapshot from revision 75 (ubuntu-unity/next)

 -- Ubuntu daily release <ps-jenkins@lists.canonical.com>  Wed, 10 Apr 2013 00:02:26 +0000

phablet-tools (0.8-0phablet2) raring; urgency=low

  * phablet-flash: fix import of alternate settings to allow a full path
    to a settings file

 -- Alex Chiang <achiang@canonical.com>  Tue, 26 Mar 2013 14:59:44 -0700

phablet-tools (0.8-0phablet1) raring; urgency=low

  [ Ricardo Salveti de Araujo ]
  * Improving the free size check by allowing >= 4 GB

  [ Riccardo Padovani ]
  * Fixing typo error (LP: #1139999)

  [ Alex Chiang ]
  * Extend phablet-tools to be a generic Android ROM flasher

 -- Alex Chiang <achiang@canonical.com>  Thu, 21 Mar 2013 21:15:00 -0700

phablet-tools (0.7-0phablet1) raring; urgency=low

  [ Ricardo Salveti ]
  * Fixing jenkins build id due changes at the stamp file (LP: #1154595)

  [ Alistair Buxton ]
  * Adds an option to only download image files and skip device flashing
    (LP: #1153346)

 -- Ricardo Salveti de Araujo <ricardo.salveti@canonical.com>  Wed, 13 Mar 2013 13:23:53 -0300

phablet-tools (0.6-0phablet1) raring; urgency=low

  [ Sergio Schvezov ]
  * Use wget only for cdimage downloads.
  * Adding option to get latest daily build.
  * Adding conflicting options to conflict group
  * Fixing phablet-flash description. LP: #1132967 

  [ Mike Carifio ]
  * Remember licence agreement.

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Tue, 26 Feb 2013 13:09:38 -0300

phablet-tools (0.5-0phablet2) raring; urgency=low

  [ Michael Zanetti ]
  * Fix phablet-network-setup -i with multiple devices attached

  [ Sergio Schvezov ]
  * Checking if enough free space is found on target device before flash
  * Fixing changelog

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Mon, 25 Feb 2013 11:46:10 -0300

phablet-tools (0.5-0phablet1) raring; urgency=low

  * Adding offline mode.

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Sat, 23 Feb 2013 17:23:22 -0300

phablet-tools (0.4-0phablet4) raring; urgency=low

  * Do not require a vendor branch to initialize

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Fri, 22 Feb 2013 10:58:25 -0300

phablet-tools (0.4-0phablet3) quantal; urgency=low

  * Require >= 4.2.2 version of adb and fastboot for device auth.

 -- Loïc Minier <loic.minier@ubuntu.com>  Thu, 21 Feb 2013 15:54:49 +0100

phablet-tools (0.4-0phablet2) quantal; urgency=low

  * Replace curl with wget to avoid issue when resuming a completed download.

 -- Loïc Minier <loic.minier@ubuntu.com>  Thu, 21 Feb 2013 13:54:00 +0100

phablet-tools (0.4-0phablet1) quantal; urgency=low

  * Fixing issues in phablet-flash
  - Keyboard interrupt doesn't raise exception on license display
  - Checking return code for stamp in appropriate location
  * Adding repo tool
  * Adding a bootstrap tool
  * Adding a networking helper tool

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Thu, 21 Feb 2013 02:08:53 -0300

phablet-tools (0.3-0phablet1) quantal; urgency=low

  * Fixing typo in recovery image for system

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Wed, 20 Feb 2013 04:09:49 -0300

phablet-tools (0.2-0ubuntu1) raring; urgency=low

  * Setup to download from cdimage

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Tue, 19 Feb 2013 18:17:56 -0300

phablet-tools (0.1-0ubuntu1~raring) raring; urgency=low

  * Initial release

 -- Sergio Schvezov <sergio.schvezov@canonical.com>  Tue, 12 Feb 2013 12:58:31 -0300