summaryrefslogtreecommitdiff
blob: 07beaa900c800de8cb3f221280ef955921236dfd (plain)
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
# ChangeLog for sys-apps/systemd
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.254 2014/05/03 17:35:41 mgorny Exp $

  03 May 2014; Michał Górny <mgorny@gentoo.org> systemd-208-r3.ebuild,
  systemd-212-r4.ebuild, systemd-9999.ebuild:
  Fix MY_UDEVDIR fallback.

*systemd-212-r4 (03 May 2014)

  03 May 2014; Michał Górny <mgorny@gentoo.org> +systemd-212-r4.ebuild,
  -files/204-0001-polkit-Avoid-race-condition-in-scraping-proc.patch,
  -files/204-0002-Add-usr-share-keymaps-to-localectl-supported-locatio.patch,
  -files/204-0003-Allow-tabs-in-environment-files.patch,
  -files/204-0004-Actually-allow-tabs-in-environment-files.patch,
  -files/207-0001-swap-fix-reverse-dependencies.patch,
  -files/207-0002-swap-create-.wants-symlink-to-auto-swap-devices.patch,
  -files/208-0001-Work-around-link-libsystemd-label-to-libsystemd-logi.patch,
  -files/208-0002-Update-Makefile.in.patch, -files/gentoo-run.conf,
  -files/var-lock.mount, -files/var-run.mount, -systemd-208-r2.ebuild,
  -systemd-208.277.ebuild, -systemd-208.9999.ebuild, -systemd-212-r3.ebuild,
  systemd-208-r3.ebuild:
  Revbump for the MY_UDEVDIR fix. Also revbump the stable, reuse 208-r3 for that
  since it differs by Python versions only. Clean old files up.

  03 May 2014; Michał Górny <mgorny@gentoo.org> systemd-208-r2.ebuild,
  systemd-208-r3.ebuild, systemd-208.277.ebuild, systemd-208.9999.ebuild,
  systemd-212-r3.ebuild, systemd-9999.ebuild:
  Fix not respecting MY_UDEVDIR, bug #509454.

  02 May 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Fix the same typo in the live ebuild as well.

*systemd-212-r3 (02 May 2014)

  02 May 2014; Michał Górny <mgorny@gentoo.org> +systemd-212-r3.ebuild,
  -systemd-212-r2.ebuild:
  Fix typo in dbus paths.

  02 May 2014; Mike Gilbert <floppym@gentoo.org> systemd-212-r2.ebuild,
  systemd-9999.ebuild:
  Manually specify dbus paths to avoid using dbus-1.pc, bug 500282 by Benedikt
  Böhm.

  19 Apr 2014; Mike Gilbert <floppym@gentoo.org> -systemd-212-r1.ebuild,
  -systemd-212.ebuild, systemd-212-r2.ebuild, systemd-9999.ebuild:
  Nest gnutls within http use flag, bug 508022 by Alexander Tsoy.

*systemd-212-r2 (12 Apr 2014)

  12 Apr 2014; Mike Gilbert <floppym@gentoo.org>
  +files/212-0002-fsck-Search-for-fsck.type-in-PATH.patch,
  +systemd-212-r2.ebuild:
  Search for fsck.type in PATH, bug 506654 by Jack Todaro.

*systemd-212-r1 (07 Apr 2014)

  07 Apr 2014; Mike Gilbert <floppym@gentoo.org>
  +files/212-0001-sd-rtnl-fix-off-by-one.patch, +systemd-212-r1.ebuild:
  Backport crashfix in networkd, bug 507044 by Alexander Tsoy.

  06 Apr 2014; Pacho Ramos <pacho@gentoo.org> -systemd-204-r1.ebuild,
  -systemd-211.ebuild, metadata.xml:
  Drop old

  31 Mar 2014; Mike Gilbert <floppym@gentoo.org> systemd-212.ebuild,
  systemd-9999.ebuild:
  Check for CONFIG_NET_NS, bug 506244 by Alexander Bartha.

  29 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-212.ebuild:
  Require kernel 3.7 temporarily due to unconditional use of newer defines.

  28 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-212.ebuild,
  systemd-9999.ebuild:
  Fix gnutls dep wrt bug #506060.

*systemd-212 (27 Mar 2014)

  27 Mar 2014; Michał Górny <mgorny@gentoo.org> +systemd-212.ebuild:
  Version bump.

  24 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Update following upstream changes. GnuTLS support has been added, and tcp-
  wrappers support has been removed.

  12 Mar 2014; Mike Gilbert <floppym@gentoo.org> systemd-211.ebuild:
  Copy ROOTPREFIX logic from the live ebuild.

*systemd-211 (12 Mar 2014)

  12 Mar 2014; Michał Górny <mgorny@gentoo.org> +systemd-211.ebuild,
  -systemd-210.9999.ebuild, -systemd-210.ebuild:
  Version bump. Drop 210* due to security issues.

*systemd-208.277 (04 Mar 2014)

  04 Mar 2014; Michał Górny <mgorny@gentoo.org> +systemd-208.277.ebuild,
  systemd-208.9999.ebuild, systemd-210.9999.ebuild:
  Snapshot a new stable branch 208 version.

  03 Mar 2014; Mike Gilbert <floppym@gentoo.org> systemd-210.9999.ebuild,
  systemd-9999.ebuild:
  Pass --with-rootprefix if the ROOTPREFIX envvar is set. This should be
  considered experimental and is a convenience for developers only.

  02 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-210.9999.ebuild,
  systemd-210.ebuild, systemd-9999.ebuild:
  Disable auto-appending -flto since it slows down build for low-end distcc
  users, and causes issues with QA checks, bug #502950.

  02 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-208.9999.ebuild,
  systemd-210.9999.ebuild, systemd-210.ebuild, systemd-9999.ebuild:
  Call gtkdocize in live ebuilds only.

*systemd-208.9999 (02 Mar 2014)
*systemd-210.9999 (02 Mar 2014)

  02 Mar 2014; Michał Górny <mgorny@gentoo.org> +systemd-208.9999.ebuild,
  +systemd-210.9999.ebuild:
  Add stable branch git ebuilds, bug #503172.

  02 Mar 2014; Mike Gilbert <floppym@gentoo.org> systemd-210.ebuild,
  systemd-9999.ebuild:
  Copy 80-net-name-slot.rules migration code from sys-fs/udev.

  01 Mar 2014; Michał Górny <mgorny@gentoo.org> systemd-204-r1.ebuild,
  systemd-208-r2.ebuild, systemd-208-r3.ebuild:
  Update libgcrypt dep to use slot :0.

  26 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-210.ebuild,
  systemd-9999.ebuild:
  lxml is only needed at build time.

  25 Feb 2014; Michał Górny <mgorny@gentoo.org> systemd-210.ebuild,
  systemd-9999.ebuild:
  Fix installing compat pkg-config files for multilib.

