forked from gentoo-mirror/HomeAssistantRepository
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.txt
2725 lines (2548 loc) · 77.9 KB
/
CHANGELOG.txt
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
2020-02-22 homeassistant-0.106.0_beta2
* bump homematicip-0.10.17
* skip unused, remove olds and bump frontend-20200220.1
* bump py-august-0.14.0
* update simplisafe-python-8.1.1
* bump aio-geojson-client-0.12
* update aio-geojson-geonetnz-quakes-0.12
* update aio-geojson-nsw-rfs-incidents-0.3
* bump pyps4-2ndscreen-1.0.7
* update pwmled-1.5.0 and
* add pigpio/pigpio-1.35 ff.
* remove futile platforms from Pi/Ada libraries
* bump pre-commit-2.1.0
* bump aiounifi-13
* bump bimmer-connected-0.7.1
* bump vallox-websocket-api-2.4.0
* bump zha-quirks-0.0.33
* update python-ecobee-api-0.2.1
* bump pyhomematic-0.1.65
* update requests-2.23.0 from main repo
* bump pyatmo-3.2.4
* update pyvizio-0.1.26
* bump py-august-0.17.0
* bump brother-0.1.6
* add dynalite-0.1.32, bump dynalite-devices-0.1.22
* sort KEYWORDS.unsorted
* fix ebuild.minorsyn, remove leading spaces
* update homeassistant-0.106.0_beta2
2020-02-18 homeassistant-0.105.5
* bump Adafruit-Blinka-3.9.0
* bump adafruit-circuitpython-mcp230xx-2.2.2
* bump aiohue-2.0.0
* bump bimmer-connected-0.7.0
* bump greeneye-monitor-2.0
* bump nsapi-3.0.3
* bump pyEight-0.1.3
* bump youtube_dl-2020.2.16
* bump homeassistant-0.105.5
2020-02-16
* bump simplisafe-python-7.3.0
* bump pymelcloud-2.1.0
* bump pyTibber-0.12.2
* bump apprise-0.8.4
* bump hdate-0.9.5
* add uEagle-0.0.1
* bump python-velbus-2.0.41
* praw fix DESCRIPTION.toolong
2020-02-15 homeassistant-0.105.4
* bump 0.105.4
* re-add old frontend 20200130.3
* fix py-nextbus-0.1.2 SRC_URI
* fix the rest of 75 DESCRIPTION.toolong
* clean old platformio, reformat PYTHON_TARGETS for single-r1
* remove beta flags from good working core modules
* remove beta flags from esphome
2020-02-12
* add dynalite-devices-0.1.17, fix KEYWORDS
* add pymelcloud-2.0.0
* update PyViCare-0.1.7
* update python-velbus-2.0.40
* add pushover_complete-1.1.1 (replaces python-pushover)
* update konnected-1.1.0
* bump pyipma-2.0.3
* update py-august-0.11.0
* add vilfo-api-client-0.3.2
* bump home-assistant-frontend-20200130.3
* bump home-assistant-frontend-20200212.0
* bump py-august-0.12.0
* refresh dev ebuild's 9999 requirements
* updated README.md
* clean up & remove some oldies
* fix some DESCRIPTION.toolong from RepoMan
* update requirements_all.txt
* update directpy-0.6.ebuild requirement
2020-02-11
* clean up PYTHON_COMPAT & KEYWORDS Letters: T-Z
- allow Python 3.8 (currently untested!)
- add ~arm64 support, also untested!
- drop all PYTHON_COMPAT except 3.6-3.8 where seen
* clean up PYTHON_COMPAT & KEYWORDS outside of dev-python
* zigpy-cc-0.1.0 -> https
* got autobahn/autobahn-18.7.1 working on Python 3.7
- bump cbor-1.0.0-r1
- bump py-ubjson-0.14.0
- bump pytrie-0.3.1-r1
- bump wsaccel-0.6.2_p20170108-r1
* bump fail2ban (hack for Python 3.7) to 0.11.1-r3
* update license stats
* update README
* bump ihcsdk-2.6.0
* bump websockets-8.1
* update simplisafe-python-7.1.0
* sort KEYWORDS where complained by repoman
2020-02-10 homeassistant-0.105.3
* bump surepy-0.2.3
* add zigpy-cc-0.1.0
* clean up PYTHON_COMPAT & KEYWORDS Letters: L-S
- allow Python 3.8 (currently untested!)
- add ~arm64 support, also untested!
- drop all PYTHON_COMPAT except 3.6-3.8 where seen
* update homeassistant-0.105.3
2020-02-09
* bump insteonplm-0.16.7
2020-02-08
* bump amcrest-1.5.6
* bump bellows-homeassistant-0.13.2
* bump zigpy-homeassistant-0.13.1
* bump adguardhome-0.4.1
* bump pynws-0.10.4
* add mcstatus-2.3.0
* bump zigpy-homeassistant-0.13.2
* update KEYWORDS in frontend and main Ebuilds
* bump denonavr-0.7.12
* bump py-august-0.8.1
2020-02-06 homeassistant-0.105.2
* bump home-assistant-frontend-20200130.2
* Release homeassistant-0.105.1
* bump aiopylgtv-0.3.3
* add aio-georss-gdacs-0.3
* add sqlitedict-1.6.0
* update homeassistant-0.105.2
* update esphome-9999.ebuild
* clean up PYTHON_COMPAT & KEYWORDS Letters: A-K
- allow Python 3.8 (currently not tested!)
- add ~arm64 support, also untested!
- drop all PYTHON_COMPAT except 3.6-3.8 where seen
2020-02-05 homeassistant-0.105.0
* remove bad email from dev-python/gntp
* Release homeassistant-0.105.0
2020-02-04 homeassistant-0.105.0_beta7
* bump pyvizio-0.1.21
* bump home-assistant-frontend-20200130.1
* bump libpurecool-0.6.1
* did some minor code cleanup
- update year in all copyright headers
- fix some wrong file permissions
- fix mixed tab/space use
- fix metadata.bad (16x) reported by RepoMan
- deprecated inherits: migrate from 'user' to 'GLEP 81'
- in app-misc/homeassistant
- in dev-embedded/esphome
- remove useless blank lines where seen
- short some DESCRIPTION where >80 chars
- clean up ~ operator with a non-zero revision
- clean up = operator with no revision
- fix non standard copyright header
* add a MQTT virtual
* remove dev-python/PyNaCl, is in Gentoo repo
* bump pycryptodome-3.9.6 from Gentoo repo
* update hass-nabucasa requirements
* update snitun-0.20
* bump homeassistant-0.105.0_beta7, remove some oldies
2020-02-03 app-misc/homeassistant-0.105.0_beta6
* update app-misc/homeassistant-0.105.0_beta5
- try out leaving cffi behind (experimental)
- try out leaving NabuCasa behind (problems with python-dateutil) (experimental)
- use EAPI7 acct-user/acct-group for homeassistant
* update app-misc/homeassistant-0.105.0_beta6
* remove broken ruamel-yaml WORKDIR
* bump pydeconz-70
* bump pyvizio-0.1.19
* bump nsapi-3.0.2
* botocore-1.12.252-r1, fixed requirements
2020-02-02
* bump pysignalclirestapi-0.2.4
* bump sendgrid-6.1.1
* bump holidays-0.10.1
* bump discord-py-1.3.1
* bump praw-6.5.1
* bump numpy-1.18.1
* bump pyhomematic-0.1.64
* bump rflink-0.0.51
* add saltbox-0.1.3
* bump alpha-vantage-2.1.3
2020-02-01 homeassistant-0.105.0_beta4
* expanded version patches on ESPHome:
=dev-libs/protobuf-3.10.1
~dev-python/paho-mqtt-1.5.0[${PYTHON_USEDEP}]
=dev-python/pyyaml-5.3[${PYTHON_USEDEP}]
=dev-embedded/platformio-4.1.0
=dev-python/colorlog-4.1.0[${PYTHON_USEDEP}]
* update homeassistant-0.105.0_beta3
* bump pytrafikverket-0.1.6.1
* update pytest-5.3.5
* remove obsolete pytest ebuilds
* bump pyvizio-0.1.16
* bump pysma-0.3.5
* bump zha-quirks-0.0.32
* cleanup app-misc/homeassistant, remove obsolete frontends
* fix numpy-1.17.4.ebuild file perms
* remove herd tag from dev-python/elgato/metadata.xml
* remove bad email from dev-python/hkdf/metadata.xml
* remove dev-python/cryptography, godd verion in main repo now
* clean up broken pkg-config
* bump homeassistant-0.105.0_beta4
* resolved https://github.com/onkelbeh/HomeAssistantRepository/issues/9:
- patched slixmpp-1.4.2-r1 for python_37
- updated KEYWORDS and PYTHON_COMPAT in aioharmony-0.1.13-r1
* rework main ebuilds to use SLOT dependency
* bump total-connect-client-0.50
* bump aiokef-0.2.7
* add bravia-tv-1.0
* update homeassistant-9999.ebuild to match 0.105.0 versions
* fix all ruamel-yaml download sources, update PYTHON_COMPAT and KEYWORDS
* removed cffi requirements in actual homeassistant ebuilds
* re-add (old, but needed) importlib_metadata-1.3.0
* removed asyncio requirement from all aiopylgtv ebuilds, asyncio is included in Python 3.7
* also remove cffi from homeassistant-0.105.0_beta3
* removed obsolete betas from app-misc/homeassistant
2020-01-31 homeassistant-0.105.0.beta2
* update s3transfer-0.2.1
* aiobotocore-0.11.1-r1: fix botocore dependency (experimental)
* update botocore-1.13.14 (from main repo archive) (experimental)
* bump homeassistant-0.105.0_beta2
2020-01-30 homeassistant-0.105.0_beta1
* update homeassistant-0.105.0_beta0, add ~arm64 arch for testing
* add home-assistant-frontend-20200129.0
* remove pyyaml-5.2 and pyyaml-5.1.2.ebuild, they made it into main repo
* update bellows-homeassistant-0.13.1
* update home-assistant-frontend-20200130.0
* bump zigpy-homeassistant-0.13.0
* bump zigpy-xbee-homeassistant-0.9.0
* bump pyps4-2ndscreen-1.0.6
* bump pre-commit-2.0.1
* update homeassistant-0.105.0_beta1
* update numpy-1.17.4
* start preparing for tests with Python 3.8 and/on arm64/Raspberry
2020-01-29
* remove old simplisafe-python ebuilds
* python-synology-0.4.0 bumped
* add python-gammu-2.12 (untested)
* bump proxmoxer-1.0.4
* bump iaqualink-0.3.1
* bump dsmr-parser-0.18
* bump pydeconz-69
* bump abodepy-0.17.0
* bump pyhaversion-3.2.0
* bump haanna-0.14.1
* bump homeassistant-pyozw-0.1.8
* bump pre-commit-2.0.0
* bump pyicloud-0.9.2
* add pyopnsense-0.2.0
* fix some (complained) metadata issues
2020-01-27
* bump huawei-lte-api-1.4.7
* bump teslajsonpy-0.3.0
* bump HAP-python-2.7.0
* add garminconnect-0.1.8
* add simplisafe-python-6.1.0
2020-01-26
* bump aiopylgtv-0.3.2
* bump ihcsdk-2.5.0
* bump androidtv-0.0.39
* bump insteonplm-0.16.6
* bump aiobotocore-0.11.1
2020-01-25
* bump pyvizio-0.1.4
* bump aiopylgtv-0.3.0
* bump hlk-sw16-0.0.8
* bump pydaikin-1.6.2
* add simplehound-0.3
* bump sqlalchemy-1.3.13
* bump emulated-roku-0.2.1
* bump shodan-1.21.3
* add speak2mary-1.4.0
* bump youtube_dl-2020.1.24
* bump PyChromecast-4.1.1
* add spotipy-2.7.1
2020-01-21 homeassistant-0.104.3
* homeassistant-0.104.3
* bump emulated-roku-0.2.0
* bump aiokef-0.2.6
* bump zigpy-zigate-0.5.1
* bump PyYAML-5.3
* bump pyintesishome-1.6
* bump pyipma-2.0.2
2020-01-18 homeassistant-0.104.2
* bump pyvizio-0.1.1
* bump pyatmo-3.2.2
* bump pydeconz-68
* bump frontend-20200108.2
* update homeassistant-0.104.2
* renew README.md
* remove Python 3.6 installation instructions
2020-01-16 homeassistant-0.104.1
* homeassistant-0.104.0
* bump librouteros-3.0.0
* bump pynws-0.10.1
* bump homeassistant-0.104.1
2020-01-15
* bump youtube_dl-2020.1.15
* bump pyvizio-0.0.20
* bump emulated-roku-0.1.9
* bump pyubee-0.8
* bump aiopylgtv-0.2.7
2020-01-14 homeassistant-0.104.0_beta5
* bump fritzconnection-1.2.0
* bump teslajsonpy-0.2.3
* bump aiokef-0.2.5
* bump ring-doorbell-0.6.0
* homeassistant-0.104.0_beta5
2020-01-13
* bump aiopylgtv-0.2.5
* bump oru-0.1.11
* bump nsapi-3.0.0
* bump simplisafe-python-6.0.0
* bump apprise-0.8.3
* bump env-canada-0.0.34
* bump zha-quirks-0.0.31
* bump aiopylgtv-0.2.6
2020-01-12 homeassistant-0.104.0_beta4
* bump huawei-lte-api-1.4.6
* bump ring-doorbell-0.5.0
* homeassistant-0.104.0_beta4
2020-01-11 homeassistant-0.104.0_beta2
* bump praw-6.5.0
* bump shodan-1.21.2
* bump pylast-3.2.0
* bump colorlog-4.1.0
* bump pydocstyle-5.0.2
* bump pyatmo-3.2.0
* publish my current portage files
* homeassistant-0.104.0_beta2
* uri.https: surepy-0.1.10
* add 2 missing sphinx Manifests
* cleanup Manifests, remove obsolete <herd> tags
2020-01-10
* pyhomematic-0.1.63 bumped
* add pyaehw4a1
* update pyvizio-0.0.15
2020-01-08 homeassistant-0.104.0_beta0
* allow some not so dusty libs for esphome
* fix manifest in dev-python/brother
* bump pyRFXtrx-0.25.0
* fix pyyaml-5.2 packet version number
* remove unused frontend-20200107.0
add frontend-20200108.0
* homeassistant-0.104.0_beta0
* patch ESPHome for pyyaml-5.2
2020-01-07
* bump pyvizio-0.0.9
* bump python-velbus-2.0.35
* bump teslajsonpy-0.2.2
* add surepy-0.1.10
* add brother-0.1.4
* update androidtv-0.0.37
* bump python-synology-0.3.0
* bump pyvizio-0.0.11
* bump hass-nabucasa-0.31
* bump androidtv-0.0.38
* bump adb-shell-0.1.1
* bump pyvizio-0.0.12
* add tmb-0.0.4
* bump frontend-20200107.0
* gios-0.0.3 fix license string
* aiokef-0.2.2 add MIT license
* aiopylgtv-0.2.4 add MIT license
* gios-0.0.3.ebuild remove illegal char from DESCRIPTION
2020-01-04
* add elgato-0.1.0
* bump elgato-0.2.0
* bump adguardhome-0.4.0
* bump wled-0.2.1
* bump twentemilieu-0.2.0
* fix esphome manifest
2020-01-03
* add gios-0.0.3
* bump liveboxplaytv-2.0.3
* bump homematicip-0.10.15
* bump pyvlx-0.2.12
* bump sphinx-2.3.1
* bump pyps4-2ndscreen-1.0.4
* bump alarmdecoder-1.13.9
* add aiopylgtv-0.2.4 (replaces pylgtv)
* bump youtube_dl-2020.1.1
* bump zeroconf-0.24.4
* bump python_opendata_transport-0.2.1
* bump pre-commit-1.21.0
* bump env-canada-0.0.31
* bump denonavr-0.7.11
* bump pydeconz-65/66
* add aiokef-0.2.2
* bump pydeconz-67, remove some oldies
* update ring-doorbell-0.2.9
* add sentry-sdk-0.13.5
2019-12-31
* esphome tighten protobuf dependency
* dump rflink-0.0.50
* bump beautifulsoup-4.8.2.ebuild
* bump holidays-0.9.12
* bump ihcsdk-2.4.0
* bump pysmartthings-0.7.0
2019-12-30
* make fail2ban survive the last python upgrade
2019-12-29
* bump homematicip-0.10.14
* bump libpurecool-0.6.0
* bump python-velbus-2.0.32
* add PsychroLib-2.3.0 (dewpoint calculation)
2019-12-28 homeassistant-0.103.5
* bump zeroconf-0.24.3
* bump youtube_dl-2019.12.25
* bump libpyvivotek-0.4.0
* bump teslajsonpy-0.2.1
* bump tuyaha-0.0.5
* bump bellows-homeassistant-0.12.0
* bump zha-quirks-0.0.30
* bump zigpy-homeassistant-0.12.0
* bump zigpy-xbee-homeassistant-0.8.0
* bump shodan-1.21.1
* bump python-qbittorrent-0.4.1
* bump ring-doorbell-0.2.8
* ESPHome: fix Dashboard's Online Check Issue
* update homeassistant-0.103.5
2019-12-24 homeassistant-0.103.4
* bump keba-kecontact-1.0.0
* bump sqlalchemy-1.3.12
* bump envoy-reader-0.11.0
* homeassistant-0.103.4
2019-12-21 homeassistant-0.103.3
* bump python-velbus-2.0.30
* bump zeroconf-0.24.2
2019-12-21 homeassistant-0.103.3
* importlib-metadata is a dupe to importlib_metadata from Gentoo's Repo, dependencies updated
(https://github.com/onkelbeh/HomeAssistantRepository/issues/7)
* clean up KEYWORDS where KEYWORDS.invalid
* homeassistant-0.103.3, new use flags
* update dev ebuild
* remove unneeded old frontends
* homeassistant-0.103.2, new use flags
* remove some older main ebuild
* homeassistant-0.103.1 (unuseable, no frontend/web)
* bump mypy-0.761
* bump ring-doorbell-0.2.5
* bump starlingbank-3.2
* bump simplisafe-python-5.3.6
2019-12-18
* bump envoy-reader-0.10.0
2019-12-17
* bump herepy-2.0.0
* bump shodan-1.21.0
* bump pytest-5.3.2
* bump aiohue-1.10.1
* update zeroconf-0.24.1
* bump adb-shell-0.1.0
* bump androidtv-0.0.36
* update keyring-20.0.0
* update keyrings_alt-3.4.0
* update deps in dev-ebuild, drop old use flag names, replace all with component names
2019-12-12
* bump sphinx-2.2.2
* bump sphinx-autodoc-typehints-1.10.3
* bump tahoma-api-0.0.16
* bump androidtv-0.0.35
* bump PyFlume-0.2.4
* bump venstarcolortouch-0.12
2019-12-12 fail2ban
* patch fail2ban for Python 3.7
* bump pydocstyle-5.0.1
* bump aioambient-1.0.2
* bump python-miio-0.4.8
2019-12-11 homeassistant-0.103.0
* homeassistant-0.103.0
* update license for pysignalclirestapi
* update license information for uvcclient
* fix typo in LICENSE
* update README.md
2019-12-10 homeassistant-0.103.0_beta1
* bump roku-4.0.0
* homeassistant-0.103.0_beta1
2019-12-09
* bump pyyaml-5.2.0
* bump keyring-19.3.0
* bump keyrings_alt-3.2.0
* add pyintesishome-1.5
* bump pyvera-0.3.7
* add pysignalclirestapi-0.1.4
* bump homeassistant-pyozw-0.1.7
* add Signal API useflag
* bump home-assistant-frontend-20191204.1
2019-12-05
* bump pyhomematic-0.1.62
* bump georss-generic-client-0.3 and georss-client-0.10
* needed pytest-5.3.1 already is in main repo
* certifi-2019.9.11 is in main repo, dupe removed
2019-12-05
* bump eternalegypt-0.0.11
* update homeassistant-0.103.0_beta0
2019-12-04
* bump enturclient-0.2.1
* bump psutil-5.6.7
* bump frontend 20191204.0
* bump upcloud-api-0.4.5
2019-12-03
* bump heatmiserV3-1.1.18
* bump homeassistant-pyozw-0.1.6 (w/ compile-test ok)
2019-12-02
* add sucks-0.9.4
* add atenpdu-0.3.0 / atenpdu-0.3.1
* add missing dovado license
* substitute missing license in mycroftapi-2.0
* add license to pyaftership-0.1.2
* fix uri.https (111 cases)
* fix 2 illegal UTF chars in DESCRIPTION
* align 5 license strings
* add discogs-client license "all-rights-reserved"
* add 4 missing DESCRIPTION
2019-12-01
* remove (wrong) double S="${WORKDIR}/home-assistant-${MY_PV}" in dev ebuild
* update androidtv-0.0.34, fix deps and deps of deps
* dicovered that contextvars is only for <= Python 3.6, breaks parts of your system on Python 3.7, but is removable
! reassign release tag for homeassistant-0.102.3 from 756c6522 to current head
2019-11-28
* bump plexwebsocket-0.0.6
* update pymfy-0.7.1
* bump hass-nabucasa-0.30
* bump flake8-3.7.9
* add aio-geojson-nsw-rfs-incidents-0.1
2019-11-27 div updates
* bump huawei-lte-api-1.4.4
* bump apprise-0.8.2
2019-11-26 div updates
* skybellpy-0.5.0.ebuild back on Pypi
* tensorflow should be in sci-libs
* bump aioesphomeapi-2.6.1
* bump discord-py-1.2.5
* bump WazeRouteCalculator-0.12
* dg to YesssSMS-0.4.1
* bump simplisafe-python-5.3.5
* add starline-0.1.3
2019-11-25 homeassistant-0.102.2
* update homeassistant-0.102.2
2019-11-23 (reverse added today)
* hdate-9.3.0 Source back on Pypi again
* add ziggo-mediabox-xl-1.1.0
* add xbee-helper-0.0.7 with XBee-2.3.2
* add pyzabbix-0.7.5, zhong-hong-hvac-1.0.9
* add ya-ma-0.3.8, yeelight-0.5.0, YesssSMS-0.4.2
* add xfinity-gateway-0.0.4, yalesmartalarmclient-0.1.6
* add wirelesstagpy-0.4.0, wunderpy2-0.1.6, xboxapi-0.1.1
* add ibm-watson and ibm-cloud-sdk-core
* add ibmiotf-0.3.4 and ibmiotf-0.4.0
* dg to steamodd-4.21, py-synology-0.2.0, pywemo-0.4.34, synology-srm-0.0.7
* dg tellcore-py-1.1.2, vultr-0.1.2
* add pifacedigitalio-3.0.5, pytouchline-0.7, waterfurnace-1.1.0
* add aiolifx-effects-0.2.2, miflora, volvooncall-0.8.12
* add pyflic-homeassistant-0.4, python-qbittorrent-0.3.1
* dg ritassist-0.9.2, btsmarthub-devicelist-0.1.3, webexteamssdk-1.1.1
* bump youtube_dl-2019.11.22
* bump pypca-0.0.7, now back on pypi
* bump python-juicenet-0.1.6 (own release)
* bump mutagen-1.43.0 from main repo
* bump frontend-20191119.6
* bump shodan-1.20.0, zeroconf-0.24.0, ndms2-client-0.0.11
* add proxmoxer-1.0.3, PyFlume-0.2.1
* add python-vlc, pyW800rf32, waqiasync-1.0.0
* update PyViCare-0.1.2
* dg to vsure-1.5.2, libpyfoscam-1.0, lmnotify-0.0.4
* add vtjp-0.1.14, pyvizio-0.0.7
* bump venstarcolortouch-0.9 and my own release of vultr-1.0.2
* add my own release of uscisstatus-0.1.1
* add upcloud-api-0.4.3
* bump tuyaha-0.0.4
* add PyTransportNSW-0.1.1, TravisPy-0.3.5
* add pytrackr-0.0.5, pytrafikverket-0.1.5.9
* add tp-connected-0.0.4, Js2Py-0.66, pyjsparser-2.7.1
* add VL53L1X2-0.1.5 and smbus2-0.3.0
* add tikteck-0.4, dg to todoist-python-8.0.0
* add pytfiac-0.4, tellsticknet-0.1.2, pythinkingcleaner-0.0.3
* add tensorflow-1.13.2.ebuild, tensorflow-2.0.0.ebuild
* add tellcore-net-0.4, tellcore-py-1.1.3, temperusb-1.5.3
* add pytautulli-0.5.0.ebuild & pytautulli-0.5.1.ebuild
* add tahoma-api-0.0.14, tank_utility-1.4.0
* bump python-tado-0.2.9
* add py-synology-0.3.0, python-synology-0.2.0, synology-srm-0.1.2
* add python_opendata_transport-0.1.4
* add pysupla-0.0.3, swisshydrodata-0.0.3
* add steamodd-4.22, pystiebeleltron-0.0.1, pysuez-0.1.17
* add spotipy-homeassistant-2.4.4, starlingbank-3.1
* update python-songpal-0.11.2
* add socialbladeclient-0.2, solaredge-0.0.2, somfy-mylink-synergy-1.0.6
* add SmartHab-0.20, smhi-pkg-1.0.10, python-sochain-api-0.0.2
* add clx-sdk-xms-1.0.0, skybellpy-0.4.0, smappy-0.2.16
* add Adafruit-GPIO-1.0.3, Adafruit-PureIO-0.2.3, Adafruit-SHT31-1.0.2
* dg pysesame2-1.0.1
* dg eagle200-reader-0.2.1, raspihats-2.2.3, rocketchat-API-0.6.1
* dg proliphix-0.4.1, pyps4-2ndscreen-1.0.1, pyqwikswitch-0.93
* dg oru-0.1.9, panasonic-viera-0.3.2, pencompy-0.0.3, piglow-1.2.4
* dg openhomedevice-0.4.2
* dg pynx584-0.4
* dg py-noaa-0.3.0
* add my own release of niko-home-control-0.2.1
* dg to pynello-2.0.2
* add n26-0.2.7, n26-2.2.0
* add PyMVGLive-1.1.4
* dg to messagebird-1.2.0, mitemp-bt-0.0.1
* dg to py-melissa-climate-2.0.0
* add pylutron-caseta-0.5.0 and pylutron-caseta-0.5.1
* dg to pykwb-0.0.8
* downgrade to PyOTA-2.0.5
* add my own release of iglo-1.2.7
* add hikvision-0.4, hikvision-1.2
* add greenwavereality-0.5.1
* accumulate a 'repaired' gps3-0.33.3
* add my own Pysher-1.0.1
* dg to pygogogate2-0.1.1
* dg to fints-1.0.1
* add feedparser-homeassistant-5.2.2 and sgmllib3k-1.0.0
* add epsonprinter-0.0.9
* add my own release of pypca-0.0.5
* fix pushetta/Manifest
* dg to pyedimax-0.1
* dg to beacontools-1.2.3
* dg to dsmr-parser-0.12
* add my own release of pyW215-0.6.0
* dg to dlipower-0.7.165
* add concord232-0.15.tar (without license)
* add webexteamssdk-1.2
* add btsmarthub-devicelist-0.2.0
* add bthomehub5-devicelist
* add beewi-smartclim-0.0.7
* add pybbox-0.0.5_alpha0
* add Adafruit_BBIO-1.0.0 and Adafruit_BBIO-1.1.1
* dg to pyairvisual-3.0.1
* add pyairvisual-3.0.3
* fix liveboxplaytv Manifest
* add pyalarmdotcom-0.3.2
* add aladdin-connect-0.3
* add pysesame2-1.0.2
* add pysensibo-1.0.3
* sense-energy-0.7.0
* add scsgate-0.1.0
* add satel-integra-0.3.4
* update pysaj-0.0.14
* add pysabnzbd-1.1.0
* add russound-rio-0.1.7.ebuild
* add russound-0.1.9
2019-11-22 (reverse added today)
* add my own hdate-0.9.3
* add my own lupupy-0.0.17
* add lupupy-0.0.18
* add my own python-juicenet-0.1.6
* add rpi-rf-0.9.7
* add pifacecommon-4.2.2
* add pwmled-1.4.1, Adafruit-PCA9685-1.0.1, python-singleton-0.1.2
* add rocketchat-API-0.6.35
* add python-ripple-api-0.0.3
* add ring-doorbell-0.2.3
* downgrade to pyRFXtrx-0.23.0
* add RtmAPI-0.7.2
* add rjpl-0.3.5
* fix pylaunches/Manifest
* add pyrecswitch-1.0.2
* add recollect-waste-1.0.1
* add raspyrfm-client-1.2.8
* add raspihats-2.3.0
* add eagle200-reader-0.2.2
* add raincloudy-0.0.7
* bump pyrainbird-0.4.1
* add radiotherm-2.0.0
* add RachioPy-0.1.3
* add pyqwikswitch-0.94
* add georss-qld-bushfire-alert-client-0.3
* add pushetta-1.0.15
* bump ptvsd-4.2.8
* add pyps4-2ndscreen-1.0.3
* add proliphix-0.5.0
* add prezzibenzina-py-1.1.4
* add pocketcasts-0.1
* add plumlightpad-0.0.11
* add pypjlink2-1.2.0
* add pilight-0.1.1
* add piglow-1.2.5
* add ha-philipsjs-0.0.8
* add pencompy-0.0.4
* add panasonic-viera-0.3.4
* add panacotta-0.1
* added (my own) release of pyowlet-1.0.3
* add orvibo-1.1.1
* add oru-0.1.10
* add openhomedevice-0.6.3
* add openevsewifi-0.4
* add onvif-zeep-async-0.2.0
* add oemthermostat-1.1
* add oasatelematics-0.3
* add pynzbgetapi-0.2.0
* add pynx584-0.5
* add pynut2-2.1.2
* downgrade to nuimo-0.1.0
* add nuimo-0.3.6
* add nsw-fuel-api-client-1.0.10
* add py-noaa-1.0
* add pyrail-0.0.3
* add python-nmap-0.6.1
* update pycarwings2-2.9
* add niluclient-0.1.2
* add niko-home-control-0.2.2 and nclib-0.8.3
* add py-nextbusnext-0.1.4
* add neurio-0.3.1
* add pynetio-0.1.9.1
* bump eternalegypt-0.0.10
* add pynetgear-0.6.1
* add netdata-0.1.2
* add python-nest-4.1.0 and sseclient-py-1.7
* add pynello-2.0.3
* add nsapi-2.7.4
* add pynanoleaf-0.0.5
* add nad_receiver-0.0.11
* add mbddns-0.1.2
* add pymysensors-0.18.0 and get-mac-0.8.1
* add mycroftapi-2.0 (Homepage dead and License missing)
* add mychevy-1.2.0
* add pymsteams-0.1.12
* add python-mpd2-1.0.0
* add motorparts-1.1.0
* add pymonoprice-0.3
* add basicmodem-0.7
* add mitemp-bt-0.0.3 and btlewrap-0.0.8
* add millheater-0.3.4
* downgrade to bluepy-1.1.4 for miflora==0.4.0
* add mficlient-0.3.0
* add datapoint-0.9.5 and datapoint-0.4.3
* add messagebird-1.5.0
* add py-melissa-climate-2.1.3
* add matrix-client-0.3.2 and matrix-client-0.2.0
* add magicseaweed-1.0.3
* add lyft_rides-0.2
* add lw12-0.9.2
* bump luftdaten-0.6.3
* add logi-circle-0.2.2
* add london-tube-status-0.2
* add liveboxplaytv-2.0.2, wikipedia-1.4.0, pyteleloisirs-3.{5,6}
* add pylitejet-0.1.0
* add python-lirc-1.2.3
* add linode-api-4.1.9_beta1
* downgrade to lightwave-0.15
* add aiolifx-0.6.7, bump bitstring-3.1.5-r1 from main repo for compatibility
* add temescal-0.1.tar.gz
* add pylgnetcast-homeassistant-0.2.0
* add pylaunches-0.2.0
* update pylast-3.1.0
* add lmnotify-0.0.6
* update pylacrosse-0.4
* add pykwb-0.0.10
* bump konnected-0.1.5
* add kiwiki-client-0.1.1
* add PyUserInput-0.1.11
* add ndms2-client-0.0.10
* add kaiterra-async-client-0.0.2
* add python-join-api-0.0.4
* add pyitachip2ir-0.0.7
* add prayer_times_calculator-0.0.3
* add pyirishrail-0.0.2
* add pyipma-1.2.1
* add PyOTA-2.1.0, phx-filters-2.0.2, phx-class-registry-3.0.5
* add georss-ign-sismologia-client-0.2
* add (old) iglo-1.2.5
* add pypca-0.0.6 (only current release in tar.gz)
* add rfk101py-0.0.1
* add pyicloud-0.9.1
* add pyialarm-0.3
* add Hydrawiser-0.1.1
* add aiopvapi-1.6.14
* bump aiohue-1.9.2
* add url-normalize-1.4.1 and poetry-0.12.17
* add horimote-0.4.1
* add pyhomeworks-0.0.6
* add HAP-python-2.6.0 and tlslite-ng-0.7.5
* add hlk-sw16-0.0.7
2019-11-21 homeassistant-0.102.1
* bump homeassistant-0.102.1
* bump frontend-20191119.5, remove olds
* bump pyatmo-3.1.0, remove olds
* bump vsure-1.5.4
* add jsonpath-0.{75,82}
* add vultr-1.0.1
* remove annoying version number from maxcube_TypeError_dirty_hack.patch
* fix pyversasense license string
* fix ipify license string
* add rova license string
* downgrade pyserial-3.1.1 from main repo for acer_projector
* add pyaftership-0.1.2
* add alarmdecoder-1.13.4 alarmdecoder-1.13.2
* downgrade to alpha-vantage-2.1.1
* add pyads-3.0.7 & pyads-3.1.2
* asmog-0.0.6 added
* add pydroid-ipcam-0.8 & pydroid-ipcam-1.1
* add anel-pwrctrl-homeassistant-0.0.1
* add apns2 (incomplete missing 'older' depencies)
* add apprise-0.8.1
* add aqualogic-1.0
* downgrade sharp_aquos_rc-0.3.2
* arcam-fmj-0.4.3 & aionursery-0.3.0
* add asterisk_mbox-0.5.0
* add py-august-0.9.0 / py-august-0.7.0
* add avion-0.10, bluepy-1.3.0 & pycryptodomex-3.9.4
* add python-awair-0.0.4
* baidu-aip added
* add i2csense-0.0.4
* downgrade bizkaibus-0.1.1
* blinkt-0.1.0 & blinkt-0.1.2.ebuild added
* add pygatt-4.0.5 & enum-compat-0.0.3
* add bme680-1.0.5
* add braviarc-homeassistant-0.3.7
* add brottsplatskartan-1.0.5 & brottsplatskartan-0.0.1
* add brunt-0.1.3
* py-canary-0.5.0 added
* add csrmesh-0.9.0
* downgrade to pychannels-1.0.0
* downgrade to ciscosparkapi-0.4.2
* add python-clementine-remote-1.0.1 & python-clementine-remote-1.0.3
* add pycfdns-0.0.1
* add coinbase-2.1.0
* bump requests-cache-0.4.13 & requests-cache-0.5.0 from main repo
* add coinmarketcap-5.0.3
* add pycoolmasternet-0.0.4 & pycoolmasternet-0.2.4
* crimereports-1.0.1 added
* decora-0.6 added
* added decora-wifi-1.4
* add schiene-0.23
* add (deprecated) Adafruit-DHT-1.4.0 and Adafruit-DHT-1.4.1
* add python-digitalocean-1.13.2
* add dlipower-1.0.176
* downgrade to directpy-0.5
* add face_recognition-1.2.3 & face_recognition_models-0.3.0
* add dlib-19.18.0
* add pizzapi-0.0.3 and pizzapi-0.0.6
* add pydoods-1.0.2
* add dovado-0.4.1
* dsmr-parser-0.14 and PyCRC-1.21 added
* add pydukeenergy-0.0.6
* add pyebox-1.1.4
* add ecoaliface-0.4.0
* add pycountry-convert (for sucks)
* add sleekxmppfs-1.3.4 (for sucks), sucks cannot be added, there's no proper release.
* add eebrightbox-0.0.4
* downgrade to envirophat-0.0.6
* add beacontools-1.3.1
* add pyedimax-0.2.1
* add pythonegardia-1.0.40
* add pyEmby-1.6
* add enturclient-0.2.0
* add pyenvisalink-4.0
* add epson-projector-0.1.3
* bump PyEssent-0.13
* add evohome-async-0.3.4_beta1
* python-family-hub-local-0.0.2
* add fastdotcom-0.0.3
* add fints-2.2.0, mt_940-4.19.0, sepaxml-2.2.0
* add fixerio-1.0.0_alpha0 & fixerio-0.1.1
* add ritassist-0.9.3 & ciso8601-2.1.2
* add pyflexit-0.3
* bump pyflunearyou-1.0.3
* add flux-led-0.22
* add foobot_async-0.3.1
* update fortiosapi-1.0.1
* downgrade to fortiosapi-0.10.8
* libpyfoscam-1.1 added
* add freesms-0.1.2
* add fritzconnection-0.8.4
* add fritzhome-1.0.5, downgrade to fritzhome-1.0.4
* add afsapi-0.0.4
* add pyfnip-0.2
* add python-gc100-1.0.3_alpha0
* add gearbest-parser-1.0.7
* add geizhals-0.0.9
* add geojson-client-0.4, geojson-2.5.0 and haversine-2.1.2
* add georss-client-0.9 and georss-generic-client-0.2
* add aio-geojson-client-0.11 and aio-geojson-geonetnz-quakes-0.11
* add python-gitlab-1.13.0 & python-gitlab-1.6.0
* add gitterpy-0.1.7
* add Pysher-1.0.4, bump autobahn-18.7.1 from main repo, add txaio-18.7.1 and txaio-18.8.1
* add pygogogate2-0.2.1
* add greeneye-monitor-1.0.1
* add gstreamer-player-1.1.2
* add pygtfs-0.1.5
* add pyCEC-0.4.13
* add heatmiserV3-0.9.1 and heatmiserV3-1.1.9
2019-11-21 homeassistant-0.102.0
* bump homeassistant-0.102.0
* add herepy-0.6.3.1 & herepy-0.6.3.3
2019-11-20 homeassistant-0.102.0_beta3
* add pyversasense-0.0.6
* bump frontend-20191119.0
* add pyRFXtrx-0.24.0
* bump pytest-5.3.0
* rename unused home-assistant-frontend-20191119.0 to current home-assistant-frontend-20191119.1
* add requests to RDEPS of pyAtome-0.1.1
* fix LICENSE string of dev-python/aiobotocore
* rename (again) unused home-assistant-frontend-20191119.1 to current home-assistant-frontend-20191119.2
* bump homeassistant-0.102.0_beta3
* downgrade to some old fashioned google libraries:
- oauth2client-4.0.0
- google-api-python-client-1.6.4
2019-11-18 homeassistant-0.102.0_beta2
* update pyatmo-3.0.1
* bump aioesphomeapi-2.6.0
* copy current ebuild to esphome-9999
* update esphome-1.14.3
* bump libpyvivotek
* bump sphinx-2.1.2
* bump frontend-20191118.0
* bump roombapy-1.4.1
* add rova-0.1.0
* update homeassistant-0.102.0_beta2
* fix typo in boto3-1.9.252.ebuild
* add missing 0.102.0_beta2-maxcube_TypeError_dirty_hack.patch
* update homeassistant-0.102.0_beta2
2019-11-17 add new use flags
* axis: communicating with devices from Axis Communications
* bitcoin: displays various details about the Bitcoin network
* blockchain: displays Bitcoin wallet balances from blockchain.info
* enocean: Support for Enocean devices
* hkavr allows you to control Harman Kardon Network Receivers
* influxdb:transfer sensor data to a local InfluxDB database
* maxcube_hack: apply temporary dirty Patch for broken maxcube-api implementation https://github.com/home-assistant/home-assistant/issues/28811
* add pure-python-adb-0.2.2
2019-11-16
* bump frontend-20191115.0
* bump SQLAlchemy-1.3.11
* bump pyHik-0.2.5
* bump pylint-2.4.4
* bump astroid-2.3.3
* add pyombi-0.1.{5,10}
* bump pyobihai-1.2.0
* add postnl-api-1.2.2 & postnl-api-1.0.2
* add pycomfoconnect-0.3
* add alpha-vantage-2.1.2
* update shodan-1.19.1
* add sharp_aquos_rc-0.4
* add pyalmond-0.0.2
2019-11-15
* add aiobotocore-0.10.1
* update teslajsonpy-0.2.0