forked from wolf31o2-dot-org/overlays-wolf31o2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
6521 lines (5145 loc) · 258 KB
/
ChangeLog
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
# ChangeLog for overlays/wolf31o2
# Copyright 1999-2010 Chris Gianelloni; Distributed under the GPL v2
# $Id$
28 Aug 2010; Chris Gianelloni <[email protected]>
dev-java/jdbc-oracle-bin/Manifest, net-misc/cisco-vpnclient/Manifest,
sys-fs/dmraid/Manifest:
Manifest fixes.
25 Jul 2010; Chris Gianelloni <[email protected]>
-games-fps/ut2004-data/Manifest,
-metadata/cache/games-fps/ut2004-data-3186-r3, ut2004-data-3186-r3.ebuild,
-games-fps/ut2004/Manifest, -metadata/cache/games-fps/ut2004-data-3186-r4,
ut2004-data-3186-r4.ebuild, ut2004-3369-r4.ebuild,
-metadata/cache/games-fps/ut2004-3369-r5,
-games-fps/ut2004/files/ut2004.xml,
-metadata/cache/games-fps/ut2004-3369-r4, ut2004-3369-r5.ebuild:
Removing my copies of games-fps/ut2004 ebuilds.
18 Jul 2010; Chris Gianelloni <[email protected]>
metadata/cache/app-crypt/php-ca-1.1, php-ca-1.1.ebuild,
app-crypt/php-ca/Manifest:
Subversion is now under dev-vcs, so update the ebuild.
18 Jul 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-python/pygoogle-0.5.3,
+metadata/cache/dev-python/pygoogle-0.6:
Updating metadata/cache for the latest packages.
*pygoogle-0.6 (18 Jul 2010)
*pygoogle-0.5.3 (18 Jul 2010)
18 Jul 2010; Chris Gianelloni <[email protected]>
pygoogle-0.5.3.ebuild, pygoogle-0.6.ebuild,
+dev-python/pygoogle/ChangeLog, +dev-python/pygoogle/Manifest,
+dev-python/pygoogle/metadata.xml, profiles/package.mask:
Importing dev-python/pygoogle from Gentoo to save it from obscurity.
27 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-libs/libjingle-0.3.11-r1,
+metadata/cache/net-libs/libjingle-0.3.12:
Updating metadata/cache for latest packages.
*libjingle-0.3.12 (27 Jun 2010)
*libjingle-0.3.11-r1 (27 Jun 2010)
27 Jun 2010; Chris Gianelloni <[email protected]>
libjingle-0.3.11-r1.ebuild,
+net-libs/libjingle/files/libjingle-0.3.11-gcc43.patch,
libjingle-0.3.12.ebuild,
+net-libs/libjingle/files/libjingle-0.3.12-asneeded.patch,
+net-libs/libjingle/files/libjingle-0.3.12-gcc44.patch,
+net-libs/libjingle/ChangeLog, +net-libs/libjingle/Manifest,
+net-libs/libjingle/metadata.xml, profiles/package.mask:
Importing net-libs/libjingle from Gentoo's tree to save it from removal.
*apache-hbase-0.20.4 (23 Jun 2010)
23 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-db/apache-hbase-0.20.4, apache-hbase-0.20.4.ebuild,
dev-db/apache-hbase/Manifest:
Version bumping dev-db/apache-hbase to the latest 0.20.4 upstream release.
*apache-chukwa-0.4.0 (23 Jun 2010)
23 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/apache-chukwa-0.4.0,
apache-chukwa-0.4.0.ebuild, +sys-cluster/apache-chukwa/Manifest:
Initial import of sys-cluster/apache-chukwa ebuild, written by me.
*apache-zookeeper-3.3.1 (23 Jun 2010)
23 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/apache-zookeeper-3.3.1,
apache-zookeeper-3.3.1.ebuild, sys-cluster/apache-zookeeper/Manifest:
Version bumping sys-cluster/apache-zookeeper to the latest 3.3.1 upstream
release.
20 Jun 2010; Chris Gianelloni <[email protected]>
dev-lang/apache-pig/Manifest:
Manifest fix.
*apache-pig-0.7.0 (19 Jun 2010)
19 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-lang/apache-pig-0.7.0, apache-pig-0.7.0.ebuild,
dev-lang/apache-pig/Manifest:
Version bumping dev-lang/apache-pig to 0.7.0 upstream release.
*pdsh-2.18-r1 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
-metadata/cache/app-shells/pdsh-2.14, pdsh-2.14.ebuild,
-app-shells/pdsh/files/pdsh-2.14-gcc-4.3-unistd.h.patch,
-app-shells/pdsh/files/pdsh-2.14-glibc-2.8-ARG_MAX.patch,
-metadata/cache/app-shells/pdsh-2.16, pdsh-2.16.ebuild,
-metadata/cache/app-shells/pdsh-2.17, pdsh-2.17.ebuild,
-metadata/cache/app-shells/pdsh-2.18, pdsh-2.18.ebuild,
+metadata/cache/app-shells/pdsh-2.18-r1, pdsh-2.18-r1.ebuild,
-app-shells/pdsh/ChangeLog, app-shells/pdsh/Manifest,
-app-shells/pdsh/metadata.xml:
Revision bumping app-shells/pdsh to differentiate my version from
Gentoo's.
*discodb-0.3 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-db/discodb-0.3, discodb-0.3.ebuild,
+dev-db/discodb/Manifest:
Initial import of dev-db/discodb ebuild from Gentoo bug #323725. This
ebuild is written by Tim Cera <[email protected]>.
*disco-0.3 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/disco-0.3, disco-0.3.ebuild,
+sys-cluster/disco/Manifest:
Initial import of sys-cluster/disco ebuild from Gentoo bug #323723. This
ebuild is written by Tim Cera <[email protected]>.
*apache-pig-0.6.0 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-lang/apache-pig-0.6.0, apache-pig-0.6.0.ebuild,
+dev-lang/apache-pig/Manifest, profiles/categories:
Initial import of dev-lang/apache-pig ebuild from Gentoo bug #318167. This
ebuild is written by Tim Cera <[email protected]>.
*apache-zookeeper-3.3.0 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/apache-zookeeper-3.3.0,
apache-zookeeper-3.3.0.ebuild, +sys-cluster/apache-zookeeper/Manifest:
Initial import of sys-cluster/apache-zookeeper ebuild from Gentoo bug
#318029. This ebuild is written by Tim Cera <[email protected]>.
*apache-hbase-0.20.3 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-db/apache-hbase-0.20.3, apache-hbase-0.20.3.ebuild,
+dev-db/apache-hbase/Manifest:
Initial import of dev-db/apache-hbase ebuild from Gentoo bug #318085. This
ebuild is written by Tim Cera <[email protected]>.
*apache-hadoop-common-0.20.2 (18 Jun 2010)
18 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/apache-hadoop-common-0.20.2,
apache-hadoop-common-0.20.2.ebuild,
+sys-cluster/apache-hadoop-common/Manifest:
Initial import of sys-cluster/apache-hadoop-common ebuild from Gentoo bug
#314895. This ebuild is written by Tim Cera <[email protected]>.
*phpsysinfo-3.0.5 (17 Jun 2010)
17 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/www-apps/phpsysinfo-3.0.5, phpsysinfo-3.0.5.ebuild,
www-apps/phpsysinfo/Manifest:
Version bumping www-apps/phpsysinfo to the latest 3.0.5 upstream release.
*racktables-0.17.11 (17 Jun 2010)
17 Jun 2010; Chris Gianelloni <[email protected]>
metadata/cache/www-apps/racktables-0.17.9, racktables-0.17.9.ebuild,
+metadata/cache/www-apps/racktables-0.17.11, racktables-0.17.11.ebuild,
www-apps/racktables/Manifest:
Version bumping www-apps/racktables to the 0.17.11 upstream release and
marking 0.17.9 stable.
13 Jun 2010; Chris Gianelloni <[email protected]>
discovery-0.9-r3.ebuild, cacti-plugins/discovery/Manifest:
Uncomment PLUGIN_NEEDS_SQL and MYSQL_SCRIPTS variables, as they are still
necessary.
*cacti-spine-0.8.7g_beta1 (12 Jun 2010)
*cacti-spine-0.8.7f (12 Jun 2010)
12 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/cacti-spine-0.8.7f,
cacti-spine-0.8.7f.ebuild,
+metadata/cache/net-analyzer/cacti-spine-0.8.7g_beta1,
cacti-spine-0.8.7g_beta1.ebuild, net-analyzer/cacti-spine/Manifest:
Version bumping to the latest 0.8.7g_beta1 upstream release. I have also
added a 0.8.7f ebuild, using the tarball from 0.8.7e as a distfile, so it
will fail for people who actually have the file available and -* for
KEYWORDS. The beta has unset KEYWORDS, so it'll require manual
intervention to install.
*cacti-0.8.7g_beta1 (12 Jun 2010)
*cacti-0.8.7f-r1 (12 Jun 2010)
12 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/cacti-0.8.7f-r1, cacti-0.8.7f-r1.ebuild,
+metadata/cache/net-analyzer/cacti-0.8.7g_beta1,
cacti-0.8.7g_beta1.ebuild, net-analyzer/cacti/Manifest:
Version bumping to the latest 0.8.7g_beta1 upstream release. I have also
added a 0.8.7f ebuild, using the tarball from 0.8.7e as a distfile, so it
will fail for people who actually have the file available and -* for
KEYWORDS. The beta has unset KEYWORDS, so it'll require manual
intervention to install.
*boost-4.0-r2 (12 Jun 2010)
*boost-4.0 (12 Jun 2010)
12 Jun 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/boost-4.0, boost-4.0.ebuild,
+metadata/cache/cacti-plugins/boost-4.0-r2, boost-4.0-r2.ebuild,
cacti-plugins/boost/Manifest:
Version bumping cacti-plugins/boost to the latest 4.0 and 4.0-2 upstream
releases. This is required for Cacti 0.8.7f+ releases.
16 May 2010; Chris Gianelloni <[email protected]>
aggregate-0.74-r1.ebuild, cacti-plugins/aggregate/Manifest:
Fixing the patch name.
16 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild, net-analyzer/cacti/Manifest:
Move removal of adodb to src_prepare and uncomment.
16 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild, net-analyzer/cacti/Manifest:
Store find output in a variable, move edos2unix call to src_prepare, and
sed any mysql_error calls to adodb_error.
*settings-0.6-r1 (16 May 2010)
16 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/settings-0.6-r1, settings-0.6-r1.ebuild,
+cacti-plugins/settings/files/settings-0.6-nectar-0.26-include_functions.p
hp.patch, cacti-plugins/settings/Manifest:
Revision bumping cacti-plugins/settings to add a patch from nectar plugin.
*nectar-0.26-r1 (16 May 2010)
16 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/nectar-0.26-r1, nectar-0.26-r1.ebuild,
cacti-plugins/nectar/Manifest:
Revision bumping cacti-plugins/nectar and adding a patch from the Cacti
forums.
16 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild,
+net-analyzer/cacti/files/cacti-0.8.7e-multithreaded-host.sql,
net-analyzer/cacti/Manifest:
Adding sql file for multithreaded host patch.
16 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild,
+net-analyzer/cacti/files/cacti-0.8.7e-multithreaded-host.patch,
+net-analyzer/cacti/files/cacti-0.8.7e-nectar-0.26-lib-html_utility.patch,
net-analyzer/cacti/Manifest:
Change PIA_V check to a case statement, add a patch from the nectar
plugin, and add the multithreaded host from upstream svn repository.
*aggregate-0.74-r1 (16 May 2010)
16 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/aggregate-0.74-r1, aggregate-0.74-r1.ebuild,
+cacti-plugins/aggregate/files/aggregate-0.74-undef-index.patch,
cacti-plugins/aggregate/Manifest:
Revsion bumping cacti-plugins/aggregate to add a patch to fix the undefined
index errors from PHP.
*reportit-0.7.1-r1 (16 May 2010)
16 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/reportit-0.7.1-r1, reportit-0.7.1-r1.ebuild,
cacti-plugins/reportit/Manifest:
Revsion bumping cacti-plugins/reportit to add dev-php/rrdtool-php to
RDEPEND, since the full plugin functionality requires it.
*adodb-5.11-r1 (16 May 2010)
16 May 2010; Chris Gianelloni <[email protected]>
-metadata/cache/dev-php/adodb-5.10, adodb-5.10.ebuild,
+metadata/cache/dev-php/adodb-5.11-r1, adodb-5.11-r1.ebuild,
dev-php/adodb/Manifest:
Version bumping dev-php/adodb to 5.11 upstream release and adding
IUSE=+extension to pull in the compiled extension, by default.
15 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild,
+net-analyzer/cacti/files/cacti-0.8.7e-lossless-reindexing.sql,
net-analyzer/cacti/Manifest:
Add the lossless reindexing sql file to import.
15 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r8.ebuild,
+net-analyzer/cacti/files/cacti-0.8.7e-logintitle.patch,
+net-analyzer/cacti/files/cacti-0.8.7e-lossless-reindexing.patch,
net-analyzer/cacti/Manifest:
Adding lossles reindexing patch from upstream svn and a small patch to add
an api call to the login page for the page title.
12 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r4.ebuild, cacti-0.8.7e-r5.ebuild, cacti-0.8.7e-r6.ebuild,
cacti-0.8.7e-r7.ebuild, cacti-0.8.7e-r8.ebuild,
+net-analyzer/cacti/files/cacti-0.8.7e-undefined-multi-output.patch,
net-analyzer/cacti/Manifest:
Adding undefined-multi-output patch, from cacti upstream svn, and fixing
the require_php_with_use call in all revisions.
*cacti-0.8.7e-r8 (12 May 2010)
12 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/cacti-0.8.7e-r8, cacti-0.8.7e-r8.ebuild,
net-analyzer/cacti/Manifest:
Revision bumping net-analyzer/cacti to do some cleanups of unused code,
adding app-arch/unzip to DEPEND, fixing the autom8 patches, and commenting
the removal of the shipped adodb.
08 May 2010; Chris Gianelloni <[email protected]>
net-analyzer/cacti/files/cacti-0.8.7e-rrdtool14.patch,
net-analyzer/cacti/Manifest:
Updating RRDTool 1.4 support patch for Cacti to fix a typo.
*libmemcached-0.40-r1 (08 May 2010)
08 May 2010; Chris Gianelloni <[email protected]>
+dev-libs/libmemcached/files/libmemcached-0.39-runtestsasuser.patch,
+metadata/cache/dev-libs/libmemcached-0.40-r1,
libmemcached-0.40-r1.ebuild, dev-libs/libmemcached/Manifest:
Revsion bumping dev-libs/libmemcached to add a patch to run tests as a
normal user, and sync up the patch and sed-fu with Gentoo upstream.
*wolf-sources-2.6.33-r2 (08 May 2010)
*wolf-sources-2.6.33-r1 (08 May 2010)
08 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-kernel/wolf-sources-2.6.33-r1,
wolf-sources-2.6.33-r1.ebuild,
+metadata/cache/sys-kernel/wolf-sources-2.6.33-r2,
wolf-sources-2.6.33-r2.ebuild, sys-kernel/wolf-sources/Manifest:
Version bump sys-kernel/wolf-sources to sync it with the gentoo-sources
patchset.
08 May 2010; Chris Gianelloni <[email protected]>
dev-php5/pecl-memcached/Manifest, pecl-memcached-1.0.2.ebuild:
Fix up the dev-php5/pecl-memcached ebuild to setup the default ini file
settings.
07 May 2010; Chris Gianelloni <[email protected]>
-dev-libs/libmemcached/files/libmemcached-0.28-removebogustest.patch,
-dev-libs/libmemcached/files/libmemcached-0.28-runtestsasuser.patch,
-metadata/cache/dev-libs/libmemcached-0.30, libmemcached-0.30.ebuild,
-metadata/cache/dev-libs/libmemcached-0.31, libmemcached-0.31.ebuild,
-metadata/cache/dev-libs/libmemcached-0.33, libmemcached-0.33.ebuild,
libmemcached-0.38.ebuild, +metadata/cache/dev-libs/libmemcached-0.40,
dev-libs/libmemcached/Manifest:
Removing older versions of dev-libs/libmemcached and adding metadata.
*libmemcached-0.40 (07 May 2010)
*libmemcached-0.38 (07 May 2010)
07 May 2010; Chris Gianelloni <[email protected]>
libmemcached-0.38.ebuild, libmemcached-0.40.ebuild,
dev-libs/libmemcached/Manifest:
Version bumping dev-libs/libmemcached to 0.40 upstream release.
*pecl-memcached-1.0.2 (06 May 2010)
06 May 2010; Chris Gianelloni <[email protected]>
dev-php5/pecl-memcached/Manifest,
+metadata/cache/dev-php5/pecl-memcached-1.0.2,
pecl-memcached-1.0.2.ebuild:
Version bumping dev-php5/pecl-memcached to the 1.0.2 upstream release.
*rrdtool-php-20051203 (06 May 2010)
06 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-php/rrdtool-php-20051203, rrdtool-php-20051203.ebuild,
+dev-php/rrdtool-php/Manifest,
+dev-php/rrdtool-php/files/cleanup-minfo.patch:
Initial ebuild for PHP bindings for net-analyzer/rrdtool.
*nagios-3.2.1-r1 (04 May 2010)
04 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/nagios-3.2.1-r1, nagios-3.2.1-r1.ebuild,
net-analyzer/nagios/Manifest:
Version bumping net-analyzer/nagios to 3.2.1 upstream release.
*nagios-core-3.2.1-r1 (04 May 2010)
04 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/nagios-core-3.2.1-r1,
nagios-core-3.2.1-r1.ebuild, net-analyzer/nagios-core/Manifest:
Version bumping net-analyzer/nagios-core to 3.2.1 upstream release.
04 May 2010; Chris Gianelloni <[email protected]> boost-3.1.ebuild,
cacti-plugins/boost/Manifest, cacti-plugins/boost/files/cacti-boost.rc:
Don't check if boost_server is executable, and add a stop/flush/start
cycle to pkg_postinst wrapped around creating the database.
04 May 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r7.ebuild, net-analyzer/cacti/Manifest:
Removing the debugging and actually making our global.php changes, and
installing the manual under the htdocs directory.
04 May 2010; Chris Gianelloni <[email protected]>
cacti-plugins/boost/Manifest, cacti-plugins/boost/files/cacti-boost.rc:
Fixing the boost_server.php startup.
04 May 2010; Chris Gianelloni <[email protected]>
-metadata/cache/www-apps/phpsysinfo-2.5.4, phpsysinfo-2.5.4.ebuild,
phpsysinfo-3.0.4.ebuild, www-apps/phpsysinfo/Manifest:
Removing 2.x ebuild and cleaning up the 3.x ebuild.
*jinzora2-2.8 (03 May 2010)
03 May 2010; Chris Gianelloni <[email protected]>
-metadata/cache/www-apps/jinzora-2.8,
+metadata/cache/www-apps/jinzora2-2.8, jinzora-2.8.ebuild,
jinzora2-2.8.ebuild, -www-apps/jinzora/Manifest,
+www-apps/jinzora2/Manifest:
Renaming the package to jinzora2 rather than patch the code that requires
that name.
03 May 2010; Chris Gianelloni <[email protected]>
metadata/cache/www-apps/jinzora-2.8, jinzora-2.8.ebuild,
www-apps/jinzora/Manifest:
Remove Gentoo Foundation from header, move need_* calls after *DEPEND
section, and switch to using more than one target for webapp_configfile
and webapp_serverowned calls.
03 May 2010; Chris Gianelloni <[email protected]>
metadata/cache/www-apps/jinzora-2.8, jinzora-2.8.ebuild,
www-apps/jinzora/Manifest:
Add DB_IUSE for optional database support, require PHP is built with
session support, and add some notes for the rest of the requirements.
02 May 2010; Chris Gianelloni <[email protected]>
metadata/cache/www-apps/jinzora-2.8, jinzora-2.8.ebuild,
www-apps/jinzora/Manifest:
Adding media-sound/lame to RDEPEND for www-apps/jinzora, which is needed
for transcoding.
02 May 2010; Chris Gianelloni <[email protected]> jinzora-2.8.ebuild,
www-apps/jinzora/Manifest:
Make sure the configuration is owned by the web server user.
02 May 2010; Chris Gianelloni <[email protected]> jinzora-2.8.ebuild:
Set S to the correct location, change serverowned to be recursive, and
touch settings.php before copying it to the target.
01 May 2010; Chris Gianelloni <[email protected]> jinzora-2.8.ebuild:
Adding code from configure.sh script to jinzora.
01 May 2010; Chris Gianelloni <[email protected]>
titlechanger-0.1.ebuild:
Adding explicit S setting to cacti-plugins/titlechanger ebuild.
*titlechanger-0.1 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/titlechanger-0.1, titlechanger-0.1.ebuild:
Initial ebuild for titlechanger cacti plugin.
*mactrack-2.6 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/mactrack-2.6, mactrack-2.6.ebuild:
Version bumping cacti-plugins/mactrack to the 2.6 upstream release.
*phpsysinfo-3.0.4 (01 May 2010)
*phpsysinfo-2.5.4 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/www-apps/phpsysinfo-2.5.4, phpsysinfo-2.5.4.ebuild,
+metadata/cache/www-apps/phpsysinfo-3.0.4, phpsysinfo-3.0.4.ebuild:
Version bumping www-apps/phpsysinfo to 3.0.4 upstream release.
*jinzora-2.8 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/www-apps/jinzora-2.8, jinzora-2.8.ebuild:
Initial ebuild for Jinzora Media Server. This ebuild is really nothing
more than a skeleton, at this point. I need to work on the dependencies
and the placement of the installation before it will be usable.
*weathermap-0.97a (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/weathermap-0.97a, weathermap-0.97a.ebuild:
Version bumping cacti-plugins/weathermap to the 0.97a upstream release.
01 May 2010; Chris Gianelloni <[email protected]> nectar-0.26.ebuild:
Add some notes for TODO on cacti-plugins/nectar.
*nectar-0.26 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/nectar-0.26, nectar-0.26.ebuild:
Version bumping cacti-plugins/nectar to the 0.26 upstream release.
*mobile-0.1-r1 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/mobile-0.1-r1, mobile-0.1-r1.ebuild:
Revision bumping cacti-plugins/mobile to add cacti-plugins/thold to its
dependencies, since it pulls data from the thold tables unconditionally.
*dsstats-1.2 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/dsstats-1.2, dsstats-1.2.ebuild:
Version bumping cacti-plugins/dsstats to the 1.2 upstream release.
*boost-3.1 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/boost-3.1, boost-3.1.ebuild:
Version bumping cacti-plugins/boost to the 3.1 upstream release.
*aggregate-0.74 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/aggregate-0.74, aggregate-0.74.ebuild:
Version bumping cacti-plugins/aggregate to 0.74 upstream release.
01 May 2010; Chris Gianelloni <[email protected]>
dev-java/jdbc-oracle-bin/Manifest:
Manifest fix on dev-java/jdbc-oracle-bin.
01 May 2010; Chris Gianelloni <[email protected]>
net-misc/cisco-vpnclient/Manifest:
Manifest fix on net-misc/cisco-vpnclient.
01 May 2010; Chris Gianelloni <[email protected]>
sys-fs/dmraid/Manifest:
Manifest fix on sys-fs/dmraid.
01 May 2010; Chris Gianelloni <[email protected]>
metadata/cache/sys-kernel/wolf-sources-2.6.28-r4,
metadata/cache/sys-kernel/wolf-sources-2.6.32-r4,
metadata/cache/sys-kernel/wolf-sources-2.6.33:
Updating metadata/cache for wolf-sources.
*cacti-0.8.7e-r7 (01 May 2010)
01 May 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/cacti-0.8.7e-r7, cacti-0.8.7e-r7.ebuild:
Revision bumping net-analyzer/cacti to add upstream SQL injection patch.
09 Apr 2010; Chris Gianelloni <[email protected]>
sys-fs/cachefilesd/Manifest, sys-fs/cachefilesd/files/cachefilesd.rc:
Remove preceding PATH from lsmod/modprobe calls.
03 Apr 2010; Chris Gianelloni <[email protected]>
metadata/cache/dev-libs/libusb-0.1.12-r6,
metadata/cache/net-misc/modemmanager-0.2_p20100101-r1,
metadata/cache/app-crypt/trousers-0.3.1-r1,
metadata/cache/app-crypt/trousers-0.3.2-r1,
metadata/cache/app-crypt/openssl-tpm-engine-0.4.1-r1,
metadata/cache/net-analyzer/nagios-plugins-snmp-0.6.0-r2,
metadata/cache/gnome-extra/nm-applet-0.8.0_pre20100101-r1,
metadata/cache/net-misc/networkmanager-0.8.0_pre20100101-r1,
metadata/cache/net-analyzer/cacti-spine-0.8.7d,
metadata/cache/net-analyzer/cacti-spine-0.8.7e,
metadata/cache/net-analyzer/cacti-spine-0.8.7e-r1,
metadata/cache/net-analyzer/cacti-spine-0.8.7e-r2,
metadata/cache/app-office/planner-0.14.3-r1,
metadata/cache/app-office/planner-0.14.3-r2, mysql-server-1.0.ebuild,
metadata/cache/net-libs/libpcap-1.0.0-r2,
metadata/cache/dev-php5/pecl-memcached-1.0.1,
metadata/cache/dev-php5/pecl-pam-1.0.3,
metadata/cache/net-misc/memcached-1.2.6-r1,
metadata/cache/sys-power/pm-utils-1.2.6.1-r1,
metadata/cache/x11-misc/synergy-1.3.1-r1,
metadata/cache/app-crypt/tpm-tools-1.3.4,
metadata/cache/dev-libs/libmemcache-1.4.0_rc2-r1,
metadata/cache/net-misc/memcached-1.4.0-r1,
metadata/cache/net-misc/memcached-1.4.1-r1,
metadata/cache/net-misc/memcached-1.4.2-r1,
metadata/cache/net-misc/distcache-1.4.5,
metadata/cache/net-analyzer/nagios-plugins-1.4.14-r2,
metadata/cache/dev-php5/pecl-http-1.6.6,
metadata/cache/snmp-mibs/jvm-management-1.32,
metadata/cache/net-misc/tsclient-2.0.1-r1,
metadata/cache/dev-php5/pecl-memcache-2.0.4,
metadata/cache/dev-php5/pecl-memcache-2.2.4,
metadata/cache/dev-libs/opencryptoki-2.2.6,
metadata/cache/dev-libs/opencryptoki-2.2.8,
metadata/cache/dev-libs/opencryptoki-2.3.0,
metadata/cache/x11-plugins/purple-plugin_pack-2.6.2-r1,
metadata/cache/sys-kernel/wolf-sources-2.6.28-r4,
metadata/cache/sys-kernel/wolf-sources-2.6.32-r4,
metadata/cache/sys-kernel/wolf-sources-2.6.33,
metadata/cache/dev-php5/pecl-memcache-3.0.2,
metadata/cache/dev-php5/pecl-memcache-3.0.4,
metadata/cache/app-misc/screen-4.0.3-r1,
metadata/cache/net-wireless/bluez-4.59-r1,
metadata/cache/net-wireless/bluez-4.60-r1,
metadata/cache/net-wireless/bluez-4.62-r1,
metadata/cache/net-analyzer/net-snmp-5.4.2.1-r2,
metadata/cache/net-analyzer/net-snmp-5.5,
metadata/cache/net-analyzer/net-snmp-5.5-r1,
metadata/cache/dev-php5/adodb-ext-504, mysql-server-9999.ebuild,
snmp-mibs/mysql-server/Manifest:
Adding error checking to mysql-server ebuild and updating metadata/cache
with latest entries.
25 Mar 2010; Chris Gianelloni <[email protected]>
sys-fs/cachefilesd/Manifest, sys-fs/cachefilesd/files/cachefilesd.rc:
I forgot to add an opening brace to the stop function in the cachefiles
init script. I'm surprised it worked, at all.
24 Mar 2010; Chris Gianelloni <[email protected]>
sys-fs/cachefilesd/Manifest, sys-fs/cachefilesd/files/cachefilesd.rc:
Adding PIDFILE and -p to command line.
*anyterm-1.1.29-r1 (24 Mar 2010)
24 Mar 2010; Chris Gianelloni <[email protected]>
+www-apache/anyterm/files/anyterm-1.1.28-respect-LDFLAGS.patch,
+metadata/cache/www-apache/anyterm-1.1.29-r1, anyterm-1.1.29-r1.ebuild,
+www-apache/anyterm/files/anyterm-1.1.29-gcc-4.4.patch,
profiles/categories, +www-apache/anyterm/Manifest,
+www-apache/anyterm/files/99_anyterm.conf,
+www-apache/anyterm/files/anyterm.conf.d,
+www-apache/anyterm/files/anyterm.init.d,
+www-apache/anyterm/files/apache2.confd-defaults,
+www-apache/anyterm/files/apache2.confd-proxy:
Import www-apache/anyterm from Gentoo's tree and revision bump to
differentiate our version from theirs.
24 Mar 2010; Chris Gianelloni <[email protected]>
cachefilesd-0.9.ebuild, sys-fs/cachefilesd/Manifest,
+sys-fs/cachefilesd/files/cachefilesd.rc:
Adding cachefilesd.rc init script.
*gnbd-kernel-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/gnbd-kernel-2.03.10,
gnbd-kernel-2.03.10.ebuild, +sys-cluster/gnbd-kernel/Manifest:
Resurrect sys-cluster/gnbd-kernel from Gentoo's Attic, version bump to the
latest upstream release, and add multilib support.
*gnbd-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+sys-cluster/gnbd/files/gnbd-client-2.0x.conf,
+sys-cluster/gnbd/files/gnbd-srv-2.0x.conf,
+sys-cluster/gnbd/files/gnbd-client-2.0x.rc,
+sys-cluster/gnbd/files/gnbd-srv-2.0x.rc,
+metadata/cache/sys-cluster/gnbd-2.03.10, gnbd-2.03.10.ebuild,
+sys-cluster/gnbd/Manifest, +sys-cluster/gnbd/files/gnbdtab:
Resurrect sys-cluster/gnbd from Gentoo's Attic, version bump to the latest
upstream release, and add multilib support.
*rgmanager-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+sys-cluster/rgmanager/files/rgmanager-2.0x.conf,
+sys-cluster/rgmanager/files/rgmanager-2.0x.rc,
+metadata/cache/sys-cluster/rgmanager-2.03.10, rgmanager-2.03.10.ebuild,
+sys-cluster/rgmanager/Manifest:
Import sys-cluster/rgmanager from Gentoo's tree, version bump to the
latest upstream release, and add multilib support.
*openais-0.80.6 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/openais-0.80.6, openais-0.80.6.ebuild,
-metadata/cache/sys-cluster/openais-0.82, openais-0.82.ebuild,
sys-cluster/openais/Manifest:
Version bumping sys-cluster/openais to the latest upstream release and
adding multilib eclass support.
*ccs-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+sys-cluster/ccs/files/ccs-2.03.09-mkostemp.patch,
+metadata/cache/sys-cluster/ccs-2.03.10, ccs-2.03.10.ebuild,
+sys-cluster/ccs/Manifest, +sys-cluster/ccs/files/ccsd.conf,
+sys-cluster/ccs/files/ccsd.rc:
Import sys-cluster/ccs from Gentoo's tree, version bump to the latest
upstream release, and add multilib support.
*fence-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/fence-2.03.10, fence-2.03.10.ebuild,
sys-cluster/fence/Manifest:
Version bump sys-cluster/fence to the latest upstream release and add
multilib support.
*dlm-lib-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/dlm-lib-2.03.10, dlm-lib-2.03.10.ebuild,
+sys-cluster/dlm-lib/Manifest:
Import sys-cluster/dlm-lib from Gentoo's tree, version bump to the latest
upstream release, and add multilib support.
*dlm-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/dlm-2.03.10, dlm-2.03.10.ebuild,
+sys-cluster/dlm/Manifest, +sys-cluster/dlm/files/dlm.rc:
Import sys-cluster/dlm from Gentoo's tree, version bump to the latest
upstream release, and add multilib support.
*cman-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/cman-2.03.10, cman-2.03.10.ebuild,
sys-cluster/cman/Manifest:
Version bumping sys-cluster/cman to the latest upstream release, and
adding multilib eclass support.
*cman-lib-2.03.10 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-cluster/cman-lib-2.03.10, cman-lib-2.03.10.ebuild,
sys-cluster/cman-lib/Manifest:
Version bumping sys-cluster/cman-lib to the latest upstream release, and
adding multilib eclass support.
*squirrelmail-1.4.20 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+mail-client/squirrelmail/files/ldapuserdata-0.4-gentoo.patch,
+metadata/cache/mail-client/squirrelmail-1.4.20,
squirrelmail-1.4.20.ebuild, +mail-client/squirrelmail/Manifest,
+mail-client/squirrelmail/files/postinstall-en.txt:
Import mail-client/squirrelmail from Gentoo's tree and version bump it to
the latest upstream release.
23 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/app-crypt/tpmmanager-0.8, tpmmanager-0.8.ebuild,
app-crypt/tpmmanager/Manifest:
Remove left-over code from ebuild creation, switch to EAPI=2, setup
dependencies, and install binary and README.
23 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/app-crypt/trousers-0.3.2-r1, trousers-0.3.2-r1.ebuild,
app-crypt/trousers/Manifest:
Switch to EAPI=2, remove base eclass, move sed to src_prepare, and move
configuration to src_configure.
*sqlitecachec-1.1.4 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/dev-python/sqlitecachec-1.1.4, sqlitecachec-1.1.4.ebuild,
+dev-python/sqlitecachec/Manifest:
Import dev-python/sqlitecachec from Gentoo's tree and version bump to the
latest upstream release. This package is also known as
yum-metadata-parser.
23 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/snmp-agents/mysql-snmp-1.0, mysql-snmp-1.0.ebuild,
metadata/cache/snmp-agents/mysql-snmp-9999, mysql-snmp-9999.ebuild,
snmp-agents/mysql-snmp/Manifest:
Adding gmp to IUSE to pull in dev-perl/perl-Math-BigInt-GMP for faster
math functions.
23 Mar 2010; Chris Gianelloni <[email protected]>
mysql-server-1.0.ebuild, mysql-server-9999.ebuild,
snmp-mibs/mysql-server/Manifest:
Set S to point to the correct location.
23 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/snmp-agents/mysql-snmp-1.0, mysql-snmp-1.0.ebuild,
metadata/cache/snmp-agents/mysql-snmp-9999, mysql-snmp-9999.ebuild,
snmp-agents/mysql-snmp/Manifest:
Creating a 1.0 version of snmp-agents/mysql-snmp and removing KEYWORDS
from the 9999 (live) version.
*mysql-server-1.0 (23 Mar 2010)
23 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/snmp-mibs/mysql-server-1.0, mysql-server-1.0.ebuild,
metadata/cache/snmp-mibs/mysql-server-9999, mysql-server-9999.ebuild,
snmp-mibs/mysql-server/Manifest:
Creating a 1.0 version of snmp-mibs/mysql-server and removing KEYWORDS
from the 9999 (live) version.
23 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/net-misc/distcache-1.4.5,
metadata/cache/snmp-agents/mysql-snmp-9999:
Updating metadata/cache for the latest changes.
23 Mar 2010; Chris Gianelloni <[email protected]>
mysql-snmp-9999.ebuild, snmp-agents/mysql-snmp/Manifest,
snmp-agents/mysql-snmp/files/mysql-snmp.confd,
snmp-agents/mysql-snmp/files/mysql-snmp.rc:
Removing KEYWORDS from the 9999 (live git) version of the mysql-snmp
ebuild, remove -d from command line in init script, and add
MYSQL_SNMP_USER and MYSQL_SNMP_PASS for future authentication.
22 Mar 2010; Chris Gianelloni <[email protected]>
distcache-1.4.5.ebuild, net-misc/distcache/Manifest:
Enable building of shared libraries.
22 Mar 2010; Chris Gianelloni <[email protected]>
distcache-1.4.5.ebuild, net-misc/distcache/Manifest:
Comment out the install of the doc directory.
22 Mar 2010; Chris Gianelloni <[email protected]>
distcache-1.4.5.ebuild, net-misc/distcache/Manifest:
Updating enewuser call.
22 Mar 2010; Chris Gianelloni <[email protected]>
distcache-1.4.5.ebuild, net-misc/distcache/Manifest:
Adding some notes to the ebuild, for future enhancements.
22 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/net-misc/distcache-1.4.5, distcache-1.4.5.ebuild,
net-misc/distcache/Manifest:
Add eautoreconf to src_prepare, add emake install -C ssl to src_install,
and add user and group in pkg_preinst.
*halevt-0.1.6 (22 Mar 2010)
22 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-apps/halevt-0.1.6, halevt-0.1.6.ebuild,
+metadata/cache/app-admin/etckeeper-0.43, +sys-apps/halevt/Manifest,
+sys-apps/halevt/files/halevt:
Importing sys-apps/halevt from Gentoo's tree and version bumping it to the
latest upstream release.
*etckeeper-0.43 (22 Mar 2010)
22 Mar 2010; Chris Gianelloni <[email protected]>
etckeeper-0.43.ebuild, +app-admin/etckeeper/Manifest:
Initial ebuild for app-admin/etckeeper, converted to an ebuild from the
Fedora spec.
22 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/net-misc/distcache-1.4.5, distcache-1.4.5.ebuild,
net-misc/distcache/Manifest:
Adding src_install section to distcache, so it will install correctly.
22 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/snmp-mibs/netdisco-mibs-0.7,
-metadata/cache/app-crypt/distcache-1.4.5,
+metadata/cache/net-misc/distcache-1.4.5, distcache-1.4.5.ebuild,
-app-crypt/distcache/files/distcache-1.4.5-libdeps.patch,
+net-misc/distcache/files/distcache-1.4.5-libdeps.patch,
-app-crypt/distcache/files/distcache-1.4.5-limits.patch,
+net-misc/distcache/files/distcache-1.4.5-limits.patch,
-app-crypt/distcache/files/distcache-1.4.5-setuid.patch,
+net-misc/distcache/files/distcache-1.4.5-setuid.patch,
-app-crypt/distcache/Manifest, +net-misc/distcache/Manifest:
Moving distcache package from app-crypt to net-misc, since it can be used
as more than just an SSL cache.
22 Mar 2010; Chris Gianelloni <[email protected]>
netdisco-mibs-0.7.ebuild, snmp-mibs/netdisco-mibs/Manifest:
Removing the old bits from the original ebuild and add vendors under
NETDISCO_MIB_VENDORS.
21 Mar 2010; Chris Gianelloni <[email protected]>
cachefilesd-0.9.ebuild, sys-fs/cachefilesd/Manifest:
Fixing mkdir/keepdir invocation, since keepdir already sets D.
21 Mar 2010; Chris Gianelloni <[email protected]> boost-3.0.ebuild,
cacti-plugins/boost/Manifest:
One more try.
21 Mar 2010; Chris Gianelloni <[email protected]> boost-3.0.ebuild,
cacti-plugins/boost/Manifest:
Removing D, since fperms already sets it.
*pecl-http-1.6.6 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+dev-php5/pecl-http/Manifest, +metadata/cache/dev-php5/pecl-http-1.6.6,
pecl-http-1.6.6.ebuild:
Importing dev-php5/pecl-http from Gentoo's tree and version bumping to the
latest upstream release.
*pecl-pam-1.0.3 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+dev-php5/pecl-pam/Manifest, +metadata/cache/dev-php5/pecl-pam-1.0.3,
pecl-pam-1.0.3.ebuild:
Importing dev-php5/pecl-pam from Gentoo's tree and version bumping to the
latest upstream release.
*pecl-memcached-1.0.1 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+dev-php5/pecl-memcached/Manifest,
+metadata/cache/dev-php5/pecl-memcached-1.0.1,
pecl-memcached-1.0.1.ebuild:
Importing dev-php5/pecl-memcached from Gentoo's tree and version bumping
to the latest upstream release.
21 Mar 2010; Chris Gianelloni <[email protected]>
metadata/cache/net-analyzer/netdisco-1.0, netdisco-1.0.ebuild,
net-analyzer/netdisco/Manifest:
Adding netdisco-mibs to RDEPEND.
*netdisco-mibs-0.7 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/snmp-mibs/netdisco-mibs-0.7, netdisco-mibs-0.7.ebuild,
+snmp-mibs/netdisco-mibs/Manifest:
Initial ebuild for netdisco-mibs, which is needed by netdisco.
*netdisco-1.0 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/netdisco-1.0, netdisco-1.0.ebuild,
+net-analyzer/netdisco/Manifest:
Initial ebuild for netdisco, a perl-based network management tool.
*phpwapmail-0.9.3 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/mail-client/phpwapmail-0.9.3, phpwapmail-0.9.3.ebuild,
+mail-client/phpwapmail/Manifest:
Initial ebuild for phpwapmail, a WAP-based IMAP web client for mobile
phones.
*tpmmanager-0.8 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/app-crypt/tpmmanager-0.8, tpmmanager-0.8.ebuild,
+app-crypt/tpmmanager/Manifest:
Initial import of a tpmmanager ebuild. This doesn't work, yet, but it
won't need too much work.
21 Mar 2010; Chris Gianelloni <[email protected]> boost-3.0.ebuild,
cacti-plugins/boost/Manifest:
Try changing the path, again.
*distcache-1.4.5 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/app-crypt/distcache-1.4.5, distcache-1.4.5.ebuild,
+app-crypt/distcache/files/distcache-1.4.5-libdeps.patch,
+app-crypt/distcache/files/distcache-1.4.5-limits.patch,
+app-crypt/distcache/files/distcache-1.4.5-setuid.patch,
+app-crypt/distcache/Manifest:
Initial ebuild for distcache, translated from the fedora 12 source rpm
specs.
*cachefilesd-0.9 (21 Mar 2010)
21 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/sys-fs/cachefilesd-0.9, cachefilesd-0.9.ebuild,
+sys-fs/cachefilesd/Manifest:
Initial ebuild for cachefilesd, ebuild by me.
20 Mar 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r6.ebuild, net-analyzer/cacti/Manifest:
Removing the commented code block for line removal and removing the
shipped adodb.
20 Mar 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r6.ebuild, net-analyzer/cacti/Manifest:
Adding unpack for autom8 plugin distribution.
20 Mar 2010; Chris Gianelloni <[email protected]> boost-3.0.ebuild,
cacti-plugins/boost/Manifest:
Fix boost path.
20 Mar 2010; Chris Gianelloni <[email protected]>
cacti-0.8.7e-r6.ebuild, net-analyzer/cacti/Manifest:
Add epatch line for autom8 patches.
*cacti-0.8.7e-r6 (20 Mar 2010)
20 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/net-analyzer/cacti-0.8.7e-r6, cacti-0.8.7e-r6.ebuild,
net-analyzer/cacti/Manifest:
Revision bump cacti ebuild to pull in SRC_URI for autom8 plugin, since it
requires patching some cacti files.
20 Mar 2010; Chris Gianelloni <[email protected]>
+metadata/cache/cacti-plugins/hostinfo-0.2,
+metadata/cache/cacti-plugins/passwd-0.2,
metadata/cache/cacti-plugins/transporter-0.2,
metadata/cache/cacti-plugins/realtime-0.4.0,
metadata/cache/cacti-plugins/manage-0.6.1-r1,
metadata/cache/cacti-plugins/reportit-0.7.1,
+metadata/cache/x11-misc/xdg-user-dirs-0.12,
+metadata/cache/cacti-plugins/weathermap-0.97,
metadata/cache/cacti-plugins/clog-1.3,
-metadata/cache/cacti-plugins/clog-1.21,
metadata/cache/cacti-plugins/npc-2.0.4,
+metadata/cache/app-shells/pdsh-2.14,
+metadata/cache/app-shells/pdsh-2.16,
+metadata/cache/app-shells/pdsh-2.17,
+metadata/cache/app-shells/pdsh-2.18,
metadata/cache/cacti-plugins/boost-3.0:
Updating metadata/cache with the latest entries.
20 Mar 2010; Chris Gianelloni <[email protected]>
reportit-0.7.1.ebuild, cacti-plugins/reportit/Manifest:
Update HOMEPAGE and use variable for SRC_URI.
20 Mar 2010; Chris Gianelloni <[email protected]> npc-2.0.4.ebuild,
cacti-plugins/npc/Manifest:
Updating dependencies and HOMEPAGE for npc plugin.