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
|
# ChangeLog for sys-apps/openrc
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/openrc/ChangeLog,v 1.326 2015/02/05 04:25:59 williamh Exp $
*openrc-0.13.9 (05 Feb 2015)
05 Feb 2015; William Hubbs <williamh@gentoo.org> +openrc-0.13.9.ebuild:
version bump for bug #537996
19 Jan 2015; Anthony G. Basile <blueness@gentoo.org> openrc-0.13.8.ebuild:
Stable on arm. Bug #530120.
19 Jan 2015; Anthony G. Basile <blueness@gentoo.org> openrc-0.13.8.ebuild:
Stable on ppc, ppc64 and x86. Bug #530120
18 Jan 2015; William Hubbs <williamh@gentoo.org> -openrc-0.13.7.ebuild:
remove broken version
*openrc-0.13.8 (18 Jan 2015)
18 Jan 2015; William Hubbs <williamh@gentoo.org> +openrc-0.13.8.ebuild:
version bump to fix interaction with kmod
17 Jan 2015; Mikle Kolyada <zlogene@gentoo.org> openrc-0.13.7.ebuild:
amd64 stable
16 Jan 2015; Jeroen Roovers <jer@gentoo.org> openrc-0.13.7.ebuild:
Stable for HPPA (bug #530120).
15 Jan 2015; William Hubbs <williamh@gentoo.org> -openrc-0.13.1.ebuild,
-openrc-0.13.2.ebuild, -openrc-0.13.3.ebuild, -openrc-0.13.4.ebuild,
-openrc-0.13.5.ebuild, -openrc-0.13.6.ebuild:
Remove broken 0.13.x versions. Bug #531600 was a memory management issue that
was present in most of this series; it was fixed in 0.13.7, so everyone should
run this version.
*openrc-0.13.7 (15 Jan 2015)
15 Jan 2015; William Hubbs <williamh@gentoo.org> +openrc-0.13.7.ebuild:
version bump
05 Dec 2014; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Change reference from git.mk to gitver.mk to match upstream
*openrc-0.13.6 (24 Nov 2014)
24 Nov 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.6.ebuild:
version bump
*openrc-0.13.5 (20 Nov 2014)
20 Nov 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.5.ebuild:
version bump
14 Nov 2014; Sven Vermeulen <swift@gentoo.org> openrc-0.13.2.ebuild,
openrc-0.13.3.ebuild, openrc-0.13.4.ebuild:
Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
#527698)
*openrc-0.13.4 (10 Nov 2014)
10 Nov 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.4.ebuild:
version bump
*openrc-0.13.3 (04 Nov 2014)
04 Nov 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.3.ebuild:
version bump
02 Nov 2014; Sven Vermeulen <swift@gentoo.org> metadata.xml,
openrc-0.12.4.ebuild, openrc-0.13.1.ebuild, openrc-9999.ebuild:
Remove sec-policy/selinux-* dependency from DEPEND but keep in RDEPEND (bug
#527698)
28 Oct 2014; William Hubbs <williamh@gentoo.org> openrc-0.12.4.ebuild,
openrc-0.13.1.ebuild, openrc-0.13.2.ebuild, openrc-9999.ebuild:
repoman fix, convert dependency on baselayout to a blocker against older
versions.
*openrc-0.13.2 (26 Oct 2014)
26 Oct 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.2.ebuild,
openrc-9999.ebuild:
version bump
22 Aug 2014; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
sync live ebuild
22 Aug 2014; William Hubbs <williamh@gentoo.org> -openrc-0.13.ebuild:
remove broken version
*openrc-0.13.1 (22 Aug 2014)
22 Aug 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.1.ebuild:
version bump for regression #520606
20 Aug 2014; William Hubbs <williamh@gentoo.org> openrc-0.13.ebuild,
openrc-9999.ebuild:
Add a blocker on older versions of procps for bug #520314
*openrc-0.13 (17 Aug 2014)
17 Aug 2014; William Hubbs <williamh@gentoo.org> +openrc-0.13.ebuild:
Version bump, bug #481182 tracks changes
12 Aug 2014; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
install feature removal schedule
11 Aug 2014; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Install README and README.history
16 Jul 2014; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
add sys-libs/libselinux to dependencies for bug #516956
06 Mar 2014; William Hubbs <williamh@gentoo.org> -openrc-0.11.8.ebuild:
remove old version
27 Jan 2014; William Hubbs <williamh@gentoo.org> -openrc-0.12.2.ebuild,
-openrc-0.12.3.ebuild:
remove old openrc-0.12.x versions
19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openrc-0.12.4.ebuild:
Stable for sparc, wrt bug #487332
19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openrc-0.12.4.ebuild:
Stable for ppc64, wrt bug #487332
19 Jan 2014; Agostino Sarubbo <ago@gentoo.org> openrc-0.12.4.ebuild:
Stable for ppc, wrt bug #487332
18 Jan 2014; Mike Frysinger <vapier@gentoo.org> openrc-0.12.4.ebuild,
openrc-9999.ebuild:
Add arm64 love.
17 Jan 2014; Mike Frysinger <vapier@gentoo.org> openrc-0.12.4.ebuild:
Mark m68k/s390/sh stable.
14 Jan 2014; Pacho Ramos <pacho@gentoo.org> openrc-0.12.4.ebuild:
ia64 stable, bug #487332 (thanks to Emeric Maschino for testing)
21 Dec 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Fix the mknet setting. It is either yes or no, so we can use usex.
29 Nov 2013; Johannes Huber <johu@gentoo.org> openrc-0.12.4.ebuild:
x86 stable wrt bug #487332
27 Nov 2013; Rick Farina <zerochaos@gentoo.org> openrc-0.12.4.ebuild:
arm stable, bug #487332
24 Nov 2013; Pacho Ramos <pacho@gentoo.org> openrc-0.12.4.ebuild:
amd64 stable, bug #487332
13 Nov 2013; Matt Turner <mattst88@gentoo.org> openrc-0.12.4.ebuild:
alpha stable, bug 487332.
12 Nov 2013; Jeroen Roovers <jer@gentoo.org> openrc-0.12.4.ebuild:
Stable for HPPA (bug #487332).
*openrc-0.12.4 (31 Oct 2013)
31 Oct 2013; William Hubbs <williamh@gentoo.org> +openrc-0.12.4.ebuild:
version bump for vserver fixes and starting a port to GNU/kFreeBSD for Debian.
21 Oct 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
bring back gen_usr_ldscript calls for libeinfo
21 Oct 2013; William Hubbs <williamh@gentoo.org> -openrc-0.12.1.ebuild,
-openrc-0.12.ebuild:
Remove some old 0.12 unstable versions
*openrc-0.12.3 (21 Oct 2013)
21 Oct 2013; William Hubbs <williamh@gentoo.org> +openrc-0.12.3.ebuild:
version bump
*openrc-0.12.2 (08 Oct 2013)
08 Oct 2013; William Hubbs <williamh@gentoo.org> +openrc-0.12.2.ebuild:
version bump
*openrc-0.12.1 (02 Oct 2013)
02 Oct 2013; William Hubbs <williamh@gentoo.org> +openrc-0.12.1.ebuild:
version bump for bug #486210.
27 Sep 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
remove references to libeinfo since it no longer exists upstream
16 Aug 2013; Ian Stakenvicius <axs@gentoo.org> openrc-0.11.8.ebuild:
added blocker on net-misc/netifrc to openrc-0.11.8 just in case it helps
ensure net.lo is replaced
16 Aug 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
sync live ebuild
16 Aug 2013; William Hubbs <williamh@gentoo.org> -files/net.confd.comment,
openrc-0.12.ebuild:
move the net comment into a here document.
16 Aug 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
partially sync live ebuild
16 Aug 2013; Ian Stakenvicius <axs@gentoo.org> +files/net.confd.comment,
openrc-0.12.ebuild:
stop the removal of /etc/conf.d/net when upgrading from 0.11.8 and previous,
bug 481336
14 Aug 2013; Ian Stakenvicius <axs@gentoo.org> openrc-0.12.ebuild:
fixed dodoc README.net to README.newnet to match distfile, bug 481078
*openrc-0.12 (14 Aug 2013)
14 Aug 2013; William Hubbs <williamh@gentoo.org> +openrc-0.12.ebuild:
OpenRC-0.12, bug #439098 tracks changes
14 Aug 2013; William Hubbs <williamh@gentoo.org> metadata.xml,
openrc-9999.ebuild:
adjustments for separating netifrc: add a temporary pdepend with a use flag to
bring it in and add warnings about both network use flags missing.
11 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> openrc-0.11.8.ebuild,
openrc-9999.ebuild:
Replace virtual/init with direct dependencies for || ( sysvinit rinit )
because sys-apps/openrc is the only consumer of the virtual.
11 Aug 2013; Samuli Suominen <ssuominen@gentoo.org> openrc-0.11.8.ebuild,
openrc-9999.ebuild:
Move virtual/init from COMMON_DEPEND to RDEPEND.
05 Aug 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Install the documention for incompatibilities with busybox, and optionally,
the documentation for the newnet scripts.
25 Apr 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
change git source to point to github
24 Apr 2013; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
migrate to eapi 5 and remove old baselayout-1 migration code
03 Mar 2013; William Hubbs <williamh@gentoo.org> openrc-0.11.8.ebuild:
Per Mike Frysinger, on bug #459782, we should not rdepend on ncurses[-tinfo].
01 Mar 2013; William Hubbs <williamh@gentoo.org> openrc-0.11.8.ebuild:
The stable version of OpenRc does not support building with ncurses[tinfo]
#459782.
01 Mar 2013; William Hubbs <williamh@gentoo.org> -openrc-0.9.8.4.ebuild:
remove old version
12 Feb 2013; Sven Vermeulen <swift@gentoo.org> openrc-0.9.8.4.ebuild,
openrc-0.11.8.ebuild, openrc-9999.ebuild:
Add dependency on selinux-openrc if USE=selinux
03 Jan 2013; William Hubbs <williamh@gentoo.org> metadata.xml,
openrc-9999.ebuild:
Add support for tools use flag
02 Jan 2013; William Hubbs <williamh@gentoo.org> -openrc-0.11.6.ebuild:
remove old version
02 Jan 2013; Raúl Porcel <armin76@gentoo.org> openrc-0.11.8.ebuild:
alpha/m68k/s390/sh stable wrt #435756
02 Jan 2013; Tobias Klausmann <klausman@gentoo.org> openrc-0.11.6.ebuild:
Stable on alpha, bug #435756
30 Dec 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.11.8.ebuild:
Stable for sparc, wrt bug #435756
29 Dec 2012; William Hubbs <williamh@gentoo.org> -openrc-0.10.5.ebuild:
remove old unstable version
28 Dec 2012; Jeroen Roovers <jer@gentoo.org> openrc-0.11.8.ebuild:
Stable for HPPA (bug #435756).
17 Dec 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.11.8.ebuild:
Stable for ia64, wrt bug #435756
09 Dec 2012; Markus Meier <maekke@gentoo.org> openrc-0.11.8.ebuild:
arm stable, bug #435756
08 Dec 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.11.8.ebuild:
Stable for ppc64, wrt bug #435756
08 Dec 2012; Markus Meier <maekke@gentoo.org> openrc-0.11.6.ebuild:
arm stable, bug #435756
*openrc-0.11.8 (07 Dec 2012)
07 Dec 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.8.ebuild:
dont try to remove the /init.d directory while root is ro, bug
07 Dec 2012; William Hubbs <williamh@gentoo.org> -openrc-0.11.7.ebuild:
remove broken version
*openrc-0.11.7 (07 Dec 2012)
07 Dec 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.7.ebuild:
This reworks the migration from /lib*/rc/init.d to /run/openrc so that
it does not require a reboot (reported by Chainsaw), and adds a fix for
systems that have the /usr merge so that /run is not looked for under
/usr. Again this is going directly to stable where 0.11.x is stable
because it is part of the upgrade path.
02 Dec 2012; William Hubbs <williamh@gentoo.org> -openrc-0.11.5.ebuild:
remove broken version
*openrc-0.11.6 (30 Nov 2012)
30 Nov 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.6.ebuild:
This fixes #443996 and #445116.
Also, we now unmount /usr if it was not pre-mounted by an initramfs on
Linux systems.
I am taking this to stable on all arches where 0.11.5 was stable because
these issues were not reported to me until we started stabilizing.
25 Nov 2012; William Hubbs <williamh@gentoo.org> ChangeLog:
sign manifest; the previous commit was mine as well. signing was not
completely set up.
25 Nov 2012; William Hubbs <williamh@gentoo.org> openrc-0.11.5.ebuild,
openrc-9999.ebuild:
add blocker for <udev-init-scripts-17 wrt bug #435756.
21 Nov 2012; Anthony G. Basile <blueness@gentoo.org> openrc-0.11.5.ebuild:
stable ppc, bug #435756, thanks peratu
19 Nov 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.11.5.ebuild:
Stable for x86, wrt bug #435756
19 Nov 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.11.5.ebuild:
Stable for amd64, wrt bug #435756
*openrc-0.11.5 (10 Nov 2012)
10 Nov 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.5.ebuild:
version bump
07 Nov 2012; William Hubbs <williamh@gentoo.org> ChangeLog:
Fix references to $EROOT and $ED. References to $EROOT should be quoted
and not followed with /. References to $ED should be quoted. This is for
bug #442020. This applies to my last commit for openrc-9999.
05 Nov 2012; William Hubbs <williamh@gentoo.org> -openrc-0.10.4.ebuild,
-openrc-0.11.2.ebuild, -openrc-0.11.3.ebuild:
remove several broken versions
*openrc-0.11.4 (05 Nov 2012)
05 Nov 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.4.ebuild:
version bump
*openrc-0.11.3 (05 Nov 2012)
05 Nov 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.3.ebuild:
version bump
*openrc-0.11.2 (22 Oct 2012)
22 Oct 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.2.ebuild:
Version bump for bug #439008. This fixes the non-bootable issue when systemd
was installed.
*openrc-0.11.1 (20 Oct 2012)
20 Oct 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.1.ebuild:
version bump for bug #438932
*openrc-0.11 (18 Oct 2012)
18 Oct 2012; William Hubbs <williamh@gentoo.org> +openrc-0.11.ebuild:
version bump, bug #417391 tracks fixes.
18 Oct 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Only show warning about adding the net script to the boot runlevel if
necessary.
17 Oct 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Add a warning about adding the appropriate network script to the boot
runlevel.
29 Sep 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
The code in pkg_setup and make_args is only run once at the start of
src_compile, so we can move it into that function, thanks to Zac Medico for
the input.
29 Sep 2012; Benda Xu <heroxbd@gentoo.org> openrc-9999.ebuild:
make_args should be called only once; ED -> D in src_install to avoid double
prefix. close 415899
28 Sep 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
fix typo
28 Sep 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Fix the ebuild so we can use pre/postinst on prefix systems as well.
Originally I did not think we needed this, but thinking it over it is better
to have them. Also this reworks the live portion of the ebuild to use a
separate inherit call.
27 Sep 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Add prefix support for bug #415899. I would like to thank Benda Xu for working
with me on this.
09 Sep 2012; William Hubbs <williamh@gentoo.org> -openrc-0.10.1.ebuild,
-openrc-0.10.2.ebuild, -openrc-0.10.3.ebuild, -openrc-0.10.ebuild,
-openrc-0.9.9.1.ebuild, -openrc-0.9.9.2.ebuild, -openrc-0.9.9.3.ebuild,
-openrc-0.9.9.ebuild:
remove old versions
*openrc-0.10.5 (04 Jul 2012)
04 Jul 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.5.ebuild:
version bump
*openrc-0.10.4 (02 Jul 2012)
02 Jul 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.4.ebuild:
version bump
*openrc-0.10.3 (11 Jun 2012)
11 Jun 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.3.ebuild:
version bump
*openrc-0.10.2 (27 May 2012)
27 May 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.2.ebuild:
version bump to fix termencoding to not run on lxc.
*openrc-0.10.1 (24 May 2012)
24 May 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.1.ebuild:
version bump to fix regression in bug #417227
*openrc-0.10 (22 May 2012)
22 May 2012; William Hubbs <williamh@gentoo.org> +openrc-0.10.ebuild:
version bump, bug #405503 tracks changes
16 May 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
update live ebuild for migration to /run on linux systems.
26 Apr 2012; Alexis Ballier <aballier@gentoo.org> openrc-0.9.9.3.ebuild,
openrc-9999.ebuild:
keyword ~amd64-fbsd
02 Apr 2012; William Hubbs <williamh@gentoo.org> -openrc-0.8.3-r1.ebuild,
-openrc-0.9.4.ebuild:
remove old stable versions
*openrc-0.9.9.3 (11 Mar 2012)
11 Mar 2012; Robin H. Johnson <robbat2@gentoo.org> +openrc-0.9.9.3.ebuild:
Version bump, includes critical fix for bug 407757 ifconfig binary move.
*openrc-0.9.9.2 (26 Feb 2012)
26 Feb 2012; William Hubbs <williamh@gentoo.org> +openrc-0.9.9.2.ebuild:
version bump for bug #405713
*openrc-0.9.9.1 (24 Feb 2012)
24 Feb 2012; William Hubbs <williamh@gentoo.org> +openrc-0.9.9.1.ebuild:
version bump for bug #386623
23 Feb 2012; William Hubbs <williamh@gentoo.org> openrc-0.8.3-r1.ebuild,
openrc-0.9.4.ebuild, openrc-0.9.8.4.ebuild, openrc-0.9.9.ebuild,
openrc-9999.ebuild:
repoman fixes
*openrc-0.9.9 (22 Feb 2012)
22 Feb 2012; William Hubbs <williamh@gentoo.org> +openrc-0.9.9.ebuild:
version bump, bug #399185 tracks changes.
13 Feb 2012; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
add swapfiles to the boot runlevel
08 Feb 2012; William Hubbs <williamh@gentoo.org> -openrc-0.9.8.1.ebuild,
-openrc-0.9.8.2.ebuild, -openrc-0.9.8.ebuild:
remove unstable 0.9.8.x versions
04 Feb 2012; Raúl Porcel <armin76@gentoo.org> openrc-0.9.8.4.ebuild:
alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #401593
01 Feb 2012; Samuli Suominen <ssuominen@gentoo.org> openrc-0.9.8.4.ebuild:
ppc/ppc64 stable wrt #401593
31 Jan 2012; Jeroen Roovers <jer@gentoo.org> openrc-0.9.8.4.ebuild:
Stable for HPPA (bug #401593).
31 Jan 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.9.8.4.ebuild:
Stable for amd64, wrt bug #401593
31 Jan 2012; Jeff Horelick <jdhore@gentoo.org> openrc-0.9.8.4.ebuild:
x86 fast stable wrt bug 401593
*openrc-0.9.8.4 (30 Jan 2012)
30 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> +openrc-0.9.8.4.ebuild,
-openrc-0.9.8.3.ebuild:
Version bump, release tracker bug #401555, I screwed up 0.9.8.3 and it was
identical to 0.9.8.2 instead of having the needed fixes.
*openrc-0.9.8.3 (30 Jan 2012)
30 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> +openrc-0.9.8.3.ebuild:
Version bump, release tracker bug #401555.
28 Jan 2012; Raúl Porcel <armin76@gentoo.org> openrc-0.9.8.2.ebuild:
alpha/arm/ia64/m68k/s390/sh/sparc stable wrt #399793
25 Jan 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.9.8.2.ebuild:
Stable for AMD64, wrt bug #399793
25 Jan 2012; Jeff Horelick <jdhore@gentoo.org> openrc-0.9.8.2.ebuild:
x86 stable per bug 399793
25 Jan 2012; Jeroen Roovers <jer@gentoo.org> openrc-0.9.8.2.ebuild:
Stable for HPPA (bug #399793).
*openrc-0.9.8.2 (25 Jan 2012)
25 Jan 2012; Robin H. Johnson <robbat2@gentoo.org> +openrc-0.9.8.2.ebuild:
Bugfix release with two oldnet fixes: ethtool (#399037) and bonding (#400613).
23 Jan 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.9.8.1.ebuild:
Stable for AMD64, wrt bug #399793
23 Jan 2012; Agostino Sarubbo <ago@gentoo.org> openrc-0.9.8.1.ebuild:
Stable for X86, wrt bug #399793
*openrc-0.9.8.1 (14 Jan 2012)
14 Jan 2012; William Hubbs <williamh@gentoo.org> +openrc-0.9.8.1.ebuild:
version bump, bug #398727 tracks changes.
12 Jan 2012; William Hubbs <williamh@gentoo.org> -openrc-0.9.7.ebuild:
remove old version
*openrc-0.9.8 (07 Jan 2012)
07 Jan 2012; William Hubbs <williamh@gentoo.org> +openrc-0.9.8.ebuild:
version bump, bug #394205 tracks changes since openrc-0.9.7.
17 Dec 2011; Raúl Porcel <armin76@gentoo.org> openrc-0.9.4.ebuild:
sparc stable wrt #391271
14 Dec 2011; William Hubbs <williamh@gentoo.org> openrc-0.9.4.ebuild,
openrc-0.9.7.ebuild, openrc-9999.ebuild:
Update pam dependency for bug #392995. Now we depend on sys-auth/pambase
instead of virtual/pam.
*openrc-0.9.7 (10 Dec 2011)
10 Dec 2011; William Hubbs <williamh@gentoo.org> +openrc-0.9.7.ebuild:
Version bump, bug #387433 tracks changes.
09 Dec 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.9.4.ebuild:
Mark alpha/ia64/s390/sh stable #391271 by Christian Ruppert.
04 Dec 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
migrate-run service was dropped from git, so we can remove it here.
03 Dec 2011; William Hubbs <williamh@gentoo.org> -openrc-0.9.2.ebuild,
-openrc-0.9.3.ebuild, -openrc-0.9.3-r1.ebuild:
remove older 0.9.x versions since 0.9.4 is going stable.
03 Dec 2011; Markus Meier <maekke@gentoo.org> openrc-0.9.4.ebuild:
arm stable, bug #391271
30 Nov 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.8.3-r1.ebuild,
openrc-0.9.2.ebuild, openrc-0.9.3.ebuild, openrc-0.9.3-r1.ebuild,
openrc-0.9.4.ebuild, openrc-9999.ebuild:
Depend on psmisc since we want fuser.
28 Nov 2011; Pawel Hajdan jr <phajdan.jr@gentoo.org> openrc-0.9.4.ebuild:
x86 stable wrt bug #391271
26 Nov 2011; William Hubbs <williamh@gentoo.org> -openrc-0.9.6.ebuild:
remove release that did not work with rc_parallel
26 Nov 2011; Markos Chandras <hwoarang@gentoo.org> openrc-0.9.4.ebuild:
Stable on amd64 wrt bug #391271
25 Nov 2011; William Hubbs <williamh@gentoo.org> openrc-0.9.6.ebuild,
openrc-9999.ebuild:
update a comment
*openrc-0.9.6 (25 Nov 2011)
25 Nov 2011; William Hubbs <williamh@gentoo.org> +openrc-0.9.6.ebuild,
openrc-9999.ebuild:
version bump, bug #387433 tracks changes since openrc-0.9.4.
22 Nov 2011; Jeroen Roovers <jer@gentoo.org> openrc-0.9.4.ebuild:
Stable for HPPA (bug #391271).
22 Nov 2011; Kacper Kowalik <xarthisius@gentoo.org> openrc-0.9.4.ebuild:
ppc/ppc64 stable wrt #391271
21 Nov 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.9.4.ebuild,
openrc-9999.ebuild:
Move baselayout-1 internal cleanup to baselayout as suggested by William.
21 Nov 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.9.4.ebuild,
openrc-9999.ebuild:
Trim old baselayout-1 dirs in /lib/.
18 Nov 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Add static-libs use flag for bug #378267
16 Nov 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Since oldnet is now the default upstream, we do not need to force this
in the ebuild.
07 Nov 2011; Alexis Ballier <aballier@gentoo.org> openrc-0.8.3-r1.ebuild,
openrc-0.9.2.ebuild, openrc-0.9.3.ebuild, openrc-0.9.3-r1.ebuild,
openrc-0.9.4.ebuild, openrc-9999.ebuild:
A new fuser is provided by freebsd-ubin starting from FreeBSD 9, change deps
to reflect that.
*openrc-0.9.4 (16 Oct 2011)
16 Oct 2011; Christian Ruppert <idl0r@gentoo.org> +openrc-0.9.4.ebuild:
Version bump to 0.9.4.
*openrc-0.9.3-r1 (10 Sep 2011)
10 Sep 2011; William Hubbs <williamh@gentoo.org> +openrc-0.9.3-r1.ebuild,
openrc-9999.ebuild:
revert change to LIBEXEC for bug 381783.
*openrc-0.9.3 (08 Sep 2011)
08 Sep 2011; William Hubbs <williamh@gentoo.org> +openrc-0.9.3.ebuild:
version bump for bug #381783.
*openrc-0.9.2 (02 Sep 2011)
02 Sep 2011; William Hubbs <williamh@gentoo.org> -openrc-0.9.1.ebuild,
+openrc-0.9.2.ebuild:
version bump, bug #381523 tracks changes since 0.9.1.
*openrc-0.9.1 (01 Sep 2011)
01 Sep 2011; William Hubbs <williamh@gentoo.org> -openrc-0.9.0.ebuild,
+openrc-0.9.1.ebuild:
version bump , bug #381463 tracks fixes since openrc-0.9.0.
*openrc-0.9.0 (01 Sep 2011)
01 Sep 2011; William Hubbs <williamh@gentoo.org> +openrc-0.9.0.ebuild:
version bump, bug #374183 tracks changes since openrc-0.8.3.
01 Sep 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild,
+files/start-stop-daemon.pam:
Make start-stop-daemon use system-services PAM stack.
This closes bug #365149.
12 Jul 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
libexecdir should use "lib" instead of "$(get_libdir)"
12 Jul 2011; William Hubbs <williamh@gentoo.org> -openrc-0.8.2-r1.ebuild:
remove old version
10 Jul 2011; Jeroen Roovers <jer@gentoo.org> openrc-0.8.3-r1.ebuild:
Stable for HPPA (bug #373251).
09 Jul 2011; Kacper Kowalik <xarthisius@gentoo.org> openrc-0.8.3-r1.ebuild:
ppc/ppc64 stable wrt #373251
02 Jul 2011; Raúl Porcel <armin76@gentoo.org> openrc-0.8.3-r1.ebuild:
alpha/arm/ia64/sh/sparc/x86 stable wrt #373251
02 Jul 2011; Markos Chandras <hwoarang@gentoo.org> openrc-0.8.3-r1.ebuild:
Stable on amd64 wrt bug #373251
28 Jun 2011; William Hubbs <williamh@gentoo.org> -openrc-0.8.3.ebuild:
remove old version
28 Jun 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.8.3-r1.ebuild:
Mark m68k/s390 stable #367467.
28 Jun 2011; Mike Frysinger <vapier@gentoo.org> openrc-0.8.3-r1.ebuild,
+files/openrc-0.8.3-ccwgroup.patch:
Fix s390 interface handling #367467.
*openrc-0.8.3-r1 (28 Jun 2011)
28 Jun 2011; William Hubbs <williamh@gentoo.org> openrc-0.8.3.ebuild,
+openrc-0.8.3-r1.ebuild:
Rev bumped the deprecation warning fix. If we do this in 0.8.3 we get no
~arch testing time, and I don't see that this needs to go directly to
stable since it is a trivial fix. If it is critical, we can bump the
stable request to 0.8.3-r1.
28 Jun 2011; Christian Ruppert <idl0r@gentoo.org> openrc-0.8.3.ebuild,
+files/openrc-0.8.3-deprecation_warning.patch:
Fix deprecation warning for -c/--chuid, take a look at the patch for more
details.
*openrc-0.8.3 (20 Jun 2011)
20 Jun 2011; William Hubbs <williamh@gentoo.org> +openrc-0.8.3.ebuild:
version bump
20 Jun 2011; William Hubbs <williamh@gentoo.org> -openrc-0.6.8.ebuild,
-openrc-0.7.0.ebuild, -openrc-0.8.2.ebuild:
remove old versions
20 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> openrc-9999.ebuild:
Migrate to EAPI=4. Acked by William and Jeremy.
13 May 2011; Raúl Porcel <armin76@gentoo.org> openrc-0.8.2-r1.ebuild:
alpha/arm/ia64/sh/sparc stable wrt #295613
12 May 2011; Joseph Jezak <josejx@gentoo.org> openrc-0.8.2-r1.ebuild:
Marked ppc/ppc64 stable for bug #295613.
09 May 2011; Jeroen Roovers <jer@gentoo.org> openrc-0.8.2-r1.ebuild:
Stable for HPPA (bug #295613).
08 May 2011; Pacho Ramos <pacho@gentoo.org> openrc-0.8.2-r1.ebuild:
amd64 stable, bug 295613
08 May 2011; Christian Faulhammer <fauli@gentoo.org> openrc-0.8.2-r1.ebuild:
stable x86, bug 295613
*openrc-0.8.2-r1 (28 Apr 2011)
28 Apr 2011; William Hubbs <williamh@gentoo.org> +openrc-0.8.2-r1.ebuild:
Revision bump for local.d migration fix
17 Apr 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
fix the migration of /etc/conf.d/local.* for bug #363949.
16 Apr 2011; William Hubbs <williamh@gentoo.org> -openrc-0.8.1.ebuild:
remove broken version
*openrc-0.8.2 (16 Apr 2011)
16 Apr 2011; William Hubbs <williamh@gentoo.org> +openrc-0.8.2.ebuild:
version bump
15 Apr 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Fix conf.d/local -> local.d transition for bug #363637.
15 Apr 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Disable consolefont on hppa by default for bug #222889, thanks to
Jeroen Roovers .
12 Apr 2011; William Hubbs <williamh@gentoo.org> -openrc-0.6.3.ebuild,
-openrc-0.6.5.ebuild, -openrc-0.6.6.ebuild, -openrc-0.6.7.ebuild,
-openrc-0.8.0.ebuild:
remove old versions
*openrc-0.8.1 (12 Apr 2011)
12 Apr 2011; William Hubbs <williamh@gentoo.org> +openrc-0.8.1.ebuild:
version bump
24 Mar 2011; William Hubbs <williamh@gentoo.org> openrc-0.8.0.ebuild,
openrc-9999.ebuild:
remove instructions regarding /etc/conf.d/local since they no longer apply
for bug #360293.
*openrc-0.8.0 (22 Mar 2011)
22 Mar 2011; William Hubbs <williamh@gentoo.org> +openrc-0.8.0.ebuild:
version bump
22 Feb 2011; Robin H. Johnson <robbat2@gentoo.org> openrc-9999.ebuild:
README.net is now README.newnet.
01 Feb 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
add selinux use flag support for bug #351712
31 Jan 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Bug #289264 is fixed upstream, so remove the sed that worked around it.
23 Jan 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Fix the /etc/conf.d/local.{start,stop} migration from baselayout-1 to
migrate these files to /etc/local.d/baselayout1.start and
/etc/local.d/baselayout1.stop.
This is for bug #351465.
*openrc-0.7.0 (13 Jan 2011)
13 Jan 2011; William Hubbs <williamh@gentoo.org> +openrc-0.7.0.ebuild:
version bump with a significant number of bug fixes.
Upgrading is recommended.
06 Jan 2011; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
remove /etc/init.d/{depscan,runscript}.sh for bug #347483.
*openrc-0.6.8 (08 Dec 2010)
08 Dec 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.8.ebuild:
version bump:
bug 232347: fix netmount to respect _netdev option
Bug 345281: If wpa_supplicant is built w/ USE=dbus, start after DBus is
up, thanks to Robin Johnson.
bug 347503: fix selinux context for rc-svcdir, thanks to Robin Johnson.
*openrc-0.6.7 (03 Dec 2010)
03 Dec 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.7.ebuild:
version bump for bug #319865.
03 Dec 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.5.ebuild:
re-add 0.6.5
*openrc-0.6.6 (30 Nov 2010)
30 Nov 2010; William Hubbs <williamh@gentoo.org> -openrc-0.6.5.ebuild,
+openrc-0.6.6.ebuild:
version bump and remove old version
*openrc-0.6.5 (21 Nov 2010)
21 Nov 2010; William Hubbs <williamh@gentoo.org> -openrc-0.6.2.ebuild,
-files/openrc-0.6.2-fix-make-3.82.patch, -openrc-0.6.4.ebuild,
+openrc-0.6.5.ebuild:
version bump and remove old versions
15 Nov 2010; William Hubbs <williamh@gentoo.org> -openrc-0.6.0-r1.ebuild,
-files/openrc-0.6.0-fix-bsd-compile.patch,
-files/openrc-0.6.0-fix-vlan.patch, -files/openrc-0.6.0-typos.patch,
-openrc-0.6.1-r1.ebuild, -files/openrc-0.6.1-network-syntax.patch:
removed some old versions
*openrc-0.6.4 (15 Nov 2010)
15 Nov 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.4.ebuild:
version bump
10 Nov 2010; Mike Frysinger <vapier@gentoo.org> openrc-0.6.3.ebuild,
openrc-9999.ebuild:
Auto migrate conf.d/local.{start,stop} to conf.d/local #343709 by Markos
Chandras.
*openrc-0.6.3 (02 Sep 2010)
02 Sep 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.3.ebuild,
metadata.xml:
version bump and fix metadata to reflect the correct herd.
22 Aug 2010; Jory A. Pratt <anarchy@gentoo.org> openrc-0.6.2.ebuild,
+files/openrc-0.6.2-fix-make-3.82.patch:
Fix make breakage bug #333461, also allow user to apply conditional
patches between releases without modifying ebuild.
21 Aug 2010; Mike Frysinger <vapier@gentoo.org> openrc-0.6.2.ebuild,
openrc-9999.ebuild:
Update HOMEPAGE #333759 by Xake.
*openrc-0.6.2 (19 Aug 2010)
19 Aug 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.2.ebuild:
version bump
08 Jul 2010; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
changed the live ebuild to refer to gentoo's git repository.
04 Jul 2010; Mike Frysinger <vapier@gentoo.org> metadata.xml:
Update metadata.xml now that Roy isnt working on things.
*openrc-0.6.1-r1 (23 Mar 2010)
23 Mar 2010; Mike Frysinger <vapier@gentoo.org> +openrc-0.6.1-r1.ebuild,
+files/openrc-0.6.1-network-syntax.patch:
Fix by Lars Wendler for syntax error in network init.d script #310805 by
Leonid Podolny.
*openrc-0.6.1 (22 Mar 2010)
22 Mar 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.1.ebuild:
version bump
23 Jan 2010; William Hubbs <williamh@gentoo.org> -openrc-0.6.0.ebuild:
removed old version and fixed copyright date
*openrc-0.6.0-r1 (20 Jan 2010)
20 Jan 2010; William Hubbs <williamh@gentoo.org> +openrc-0.6.0-r1.ebuild,
+files/openrc-0.6.0-fix-bsd-compile.patch,
+files/openrc-0.6.0-fix-vlan.patch, +files/openrc-0.6.0-typos.patch:
This new revision fixes #301594, an issue with the vlan support
and several typos.
22 Dec 2009; William Hubbs <williamh@gentoo.org> -openrc-0.5.3.ebuild:
removed old version
*openrc-0.6.0 (21 Dec 2009)
21 Dec 2009; William Hubbs <williamh@gentoo.org> +openrc-0.6.0.ebuild:
version bump
21 Dec 2009; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
typo fixes
21 Dec 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.5.3.ebuild,
openrc-9999.ebuild, +files/openrc-9999-pause.patch:
Restore "pause" functionality to teach people to convert #218859 by Martin
Mokrejš.
21 Dec 2009; Mike Frysinger <vapier@gentoo.org>
files/openrc-9999-msg-style.patch:
Restore more e* output style.
07 Dec 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.5.3.ebuild,
openrc-9999.ebuild:
Migrate hostname by default to avoid default thrashing on conf.d/hostname
#295406 by Martin Mokrejš. Also delay automatic dep tree update till
after we are done screwing with /etc.
06 Dec 2009; William Hubbs <williamh@gentoo.org> -openrc-0.5.2-r2.ebuild,
-files/openrc-0.5.2-dont-wipe-wtmp.patch,
-files/openrc-0.5.2-fix-default-domain.patch,
-files/openrc-0.5.2-fix-iproute2-support.patch,
-files/openrc-0.5.2-linux-containers.patch,
-files/openrc-0.5.2-ppp-options.patch:
removed old version
*openrc-0.5.3 (02 Dec 2009)
02 Dec 2009; William Hubbs <williamh@gentoo.org> +openrc-0.5.3.ebuild:
version bump
19 Nov 2009; William Hubbs <williamh@gentoo.org>
-files/0.5.2/0001-msg-style.patch,
-files/0.5.2/0002-useful-functions.patch, -files/0.5.2/0003-KV.patch,
-files/0.5.2/0004-fix-typo.patch,
-files/0.5.2/0005-fix-iproute2-support.patch,
-files/9999/0001-msg-style.patch,
-files/9999/0002-fix-iproute2-support.patch, -openrc-0.5.2-r1.ebuild,
-files/9999/0003-dont-wipe-wtmp.patch:
removed old version
13 Nov 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-0.5.2-r2.ebuild,
openrc-9999.ebuild:
Cleanup udev enable logic.
11 Nov 2009; William Hubbs <williamh@gentoo.org> -openrc-0.5.2.ebuild:
removed old version
10 Nov 2009; William Hubbs <williamh@gentoo.org> openrc-0.5.2-r2.ebuild,
openrc-9999.ebuild:
fixed typo
*openrc-0.5.2-r2 (10 Nov 2009)
10 Nov 2009; William Hubbs <williamh@gentoo.org> +openrc-0.5.2-r2.ebuild,
+files/openrc-0.5.2-dont-wipe-wtmp.patch,
+files/openrc-0.5.2-fix-default-domain.patch,
+files/openrc-0.5.2-fix-iproute2-support.patch,
+files/openrc-0.5.2-linux-containers.patch,
+files/openrc-0.5.2-ppp-options.patch, openrc-9999.ebuild,
+files/openrc-9999-msg-style.patch:
Revision bump and sync with live ebuild.
This new revision adds linux containers support, fixes ppp options,
and fixes #289849.
08 Nov 2009; William Hubbs <williamh@gentoo.org>
-files/0.4.2/0001-msg-style.patch,
-files/0.4.2/0002-useful-functions.patch, -files/0.4.2/0003-KV.patch,
-files/0.4.3/0001-fix-is_older_than.patch,
-files/0.4.3/0002-support-custom-status.patch, -openrc-0.4.3-r4.ebuild,
-files/0.4.3/0003-command-line-size-fix.patch:
removed old version
08 Nov 2009; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
Fix the live ebuild to remove /etc/conf.d/net.example and
/etc/conf.d/wireless.example if they have not been modified and to add
comments to them advising that they are obsolete if they have.
This closes #291254.
31 Oct 2009; William Hubbs <williamh@gentoo.org> openrc-9999.ebuild:
removed dev spaces from src_uri
29 Oct 2009; William Hubbs <williamh@gentoo.org>
+files/0.4.2/0001-msg-style.patch,
+files/0.4.2/0002-useful-functions.patch, +files/0.4.2/0003-KV.patch:
restored 0.4.2 patches
29 Oct 2009; William Hubbs <williamh@gentoo.org>
+files/9999/0002-fix-iproute2-support.patch,
-files/9999/0002-useful-functions.patch, -files/9999/0003-KV.patch,
+files/9999/0003-dont-wipe-wtmp.patch:
Updated the patches for the live ebuild.
28 Oct 2009; William Hubbs <williamh@gentoo.org>
-files/0.4.2/0001-msg-style.patch,
-files/0.4.2/0002-useful-functions.patch, -files/0.4.2/0003-KV.patch:
Removed old patches since we do not have openrc-0.4.2 in the tree.
*openrc-0.5.2-r1 (20 Oct 2009)
20 Oct 2009; William Hubbs <williamh@gentoo.org>
+files/0.5.2/0005-fix-iproute2-support.patch, +openrc-0.5.2-r1.ebuild,
metadata.xml:
Fixed iproute2 support for bug #289762.
Removed oldnet from metadata.
*openrc-0.5.2 (19 Oct 2009)
19 Oct 2009; William Hubbs <williamh@gentoo.org>
+files/0.5.2/0001-msg-style.patch, +openrc-0.5.2.ebuild,
+files/0.5.2/0002-useful-functions.patch, openrc-9999.ebuild,
+files/0.5.2/0003-KV.patch, +files/0.5.2/0004-fix-typo.patch:
Version bump and synced with live ebuild.
18 Oct 2009; Thomas Sachau (Tommy[D]) <tommy@gentoo.org>
openrc-0.5.1-r1.ebuild, openrc-9999.ebuild:
Set ABI dependent vars at the beginning of each src_* function needing
them, fixes bug #289314
16 Oct 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.5.1-r1.ebuild,
openrc-9999.ebuild:
Workaround parallel build issues #289264.
16 Oct 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.5.1-r1.ebuild,
openrc-9999.ebuild:
Set rc_shell to /sbin/sulogin by default when it is installed.
15 Oct 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.5.1-r1.ebuild,
openrc-9999.ebuild:
Relocate docs to normal Gentoo location #241342 by Diego E. Pettenò.
*openrc-0.5.1-r1 (15 Oct 2009)
15 Oct 2009; Mike Frysinger <vapier@gentoo.org> +openrc-0.5.1-r1.ebuild,
openrc-9999.ebuild:
Rewrite the oldnet handling and make it the default for everyone.
10 Oct 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-0.5.1.ebuild,
openrc-9999.ebuild:
Fixed enabling unicode in rc.conf, thanks to polynomial-c, bug #288383.
*openrc-0.5.1 (09 Oct 2009)
09 Oct 2009; Matthias Schwarzott <zzam@gentoo.org>
+files/0.5.1/0001-msg-style.patch, +openrc-0.5.1.ebuild,
+files/0.5.1/0002-useful-functions.patch, openrc-9999.ebuild,
+files/0.5.1/0003-KV.patch, metadata.xml:
Version bumped. Add default enabled use-flag oldnet to install old-style
net.* init-scripts additionally to new ones. Synced with live ebuild.
*openrc-0.4.3-r4 (08 Oct 2009)
08 Oct 2009; Pielmeier Daniel <billie@gentoo.org> +openrc-0.4.3-r4.ebuild,
+files/openrc.logrotate:
Revision bump. Add support for logfile rotation. Closes bug #262035.
23 Aug 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.4.3-r3.ebuild,
openrc-9999.ebuild:
Make sure ${ROOT}/etc/runlevels exists early enough #277323 by Ed
Wildgoose.
11 Jul 2009; Robin H. Johnson <robbat2@gentoo.org>
+files/0.4.3/0003-command-line-size-fix.patch, openrc-0.4.3-r3.ebuild:
Bug #276715: Failure to compile with newer kernel headers due to
COMMAND_LINE_SIZE definition.
15 Jun 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-9999.ebuild:
Add missing leading slash to LIBEXECDIR.
08 Jun 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.4.3-r2.ebuild,
openrc-0.4.3-r3.ebuild, openrc-9999.ebuild:
Fix latent LIBDIR references #273224 by Peter Alfredsen.
*openrc-0.4.3-r3 (08 Jun 2009)
08 Jun 2009; Mike Frysinger <vapier@gentoo.org> +openrc-0.4.3-r3.ebuild:
Revert ldscript changes as they inadvertently break some init.d scripts
#270646 by Mike Auty.
08 Jun 2009; Mike Frysinger <vapier@gentoo.org> openrc-9999.ebuild:
Sync changes from 0.4.3 back and merge the live/release versions.
29 May 2009; Mike Frysinger <vapier@gentoo.org> openrc-9999.ebuild:
Update repos to point to git #269705 by William Keaney.
09 May 2009; Mike Frysinger <vapier@gentoo.org> openrc-0.4.3-r2.ebuild:
Remove LIBDIR from env #266688, switch to get_libdir, and install shared
libs better with gen_usr_ldscript. Also install files with 644 rather than
444.
27 Apr 2009; Mike Frysinger <vapier@gentoo.org>
files/9999/0001-msg-style.patch, files/9999/0002-useful-functions.patch,
files/9999/0003-KV.patch:
Update patches against latest svn #267540 by Vivien Moreau.
18 Apr 2009; Benedikt Böhm <hollow@gentoo.org>
files/0.4.3/0002-support-custom-status.patch:
backport r1523 and r1524 to fix compile on FreeBSD and still provide the
system status function in custom hooks
*openrc-0.4.3-r2 (18 Apr 2009)
18 Apr 2009; Benedikt Böhm <hollow@gentoo.org>
+files/0.4.3/0002-support-custom-status.patch,
-files/openrc-0.4.3-fix-is_older_than.patch,
+files/0.4.3/0001-fix-is_older_than.patch, openrc-0.4.3-r1.ebuild,
+openrc-0.4.3-r2.ebuild:
backport r1520 to support custom status function and return 32 if service
has crashed. fixes #215355
16 Feb 2009; Matthias Schwarzott <zzam@gentoo.org> -openrc-0.4.3.ebuild:
Remove version 0.4.3
*openrc-0.4.3-r1 (13 Feb 2009)
13 Feb 2009; Matthias Schwarzott <zzam@gentoo.org>
+files/openrc-0.4.3-fix-is_older_than.patch, +openrc-0.4.3-r1.ebuild:
Fix is_older_than, Bug #258688.
11 Feb 2009; Doug Goldstein <cardoe@gentoo.org>
-files/0.4.3/0001-msg-style.patch,
-files/0.4.3/0002-useful-functions.patch, -files/0.4.3/0003-KV.patch,
openrc-0.4.3.ebuild:
0.4.3 patches are identical to 0.4.2. reuse 0.4.2 patches to save cvs
space and fix weird rsyncing error
*openrc-0.4.3 (11 Feb 2009)
11 Feb 2009; Matthias Schwarzott <zzam@gentoo.org>
+files/0.4.3/0001-msg-style.patch,
+files/0.4.3/0002-useful-functions.patch, +files/0.4.3/0003-KV.patch,
+openrc-0.4.3.ebuild:
Version bumped. Fixes a lot of issues. Like clock skew handling.
wpa_supplicant stuff, openvz handling, s-s-d environment and umask.
31 Jan 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-0.4.2.ebuild,
openrc-9999.ebuild:
Sync 0.4.2 and 9999 ebuild. This does not change anything for 0.4.2
ebuild.
28 Jan 2009; Matthias Schwarzott <zzam@gentoo.org> openrc-9999.ebuild:
Use specialized svnversion command to get commit version.
*openrc-0.4.2 (14 Jan 2009)
14 Jan 2009; Matthias Schwarzott <zzam@gentoo.org>
+files/0.4.2/0001-msg-style.patch,
+files/0.4.2/0002-useful-functions.patch, +files/0.4.2/0003-KV.patch,
+files/0.4.2/0004-svn-version.patch, +openrc-0.4.2.ebuild:
Version bumped. Bug #254239. This fixes lots of details like compilation
on non-linux, forcefsck only applying to boot and not shutdown.
08 Jan 2009; Jeroen Roovers <jer@gentoo.org> metadata.xml:
Improve description after private conversation with Roy.
03 Jan 2009; Jeroen Roovers <jer@gentoo.org> metadata.xml:
Change comment into useable tags.
01 Jan 2009; Benedikt Böhm <hollow@gentoo.org>
+files/0.4.0/0005-init-script-novserver.patch:
fix dmesg and sysfs init script inside vservers, bug #253105
31 Dec 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.4.1-r1.ebuild,
openrc-9999.ebuild:
invert module-init-tools depend so we're not always pulling it in. the
depend was to avoid a specific issue with older module-init-tools
30 Dec 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.4.1-r1.ebuild,
openrc-9999.ebuild:
remove old clock init script forcibly during the upgrade since it appears
to cause problems. bug #252380
*openrc-0.4.1-r1 (29 Dec 2008)
29 Dec 2008; Doug Goldstein <cardoe@gentoo.org>
-files/0.3.0/0001-Fix-a-segfault-when-profile.env-does-not-exist.patch,
-files/0.3.0/0005-add-back-KV_-funcs.patch,
+files/0.4.0/0004-s-s-d-retry.patch,
-files/0.3.0/0003-This-reverts-commit-0e2f160c95b15e95f3885e3f5a3670ec.pat
ch, -files/0.3.0/0006-Fix-tests-Gentoo-240350.patch,
-files/0.3.0/0002-kenv-is-not-always-available.patch,
-files/0.3.0/0007-Fix-utmp-permissions-Gentoo-240437.patch,
-files/0.3.0/0004-add-a-softlevel-function-to-the-API-so-people-dont.patch
, -files/0.3.0/0008-Clean-up-warnings-regarding-printf.patch,
-openrc-0.3.0-r1.ebuild, -openrc-0.4.0.ebuild, -openrc-0.4.1.ebuild,
+openrc-0.4.1-r1.ebuild:
fix s-s-d signals on retry. bug #252621. remove old versions
24 Dec 2008; Matthias Schwarzott <zzam@gentoo.org> openrc-0.4.1.ebuild:
Fix patches directory, bug #252340. Update ebuild to match the old 0.4.0
ebuild.
*openrc-0.4.1 (23 Dec 2008)
23 Dec 2008; Doug Goldstein <cardoe@gentoo.org> +openrc-0.4.1.ebuild:
version bump. fixes s-s-d process matching and segfaults. fixes
netplug/ifplug/wpa_supplicant up events. adds support for wpa_supplicant
ctrl_interface directive. fix bug #251839 (and more)
20 Dec 2008; Zac Medico <zmedico@gentoo.org> openrc-0.4.0.ebuild:
Bug #251749 - Fix typo in sys-apps/sysvinit blocker.
19 Dec 2008; Matthias Schwarzott <zzam@gentoo.org> openrc-0.4.0.ebuild,
openrc-9999.ebuild:
Try to auto-detect on update, if the old version had udev enabled, and add
it to sysinit runlevel if yes.
17 Dec 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.3.0-r1.ebuild,
openrc-0.4.0.ebuild, openrc-9999.ebuild:
add elibc_glibc to IUSE
17 Dec 2008; Doug Goldstein <cardoe@gentoo.org>
-files/0.2.5/0001-msg-style.patch,
-files/0.2.5/0002-useful-functions.patch, -files/0.2.5/0003-KV.patch,
-openrc-0.2.5.ebuild:
remove old version from the tree
13 Dec 2008; Matthias Schwarzott <zzam@gentoo.org> openrc-9999.ebuild:
Fix update code. Switch over to svn repository.
10 Dec 2008; Doug Goldstein <cardoe@gentoo.org> openrc-9999.ebuild:
Add runlevel migration support and update depends for live git build
*openrc-0.4.0 (10 Dec 2008)
10 Dec 2008; Doug Goldstein <cardoe@gentoo.org>
+files/0.4.0/0001-msg-style.patch,
+files/0.4.0/0002-useful-functions.patch, +files/0.4.0/0003-KV.patch,
+openrc-0.4.0.ebuild:
add OpenRC 0.4.0 which should fix many outstanding bugs
*openrc-0.3.0-r1 (08 Oct 2008)
08 Oct 2008; Doug Goldstein <cardoe@gentoo.org>
-files/openrc-0.2.4-start-nodep.patch,
+files/0.3.0/0006-Fix-tests-Gentoo-240350.patch,
+files/0.3.0/0007-Fix-utmp-permissions-Gentoo-240437.patch,
+files/0.3.0/0008-Clean-up-warnings-regarding-printf.patch,
-openrc-0.3.0.ebuild, +openrc-0.3.0-r1.ebuild:
fix bugs #240350, #240437. Fix printf warnings. Remove dead patch.
06 Oct 2008; Doug Goldstein <cardoe@gentoo.org>
+files/0.2.5/0002-useful-functions.patch, +files/0.2.5/0003-KV.patch,
files/9999/0002-useful-functions.patch, +files/0.2.5/0001-msg-style.patch,
-openrc-0.2.2.ebuild, -openrc-0.2.3.ebuild, -openrc-0.2.4.ebuild,
-openrc-0.2.4-r1.ebuild, openrc-0.2.5.ebuild:
create 0.2.5 patch directory and copy current patches there. Use that
directory for 0.2.5. Update live ebuild 0002 patch to current patch as the
original one doesn't apply. bug #238904. Remove outdated versions.
*openrc-0.3.0 (06 Oct 2008)
06 Oct 2008; Doug Goldstein <cardoe@gentoo.org>
+files/0.3.0/0001-Fix-a-segfault-when-profile.env-does-not-exist.patch,
+files/0.3.0/0002-kenv-is-not-always-available.patch,
+files/0.3.0/0004-add-a-softlevel-function-to-the-API-so-people-dont.patch
,
+files/0.3.0/0003-This-reverts-commit-0e2f160c95b15e95f3885e3f5a3670ec.pat
ch, +files/0.3.0/0005-add-back-KV_-funcs.patch, +openrc-0.3.0.ebuild:
version bump. forward port patches from 0.2.x and include some upstream
fixes
09 Jun 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.5.ebuild,
openrc-9999.ebuild:
always update the dependency tree so we don't boot with an out of date
tree. bug #224171
01 Jun 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2.5.ebuild,
openrc-9999.ebuild:
Fix net.lo test in upgrade path as pointed out by compguy284 #224425.
31 May 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2.5.ebuild,
openrc-9999.ebuild:
Do the timezone upgrade before moving the clock conf.d as pointed out by
Hopeless #222867.
*openrc-0.2.5 (29 May 2008)
29 May 2008; Doug Goldstein <cardoe@gentoo.org> +openrc-0.2.5.ebuild:
version bump to fix a few outstanding bugs. 1) when a process stops, it
may delete it's pid file before actually being stopped
*openrc-0.2.4-r1 (14 May 2008)
14 May 2008; Doug Goldstein <cardoe@gentoo.org> +openrc-0.2.4-r1.ebuild:
fix bug #221751 and bug #220579
*openrc-0.2.4 (11 May 2008)
11 May 2008; Mike Frysinger <vapier@gentoo.org> +openrc-0.2.4.ebuild:
Version bump.
*openrc-0.2.3 (29 Apr 2008)
29 Apr 2008; Doug Goldstein <cardoe@gentoo.org> +openrc-0.2.3.ebuild:
version bump. numerous bug fixes
19 Apr 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2.2.ebuild,
openrc-9999.ebuild:
Make sure to force glibc-2.5+ #218441 by onox.
15 Apr 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.1-r2.ebuild,
openrc-0.2.2.ebuild, openrc-9999.ebuild:
have to touch /etc/conf.d/net otherwise unmerge-orphans eats it later on
*openrc-0.2.2 (15 Apr 2008)
15 Apr 2008; Doug Goldstein <cardoe@gentoo.org> -openrc-0.2.1-r1.ebuild,
+openrc-0.2.2.ebuild:
version bump to get the latest fixes
15 Apr 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.1-r1.ebuild,
openrc-0.2.1-r2.ebuild, openrc-9999.ebuild:
fix bug #217764
*openrc-0.2.1-r2 (15 Apr 2008)
15 Apr 2008; Doug Goldstein <cardoe@gentoo.org>
+files/openrc-0.2.1-bad--help-output.patch,
+files/openrc-0.2.1-no-deref-null.patch,
+files/openrc-0.2.1-openvz-support.patch,
+files/openrc-0.2.1-respect-fastboot.patch, +openrc-0.2.1-r2.ebuild:
fix bug #216944 and other assorted issues
14 Apr 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.1-r1.ebuild,
openrc-9999.ebuild:
get rid of issue with 'net.*' literally appearing
12 Apr 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.1-r1.ebuild,
openrc-9999.ebuild:
reference OpenRC migration guide in pkg_postinst()
08 Apr 2008; Tobias Klausmann <klausman@gentoo.org>
openrc-0.2.1-r1.ebuild:
Keyworded on alpha, bug #214957
08 Apr 2008; Ryan Hill <dirtyepic@gentoo.org> openrc-0.2.1-r1.ebuild:
Keyword ~mips.
*openrc-0.2.1-r1 (04 Apr 2008)
04 Apr 2008; Doug Goldstein <cardoe@gentoo.org>
+files/openrc-0.2.1-empty-list-crash.patch,
-files/openrc-0.2-freebsd-install-rc.patch,
-files/openrc-0.2-multilib-fix.patch,
-files/openrc-0.2-multiple-ntp-servers.patch,
-files/openrc-0.2-nicelevel-doc.patch,
-files/openrc-0.2-path-fix-for-multilib-fix.patch,
-files/openrc-0.2-sysctl-vserver-fix.patch, -openrc-0.2.1.ebuild,
+openrc-0.2.1-r1.ebuild:
fix bug #216091. crash when stringlist was non-existant
03 Apr 2008; Raúl Porcel <armin76@gentoo.org> openrc-0.2.1.ebuild:
Add ~sparc wrt #214957
02 Apr 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2.1.ebuild,
openrc-9999.ebuild:
fix issue with installing boot initscripts that are provided by currently
installing copy of OpenRC
*openrc-0.2.1 (02 Apr 2008)
02 Apr 2008; Doug Goldstein <cardoe@gentoo.org> -openrc-0.2-r3.ebuild,
+openrc-0.2.1.ebuild:
version bump. fixes vlans. fixes termencoding/keymap issues.
31 Mar 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2-r3.ebuild,
openrc-9999.ebuild:
maybe_add_boot_init -> add_boot_init typo
*openrc-0.2-r3 (31 Mar 2008)
31 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
+files/openrc-0.2-nicelevel-doc.patch,
+files/openrc-0.2-path-fix-for-multilib-fix.patch, -openrc-0.2-r2.ebuild,
+openrc-0.2-r3.ebuild:
fix path issue introduced by multilib patch. document SSD_NICELEVEL
30 Mar 2008; Mike Frysinger <vapier@gentoo.org>
+files/9999/0001-msg-style.patch, +files/9999/0003-KV.patch,
+files/9999/0002-useful-functions.patch, openrc-0.2-r2.ebuild,
openrc-9999.ebuild:
Move patches here so we get them in releases.
30 Mar 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2-r2.ebuild,
openrc-9999.ebuild:
Autoadd device-mapper/dmcrypt/mdraid/lvm init.d scripts when
possible #215374.
29 Mar 2008; Jeroen Roovers <jer@gentoo.org> openrc-0.2-r2.ebuild:
Marked ~hppa (bug #214957).
*openrc-0.2-r2 (28 Mar 2008)
28 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
+files/openrc-0.2-multilib-fix.patch,
+files/openrc-0.2-multiple-ntp-servers.patch,
+files/openrc-0.2-sysctl-vserver-fix.patch, -openrc-0.2-r1.ebuild,
+openrc-0.2-r2.ebuild:
fix multilib issues. support multiple ntp servers. fix sysctl w/ vserver
issue.
28 Mar 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2-r1.ebuild,
openrc-9999.ebuild:
Make sure net init.d scripts are symlinks #215233 by Andrey Kislyuk.
28 Mar 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2-r1.ebuild,
openrc-9999.ebuild:
Drop USE=static since it doesnt really result in static.
28 Mar 2008; Alexis Ballier <aballier@gentoo.org> openrc-0.2-r1.ebuild:
keyword ~x86-fbsd
28 Mar 2008; Raúl Porcel <armin76@gentoo.org> openrc-0.2-r1.ebuild:
Add ~ia64 wrt #214957
27 Mar 2008; Doug Goldstein <cardoe@gentoo.org> openrc-0.2-r1.ebuild:
~sparc-fbsd per bug #214957
27 Mar 2008; Markus Rothe <corsair@gentoo.org> openrc-0.2-r1.ebuild:
Added ~ppc; bug #214957
27 Mar 2008; Markus Rothe <corsair@gentoo.org> openrc-0.2-r1.ebuild:
Added ~ppc64; bug #214957
*openrc-0.2-r1 (27 Mar 2008)
27 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
+files/openrc-0.2-freebsd-install-rc.patch, -openrc-0.2.ebuild,
+openrc-0.2-r1.ebuild:
install rc & rc.shutdown for Gentoo/FreeBSD users
27 Mar 2008; Mike Frysinger <vapier@gentoo.org> openrc-0.2.ebuild:
Add x86/arm love #214957 by Shvetsov Alexey.
*openrc-0.2 (26 Mar 2008)
26 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
-openrc-0.2_pre20080326.ebuild, +openrc-0.2.ebuild:
add OpenRC 0.2
*openrc-0.2_pre20080326 (26 Mar 2008)
26 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
-openrc-0.2_pre20080325.ebuild, +openrc-0.2_pre20080326.ebuild:
switched to proper branch for snapshot
*openrc-0.2_pre20080325 (25 Mar 2008)
25 Mar 2008; Doug Goldstein <cardoe@gentoo.org>
+openrc-0.2_pre20080325.ebuild:
add OpenRC 0.2 pre-release
*openrc-9999 (23 Mar 2008)
23 Mar 2008; Mike Frysinger <vapier@gentoo.org> +metadata.xml,
+openrc-9999.ebuild:
Initial ebuild #212696.
|