*systemd-210 (25 Feb 2014)

  25 Feb 2014; Michał Górny <mgorny@gentoo.org> +systemd-210.ebuild,
  systemd-9999.ebuild:
  Version bump, bug #501860.

  25 Feb 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Install compat pkg-config files only, and not compat libs. Bump subslot
  appropriately.

  24 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  We no longer need libxslt and docbook for non-LIVE builds.

  24 Feb 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Bump required glibc version, remove second (redundant) --enable-compat-libs.

  24 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Fix build with USE=python (missing dep on lxml).

  23 Feb 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
  systemd-9999.ebuild:
  Remove networkd use flag in favor of a runtime switch.

  22 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Add build-time dep on docbook-xml-dtd:4.5, thanks to ssuomien.

  21 Feb 2014; Jason A. Donenfeld <zx2c4@gentoo.org> metadata.xml,
  systemd-9999.ebuild:
  Introduce networkd use flag.

  21 Feb 2014; Jason A. Donenfeld <zx2c4@gentoo.org> systemd-9999.ebuild:
  Compat libs for 9999.

  21 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Disable kdbus by default to match upstream behavior.

  20 Feb 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
  systemd-9999.ebuild:
  Add optional dependency on sys-libs/libseccomp.

  20 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Define src_prepare outside of #if LIVE. Replace '# if' in a random comment so
  as not to confuse unifdef.

  16 Feb 2014; Mike Gilbert <floppym@gentoo.org> systemd-208-r3.ebuild,
  systemd-9999.ebuild:
  Enabled python3 support, bug 498190.

  02 Feb 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Stable for alpha, wrt bug #487344

  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Stable for ia64, wrt bug #487344

  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Stable for sparc, wrt bug #487344

  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Stable for ppc64, wrt bug #487344

  26 Jan 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Stable for ppc, wrt bug #487344

