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
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
|
# ChangeLog for sys-apps/systemd
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/systemd/ChangeLog,v 1.397 2015/08/05 12:09:38 zlogene Exp $
05 Aug 2015; Mikle Kolyada <zlogene@gentoo.org> systemd-218-r3.ebuild:
ia64 stable wrt bug #536902
*systemd-224-r1 (03 Aug 2015)
03 Aug 2015; Mike Gilbert <floppym@gentoo.org>
+files/224-0001-networkd-fix-neworkd-crash.patch, +systemd-224-r1.ebuild:
Backport fix for networkd crash.
02 Aug 2015; Pacho Ramos <pacho@gentoo.org> systemd-218-r3.ebuild:
sparc stable wrt bug #536902
*systemd-224 (01 Aug 2015)
01 Aug 2015; Mike Gilbert <floppym@gentoo.org> +systemd-224.ebuild:
Version bump.
01 Aug 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Remove code for defunct terminal USE flag. Re-enable networkd to support
socket activation.
24 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Remove /etc/systemd/systemd/sockets.target.wants, bug 555814.
19 Jul 2015; Markus Meier <maekke@gentoo.org> systemd-218-r3.ebuild:
arm stable, bug #536902
17 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-222-r1.ebuild,
systemd-9999.ebuild:
Depend on >=sys-apps/hwids-20150417.
15 Jul 2015; Tobias Klausmann <klausman@gentoo.org> systemd-218-r3.ebuild:
Stable on alpha, bug 536902
13 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-222-r1.ebuild,
systemd-9999.ebuild:
Restore audit patch.
*systemd-222-r1 (12 Jul 2015)
12 Jul 2015; Mike Gilbert <floppym@gentoo.org> +systemd-222-r1.ebuild,
systemd-9999.ebuild:
Quit playing games to avoid depending on libcap and libmount for non-native
abis. Bug 554580 by LE GARREC Vincent.
11 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Call default src_unpack function in the live ebuild.
10 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-222.ebuild,
systemd-9999.ebuild:
Add workaround for build failure with gcc-4.7, bug 554454 by Alexander Tsoy.
10 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-222.ebuild,
systemd-9999.ebuild:
Always pass --without-python to configure, bug 554448.
10 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-222.ebuild,
systemd-9999.ebuild:
Eliminate unifont dependency by fetching a copy in SRC_URI.
*systemd-222 (09 Jul 2015)
09 Jul 2015; Mike Gilbert <floppym@gentoo.org> +systemd-222.ebuild,
systemd-9999.ebuild:
Version bump. Move python modules to dev-python/python-systemd.
01 Jul 2015; Mike Gilbert <floppym@gentoo.org> systemd-220-r2.ebuild:
Backport unifont build workaround.
*systemd-221 (27 Jun 2015)
27 Jun 2015; Mike Gilbert <floppym@gentoo.org> +systemd-221.ebuild,
systemd-9999.ebuild:
Bump. Require python at build time for the live ebuild. Resolve build issue
without python enabled, bug 552790.
21 Jun 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Enable kdbus by default.
14 Jun 2015; Mike Gilbert <floppym@gentoo.org> +files/compile-unifont.py,
systemd-220-r2.ebuild, systemd-9999.ebuild:
Add missing compile-unifont.py. Update EGIT_REPO_URI to point at github.
10 Jun 2015; Mike Gilbert <floppym@gentoo.org> systemd-216-r3.ebuild,
systemd-218-r3.ebuild, systemd-219_p112.ebuild, systemd-220-r2.ebuild:
Add blocker on dev-libs/libgudev.
10 Jun 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Drop references to gudev, gtk-doc, and gobject-introspection.
30 May 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Depend on >=sys-apps/util-linux-2.26, bug 550832 by Elias Probst.
30 May 2015; Mike Gilbert <floppym@gentoo.org> systemd-216-r3.ebuild,
systemd-218-r3.ebuild, systemd-219_p112.ebuild, systemd-220-r2.ebuild,
systemd-9999.ebuild:
Remove obsolete postinst messages.
30 May 2015; Pacho Ramos <pacho@gentoo.org> systemd-216-r3.ebuild,
systemd-218-r3.ebuild, systemd-219_p112.ebuild, systemd-220-r2.ebuild,
systemd-9999.ebuild:
Drop systemd-ui references as it's dead and will be removed soon
30 May 2015; Pacho Ramos <pacho@gentoo.org> -systemd-215-r3.ebuild,
-systemd-216-r4.ebuild, -systemd-219-r2.ebuild, -systemd-220-r1.ebuild,
-systemd-220.ebuild:
Drop old
29 May 2015; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Convert to a more traditional live ebuild.
28 May 2015; Mike Gilbert <floppym@gentoo.org> systemd-220-r2.ebuild:
Add manpage deps due to autoreconf, bug 550704.
*systemd-220-r2 (28 May 2015)
28 May 2015; Mike Gilbert <floppym@gentoo.org> +systemd-220-r2.ebuild,
systemd-220-r1.ebuild, systemd-9999.ebuild:
More backports.
*systemd-220-r1 (26 May 2015)
26 May 2015; Mike Gilbert <floppym@gentoo.org> +systemd-220-r1.ebuild:
Backport a regression fix for udev inotify handling, bug 550358. Thanks to
Matthias Dahl and poncho.
*systemd-220 (24 May 2015)
24 May 2015; Mike Gilbert <floppym@gentoo.org> +systemd-220.ebuild,
systemd-9999.ebuild:
Version bump.
27 Apr 2015; Agostino Sarubbo <ago@gentoo.org> systemd-216-r3.ebuild:
Stable for sparc, wrt bug #525112
26 Apr 2015; Mike Gilbert <floppym@gentoo.org> systemd-219_p112.ebuild:
Fix SRC_URI.
*systemd-219_p112 (26 Apr 2015)
26 Apr 2015; Mike Gilbert <floppym@gentoo.org> +systemd-219_p112.ebuild:
Add a snapshot from the v219-stable branch upstream.
26 Apr 2015; Pacho Ramos <pacho@gentoo.org> systemd-218-r3.ebuild:
amd64/ppc/ppc64/x86 stable, bug #536902
18 Apr 2015; Mike Gilbert <floppym@gentoo.org> -systemd-219-r1.ebuild,
systemd-216-r3.ebuild, systemd-216-r4.ebuild, systemd-218-r3.ebuild,
systemd-219-r2.ebuild, systemd-9999.ebuild:
Adjust glibc blocker, bug 546194.
14 Apr 2015; Agostino Sarubbo <ago@gentoo.org> systemd-216-r3.ebuild:
Stable for ia64, wrt bug #525112
13 Apr 2015; Agostino Sarubbo <ago@gentoo.org> systemd-216-r3.ebuild:
Stable for alpha, wrt bug #525112
13 Apr 2015; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
Bump gnu-efi dep and remove Gentoo-specific paths.
11 Apr 2015; Michał Górny <mgorny@gentoo.org> metadata.xml,
systemd-9999.ebuild:
Add USE=gnuefi for newly-added EFI boot manager & stub loader.
08 Apr 2015; Michał Górny <mgorny@gentoo.org> systemd-215-r3.ebuild,
systemd-216-r3.ebuild, systemd-216-r4.ebuild, systemd-218-r3.ebuild,
systemd-219-r1.ebuild, systemd-219-r2.ebuild, systemd-9999.ebuild:
Drop old Python implementations
15 Mar 2015; Pacho Ramos <pacho@gentoo.org> systemd-216-r3.ebuild:
ppc64 stable, bug #525112
*systemd-219-r2 (11 Mar 2015)
11 Mar 2015; Mike Gilbert <floppym@gentoo.org> +systemd-219-r2.ebuild:
Grab missing systemd.conf.m4 from git to fix optional ACL support, bug 542644
by poncho.
02 Mar 2015; Agostino Sarubbo <ago@gentoo.org> systemd-216-r3.ebuild:
Stable for ppc, wrt bug #525112
28 Feb 2015; Andrew Savchenko <bircoph@gentoo.org> metadata.xml:
seccomp USE flag is now global, removing from metadata
*systemd-219-r1 (27 Feb 2015)
27 Feb 2015; Mike Gilbert <floppym@gentoo.org> +systemd-219-r1.ebuild,
-systemd-219.ebuild:
Re-add the audit patch.
20 Feb 2015; Mike Gilbert <floppym@gentoo.org> systemd-219.ebuild,
systemd-9999.ebuild:
Depend on media-fonts/unifont[utils] when USE=terminal. Bug 540652 by Marcel
Unbehaun and Reuben Martin.
*systemd-219 (19 Feb 2015)
19 Feb 2015; Mike Gilbert <floppym@gentoo.org> +systemd-219.ebuild:
Version bump.
17 Feb 2015; Pacho Ramos <pacho@gentoo.org> systemd-218-r3.ebuild,
systemd-9999.ebuild:
Enable by default lz4 compression for journald as it performs far better.
17 Feb 2015; Pacho Ramos <pacho@gentoo.org> -systemd-216-r2.ebuild,
-systemd-217-r4.ebuild, -systemd-218-r1.ebuild, -systemd-218-r2.ebuild:
Drop old
17 Feb 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml,
systemd-9999.ebuild:
Updates for v219.
*systemd-216-r4 (08 Feb 2015)
*systemd-218-r3 (08 Feb 2015)
08 Feb 2015; Mike Gilbert <floppym@gentoo.org> +systemd-216-r4.ebuild,
+systemd-218-r3.ebuild, systemd-9999.ebuild:
Make sure we build all the nss libs on non-native abis. Bug 538966 by Hristo
Venev.
02 Feb 2015; Mike Gilbert <floppym@gentoo.org> systemd-218-r2.ebuild,
systemd-9999.ebuild:
Die if we fail to remove links in /etc.
02 Feb 2015; Mike Gilbert <floppym@gentoo.org> systemd-218-r2.ebuild,
systemd-9999.ebuild:
timesyncd gets pulled in by sysinit.target by default, disable this.
31 Jan 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Update use flag descriptions, bug 537380 by Elias Probst.
20 Jan 2015; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Add list of tools provided by sysv-utils.
18 Jan 2015; Mike Gilbert <floppym@gentoo.org> systemd-216-r3.ebuild:
Move stable keywords forward.
*systemd-216-r3 (18 Jan 2015)
18 Jan 2015; Mike Gilbert <floppym@gentoo.org>
+files/216-tmpfiles-setup-dev.patch, +systemd-216-r3.ebuild:
Backport patch for compatibility with >=sys-apps/kmod-18-r2.
18 Jan 2015; Michał Górny <mgorny@gentoo.org> metadata.xml:
Describe USE=curl, bug #536934. Thanks to Elias Probst for the description.
*systemd-218-r2 (17 Jan 2015)
17 Jan 2015; Mike Gilbert <floppym@gentoo.org>
+files/218-Dont-enable-audit-by-default.patch, +systemd-218-r2.ebuild:
Don't enable audit by default, bug 536870.
08 Jan 2015; Markus Meier <maekke@gentoo.org> systemd-216-r2.ebuild:
arm stable, bug #525112
01 Jan 2015; Mike Gilbert <floppym@gentoo.org> +files/216-lz4-build.patch,
systemd-216-r2.ebuild:
Fix build failure with USE='lz4 -lzma', bug 534228 by rich0.
01 Jan 2015; Mike Gilbert <floppym@gentoo.org> systemd-215-r3.ebuild,
systemd-216-r2.ebuild, systemd-217-r4.ebuild, systemd-218-r1.ebuild,
systemd-9999.ebuild:
Add check for CONFIG_DEVPTS_MULTIPLE_INSTANCES, bug 534196 by Elias Probst.
31 Dec 2014; Agostino Sarubbo <ago@gentoo.org> systemd-216-r2.ebuild:
Stable for x86, wrt bug #525112
31 Dec 2014; Agostino Sarubbo <ago@gentoo.org> systemd-216-r2.ebuild:
Stable for amd64, wrt bug #525112
30 Dec 2014; Pacho Ramos <pacho@gentoo.org> -systemd-216-r1.ebuild,
-systemd-217-r3.ebuild, -systemd-218.ebuild:
Drop old
26 Dec 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Apply previous change to live ebuild.
26 Dec 2014; Michał Górny <mgorny@gentoo.org> systemd-218-r1.ebuild:
Work-around unnecessary non-native libmount/util-linux dep, bug #533602.
20 Dec 2014; Michał Górny <mgorny@gentoo.org> systemd-216-r2.ebuild,
systemd-217-r4.ebuild, systemd-218-r1.ebuild, systemd-9999.ebuild:
Fix sysv-utils symlink install, bug #533090.
19 Dec 2014; Pacho Ramos <pacho@gentoo.org> systemd-216-r2.ebuild,
systemd-217-r4.ebuild, systemd-218-r1.ebuild, systemd-9999.ebuild:
Fix the sys-apps/systemd-sysv-utils block, thanks to floppym for noticing
*systemd-218-r1 (19 Dec 2014)
*systemd-217-r4 (19 Dec 2014)
*systemd-216-r2 (19 Dec 2014)
19 Dec 2014; Pacho Ramos <pacho@gentoo.org> +systemd-216-r2.ebuild,
+systemd-217-r4.ebuild, +systemd-218-r1.ebuild, metadata.xml,
systemd-9999.ebuild:
Add a USE flag to replace sys-apps/systemd-sysv-utils (#528006)
19 Dec 2014; Pacho Ramos <pacho@gentoo.org>
-files/212-0001-sd-rtnl-fix-off-by-one.patch,
-files/212-0002-fsck-Search-for-fsck.type-in-PATH.patch,
-systemd-212-r5.ebuild, -systemd-217-r1.ebuild, -systemd-217-r2.ebuild:
Drop old
14 Dec 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
systemd-218.ebuild, systemd-9999.ebuild:
Optionally depend on libxkbcommon for keymap validation in logind, bug 532530.
Restore systemd-consoled.service.in missing from the tarball.
*systemd-218 (14 Dec 2014)
14 Dec 2014; Mike Gilbert <floppym@gentoo.org> +systemd-218.ebuild,
systemd-9999.ebuild:
Version bump.
07 Dec 2014; Agostino Sarubbo <ago@gentoo.org> systemd-215-r3.ebuild:
Stable for ppc64/ia64/sparc, wrt bug #517120
*systemd-217-r3 (28 Nov 2014)
28 Nov 2014; Mike Gilbert <floppym@gentoo.org> +systemd-217-r3.ebuild:
More backports.
18 Nov 2014; Michał Górny <mgorny@gentoo.org> systemd-217-r2.ebuild,
systemd-9999.ebuild:
Add sys-fs/eudev blocker for completeness.
*systemd-217-r2 (05 Nov 2014)
05 Nov 2014; Mike Gilbert <floppym@gentoo.org> +systemd-217-r2.ebuild:
Backport several patches. Resolves bugs 527832, 527894.
*systemd-217-r1 (04 Nov 2014)
04 Nov 2014; Mike Gilbert <floppym@gentoo.org> +systemd-217-r1.ebuild,
-systemd-217.ebuild, systemd-9999.ebuild:
Require >=util-linux-2.25, bug 528228.
*systemd-217 (30 Oct 2014)
30 Oct 2014; Michał Górny <mgorny@gentoo.org>
+files/217-systemd-consoled.service.in, +systemd-217.ebuild, metadata.xml,
systemd-9999.ebuild:
Version bump.
22 Oct 2014; Mike Gilbert <floppym@gentoo.org> systemd-216-r1.ebuild,
systemd-9999.ebuild:
Use keepdir /var/log/journal/remote instead of removing it.
20 Oct 2014; Mike Gilbert <floppym@gentoo.org> systemd-216-r1.ebuild,
systemd-9999.ebuild:
Remove empty /var/log/journal directory.
19 Oct 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Improve cryptsetup description.
19 Oct 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml:
Remove pointless comment.
19 Oct 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
systemd-216-r1.ebuild, systemd-9999.ebuild:
Add use flag to control apparmor support, bug 525894 by Dainius Masiliūnas.
15 Oct 2014; Tobias Klausmann <klausman@gentoo.org> systemd-215-r3.ebuild:
Stable on alpha, bug 517120
12 Oct 2014; Pacho Ramos <pacho@gentoo.org> systemd-216-r1.ebuild:
Readd sparc keyword as I don't see when/why was it dropped
*systemd-216-r1 (12 Oct 2014)
12 Oct 2014; Pacho Ramos <pacho@gentoo.org> +systemd-216-r1.ebuild,
-systemd-216.ebuild:
revbump due bug #520662
14 Sep 2014; Pacho Ramos <pacho@gentoo.org> systemd-212-r5.ebuild,
systemd-215-r3.ebuild, systemd-216.ebuild, systemd-9999.ebuild:
Ensure udev init.d scripts are installed to not break booting with openRC
(#520224)
31 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Lower MINKV to 3.7.
31 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Drop firmware-loader support.
27 Aug 2014; Agostino Sarubbo <ago@gentoo.org> systemd-215-r3.ebuild:
Stable for ppc, wrt bug #517120
23 Aug 2014; Michał Górny <mgorny@gentoo.org> systemd-216.ebuild,
systemd-9999.ebuild:
Add users & groups for systemd-journal-* daemons, bug #520662.
*systemd-216 (22 Aug 2014)
22 Aug 2014; Michał Górny <mgorny@gentoo.org> +systemd-216.ebuild:
Version bump.
20 Aug 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
Handle IDN dependency for resolved.
19 Aug 2014; William Hubbs <williamh@gentoo.org> systemd-212-r5.ebuild,
systemd-215-r3.ebuild, systemd-9999.ebuild:
Add warning about installing udev-init-scripts if you want to boot OpenRC for
bug#520224, approved by floppym
17 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-212-r5.ebuild,
systemd-215-r3.ebuild, systemd-9999.ebuild:
Drop dependency to avoid pulling openrc into the depgraph via udev-init-
scripts-27.
09 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-215-r3.ebuild,
systemd-9999.ebuild:
Drop fcaps for systemd-detect-virt, bug 468876.
07 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-215-r3.ebuild:
Add python3.4.
07 Aug 2014; Mike Gilbert <floppym@gentoo.org> systemd-212-r5.ebuild,
systemd-215-r3.ebuild, systemd-9999.ebuild:
Depend on sys-apps/dbus[systemd].
03 Aug 2014; Markus Meier <maekke@gentoo.org> systemd-215-r3.ebuild:
arm stable, bug #517120
28 Jul 2014; Pacho Ramos <pacho@gentoo.org> systemd-215-r3.ebuild:
x86 stable, bug #517120
28 Jul 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
systemd-9999.ebuild:
Add python3_4 to PYTHON_COMPAT. Add optional dependencies on curl and lz4.
28 Jul 2014; Richard Freeman <rich0@gentoo.org> systemd-215-r3.ebuild:
amd64 stable - 517120
27 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-215-r3.ebuild,
systemd-9999.ebuild:
Don't install /etc/systemd/system/network-online.target.wants, bug 518318 by
poncho.
*systemd-215-r3 (25 Jul 2014)
25 Jul 2014; Pacho Ramos <pacho@gentoo.org>
+files/215-0003-udev-exclude-MD-from-block-device-ownership-event-lo.patch,
+systemd-215-r3.ebuild, -systemd-215-r1.ebuild, -systemd-215-r2.ebuild:
Fix creation of inactive MD devices (#517986), drop old.
*systemd-215-r2 (24 Jul 2014)
24 Jul 2014; Pacho Ramos <pacho@gentoo.org> +systemd-215-r2.ebuild,
systemd-215-r1.ebuild:
Revbump adding compat symlinks to allow stabilization
21 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-212-r5.ebuild,
systemd-215-r1.ebuild, systemd-9999.ebuild:
Depend on >=sys-apps/coreutils-8.16 for ln --relative.
15 Jul 2014; Pacho Ramos <pacho@gentoo.org>
+files/215-0001-always-check-for-__BYTE_ORDER-__BIG_ENDIAN-when-chec.patch,
+files/215-0002-endian-explicitly-include-endian.h-wherever-we-want-.patch,
-systemd-208-r3.ebuild, -systemd-214.ebuild, -systemd-214_p57.ebuild,
systemd-215-r1.ebuild:
Fix building in ppc* (#517174 by Mike Gilbert), drop old
15 Jul 2014; Pacho Ramos <pacho@gentoo.org> -systemd-213.ebuild,
-systemd-215.ebuild, systemd-215-r1.ebuild, systemd-9999.ebuild:
revert bogus stabilization, drop old
15 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-215-r1.ebuild,
systemd-9999.ebuild:
Add a warning about systemd-resolved.
11 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-215-r1.ebuild:
Make sure we regenerate emergency.service.
10 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Move rootprefix logic into the main configure block.
*systemd-215-r1 (10 Jul 2014)
10 Jul 2014; Mike Gilbert <floppym@gentoo.org> +systemd-215-r1.ebuild:
Incorporate changes from the live ebuild.
10 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Don't enable resolved and timesyncd by default.
10 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Use multilib_native_use functions.
08 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Don't disable gcrypt and xz support for non-native abis, bug 516702.
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for x86, wrt bug #509076
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for sparc, wrt bug #509076
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for ppc64, wrt bug #509076
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for ppc, wrt bug #509076
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for ia64, wrt bug #509076
05 Jul 2014; Agostino Sarubbo <ago@gentoo.org> systemd-212-r5.ebuild:
Stable for alpha, wrt bug #509076
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-215.ebuild:
Force regeneration of org.freedesktop.systemd1.policy.
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-215.ebuild,
systemd-9999.ebuild:
Pass --enable-dependency-tracking as a workaround for bug 516346.
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> metadata.xml,
systemd-215.ebuild, systemd-9999.ebuild:
Add optional dependency on elfutils. Disable additional optional binaries when
building for a non-native ABI.
*systemd-215 (04 Jul 2014)
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> +systemd-215.ebuild:
Version bump.
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Create input group.
*systemd-214_p57 (04 Jul 2014)
04 Jul 2014; Mike Gilbert <floppym@gentoo.org> +systemd-214_p57.ebuild:
Apply patches from v214-stable branch.
03 Jul 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
MINKV=3.8
24 Jun 2014; Michał Górny <mgorny@gentoo.org> systemd-208-r3.ebuild,
systemd-212-r5.ebuild, systemd-213.ebuild, systemd-214.ebuild,
systemd-9999.ebuild:
Lower dev-libs/glib dep to first known EAPI=5 version, requested by Funtoo for
GNOME 3.6.
19 Jun 2014; Markus Meier <maekke@gentoo.org> systemd-212-r5.ebuild:
arm stable, bug #509076
18 Jun 2014; Michał Górny <mgorny@gentoo.org> systemd-208-r3.ebuild,
systemd-212-r5.ebuild, systemd-213.ebuild, systemd-214.ebuild,
systemd-9999.ebuild:
Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
#513718.
*systemd-214 (14 Jun 2014)
14 Jun 2014; Mike Gilbert <floppym@gentoo.org> +systemd-214.ebuild,
systemd-9999.ebuild:
Version bump.
11 Jun 2014; Mike Gilbert <floppym@gentoo.org> systemd-213.ebuild,
systemd-9999.ebuild:
Drop CONFIG_AUDITSYSCALL check, bug 506418.
03 Jun 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Make kmod optional again due to changes upstream.
01 Jun 2014; Michał Górny <mgorny@gentoo.org> systemd-9999.ebuild:
Create user&group for systemd-network.
31 May 2014; Pacho Ramos <pacho@gentoo.org> systemd-212-r5.ebuild:
amd64 stable, bug #509076
31 May 2014; Mike Gilbert <floppym@gentoo.org> systemd-213.ebuild,
systemd-9999.ebuild:
Forcably enable kmod due to bug 511924.
*systemd-212-r5 (30 May 2014)
30 May 2014; Mike Gilbert <floppym@gentoo.org> +systemd-212-r5.ebuild,
-systemd-212-r4.ebuild:
Add compatibility symlinks to prevent build failures do to broken usage of
libsystemd-*.
*systemd-213 (29 May 2014)
29 May 2014; Michał Górny <mgorny@gentoo.org> +systemd-213.ebuild:
Version bump.
29 May 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Set MINKV to 3.10; <linux-headers-3.10 causes build failures.
29 May 2014; Mike Gilbert <floppym@gentoo.org> systemd-9999.ebuild:
Add systemd-timesync user/group and set gentoo default NTP servers, bug 511386
by Hristo Venev.
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.
|