summaryrefslogtreecommitdiff
blob: f9afacf98e06b6bce4624b1072de8b3bd045bc1d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
# ChangeLog for app-admin/webapp-config
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/webapp-config/ChangeLog,v 1.131 2015/06/02 05:23:25 jmorgan Exp $

  02 Jun 2015; Jack Morgan <jmorgan@gentoo.org> webapp-config-1.53-r2.ebuild:
  sparc stable wrt bug #530260

  23 May 2015; Mikle Kolyada <zlogene@gentoo.org> webapp-config-1.53-r2.ebuild:
  x86 stable wrt bug #530260

  22 May 2015; Jeroen Roovers <jer@gentoo.org> webapp-config-1.53-r2.ebuild:
  Stable for HPPA (bug #530260).

  21 May 2015; Markus Meier <maekke@gentoo.org> webapp-config-1.53-r2.ebuild:
  arm stable, bug #530260

  17 May 2015; Pacho Ramos <pacho@gentoo.org> webapp-config-1.53-r2.ebuild:
  ppc64 stable wrt bug #530260

  15 May 2015; Mikle Kolyada <zlogene@gentoo.org> webapp-config-1.53-r2.ebuild:
  amd64 stable wrt bug #530260

  15 May 2015; Pacho Ramos <pacho@gentoo.org> webapp-config-1.53-r2.ebuild:
  ppc stable wrt bug #530260

  25 Apr 2015; Mike Gilbert <floppym@gentoo.org> webapp-config-9999.ebuild:
  Replace links pointing at git.overlays.gentoo.org.

  08 Apr 2015; Michał Górny <mgorny@gentoo.org> webapp-config-1.52-r1.ebuild,
  webapp-config-9999.ebuild:
  Remove old Python implementations

  02 Mar 2015; Yixun Lan <dlan@gentoo.org> webapp-config-1.53-r2.ebuild:
  add arm64 support, tested on A53 board

  20 Feb 2015; Patrick Lauer <patrick@gentoo.org> webapp-config-1.53-r2.ebuild:
  Restrict tests that never worked

*webapp-config-1.53-r2 (28 Dec 2014)

  28 Dec 2014; Devan Franchini <twitch153@gentoo.org>
  +webapp-config-1.53-r2.ebuild, -webapp-config-1.53-r1.ebuild,
  webapp-config-9999.ebuild:
  Adds sys-apps/gentoo-functions to dependency, bug #504132

*webapp-config-1.52-r1 (28 Dec 2014)

  28 Dec 2014; Mike Gilbert <floppym@gentoo.org> +webapp-config-1.52-r1.ebuild:
  Restore stable ebuild.

  28 Dec 2014; Devan Franchini <twitch153@gentoo.org>
  -webapp-config-1.52-r1.ebuild:
  Removes webapp-config-1.52-r1 from the tree

*webapp-config-1.53-r1 (28 Dec 2014)

  28 Dec 2014; Devan Franchini <twitch153@gentoo.org>
  +files/webapp-config-1.53-sources-function.sh-from-lib-gentoo.patch,
  +webapp-config-1.53-r1.ebuild, -webapp-config-1.53.ebuild:
  Adds patch to source functions.sh from /lib/gentoo, bug #504132

  26 Nov 2014; Ian Delaney <idella4@gentoo.org> webapp-config-1.53.ebuild:
  clean old python impls

  10 Nov 2014; Anthony G. Basile <blueness@gentoo.org>
  -webapp-config-1.50.16-r4.ebuild, -webapp-config-1.50.19-r1.ebuild,
  -webapp-config-1.51-r1.ebuild, -webapp-config-1.52.ebuild,
  webapp-config-1.52-r1.ebuild, webapp-config-1.53.ebuild,
  webapp-config-9999.ebuild:
  Remove older versions, block against dev-python/configparser, bug #528752

  23 Oct 2014; Anthony G. Basile <blueness@gentoo.org> metadata.xml:
  Drop myself to secondary maintainer

  05 Aug 2014; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.52-r1.ebuild:
  Stable on ppc, bug #492904

  01 Aug 2014; Raúl Porcel <armin76@gentoo.org> webapp-config-1.52-r1.ebuild:
  ia64/sparc stable wrt #492904

  04 Jul 2014; Tobias Klausmann <klausman@gentoo.org>
  webapp-config-1.52-r1.ebuild:
  Stable on alpha, bug #492904

  03 May 2014; Mike Gilbert <floppym@gentoo.org> webapp-config-1.53.ebuild,
  webapp-config-9999.ebuild:
  Add python3.4.

  20 Apr 2014; Agostino Sarubbo <ago@gentoo.org> webapp-config-1.52-r1.ebuild:
  Stable for ppc64, wrt bug #492904

  06 Apr 2014; Michał Górny <mgorny@gentoo.org> webapp-config-1.53.ebuild,
  webapp-config-9999.ebuild:
  Enable PYTHON_TARGETS=pypy.

  13 Mar 2014; Devan Franchini <twitch153@gentoo.org>
  files/webapp-config-1.50.16-baselayout2.patch:
  Edits source path for functions.sh.

  10 Mar 2014; Johannes Huber <johu@gentoo.org> webapp-config-1.52-r1.ebuild:
  x86 stable, bug #492904

*webapp-config-1.53 (25 Jan 2014)

  25 Jan 2014; Devan Franchini <twitch153@gentoo.org>
  +webapp-config-1.53.ebuild:
  Version bump to 1.53

  16 Jan 2014; Markus Meier <maekke@gentoo.org> webapp-config-1.52-r1.ebuild:
  arm stable, bug #492904

  12 Jan 2014; Pacho Ramos <pacho@gentoo.org> webapp-config-1.52-r1.ebuild:
  amd64 stable, bug #492904

  07 Jan 2014; Jeroen Roovers <jer@gentoo.org> webapp-config-1.52-r1.ebuild:
  Stable for HPPA (bug #492904).

*webapp-config-1.52-r1 (04 Jan 2014)

  04 Jan 2014; Devan Franchini <twitch153@gentoo.org>
  +files/webapp-config-1.52-nulls-doctest.patch, +webapp-config-1.52-r1.ebuild:
  Adds webapp-config-1.52-r1 and patch file to null doctest code, bug #430010

  30 Nov 2013; Jeroen Roovers <jer@gentoo.org> webapp-config-1.52.ebuild:
  Stable for HPPA (bug #492904).

*webapp-config-1.52 (01 Nov 2013)

  01 Nov 2013; Devan Franchini <twitch153@gentoo.org>
  +webapp-config-1.52.ebuild:
  Version bump, webapp-config 1.52

  05 Sep 2013; Michał Górny <mgorny@gentoo.org> webapp-config-1.50.19-r1.ebuild,
  webapp-config-1.51-r1.ebuild, webapp-config-9999.ebuild:
  Clean up PYTHON_COMPAT from old implementations.

  30 Aug 2013; Anthony G. Basile <blueness@gentoo.org> metadata.xml:
  Remove proxy-maintainers herd because twitch153 became a developer

  25 Aug 2013; twitch153 metadata.xml:
  metadata.xml: Corrects email address for twitch153, bug#482210

*webapp-config-1.51-r1 (06 Aug 2013)

  06 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  +files/webapp-config-1.51-fix-indentation.patch,
  +webapp-config-1.51-r1.ebuild, -webapp-config-1.51.ebuild:
  Fix indentation, bug #479884

  04 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.51.ebuild, webapp-config-9999.ebuild:
  Add python-3.3 to PYTHON_COMPAT

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.51.ebuild, webapp-config-9999.ebuild:
  Add python3, re-introduce fix for bug #474968

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.50.19-r1.ebuild:
  Fix QA notice: add distutils-r1_python_install_all

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  -webapp-config-1.50.18.ebuild, -webapp-config-1.50.19.ebuild:
  Remove older unstable versions

*webapp-config-1.51 (03 Aug 2013)

  03 Aug 2013; Anthony G. Basile <blueness@gentoo.org>
  +webapp-config-1.51.ebuild, webapp-config-9999.ebuild:
  Version bump

  05 Jul 2013; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-9999.ebuild:
  Add intelligent dependency on portage to -9999

*webapp-config-1.50.19-r1 (05 Jul 2013)

  05 Jul 2013; Anthony G. Basile <blueness@gentoo.org>
  +webapp-config-1.50.19-r1.ebuild, metadata.xml:
  Propagete python_targets dependencies to sys-apps/portage, bug #474968

  17 Mar 2013; Markos Chandras <hwoarang@gentoo.org> metadata.xml:
  Add proxy-maintainers to metadata.xml

*webapp-config-9999 (18 Feb 2013)

  18 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  +webapp-config-9999.ebuild, metadata.xml:
  Add live ebuild, thanks Devan Franchini

  09 Feb 2013; Anthony G. Basile <blueness@gentoo.org>
  -webapp-config-1.50.16-r1.ebuild:
  Remove non-baselayout2 compat version, bug #455594

  15 Jul 2012; Raúl Porcel <armin76@gentoo.org>
  webapp-config-1.50.16-r4.ebuild:
  alpha/ia64/m68k/s390/sh/sparc stable wrt #392329

  28 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.50.19.ebuild:
  Temporary workaround for parallel build in doc/Makefile

  28 Jun 2012; Mike Gilbert <floppym@gentoo.org> webapp-config-1.50.19.ebuild:
  Restrict python 2.5 based on advice from Arfrever.

  28 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.50.19.ebuild:
  Add DEPEND=app-text/xmlto for generating the docs

*webapp-config-1.50.19 (28 Jun 2012)

  28 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  +webapp-config-1.50.19.ebuild:
  Version bump, incorporate patches from FILESDIR, address bug #243260

  27 Jun 2012; Agostino Sarubbo <ago@gentoo.org>
  webapp-config-1.50.16-r4.ebuild:
  Stable for amd64, wrt bug #392329

  27 Jun 2012; Jeroen Roovers <jer@gentoo.org> webapp-config-1.50.16-r4.ebuild:
  Stable for HPPA (bug #392329).

  22 Jun 2012; Brent Baude <ranger@gentoo.org> webapp-config-1.50.16-r4.ebuild:
  Marking webapp-config-1.50.16-r4 ppc64 for bug 392329

  19 Jun 2012; Michael Weber <xmw@gentoo.org> webapp-config-1.50.16-r4.ebuild:
  arm stable (bug 392329)

  17 Jun 2012; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.50.16-r4.ebuild,
  +files/webapp-config-1.50.16-fix-unicode-tests.patch:
  Fix tests, thanks prometheanfire, bug #421091

  14 Jun 2012; Jeff Horelick <jdhore@gentoo.org>
  webapp-config-1.50.16-r4.ebuild:
  marked x86 per bug 392329

  14 Jun 2012; Michael Weber <xmw@gentoo.org> webapp-config-1.50.16-r4.ebuild:
  ppc stable (bug 392329)

  27 Apr 2012; Anthony G. Basile <blueness@gentoo.org>
  webapp-config-1.50.16-r1.ebuild, webapp-config-1.50.16-r4.ebuild,
  webapp-config-1.50.18.ebuild:
  Remove python_convert_shebangs, not needed on wrapper script

  29 Dec 2011; Anthony G. Basile <blueness@gentoo.org> metadata.xml:
  Added myself as maintainer

  06 Feb 2011; Mart Raudsepp <leio@gentoo.org> webapp-config-1.50.16-r1.ebuild:
  Drop to ~mips

*webapp-config-1.50.18 (04 Feb 2011)

  04 Feb 2011; Robin H. Johnson <robbat2@gentoo.org>
  +webapp-config-1.50.18.ebuild:
  Bug #353231: Version bump.

*webapp-config-1.50.16-r4 (19 Dec 2010)

  19 Dec 2010; Rafael G. Martins <rafaelmartins@gentoo.org>
  -webapp-config-1.50.16-r3.ebuild, +webapp-config-1.50.16-r4.ebuild,
  +files/webapp-config-1.50.16-update-servers.patch:
  Added support to www-servers/{nginx,gatling}. Thanks to Fernando V. (bug
  #211996)

  03 Oct 2010; Maciej Mrozowski <reavertm@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Remove webapp eclass manpage also in this version, bug 322759

  03 Oct 2010; Maciej Mrozowski <reavertm@gentoo.org>
  webapp-config-1.50.16-r3.ebuild:
  Fix file collision on webapp.eclass manpage, bug 322759

  14 May 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
  webapp-config-1.50.16-r1.ebuild, webapp-config-1.50.16-r3.ebuild:
  Set SUPPORT_PYTHON_ABIS (bug #308287).

  10 Mar 2010; Sebastian Pipping <sping@gentoo.org>
  webapp-config-1.50.16-r1.ebuild, webapp-config-1.50.16-r3.ebuild:
  Fix SRC_URI and HOMEPAGE (bug #267895)

  03 Apr 2008; Benedikt Böhm <hollow@gentoo.org>
  webapp-config-1.50.16-r1.ebuild, -webapp-config-1.50.16-r2.ebuild,
  webapp-config-1.50.16-r3.ebuild:
  fix #213436

*webapp-config-1.50.16-r3 (17 Feb 2008)

  17 Feb 2008; Benedikt Böhm <hollow@gentoo.org>
  +files/webapp-config-1.50.16-absolute-paths.patch,
  +files/webapp-config-1.50.16-htdocs-symlink.patch,
  +webapp-config-1.50.16-r3.ebuild:
  fix #166853, #181938, #206669

*webapp-config-1.50.16-r2 (09 Sep 2007)

  09 Sep 2007; Benedikt Böhm <hollow@gentoo.org>
  +files/webapp-config-1.50.16-baselayout2.patch,
  -webapp-config-1.50.15.ebuild, -webapp-config-1.50.16.ebuild,
  +webapp-config-1.50.16-r2.ebuild:
  fix functions.sh usage for baselayout-2

  24 Aug 2007; Samuli Suominen <drac@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  String comparison, not integer.

  03 Aug 2007; Christoph Mende <angelos@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Stable on amd64 wrt bug #187081

  01 Aug 2007; Joshua Kinard <kumba@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Stable on mips, per #187081.

  30 Jul 2007; Tobias Scherbaum <dertobi123@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  ppc stable, bug #187081

  30 Jul 2007; Jeroen Roovers <jer@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Stable for HPPA (bug #187081).

  30 Jul 2007; Gustavo Zacarias <gustavoz@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Stable on sparc wrt #187081

  30 Jul 2007; Raúl Porcel <armin76@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  alpha/ia64/x86 stable wrt #187081

  30 Jul 2007; Markus Rothe <corsair@gentoo.org>
  webapp-config-1.50.16-r1.ebuild:
  Stable on ppc64; bug #187081

*webapp-config-1.50.16-r1 (29 Jul 2007)

  29 Jul 2007; Benedikt Böhm <hollow@gentoo.org>
  +files/webapp-config-1.50.16-apache-move.patch,
  +webapp-config-1.50.16-r1.ebuild:
  fix for move from net-www/apache to www-servers/apache

  07 Jun 2007; Christian Faulhammer <opfer@gentoo.org> ChangeLog:
  modified ChangeLog to meet common standards

*webapp-config-1.50.16 (04 Jan 2007)

  04 Jan 2007; <wrobel@gentoo.org> -webapp-config-1.50.10.ebuild,
  -webapp-config-1.50.13.ebuild, -webapp-config-1.50.14.ebuild,
  +webapp-config-1.50.16.ebuild:
  Added webapp-config-1.50.16 to the tree. Fixes bugs #104652, #149939,
  #133530, #146059, #139965.

  02 Jan 2007; Renat Lumpau <rl03@gentoo.org> webapp-config-1.50.15.ebuild:
  einfo->elog, bug #139814

  19 Oct 2006; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.50.15.ebuild:
  Stable on Alpha.

  04 Sep 2006; Joshua Kinard <kumba@gentoo.org>
  webapp-config-1.50.15.ebuild:
  Marked stable on mips.

  29 Aug 2006; Marcus D. Hanwell <cryos@gentoo.org>
  webapp-config-1.50.15.ebuild:
  Marked stable on amd64, bug 141077.

  28 Aug 2006; Jeroen Roovers <jer@gentoo.org> webapp-config-1.50.15.ebuild:
  Stable for HPPA (bug #141077).

  22 Aug 2006; Joshua Jackson <tsunam@gentoo.org>
  webapp-config-1.50.15.ebuild:
  Stable x86; bug #141077

  19 Aug 2006; Jason Wever <weeve@gentoo.org> webapp-config-1.50.15.ebuild:
  Stable on SPARC wrt bug #141077.

  18 Aug 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  webapp-config-1.50.15.ebuild:
  ppc stable, bug #141077

  17 Aug 2006; Brent Baude <ranger@gentoo.org> webapp-config-1.50.15.ebuild:
  Marking webapp-config-1.50.15 ppc64 stable wrt bug # 141077

*webapp-config-1.50.15 (19 Jul 2006)

  19 Jul 2006; <wrobel@gentoo.org> +webapp-config-1.50.15.ebuild:
  Release of webapp-config-1.50.15. rl03 added the webapp-cleaner.

  22 Apr 2006; Diego Pettenò <flameeyes@gentoo.org>
  webapp-config-1.50.14.ebuild:
  Add ~x86-fbsd keyword.

*webapp-config-1.50.14 (20 Apr 2006)

  20 Apr 2006; <wrobel@gentoo.org> +webapp-config-1.50.14.ebuild:
  Release of webapp-config 1.50.14

  22 Mar 2006; Michael Hanselmann <hansmi@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Stable on ppc.

  14 Mar 2006; Joshua Jackson <tsunam@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Stable on x86; bug #125330

  11 Mar 2006; <wrobel@gentoo.org> -webapp-config-1.11.ebuild:
  Removed webapp-config-1.11 from the tree.

  10 Mar 2006; Chris White <chriswhite@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Marked 1.50.13 amd64 stable per bug #125330.

  10 Mar 2006; Jose Luis Rivero <yoswink@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Stable on alpha wrt #125330

  10 Mar 2006; Michael Hanselmann <hansmi@gentoo.org>
  webapp-config-1.50.10.ebuild:
  Stable on ppc.

  09 Mar 2006; Aron Griffis <agriffis@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Mark 1.50.13 stable on ia64

  08 Mar 2006; Markus Rothe <corsair@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Stable on ppc64; bug #125330

  07 Mar 2006; Jeroen Roovers <jer@gentoo.org> webapp-config-1.50.13.ebuild:
  Stable on hppa (bug #125330).

  07 Mar 2006; Gustavo Zacarias <gustavoz@gentoo.org>
  webapp-config-1.50.13.ebuild:
  Stable on sparc wrt #125330

*webapp-config-1.50.13 (06 Mar 2006)

  06 Mar 2006; <wrobel@gentoo.org> -webapp-config-1.50.12.ebuild,
  +webapp-config-1.50.13.ebuild:
  Second version of the libdir fix for bug #125156

*webapp-config-1.50.12 (06 Mar 2006)

  06 Mar 2006; <wrobel@gentoo.org> -webapp-config-1.50.11.ebuild,
  +webapp-config-1.50.12.ebuild:
  Added webapp-config-1.50.12 to the tree. Potential AMD64 fix for bug #125156

  06 Mar 2006; <wrobel@gentoo.org> webapp-config-1.50.10.ebuild,
  webapp-config-1.50.11.ebuild:
  Added 'keepdir /var/db/webapps' as a fix to bug #125154

*webapp-config-1.50.11 (04 Mar 2006)

  04 Mar 2006; <wrobel@gentoo.org> webapp-config-1.50.10.ebuild,
  +webapp-config-1.50.11.ebuild:
  Added webapp-config-1.50.11 to the tree. Added a check for python>=2.4 to
  both 1.50.* ebuilds. If the check fails, testing will be disabled.

  03 Mar 2006; Jose Luis Rivero <yoswink@gentoo.org>
  webapp-config-1.50.10.ebuild:
  Stable on alpha wrt bug #124205

  27 Feb 2006; Markus Rothe <corsair@gentoo.org>
  webapp-config-1.50.10.ebuild:
  Stable on ppc64

  27 Feb 2006; Joshua Kinard <kumba@gentoo.org>
  webapp-config-1.50.10.ebuild:
  Marked stable on mips.

  27 Feb 2006; Jason Wever <weeve@gentoo.org> webapp-config-1.50.10.ebuild:
  Stable on SPARC wrt bug #124205.

  27 Feb 2006; Jeroen Roovers <jer@gentoo.org> webapp-config-1.50.10.ebuild:
  Stable on hppa (bug #124205).

  26 Feb 2006; Chris White <chriswhite@gentoo.org>
  webapp-config-1.50.10.ebuild:
  x86 stable for bug #124205.

*webapp-config-1.50.10 (30 Jan 2006)

  30 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.9.ebuild,
  +webapp-config-1.50.10.ebuild:
  Release of webapp-config-1.50.10. Fixed doctests, variables in hooks and
  handling of config variables

  28 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.7.ebuild:
  Fixed stray digest

*webapp-config-1.50.9 (27 Jan 2006)

  27 Jan 2006; <wrobel@gentoo.org> +webapp-config-1.50.9.ebuild:
  Version bump to 1.50.9. Fixed symlink handling, improved error message for
  corrupt config files, corrected upgrade instructions and support for
  config/server-owned files

  15 Jan 2006; Marcus D. Hanwell <cryos@gentoo.org>
  webapp-config-1.50.7.ebuild:
  Marked ~amd64, bug 118450.

  13 Jan 2006; Tobias Scherbaum <dertobi123@gentoo.org>
  webapp-config-1.50.7.ebuild:
  added to ~ppc, bug #118450

  12 Jan 2006; Markus Rothe <corsair@gentoo.org>
  webapp-config-1.50.7.ebuild:
  Added ~ppc64

  12 Jan 2006; Rene Nussbaumer <killerfox@gentoo.org>
  webapp-config-1.50.7.ebuild:
  Unstable on hppa. See bug #118450.

  11 Jan 2006; Jose Luis Rivero <yoswink@gentoo.org>
  webapp-config-1.50.7.ebuild:
  Added ~alpha keyword wrt bug #118450

  10 Jan 2006; Jason Wever <weeve@gentoo.org> webapp-config-1.50.7.ebuild:
  Added ~sparc keyword wrt bug #118450.

*webapp-config-1.50.7 (09 Jan 2006)

  09 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.6.ebuild,
  +webapp-config-1.50.7.ebuild:
  Another correction to symlinks. We now support broken links. Documentation
  update. Fix for variables VHOST_SERVER_xID

*webapp-config-1.50.6 (04 Jan 2006)

  04 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.5.ebuild,
  +webapp-config-1.50.6.ebuild:
  Removed a problematic doctest so that src_test will work

*webapp-config-1.50.5 (04 Jan 2006)

  04 Jan 2006; <wrobel@gentoo.org> -webapp-config-1.50.ebuild,
  -webapp-config-1.50.1.ebuild, -webapp-config-1.50.2.ebuild,
  -webapp-config-1.50.3.ebuild, +webapp-config-1.50.5.ebuild:
  Fixed trailing slashes for the -d flag. Support for symlinked directories.
  Ebuild now provides src_test

*webapp-config-1.50.3 (12 Dec 2005)

  12 Dec 2005; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.50.3.ebuild:
  BSD and upgrade bugfixes

*webapp-config-1.50.2 (05 Dec 2005)

  05 Dec 2005; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.50.2.ebuild:
  Version bump; contains bug fixes

*webapp-config-1.50.1 (24 Nov 2005)

  24 Nov 2005; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.50.1.ebuild:
  Version bump; fixes problem with missing hook directories

*webapp-config-1.11 (20 Nov 2005)
*webapp-config-1.50 (20 Nov 2005)

  20 Nov 2005; Stuart Herbert <stuart@gentoo.org> +metadata.xml,
  +webapp-config-1.11.ebuild, +webapp-config-1.50.ebuild:
  Moved package from net-www
  Added new webapp-config v1.50

  28 Jul 2005; Renat Lumpau <rl03@gentoo.org> webapp-config-1.11-r1.ebuild:
  Fixed SRC_URI and S

  24 Jul 2005; Hardave Riar <hardave@gentoo.org> webapp-config-1.11.ebuild:
  Stable on mips, bug #91785.

  21 Jul 2005; Bret Curtis <psi29a@gentoo.org> ChangeLog:
  added to ~mips

*webapp-config-1.11-r1 (20 Jul 2005)

  20 Jul 2005; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.11-r1.ebuild:
  Version bump; requires additional testing before marking stable!!

  17 Jun 2005; Olivier Crête <tester@gentoo.org> webapp-config-1.11.ebuild:
  Stable on x86 per security bug #91785

  15 Jun 2005; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.11.ebuild:
  Stable on ia64, bug 91785.

  13 Jun 2005; Fernando J. Pereda <ferdy@gentoo.org>
  webapp-config-1.11.ebuild:
  stable on alpha, wrt bug #91785

  13 Jun 2005; Markus Rothe <corsair@gentoo.org> webapp-config-1.11.ebuild:
  Stable on ppc64; bug #91785

  12 Jun 2005; Jason Wever <weeve@gentoo.org> webapp-config-1.11.ebuild:
  Stable on SPARC wrt bug #91785.

  12 Jun 2005; Danny van Dyk <kugelfang@gentoo.org>
  webapp-config-1.11.ebuild:
  Marked stable wrt BUG #91785.

  12 Jun 2005; Rene Nussbaumer <killerfox@gentoo.org>
  webapp-config-1.11.ebuild:
  Stable on hppa.

  12 Jun 2005; Michael Hanselmann <hansmi@gentoo.org>
  webapp-config-1.11.ebuild:
  Stable on ppc.

  31 May 2005; Stuart Herbert <stuart@gentoo.org>
  webapp-config-1.10-r12.ebuild, webapp-config-1.10-r14.ebuild:
  Urgh - seeing as -r14 just won't go away, I've removed the broken patches
  from it (effectively making it the same as -r12)

  30 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  +files/webapp-config_fixperms.patch,
  +files/webapp-config_improved-tmpfile-handling.patch,
  +webapp-config-1.10-r14.ebuild:
  Restore webapp-config-1.10-r14 as many packages depends on it.

*webapp-config-1.11 (30 May 2005)

  30 May 2005; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r14.ebuild, +webapp-config-1.11.ebuild:
  Removed 1.10-r14 (dangerously broken)
  Added 1.11 (includes fixes for all known security problems, and most bugs)

  18 May 2005; Elfyn McBratney <beu@gentoo.org>
  -webapp-config-1.10-r15.ebuild:
  Drop -r16.

  16 May 2005; Jochen Maes <sejo@gentoo.org> :
  fixed digest

*webapp-config-1.10-r15 (15 May 2005)

  15 May 2005; Elfyn McBratney <beu@gentoo.org>
  +webapp-config-1.10-r15.ebuild:
  Revision bump, bug #91785.

  10 May 2005; Elfyn McBratney <beu@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  s/src_compile/src_unpack/

  09 May 2005; Marcus D. Hanwell <cryos@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on amd64, bug 91785.

  09 May 2005; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on alpha + ia64, bug 91785.

  09 May 2005; Michael Hanselmann <hansmi@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on ppc.

  09 May 2005; Rene Nussbaumer <killerfox@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on hppa

  09 May 2005; Gustavo Zacarias <gustavoz@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on sparc wrt #91785

  09 May 2005; Markus Rothe <corsair@gentoo.org>
  webapp-config-1.10-r14.ebuild:
  Stable on ppc64

*webapp-config-1.10-r14 (09 May 2005)

  09 May 2005; Elfyn McBratney <beu@gentoo.org>
  +files/webapp-config_fixperms.patch,
  +files/webapp-config_improved-tmpfile-handling.patch,
  -files/webapp-config_unfeck-perms.patch, -webapp-config-1.10-r13.ebuild,
  +webapp-config-1.10-r14.ebuild:
  Rev bump, fixes bugs #88831, #87708 and #91785.  Remove old version (-r13).
  Stable on x86.

*webapp-config-1.10-r13 (07 May 2005)

  07 May 2005; Elfyn McBratney <beu@gentoo.org>
  +files/webapp-config_unfeck-perms.patch, +webapp-config-1.10-r13.ebuild:
  Revision bump with a patch to finally kill bug #88831, and close bug #87708.

*webapp-config-1.10-r12 (25 Apr 2005)

  25 Apr 2005; Aaron Walker <ka0ttic@gentoo.org>
  +webapp-config-1.10-r12.ebuild:
  Revision bump. Use equery instead of deprecated qpkg for bug 73867.

  29 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
  Change encoding to UTF-8 for GLEP 31 compliance

  19 Sep 2004; Stuart Herbert <stuart@gentoo.org> :
  Version bump; CONF_LIBDIR support for amd64

  08 Sep 2004; Renat Lumpau <rl03@gentoo.org> metadata.xml:
  Fixed herd name

  06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org>
  webapp-config-1.10-r10.ebuild, webapp-config-1.10-r6.ebuild:
  Switch to use epause and ebeep, bug #62950

  04 Sep 2004; Danny van Dyk <kugelfang@gentoo.org>
  webapp-config-1.10-r10.ebuild:
  Marked stable on amd64.

  04 Sep 2004; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.10-r10.ebuild:
  Stable on alpha.

  04 Sep 2004; Pieter Van den Abeele <pvdabeel@gentoo.org>
  webapp-config-1.10-r10.ebuild:
  Masked webapp-config-1.10-r10.ebuild stable for ppc

  31 Aug 2004; Gustavo Zacarias <gustavoz@gentoo.org>
  webapp-config-1.10-r10.ebuild:
  Stable on sparc wrt #62018

  28 Aug 2004; Tom Gall <tgall@gentoo.org> webapp-config-1.10-r10.ebuild:
  stable on ppc64, bug #59756

  28 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  webapp-config-1.10-r10.ebuild:
  Marked stable on x86

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r9.ebuild:
  Obsolete version; removed by eversionrm tool

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r8.ebuild:
  Obsolete version; removed by eversionrm tool

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r7.ebuild:
  Obsolete version; removed by eversionrm tool

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r5.ebuild:
  Obsolete version; removed by eversionrm tool

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r4.ebuild:
  Obsolete version; removed by eversionrm tool

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r3.ebuild:
  Obsolete version; removed by eversionrm tool

*webapp-config-1.10-r10 (19 Aug 2004)

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r10.ebuild:
  Fix for permissions problem due to typo in -r8

*webapp-config-1.10-r9 (19 Aug 2004)

  19 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r9.ebuild:
  Version bump

*webapp-config-1.10-r8 (16 Aug 2004)

  16 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r8.ebuild:
  Version bump; fixed broken cgi installs

  15 Aug 2004; Jason Wever <weeve@gentoo.org> webapp-config-1.10-r6.ebuild:
  Stable on sparc wrt bug #59756.

  13 Aug 2004; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.10-r6.ebuild:
  Stable on alpha.

*webapp-config-1.10-r7 (12 Aug 2004)

  12 Aug 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r7.ebuild:
  Version bump

*webapp-config-1.10-r6 (08 Aug 2004)

  08 Aug 2004; Danny van Dyk <kugelfang@gentoo.org>
  webapp-config-1.10-r6.ebuild:
  Marked stable on amd64.

  08 Aug 2004; Stuart Herbert <stuart@gentoo.org> :
  Version bump + mark stable on x86

*webapp-config-1.10-r5 (11 Jul 2004)

  11 Jul 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r5.ebuild:
  Version bump; fix for broken CONFIG_PROTECT behaviour; new variables exported
  for hook scripts & post install text files

*webapp-config-1.10-r4 (07 Jul 2004)

  07 Jul 2004; Michael Sterrett <mr_bones_@gentoo.org>
  +webapp-config-1.10-r3.ebuild:
  resurrect version needed for deps

  07 Jul 2004; Stuart Herbert <stuart@gentoo.org> :
  Added version 1.10-r4; contains fixes that should have been in -r3

  07 Jul 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r2.ebuild, -webapp-config-1.10-r3.ebuild:
  Obsolete version; removed by eversionrm tool

  07 Jul 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r2.ebuild:
  Obsolete version; removed by eversionrm tool

  06 Jul 2004; Aron Griffis <agriffis@gentoo.org>
  webapp-config-1.10-r2.ebuild, webapp-config-1.10-r3.ebuild,
  webapp-config-1.9-r2.ebuild:
  add ia64 keywords

  03 Jul 2004; <malc@gentoo.org> webapp-config-1.9-r2.ebuild:
  Mark stable on amd64, closes bug #55921

*webapp-config-1.10-r3 (28 Jun 2004)

  28 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r3.ebuild:
  Version bump; small bug fixes

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org> -webapp-config-1.9.ebuild:
  Obsolete version; removed by eversionrm tool

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.9-r1.ebuild:
  Obsolete version; removed by eversionrm tool

*webapp-config-1.10-r1 (24 Jun 2004)

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.10-r1.ebuild:
  Obsolete version; removed by eversionrm tool

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org> -webapp-config-1.10.ebuild:
  Obsolete version; removed by eversionrm tool

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.9-r3.ebuild:
  Obsolete version; removed by eversionrm tool

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  -webapp-config-1.8-r1.ebuild:
  Obsolete version; removed by eversionrm tool

*webapp-config-1.10-r2 (24 Jun 2004)

  24 Jun 2004; Stuart Herbert <stuart@gentoo.org>
  +webapp-config-1.10-r2.ebuild, -webapp-config-1.8.ebuild:
  Obsolete version; removed by eversionrm tool

  15 Jun 2004; Stuart Herbert <stuart@gentoo.org> :
  Version bump; lots of fixes

  12 Jun 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.10.ebuild:
  Changed SRC_URI to get webapp-config from dev.gentoo.org, for when the
  mirrors are not up to date.

*webapp-config-1.10 (11 Jun 2004)

  11 Jun 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.10.ebuild:
  Version bump; new features + changes for bugs #53215, #53390, #53384

  11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org>
  webapp-config-1.9-r2.ebuild:
  Stable on alpha.

  26 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.9-r3.ebuild:
  Added ~hppa

  25 May 2004; Guy Martin <gmsoft@gentoo.org> webapp-config-1.9-r2.ebuild:
  Added ~hppa to KEYWORDS.

*webapp-config-1.9-r3 (25 May 2004)

  25 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.9-r3.ebuild:
  Version bump; more env vars for hook functions

*webapp-config-1.9-r2 (19 May 2004)

  19 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.9-r1.ebuild,
  webapp-config-1.9-r2.ebuild:
  More fn_run_hook() fixes

*webapp-config-1.9-r1 (18 May 2004)

  18 May 2004; Stuart Herbert <stuart@gentoo.org> :
  Bug fixes; see bug #51377; thanks to Sven Wegener for pointing out the bug

*webapp-config-1.9 (18 May 2004)

  18 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.9.ebuild:
  Version bump; bug fixes and new features; see CHANGES.txt for details

*webapp-config-1.8-r1 (16 May 2004)

  16 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.8-r1.ebuild:
  Added missing dependency on gentoolkit; thanks to Lars T. Mikkelsen
  <lars@datascan.net>; see bug #51144

*webapp-config-1.8 (11 May 2004)

  11 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.4.ebuild,
  webapp-config-1.5.ebuild, webapp-config-1.6.ebuild,
  webapp-config-1.7.ebuild, webapp-config-1.8.ebuild:
  Urgent bugfix; restores webapp-config -U functionality.

  Removed old versions.

  04 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.7.ebuild:
  Removed rdepend on xmlto. If you need to regen the man pages from the docbook
  source, remember to emerge xmlto first!

  03 May 2004; Bryan Østergaard <kloeri@gentoo.org> webapp-config-1.7.ebuild:
  Keyworded ~alpha.

*webapp-config-1.7 (01 May 2004)

  01 May 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.7.ebuild:
  Fix for directories always being root-owned

*webapp-config-1.6 (30 Apr 2004)

  30 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.6.ebuild:
  Version bump; some new features, and some important bug fixes

*webapp-config-1.5 (28 Apr 2004)

  28 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.0.ebuild,
  webapp-config-1.1.ebuild, webapp-config-1.2.ebuild,
  webapp-config-1.3.ebuild, webapp-config-1.5.ebuild:
  Version bump; bug fixes for the trac ebuild

  28 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.0.ebuild,
  webapp-config-1.1.ebuild, webapp-config-1.2.ebuild,
  webapp-config-1.3.ebuild:
  Removed obsolete versions

  24 Apr 2004; Martin Holzer <mholzer@gentoo.org> webapp-config-1.1.ebuild,
  webapp-config-1.2.ebuild, webapp-config-1.3.ebuild,
  webapp-config-1.4.ebuild:
  chaning src_uri. closes 48854

*webapp-config-1.4 (23 Apr 2004)

  23 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.4.ebuild:
  Version bump; main change is a doc change for the latest eclass

*webapp-config-1.3 (23 Apr 2004)

  23 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.3.ebuild:
  Version bump

*webapp-config-1.2 (23 Apr 2004)

  23 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.2.ebuild:
  Version bump

*webapp-config-1.1 (14 Apr 2004)

  14 Apr 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.1.ebuild:
  Version bump; marked as stable

  03 Mar 2004; Stuart Herbert <stuart@gentoo.org> metadata.xml:
  Added the correct email address to the metadata

  03 Mar 2004; Stuart Herbert <stuart@gentoo.org> webapp-config-1.0.ebuild:
  Added documentation into /usr/doc

*webapp-config-1.0 (03 Mar 2004)

  03 Mar 2004; Stuart Herbert <stuart@gentoo.org> metadata.xml,
  webapp-config-1.0.ebuild:
  Initial commit