*systemd-208-r3 (20 Jan 2014)

  20 Jan 2014; Mike Gilbert <floppym@gentoo.org> +systemd-208-r3.ebuild,
  systemd-208-r2.ebuild, systemd-9999.ebuild:
  Replace dialout with uucp group in udev rules, bug 463376.

  19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> systemd-208-r2.ebuild:
  Add ~sparc, wrt bug #478076

  07 Jan 2014; Pacho Ramos <pacho@gentoo.org> systemd-208-r2.ebuild,
  systemd-9999.ebuild:
  Keyword on ia64 (#478076 by Emeric Maschino)

  31 Dec 2013; Mike Gilbert <floppym@gentoo.org> metadata.xml,
  systemd-9999.ebuild:
  Add a use flag to enable KDBUS by default; this may be enabled unconditionally
  in future revisions.

  31 Dec 2013; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Stub-out docs/gtk-doc.make if we are not building docs, thanks to David
  Heidelberger on bug 496310.

  28 Dec 2013; Pacho Ramos <pacho@gentoo.org> -systemd-204-r2.ebuild,
  -systemd-204-r3.ebuild, -systemd-207-r2.ebuild, -systemd-208-r1.ebuild,
  systemd-208-r2.ebuild, systemd-9999.ebuild:
  Update config checks also solving bug #493874 by Alexey Vladykin, drop old.

  08 Dec 2013; Markus Meier <maekke@gentoo.org> systemd-208-r2.ebuild:
  arm stable, bug #487344

  04 Dec 2013; Mike Gilbert <floppym@gentoo.org> systemd-208-r2.ebuild,
  systemd-9999.ebuild:
  Move udev-init-scripts to PDEPEND to break circular dep.

  02 Dec 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Disable maintainer mode which now gets enabled by default.

  01 Dec 2013; Johannes Huber <johu@gentoo.org> systemd-208-r2.ebuild:
  x86 stable, bug #487344

  25 Nov 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Make dbus a PDEP + test dep since upstream no longer links to the library. Add
  BUILT_SOURCES build to fix bug #492370.

  24 Nov 2013; Pacho Ramos <pacho@gentoo.org> systemd-208-r2.ebuild:
  amd64 stable, bug #487344

  16 Nov 2013; Michał Górny <mgorny@gentoo.org> systemd-208-r2.ebuild,
  systemd-9999.ebuild:
  Force non-parallel install to avoid triggering automake bugs, bug #491398.

  13 Nov 2013; Matt Turner <mattst88@gentoo.org> systemd-208-r2.ebuild:
  Added ~alpha, bug 478076.

*systemd-204-r3 (11 Nov 2013)

  11 Nov 2013; Michał Górny <mgorny@gentoo.org> +systemd-204-r3.ebuild,
  systemd-204-r1.ebuild, systemd-204-r2.ebuild:
  Backport multilib support to -204 as requested by lxnay. Add missing fcaps
  inherit.

  04 Nov 2013; Michał Górny <mgorny@gentoo.org> systemd-204-r1.ebuild,
  systemd-208-r2.ebuild, systemd-9999.ebuild:
  Suggest disabling GRKERNSEC_PROC to make it possible to run systemd on
  Hardened, bug #490366.

  18 Oct 2013; Mike Gilbert <floppym@gentoo.org> systemd-204-r1.ebuild,
  systemd-204-r2.ebuild:
  Don't die in pkg_pretend if the user has manually removed the systemd
  compatibility symlink. Patch by Łukasz Stelmach. Bug 487232.

  17 Oct 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Bump kmod dep following upstream changes. Remove python-config hack wrt bug
  #488396. Add slot operator deps. Switch to git-r3.

  14 Oct 2013; Michał Górny <mgorny@gentoo.org> systemd-207-r2.ebuild,
  systemd-208-r1.ebuild, systemd-208-r2.ebuild, systemd-9999.ebuild:
  Explicitly call einstalldocs in multilib_src_install_all() to accomodate bug
  #483304.

  13 Oct 2013; Mike Gilbert <floppym@gentoo.org> systemd-208-r2.ebuild,
  systemd-9999.ebuild:
  Depend on udev-init-scripts unconditionally, bug 487080.

*systemd-208-r2 (08 Oct 2013)

  08 Oct 2013; Michał Górny <mgorny@gentoo.org> +systemd-208-r2.ebuild:
  Backport commits tagged by upstream as bugfixes.

*systemd-204-r2 (05 Oct 2013)

  05 Oct 2013; Pacho Ramos <pacho@gentoo.org> +systemd-204-r2.ebuild:
  Include multiple backports with tons of fixes from newer versions, thanks to
  Fedora systemd maintainers for their work

*systemd-9999 (04 Oct 2013)

  04 Oct 2013; Michał Górny <mgorny@gentoo.org> +systemd-9999.ebuild,
  -systemd-9999-r1.ebuild:
  Move the live ebuild back to version 9999.

  02 Oct 2013; Michał Górny <mgorny@gentoo.org> systemd-208-r1.ebuild:
  Sync SRC_URI with udev.

*systemd-208-r1 (02 Oct 2013)

  02 Oct 2013; Michał Górny <mgorny@gentoo.org> +systemd-208-r1.ebuild,
  -systemd-208.ebuild:
  Revbump the ebuild and update the checksums for the new -208 tarball. We love
  people who re-release the same version.

*systemd-208 (02 Oct 2013)

  02 Oct 2013; Michał Górny <mgorny@gentoo.org>
  +files/208-0001-Work-around-link-libsystemd-label-to-libsystemd-logi.patch,
  +files/208-0002-Update-Makefile.in.patch, +systemd-208.ebuild,
  systemd-9999-r1.ebuild:
  Version bump. Fix linking issues, bug #479038.

  29 Sep 2013; Michał Górny <mgorny@gentoo.org> -systemd-204.ebuild:
  Remove old, vulnerable version.

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204-r1.ebuild:
  Stable for ppc64, wrt bug #485546

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204-r1.ebuild:
  Stable for ppc, wrt bug #485546

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204-r1.ebuild:
  Stable for x86, wrt bug #485546

  28 Sep 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204-r1.ebuild:
  Stable for amd64, wrt bug #485546

  26 Sep 2013; Mike Gilbert <floppym@gentoo.org> systemd-204-r1.ebuild,
  systemd-207-r2.ebuild, systemd-9999-r1.ebuild:
  Move gentoo-systemd-integration to PDEPEND, bug 486112.

  26 Sep 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204-r1.ebuild:
  Stable for arm, wrt bug #485546

*systemd-207-r2 (22 Sep 2013)
*systemd-204-r1 (22 Sep 2013)

  22 Sep 2013; Michał Górny <mgorny@gentoo.org>
  +files/204-0001-polkit-Avoid-race-condition-in-scraping-proc.patch,
  +files/204-0002-Add-usr-share-keymaps-to-localectl-supported-locatio.patch,
  +files/204-0003-Allow-tabs-in-environment-files.patch,
  +files/204-0004-Actually-allow-tabs-in-environment-files.patch,
  +systemd-204-r1.ebuild, +systemd-207-r2.ebuild,
  -files/206-0001-logind-update-state-file-after-generating-the-sessio.patch,
  -files/206-0002-Add-usr-share-keymaps-to-localectl-supported-locatio.patch,
  -files/206-0003-tmpfiles-support-passing-prefix-multiple-times.patch,
  -files/206-0004-tmpfiles-introduce-exclude-prefix.patch,
  -files/206-0005-tmpfiles-setup-exclude-dev-prefixes-files.patch,
  -files/206-0006-allow-tabs-in-configuration-files.patch,
  -files/206-0007-allow-tabs-in-configuration-files2.patch, -systemd-201.ebuild,
  -systemd-206-r3.ebuild, -systemd-206-r4.ebuild, -systemd-206-r5.ebuild,
  -systemd-207-r1.ebuild, -systemd-207.ebuild:
  Backport the patch for security bug #485546. Backport patches from -207 to to-
  go-stable -204-r1. Use gentoo-systemd-integration and locale migration in
  -204-r1. Remove old.

*systemd-207-r1 (18 Sep 2013)

  18 Sep 2013; Michał Górny <mgorny@gentoo.org>
  +files/207-0001-swap-fix-reverse-dependencies.patch,
  +files/207-0002-swap-create-.wants-symlink-to-auto-swap-devices.patch,
  +systemd-207-r1.ebuild:
  Backport swap activation patches, bug #484998. Ensure that locale.conf is
  respected and used consistently by systemd & OpenRC, bug #465468.

  18 Sep 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Handle locale.conf/env.d wrt bug #465468.

  14 Sep 2013; Mike Gilbert <floppym@gentoo.org> systemd-207.ebuild,
  systemd-9999-r1.ebuild:
  Replace --without-python with --disable-python-devel for non-native abis, bug
  484934.

*systemd-207 (14 Sep 2013)

  14 Sep 2013; Michał Górny <mgorny@gentoo.org> +systemd-207.ebuild,
  systemd-9999-r1.ebuild:
  Version bump. Update kernel checks. Do not check for HOTPLUG on 3.7+ wrt bug
  #476464. Run tests for native ABI only.

*systemd-206-r5 (14 Sep 2013)

  14 Sep 2013; Pacho Ramos <pacho@gentoo.org>
  +files/206-0006-allow-tabs-in-configuration-files.patch,
  +files/206-0007-allow-tabs-in-configuration-files2.patch,
  +systemd-206-r5.ebuild:
  Allow tabs in environment files (#481554 by dolphinling)

  13 Sep 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Sync the live ebuild with latest changes.

*systemd-206-r4 (11 Sep 2013)

  11 Sep 2013; Michał Górny <mgorny@gentoo.org> +systemd-206-r4.ebuild:
  Introduce -r4 that uses separate sys-apps/gentoo-systemd-integration.
  Introduces local.d generator.

  06 Sep 2013; Pacho Ramos <pacho@gentoo.org> systemd-204.ebuild,
  systemd-206-r3.ebuild:
  Check for TMPFS_POSIX_ACL when needed (#482336#c24 by Alexander Tsoy)

  28 Aug 2013; Pacho Ramos <pacho@gentoo.org> systemd-204.ebuild,
  systemd-206-r3.ebuild:
  Update message about /etc/mtab link (#482786), show message about systemd-ui
  only when package is not installed (#480606)

  11 Aug 2013; Mike Gilbert <floppym@gentoo.org> systemd-206-r3.ebuild,
  systemd-9999-r1.ebuild:
  Call udevadm control --reload in pkg_postinst.

  10 Aug 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Enable building multilib libgudev.

  10 Aug 2013; Michał Górny <mgorny@gentoo.org> systemd-206-r3.ebuild,
  systemd-9999-r1.ebuild:
  Add missing prune_libtool_files call.

  09 Aug 2013; Michał Górny <mgorny@gentoo.org> -systemd-206-r1.ebuild,
  systemd-206-r3.ebuild, systemd-9999-r1.ebuild:
  Make polkit a PDEP to avoid circular dependency. Bug #480328.

  09 Aug 2013; Michał Górny <mgorny@gentoo.org> systemd-206-r3.ebuild,
  systemd-9999-r1.ebuild:
  Work-around 32-bit dbus check (it is not used by the libraries).

*systemd-206-r3 (09 Aug 2013)

  09 Aug 2013; Michał Górny <mgorny@gentoo.org> +systemd-206-r3.ebuild,
  -systemd-206-r2.ebuild:
  Fix installing multilib pkg-config files.

  08 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> systemd-206-r2.ebuild,
  systemd-9999-r1.ebuild:
  Raise the emul-linux-x86-baselibs block from -r7 to -r8 in order to avoid
  file collision w/ libsystemd-daemon wrt #480274 by "nE0sIghT"

*systemd-206-r2 (08 Aug 2013)

  08 Aug 2013; Michał Górny <mgorny@gentoo.org> +systemd-206-r2.ebuild,
  systemd-9999-r1.ebuild:
  Enable partial multilib support wrt bug #479620.

  07 Aug 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Stable for x86, wrt bug #477910

  04 Aug 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Stable for ppc64, wrt bug #477910

  04 Aug 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Sync kmod dep in the live ebuild.

  03 Aug 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Update zsh-completion install after upstream cleanup.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org>
  -files/191-0001-Disable-udev-targets-for-udev-190.patch,
  -files/196-0001-Disable-udev-targets.patch,
  -files/196-0002-Don-t-fail-with-missing-gcrypt-macros.patch,
  -files/197-0001-Disable-udev-targets.patch,
  -files/198-0001-Disable-udev-targets.patch,
  -files/198-0002-build-sys-break-dependency-loop-between-libsystemd-i.patch,
  -files/198-0003-build-sys-link-libsystemd-login-also-against-libsyst.patch,
  -files/199-firmware.patch, -files/203-systemd-sleep.patch:
  Drop old patches.

*systemd-206-r1 (31 Jul 2013)

  31 Jul 2013; Michał Górny <mgorny@gentoo.org>
  +files/206-0001-logind-update-state-file-after-generating-the-sessio.patch,
  +files/206-0002-Add-usr-share-keymaps-to-localectl-supported-locatio.patch,
  +files/206-0003-tmpfiles-support-passing-prefix-multiple-times.patch,
  +files/206-0004-tmpfiles-introduce-exclude-prefix.patch,
  +files/206-0005-tmpfiles-setup-exclude-dev-prefixes-files.patch,
  +systemd-206-r1.ebuild, -systemd-205.ebuild, -systemd-206.ebuild,
  systemd-9999-r1.ebuild:
  Fix gnome-shell<->logind race condition, bug #477954. Fix missing keymap
  location, bug #474946. Fix broken device permissions due to static-nodes, bug
  #478198. Check for CONFIG_AUDITSYSCALL, bug #478032. Add >=binutils-2.32.1
  dep, bug #479038.

  31 Jul 2013; Michał Górny <mgorny@gentoo.org> systemd-9999-r1.ebuild:
  Finally drop compatibility symlinks. This time for real.

  30 Jul 2013; Michał Górny <mgorny@gentoo.org> systemd-206.ebuild,
  systemd-9999-r1.ebuild:
  Bump kernel dep to 3.0. Reported by ssuominen, thanks.

*systemd-9999-r1 (29 Jul 2013)

  29 Jul 2013; Michał Górny <mgorny@gentoo.org> +systemd-9999-r1.ebuild,
  -systemd-9999.ebuild:
  Move the Gentoo-specific files from the live ebuild to gentoo-systemd-
  integration. Revbump to ensure smooth migration.

  28 Jul 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Stable for arm, wrt bug #477910

  28 Jul 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Stable for ppc, wrt bug #477910

  27 Jul 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Stable for amd64, wrt bug #477910

  24 Jul 2013; Mike Gilbert <floppym@gentoo.org> systemd-204.ebuild:
  Add missing inherit bash-completion-r1, bug 478038.

  23 Jul 2013; Michał Górny <mgorny@gentoo.org> systemd-206.ebuild:
  Bump kmod dep per bug #477886.

*systemd-206 (23 Jul 2013)

  23 Jul 2013; Michał Górny <mgorny@gentoo.org> +systemd-206.ebuild,
  systemd-9999.ebuild:
  Version bump. Drop USE=keyword as it was replaced upstream by hwdb magic.

  16 Jul 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-204.ebuild, systemd-205.ebuild, systemd-9999.ebuild:
  Use get_bashcompdir for future bash-completion compat.

  14 Jul 2013; Mike Gilbert <floppym@gentoo.org> systemd-205.ebuild,
  systemd-9999.ebuild:
  Set file capabilities on systemd-detect-virt, bug 468876 by Michał
  Bartoszkiewicz.

*systemd-205 (05 Jul 2013)

  05 Jul 2013; Michał Górny <mgorny@gentoo.org> +systemd-205.ebuild,
  -systemd-197-r1.ebuild, -systemd-200-r1.ebuild, -systemd-202.ebuild,
  -systemd-203-r1.ebuild, systemd-9999.ebuild:
  Version bump. Drop USE=static-libs since it is no longer supported. Drop old.

  04 Jul 2013; Agostino Sarubbo <ago@gentoo.org> systemd-201.ebuild:
  Stable for ppc64, wrt bug #465870

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> systemd-201.ebuild:
  Stable for x86, wrt bug #465870

  30 Jun 2013; Agostino Sarubbo <ago@gentoo.org> systemd-201.ebuild:
  Stable for amd64, wrt bug #465870

  20 Jun 2013; Agostino Sarubbo <ago@gentoo.org> systemd-204.ebuild:
  Add ~ppc, wrt bug #465870

  25 May 2013; Agostino Sarubbo <ago@gentoo.org> systemd-201.ebuild:
  Stable for arm, wrt bug #465870

  14 May 2013; Mike Gilbert <floppym@gentoo.org> systemd-201.ebuild,
  systemd-202.ebuild, systemd-203-r1.ebuild, systemd-204.ebuild,
  systemd-9999.ebuild:
  Depend on app-text/docbook-xml-dtd:4.2, bug 469668 by Alexander Tsoy.

*systemd-204 (13 May 2013)

  13 May 2013; Michał Górny <mgorny@gentoo.org> +systemd-204.ebuild:
  Version bump.

*systemd-203-r1 (08 May 2013)

  08 May 2013; Mike Gilbert <floppym@gentoo.org> +files/203-systemd-sleep.patch,
  +systemd-203-r1.ebuild, -systemd-203.ebuild:
  Apply upstream fix for systemd-sleep, bug 468998 by Paul Volkov.

*systemd-203 (07 May 2013)

  07 May 2013; Michał Górny <mgorny@gentoo.org> +systemd-203.ebuild,
  systemd-9999.ebuild:
  Version bump. Simplify .la removal. Drop init= compatibility symlinks.

*systemd-202 (27 Apr 2013)

  27 Apr 2013; Michal Gorny <mgorny@gentoo.org> +systemd-202.ebuild,
  systemd-9999.ebuild:
  Version bump. Use new --disable-tests option with USE=-test.

  27 Apr 2013; Michal Gorny <mgorny@gentoo.org> systemd-200-r1.ebuild,
  systemd-201.ebuild, systemd-9999.ebuild:
  Enforce bash-completion dir to avoid automagic dependency on bash-completion.
  Fixes bug #467428.

  19 Apr 2013; Mike Gilbert <floppym@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Skip python-single-r1_pkg_setup when python is disabled, bug 466408.

  18 Apr 2013; William Hubbs <williamh@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  revert the check for CONFIG_FW_LOADER_USER_HELPER per mgorny since we force
  the firmware-loader use flag on.

  18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Remove CONFIG_ wrt firmware loading, it was unnecessary.

  18 Apr 2013; Michał Górny <mgorny@gentoo.org> -systemd-198-r1.ebuild,
  metadata.xml:
  The required udev version has been removed.

  18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Fix mistyped gcc version number.

  18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Update the firmware-loader CONFIG_CHECK for 3.9 kernel. Thanks to WilliamH for
  noticing.

  18 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Add a gcc version check wrt bug #466160.

  17 Apr 2013; Michał Górny <mgorny@gentoo.org> metadata.xml,
  systemd-201.ebuild, systemd-9999.ebuild:
  Introduce USE=firmware-loader, as suggested by williamh. Check whether kernel
  supports loading firmwares and warn properly.

  17 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Fix duplicated --enable-polkit.

  17 Apr 2013; Michał Górny <mgorny@gentoo.org> metadata.xml,
  systemd-201.ebuild, systemd-9999.ebuild:
  Add USE=keymap to match udev ebuild.

  16 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Put polkit under a USE flag since people may want to disable the whole policy
  magic.

  16 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Perform kernel checks in pkg_pretend() to warn the user early. Use MERGE_TYPE
  as an efficient replacement for pkg_preinst() implications.

  16 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild,
  systemd-9999.ebuild:
  Re-enable IMA, my mistake.

  15 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-201.ebuild:
  Backport quota dep removal and configure cleanup from -9999. No need to
  revbump since the changes affect build process only.

  15 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Remove redundant configure args. Disable deps which are not supported in
  Gentoo and therefore can result in automagic deps.

  15 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Inline paths to quota tools and drop the dep.

*systemd-201 (14 Apr 2013)

  14 Apr 2013; Michał Górny <mgorny@gentoo.org> +systemd-201.ebuild,
  -systemd-198-r5.ebuild:
  Version bump. Mostly bugfixes and minor features in the new release.

  06 Apr 2013; Mike Gilbert <floppym@gentoo.org> metadata.xml,
  systemd-200-r1.ebuild, systemd-9999.ebuild:
  Add openrc use flag to control dependency on sys-fs/udev-init-scripts, bug
  464502.

  05 Apr 2013; Michał Górny <mgorny@gentoo.org> systemd-200-r1.ebuild,
  systemd-9999.ebuild:
  Add a dependency on udev-init-scripts, to avoid breaking OpenRC installs if
  the package got unmerged.

*systemd-200-r1 (02 Apr 2013)

  02 Apr 2013; Michał Górny <mgorny@gentoo.org> +systemd-200-r1.ebuild,
  -systemd-200.ebuild, systemd-9999.ebuild:
  Move udevadm temporarily to /bin as that is the official sys-fs/udev location
  for longer time than I expected.

  31 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-200.ebuild,
  systemd-9999.ebuild:
  Obtain PAM moduledir from pam.eclass.

  30 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-200.ebuild,
  systemd-9999.ebuild:
  Work around bug 463846 by exporting CC.

  30 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-200.ebuild,
  systemd-9999.ebuild:
  Copy last two changes from live ebuild.

  30 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Update hwids version per ssuominen.

  30 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Move hwids to PDEPEND. Call udevadm to update the hwdb in pkg_postinst. Copied
  from the udev package.

  29 Mar 2013; Michał Górny <mgorny@gentoo.org> -systemd-199.ebuild:
  Drop the unnecessary mid-version.

*systemd-200 (29 Mar 2013)

  29 Mar 2013; Michał Górny <mgorny@gentoo.org> +systemd-200.ebuild,
  systemd-9999.ebuild:
  Move the #ifdefs around a bit and remove double deps from the live ebuild.
  Bump to 200.

  29 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Move udev executables to rootfs to avoid breaking the few systems which
  install systemd but aren't prepared for it. Symlink to the new locations for
  compat.

  28 Mar 2013; Mike Gilbert <floppym@gentoo.org> +files/199-firmware.patch,
  systemd-199.ebuild:
  Add patch to resolve issue with firmware built-in, bug 463604.

*systemd-199 (27 Mar 2013)

  27 Mar 2013; Michał Górny <mgorny@gentoo.org> +systemd-199.ebuild:
  Version bump.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Move nss_myhostname back to /usr -- it seems that nss handles this well.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Enable EFI support unconditionally since it does not introduce any deps.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Warn users who use compatibility symlinks for init=.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Depend on baselayout to handle /run. Remove old warnings.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198-r5.ebuild,
  systemd-9999.ebuild:
  Use get_udevdir rather than the deprecated one. Support installing static-libs
  wrt bug #463250. Disable SysV compat wrt bug #463270.

  26 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198-r5.ebuild,
  systemd-9999.ebuild:
  Install udev to current udevdir to avoid breakages.

*systemd-198-r5 (25 Mar 2013)

  25 Mar 2013; Michał Górny <mgorny@gentoo.org> +systemd-198-r5.ebuild,
  -systemd-198-r4.ebuild:
  Re-introduce patches fixing bug #461210. Drop useless "README" files.

  24 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-198-r4.ebuild,
  systemd-9999.ebuild:
  Run the install phase with a single make job, bug 463156 by Ray Griffin.

*systemd-198-r4 (24 Mar 2013)

  24 Mar 2013; Mike Gilbert <floppym@gentoo.org> +systemd-198-r4.ebuild,
  -systemd-198-r3.ebuild, systemd-9999.ebuild:
  Fix collision with sys-apps/hwids.

*systemd-198-r3 (24 Mar 2013)

  24 Mar 2013; Michał Górny <mgorny@gentoo.org> +systemd-198-r3.ebuild,
  -files/199-0001-Disable-udev-targets.patch, metadata.xml, systemd-9999.ebuild:
  Install udev along with systemd again. Using a separate provider has proven to
  be unmaintainable.

  24 Mar 2013; Michał Górny <mgorny@gentoo.org> -systemd-198-r2.ebuild,
  systemd-198-r1.ebuild:
  Require working udev version. Drop the unit requiring udev which Samuli broke.

*systemd-198-r2 (23 Mar 2013)

  23 Mar 2013; Michał Górny <mgorny@gentoo.org> +systemd-198-r2.ebuild,
  files/199-0001-Disable-udev-targets.patch, systemd-9999.ebuild:
  Handle moving initrd-udevadm-cleanup.service to sys-fs/udev. Update the live
  version patch.

*systemd-198-r1 (14 Mar 2013)

  14 Mar 2013; Michał Górny <mgorny@gentoo.org>
  +files/198-0002-build-sys-break-dependency-loop-between-libsystemd-i.patch,
  +files/198-0003-build-sys-link-libsystemd-login-also-against-libsyst.patch,
  +systemd-198-r1.ebuild, -systemd-198.ebuild:
  Fix underlinking of libsystemd-login, bug #461210.

  10 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Add libgcrypt to autoreconf deps.

  10 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Create libdir before we move files into it, bug 460640.

  10 Mar 2013; Mike Gilbert <floppym@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Create systemd-journal-gateway user/group if USE=http. Bug 461044 by Michał
  Bartoszkiewicz.

  10 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Install zsh-completion file as _systemd, still bug #460640.

  10 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Unconditionally add dependencies for full autoreconf, due to automake version
  mismatch potential resulting in autoreconf.

  10 Mar 2013; Michał Górny <mgorny@gentoo.org> systemd-198.ebuild,
  systemd-9999.ebuild:
  Add missing multilib inherit.

*systemd-198 (09 Mar 2013)

  09 Mar 2013; Michał Górny <mgorny@gentoo.org>
  +files/199-0001-Disable-udev-targets.patch, +systemd-198.ebuild,
  files/198-0001-Disable-udev-targets.patch, metadata.xml, systemd-9999.ebuild:
  Version bump. Move nss_myhostname to rootfs and install zsh completion (both
  bug #460640). Update the live version patch.

  06 Mar 2013; Michał Górny <mgorny@gentoo.org>
  files/198-0001-Disable-udev-targets.patch:
  Rebase the future -198 build split patch on current git HEAD. Requested in bug
  #460538.

  24 Feb 2013; Agostino Sarubbo <ago@gentoo.org> systemd-197-r1.ebuild:
  Add ~ppc64, wrt bug #458360

  08 Feb 2013; Michał Górny <mgorny@gentoo.org>
  +files/198-0001-Disable-udev-targets.patch, systemd-9999.ebuild:
  Update wrt changes to udev ebuild.

  21 Jan 2013; Alexandre Rostovtsev <tetromino@gentoo.org>
  systemd-197-r1.ebuild, systemd-9999.ebuild:
  Block nss-myhostname since it was merged into systemd-197 (bug#453026, thanks
  to Michał Bartoszkiewicz).

  21 Jan 2013; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Append to the DEPEND variable instead of overwriting it.

  21 Jan 2013; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
  Update live ebuild with previous change.

  21 Jan 2013; Mike Gilbert <floppym@gentoo.org> systemd-197-r1.ebuild:
  udev-197-r3 is good enough as it does install sd-daemon.h.

  21 Jan 2013; Michał Górny <mgorny@gentoo.org> -systemd-196.ebuild,
  systemd-197-r1.ebuild, systemd-9999.ebuild:
  Drop old as requested by ssuominen. Bump udev requirement to avoid bug
  #452972.

*systemd-197-r1 (21 Jan 2013)

  21 Jan 2013; Mike Gilbert <floppym@gentoo.org> +systemd-197-r1.ebuild,
  -systemd-197.ebuild, systemd-9999.ebuild:
  Disable SysV init script compatibility. Thanks to Michał Bartoszkiewicz on bug
  453260.

  20 Jan 2013; Michał Górny <mgorny@gentoo.org> systemd-197.ebuild,
  systemd-9999.ebuild:
  Remove pointless README files installed in random system locations.

  19 Jan 2013; Michał Górny <mgorny@gentoo.org>
  files/197-0001-Disable-udev-targets.patch, systemd-197.ebuild,
  systemd-9999.ebuild:
  Fix installing udev rules for the new udev location.

*systemd-197 (18 Jan 2013)

  18 Jan 2013; Michał Górny <mgorny@gentoo.org> +systemd-197.ebuild,
  files/197-0001-Disable-udev-targets.patch, systemd-9999.ebuild:
  Commit the incomplete/broken ebuild to let people submit patches.

  11 Jan 2013; Michał Górny <mgorny@gentoo.org> -systemd-195.ebuild,
  systemd-196.ebuild, systemd-9999.ebuild:
  Bump the sys-apps/dbus dependency, per bug #451402. Drop old.

  08 Jan 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Remove unnecessary enewuser/enewgroup -- spotted by WilliamH.

  08 Jan 2013; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
  Update the journald catalogs when rebuilding systemd.

  17 Dec 2012; Michał Górny <mgorny@gentoo.org> systemd-196.ebuild,
  systemd-9999.ebuild:
  Bump to EAPI=5 to make Paludis happy, bug #447524.

*systemd-9999 (15 Dec 2012)

  15 Dec 2012; Michał Górny <mgorny@gentoo.org>
  +files/197-0001-Disable-udev-targets.patch, +systemd-9999.ebuild:
  Import the live ebuild.

  05 Dec 2012; Michał Górny <mgorny@gentoo.org> metadata.xml,
  systemd-196.ebuild:
  Make kmod optional, bug #446138.

  04 Dec 2012; Michał Górny <mgorny@gentoo.org>
  +files/196-0002-Don-t-fail-with-missing-gcrypt-macros.patch,
  systemd-196.ebuild:
  Do not require libgcrypt macros when gcrypt is disabled, bug #445920.

*systemd-196 (02 Dec 2012)

  02 Dec 2012; Michał Górny <mgorny@gentoo.org>
  +files/196-0001-Disable-udev-targets.patch, +systemd-196.ebuild,
  -files/0001-Disable-udev-targets-for-udev-189.patch,
  -files/0002-journald-add-missing-includes.patch,
  -files/0003-journal-add-HAVE_XZ-check-to-avoid-build-failure.patch,
  -files/0004-journal-don-t-try-to-compress-without-XZ.patch,
  -files/191-0002-journal-bring-mmap-cache-prototype-in-sync.patch,
  -files/191-0003-log-fix-repeated-invocation-of-vsnprintf-vaprintf-in.patch,
  -files/update-etc-systemd-symlinks.path,
  -files/update-etc-systemd-symlinks.service,
  -files/update-etc-systemd-symlinks.sh:
  Version bump. Enable Python support. Drop old patches.

  01 Dec 2012; Michał Górny <mgorny@gentoo.org> -systemd-189-r3.ebuild,
  -systemd-191-r1.ebuild, -systemd-192.ebuild, -systemd-193.ebuild,
  -systemd-194.ebuild:
  Drop old.

  27 Oct 2012; Michał Górny <mgorny@gentoo.org> systemd-195.ebuild:
  Disable storing coredumps again, since it is insecure (bug #433457, c9).

  26 Oct 2012; Michał Górny <mgorny@gentoo.org> systemd-195.ebuild:
  Fix udev dep, once and for all.

*systemd-195 (26 Oct 2012)

  26 Oct 2012; Michał Górny <mgorny@gentoo.org> +systemd-195.ebuild,
  metadata.xml:
  Version bump. Re-enable coredumps since a tool to read them was introduced.
  Add USE=vanilla to disable Gentoo-specific quirks as requested by Léo Gillot-
  Lamure (via mail). Remove PAM .la file wrt bug #424900.

  04 Oct 2012; Michał Górny <mgorny@gentoo.org> systemd-194.ebuild:
  Preserve empty directories, per bug #437008.

*systemd-194 (04 Oct 2012)

  04 Oct 2012; Michał Górny <mgorny@gentoo.org> +systemd-194.ebuild:
  Version bump.

*systemd-193 (30 Sep 2012)

  30 Sep 2012; Michał Górny <mgorny@gentoo.org> +systemd-193.ebuild,
  metadata.xml:
  Version bump.

*systemd-192 (26 Sep 2012)

  26 Sep 2012; Michał Górny <mgorny@gentoo.org> +systemd-192.ebuild:
  Version bump.

*systemd-191-r1 (26 Sep 2012)

  26 Sep 2012; Michał Górny <mgorny@gentoo.org>
  +files/191-0003-log-fix-repeated-invocation-of-vsnprintf-vaprintf-in.patch,
  +systemd-191-r1.ebuild, -systemd-190.ebuild, -systemd-191.ebuild:
  Fix libc segfault, bug #436196.

  24 Sep 2012; Michał Górny <mgorny@gentoo.org>
  +files/191-0001-Disable-udev-targets-for-udev-190.patch,
  +files/191-0002-journal-bring-mmap-cache-prototype-in-sync.patch,
  -files/0001-Disable-udev-targets-for-udev-190.patch, systemd-191.ebuild:
  Fix journald prototype missync, bug #436098.

*systemd-191 (22 Sep 2012)
*systemd-190 (22 Sep 2012)

  22 Sep 2012; Michał Górny <mgorny@gentoo.org>
  +files/0001-Disable-udev-targets-for-udev-190.patch, +systemd-190.ebuild,
  +systemd-191.ebuild:
  Version bump.

  21 Sep 2012; Michał Górny <mgorny@gentoo.org>
  -files/0001-Disable-udev-targets-for-udev-188.patch,
  -files/0001-util-never-follow-symlinks-in-rm_rf_children.patch,
  -files/0002-journal-PAGE_SIZE-is-not-known-on-ppc-and-other-arch.patch,
  -systemd-44-r2.ebuild:
  Drop old.

*systemd-189-r3 (17 Sep 2012)

  17 Sep 2012; Michał Górny <mgorny@gentoo.org>
  +files/0004-journal-don-t-try-to-compress-without-XZ.patch,
  +systemd-189-r3.ebuild, -systemd-189-r2.ebuild:
  Backport patch for journal storage without USE=lzma, wrt bug #434972.

*systemd-189-r2 (08 Sep 2012)

  08 Sep 2012; Michał Górny <mgorny@gentoo.org> +systemd-189-r2.ebuild,
  -systemd-189-r1.ebuild:
  Actually enable /var/lock and /var/run mounts. Stupid me.

  07 Sep 2012; Michał Górny <mgorny@gentoo.org> systemd-189-r1.ebuild:
  sulogin has been moved to util-linux, adjust the dep.

*systemd-189-r1 (03 Sep 2012)

  03 Sep 2012; Michał Górny <mgorny@gentoo.org> +files/var-lock.mount,
  +files/var-run.mount, +systemd-189-r1.ebuild, -systemd-188-r1.ebuild,
  -systemd-189.ebuild:
  Fix missing /var/lock & /var/run mountpoints, bug #433607.

  28 Aug 2012; Zac Medico <zmedico@gentoo.org> systemd-188-r1.ebuild,
  systemd-189.ebuild:
  Fix COMMON_RDEPEND typo for bug #432794.

  25 Aug 2012; Michał Górny <mgorny@gentoo.org>
  +files/0003-journal-add-HAVE_XZ-check-to-avoid-build-failure.patch,
  systemd-189.ebuild:
  Backport patch for USE=-lzma build failure. Bug #432700.

*systemd-189 (24 Aug 2012)

  24 Aug 2012; Michał Górny <mgorny@gentoo.org>
  +files/0001-Disable-udev-targets-for-udev-189.patch,
  +files/0002-journald-add-missing-includes.patch, +systemd-189.ebuild,
  metadata.xml:
  Version bump.

*systemd-188-r1 (15 Aug 2012)

  15 Aug 2012; Michał Górny <mgorny@gentoo.org>
  +files/0001-Disable-udev-targets-for-udev-188.patch, +systemd-188-r1.ebuild,
  -files/0001-Disable-udev-targets.patch, -systemd-188.ebuild:
  Revbump and sync for udev-188. Install logind udev rules wrt bug #431152.

  11 Aug 2012; Michał Górny <mgorny@gentoo.org> metadata.xml,
  systemd-188.ebuild:
  Remove leftover from USE=doc, and cleanup metadata.xml.

  11 Aug 2012; Michał Górny <mgorny@gentoo.org>
  files/0001-Disable-udev-targets.patch:
  Update the udev removal patch to remove two more rule files, wrt #430872.

*systemd-188 (11 Aug 2012)

  11 Aug 2012; Michał Górny <mgorny@gentoo.org>
  +files/0001-Disable-udev-targets.patch, +systemd-188.ebuild,
  -files/0001-udev-add-lib-udev-rules.d-to-rules-directories.patch,
  -files/40-gentoo.rules, -systemd-186.ebuild, -systemd-187.ebuild,
  metadata.xml:
  Version bump. Use sys-fs/udev again.

  09 Aug 2012; Michał Górny <mgorny@gentoo.org> metadata.xml,
  systemd-44-r2.ebuild:
  Fix the dep to accept udev-187-r1, wrt bug #430470.

*systemd-44-r2 (09 Aug 2012)

  09 Aug 2012; Michał Górny <mgorny@gentoo.org> +systemd-44-r2.ebuild,
  -systemd-29-r3.ebuild, -systemd-29-r6.ebuild, -systemd-39.ebuild,
  -systemd-44-r1.ebuild:
  Drop old, and require older udev in older systemd.

*systemd-187 (06 Aug 2012)

  06 Aug 2012; Michał Górny <mgorny@gentoo.org>
  +files/0001-udev-add-lib-udev-rules.d-to-rules-directories.patch,
  +systemd-187.ebuild:
  Version bump. Update udev firmware search path and add /lib support patch.

*systemd-186 (09 Jul 2012)

  09 Jul 2012; Michał Górny <mgorny@gentoo.org> +files/40-gentoo.rules,
  +systemd-186.ebuild, -systemd-185.ebuild:
  Version bump. Integrate some code from the udev ebuild.

  22 Jun 2012; Michał Górny <mgorny@gentoo.org> systemd-185.ebuild:
  Disable out-of-source build wrt bug #422927.

*systemd-185 (20 Jun 2012)

  20 Jun 2012; Michał Górny <mgorny@gentoo.org> +systemd-185.ebuild,
  metadata.xml:
  Version bump. The new version comes with bundled udev and is highly
  experimental. You need to put udev in package.provided to use it, and beware -
  something will break, certainly.

  24 May 2012; Mike Frysinger <vapier@gentoo.org> systemd-29-r3.ebuild,
  systemd-29-r6.ebuild, systemd-39.ebuild, systemd-44-r1.ebuild:
  Inherit user for enewuser/etc...

*systemd-44-r1 (02 May 2012)

  02 May 2012; Michał Górny <mgorny@gentoo.org> -systemd-44.ebuild,
  +systemd-44-r1.ebuild:
  systemd-analyze works only with py2.7, wrt bug #413755.

  06 Apr 2012; Michał Górny <mgorny@gentoo.org> systemd-44.ebuild,
  +files/0002-journal-PAGE_SIZE-is-not-known-on-ppc-and-other-arch.patch:
  Add a patch for ARM and keyword wrt bug #410973.

  05 Apr 2012; Michał Górny <mgorny@gentoo.org> systemd-44.ebuild:
  Avoid installing duplicate systemadm manpage.

*systemd-44 (05 Apr 2012)

  05 Apr 2012; Michał Górny <mgorny@gentoo.org> -systemd-43.ebuild,
  +systemd-44.ebuild,
  +files/0001-util-never-follow-symlinks-in-rm_rf_children.patch:
  Version bump wrt bug #376047.

  04 Apr 2012; Michał Górny <mgorny@gentoo.org> systemd-29-r3.ebuild,
  systemd-29-r6.ebuild, systemd-39.ebuild, systemd-43.ebuild:
  Add doc building deps wrt bug #410615.

  08 Mar 2012; Michał Górny <mgorny@gentoo.org> systemd-43.ebuild:
  Restore UI parts in the ebuild.

  05 Mar 2012; Michał Górny <mgorny@gentoo.org> -systemd-37-r1.ebuild,
  -systemd-37-r4.ebuild, -systemd-38-r1.ebuild:
  Due to security bug #406655, remove offending versions.

*systemd-43 (23 Feb 2012)

  23 Feb 2012; Michał Górny <mgorny@gentoo.org> +systemd-43.ebuild:
  Version bump.

*systemd-39 (02 Feb 2012)

  02 Feb 2012; Michał Górny <mgorny@gentoo.org> +systemd-39.ebuild:
  Version bump.

*systemd-38-r1 (21 Jan 2012)
*systemd-37-r4 (21 Jan 2012)
*systemd-29-r6 (21 Jan 2012)

  21 Jan 2012; Michał Górny <mgorny@gentoo.org> -systemd-29-r5.ebuild,
  +systemd-29-r6.ebuild, -systemd-37-r3.ebuild, +systemd-37-r4.ebuild,
  -systemd-38.ebuild, +systemd-38-r1.ebuild:
  Fix installing pam_systemd.so to /lib*/security. Also, backport a few other
  fixes.

  14 Jan 2012; William Hubbs <williamh@gentoo.org> systemd-29-r3.ebuild,
  systemd-29-r5.ebuild, systemd-37-r1.ebuild, systemd-37-r3.ebuild,
  systemd-38.ebuild:
  move the creation of /run to pkg_postinst (approved by mgorny)

*systemd-38 (11 Jan 2012)

  11 Jan 2012; Michał Górny <mgorny@gentoo.org> +systemd-38.ebuild:
  Version bump. This is the first release including systemd-journald for
  logging.

*systemd-37-r3 (10 Jan 2012)
*systemd-29-r5 (10 Jan 2012)

  10 Jan 2012; Michał Górny <mgorny@gentoo.org> -systemd-29-r4.ebuild,
  +systemd-29-r5.ebuild, -systemd-37-r2.ebuild, +systemd-37-r3.ebuild:
  Add systemctl compatibility symlink.

*systemd-37-r2 (06 Jan 2012)
*systemd-29-r4 (06 Jan 2012)

  06 Jan 2012; Michał Górny <mgorny@gentoo.org> systemd-29-r3.ebuild,
  +systemd-29-r4.ebuild, systemd-37-r1.ebuild, +systemd-37-r2.ebuild,
  +files/update-etc-systemd-symlinks.path,
  +files/update-etc-systemd-symlinks.service,
  +files/update-etc-systemd-symlinks.sh:
  Migrate to /usr.

*systemd-37-r1 (12 Dec 2011)
*systemd-29-r3 (12 Dec 2011)

  12 Dec 2011; Michał Górny <mgorny@gentoo.org> -systemd-29-r2.ebuild,
  +systemd-29-r3.ebuild, -systemd-37.ebuild, +systemd-37-r1.ebuild,
  +files/gentoo-run.conf:
  Create /run/lock as enforced by new OpenRC.

  06 Nov 2011; Michał Górny <mgorny@gentoo.org> systemd-37.ebuild:
  Re-introduce keywords to the systemd ebuild as package.mask entry was
  introduced.

*systemd-37 (16 Oct 2011)

  16 Oct 2011; Michał Górny <mgorny@gentoo.org> -systemd-36.ebuild,
  +systemd-37.ebuild:
  Version bump.

*systemd-36 (25 Sep 2011)

  25 Sep 2011; Michał Górny <mgorny@gentoo.org> -systemd-32.ebuild,
  -systemd-35.ebuild, +systemd-36.ebuild:
  Version bump. Still masked due to udev dep.

*systemd-35 (05 Sep 2011)

  05 Sep 2011; Michał Górny <mgorny@gentoo.org> +systemd-35.ebuild:
  Version bump. Still masked due to udev not bumped.

*systemd-29-r2 (15 Aug 2011)

  15 Aug 2011; Michał Górny <mgorny@gentoo.org> -systemd-29-r1.ebuild,
  +systemd-29-r2.ebuild:
  Backport a few ebuild changes to -29: delay kernel checks and make them
  non-obligatory, report optional deps, bump vala slot.

*systemd-32 (09 Aug 2011)

  09 Aug 2011; Michał Górny <mgorny@gentoo.org> +systemd-32.ebuild:
  Version bump. Committing unkeyworded as udev is delaying bump, bug #375263.

  24 Jun 2011; Michał Górny <mgorny@gentoo.org> systemd-29-r1.ebuild:
  Add systemd inherit to silence the new portage QA warning.

*systemd-29-r1 (24 Jun 2011)

  24 Jun 2011; Michał Górny <mgorny@gentoo.org> -systemd-28.ebuild,
  -systemd-29.ebuild, +systemd-29-r1.ebuild:
  Use bash-completion eclass to install bash completion file correctly.
  Temp-install docs to ${D}/tmp as well.

*systemd-29 (17 Jun 2011)

  17 Jun 2011; Michał Górny <mgorny@gentoo.org> +systemd-29.ebuild:
  Version bump.

  15 Jun 2011; Michał Górny <mgorny@gentoo.org> systemd-28.ebuild,
  metadata.xml:
  Support plymouth as requested by Christoph Brill.

  10 Jun 2011; Michał Górny <mgorny@gentoo.org> metadata.xml:
  Switch the maintainer to systemd@g.o alias.

  08 Jun 2011; Michał Górny <mgorny@gentoo.org> systemd-28.ebuild:
  Fix DESCRIPTION. Rely on dbus-1.4.10 to set up /etc/machine-id for us. Add a
  warning about downsides of having /etc/mtab symlinked, reformat messages.

  07 Jun 2011; Michał Górny <mgorny@gentoo.org> systemd-28.ebuild,
  metadata.xml:
  Support libcryptsetup, misc fixes.

  06 Jun 2011; Robert Piasek <dagger@gentoo.org> metadata.xml:
  Add dagger to metadata as maintainer

*systemd-28 (06 Jun 2011)

  06 Jun 2011; Michał Górny <mgorny@gentoo.org> +systemd-28.ebuild,
  +metadata.xml:
  Introduce sys-apps/systemd wrt bug #318365. The ebuild is currently
  hard-masked for testing.