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
|
# ChangeLog for dev-util/subversion
# Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/dev-util/subversion/ChangeLog,v 1.245 2007/01/28 19:30:13 chtekk Exp $
28 Jan 2007; Luca Longinotti <chtekk@gentoo.org>
subversion-1.2.3-r2.ebuild, subversion-1.2.3-r3.ebuild,
subversion-1.3.0.ebuild, subversion-1.3.1.ebuild, subversion-1.3.2.ebuild,
subversion-1.3.2-r1.ebuild, subversion-1.3.2-r3.ebuild,
subversion-1.4.0.ebuild, subversion-1.4.2.ebuild:
Fix apr deps.
23 Nov 2006; Fabian Groffen <grobian@gentoo.org>
subversion-1.2.3-r2.ebuild, subversion-1.2.3-r3.ebuild,
subversion-1.3.0.ebuild, subversion-1.3.1.ebuild, subversion-1.3.2.ebuild,
subversion-1.3.2-r1.ebuild, subversion-1.3.2-r3.ebuild,
subversion-1.4.0.ebuild, subversion-1.4.2.ebuild:
Dropped ppc-macos keyword, see you in prefix
*subversion-1.4.2 (14 Nov 2006)
14 Nov 2006; Paul de Vrieze <pauldv@gentoo.org> +files/svnserve.confd2,
+subversion-1.4.2.ebuild:
New upstream version. Also no longer assume the apache user exists in the
config function. Thanks to Olivier Rolland<billl@users.sf.net> and Yuval
Yaari <yuval@gentoo.org> for the bug (#123802)
20 Oct 2006; Bryan Østergaard <kloeri@gentoo.org>
subversion-1.3.2-r3.ebuild:
Stable on Alpha.
18 Oct 2006; Roy Marples <uberlord@gentoo.org> subversion-1.4.0.ebuild:
Added ~sparc-fbsd keyword.
16 Oct 2006; Jason Wever <weeve@gentoo.org> subversion-1.3.2-r3.ebuild:
Stable on SPARC.
15 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
subversion-1.3.2-r3.ebuild:
ppc stable. bug #147254
15 Oct 2006; Tobias Scherbaum <dertobi123@gentoo.org>
subversion-1.3.2-r3.ebuild:
hppa stable
14 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
subversion-1.3.2-r3.ebuild:
Stabilizing on amd64 as part of new Java system, bug #147254.
14 Oct 2006; Joshua Nichols <nichoj@gentoo.org>
subversion-1.3.2-r3.ebuild:
Stabilizing on ppc64 as part of new Java system, bug #147254.
14 Oct 2006; Joshua Jackson <tsunam@gentoo.org>
subversion-1.3.2-r3.ebuild:
New java stable on x86; bug #147254
01 Oct 2006; Guy Martin <gmsoft@gentoo.org> subversion-1.3.2-r1.ebuild:
Stable on hppa.
12 Sep 2006; Bryan Østergaard <kloeri@gentoo.org>
subversion-1.4.0.ebuild:
Revert ia64 keyword back to ~ia64, bug 147268.
12 Sep 2006; Joshua Kinard <kumba@gentoo.org> subversion-1.4.0.ebuild:
Placed 1.4.0 into mips unstable. Bug #147268.
*subversion-1.4.0 (08 Sep 2006)
08 Sep 2006; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-1.4-db4.patch, +subversion-1.4.0.ebuild:
A new upstream major version. This version introduces a number of big changes.
The most significant is that there is a new working copy format that is
transparently updated. It can however not transparently downgrade!
03 Sep 2006; Joshua Kinard <kumba@gentoo.org> subversion-1.3.2-r3.ebuild:
Marked stable on mips.
30 Jul 2006; Daniel Gryniewicz <dang@gentoo.org>
subversion-1.3.2-r1.ebuild:
Marked stable on amd64 for bug #139507
28 Jul 2006; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.3.2-r3.ebuild:
Fix building of java code with 1.5 jdk. Thanks to caster@matfyz.cz in bug
#141988
25 Jul 2006; Thomas Cort <tcort@gentoo.org> subversion-1.3.2-r1.ebuild:
Stable on alpha wrt Bug #139507.
*subversion-1.3.2-r3 (24 Jul 2006)
24 Jul 2006; Joshua Nichols <nichoj@gentoo.org>
+subversion-1.3.2-r3.ebuild:
Revision bump to use new Java system. Resolves bugs #141465 and #99245.
23 Jul 2006; Akinori Hattori <hattya@gentoo.org>
subversion-1.3.2-r1.ebuild:
x86 stable, bug #139507
23 Jul 2006; Tobias Scherbaum <dertobi123@gentoo.org>
subversion-1.3.2-r1.ebuild:
ppc stable, bug #139507
20 Jul 2006; Markus Rothe <corsair@gentoo.org> subversion-1.3.2-r1.ebuild:
Stable on ppc64; bug #139507
13 Jul 2006; Aron Griffis <agriffis@gentoo.org>
subversion-1.3.2-r1.ebuild:
Mark 1.3.2-r1 stable on ia64. #139507
10 Jul 2006; Gustavo Zacarias <gustavoz@gentoo.org>
subversion-1.3.2-r1.ebuild:
Stable on sparc wrt #139507
*subversion-1.3.2-r1 (05 Jul 2006)
05 Jul 2006; Steve Arnold <nerdboy@gentoo.org>
+files/subversion-1.3.1-neon-0.26.patch, +subversion-1.3.2-r1.ebuild:
Added support for newer versions of neon (required for rapidsvn), see bugs
#131221 and #137563. This syncs up the versions of neon between svn and
rapidsvn (and they should stay that way).
03 Jul 2006; Simon Stelling <blubb@gentoo.org> subversion-1.3.1.ebuild:
stable on amd64
28 Jun 2006; Gustavo Zacarias <gustavoz@gentoo.org>
subversion-1.3.1.ebuild:
Stable on sparc wrt #138372
24 Jun 2006; Michael Cummings <mcummings@gentoo.org>
subversion-1.1.3.ebuild, subversion-1.2.3.ebuild,
subversion-1.2.3-r2.ebuild, subversion-1.2.3-r3.ebuild,
subversion-1.3.0.ebuild, subversion-1.3.1.ebuild, subversion-1.3.2.ebuild:
Removing perl-core/ExtUtils-MakeMaker
10 Jun 2006; Michael Hanselmann <hansmi@gentoo.org>
subversion-1.3.1.ebuild:
Stable on ppc.
09 Jun 2006; Markus Rothe <corsair@gentoo.org> subversion-1.3.1.ebuild:
Stable on ppc64
*subversion-1.3.2 (05 Jun 2006)
05 Jun 2006; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.3.2.ebuild:
New upstream version
04 Jun 2006; Paul de Vrieze <pauldv@gentoo.org> subversion-1.3.1.ebuild:
Mark stable
18 Apr 2006; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-apr-version.patch, subversion-1.3.1.ebuild:
Add a patch extracted from the subversion repository to enable newer apr
versions. Fixes bug #130306.
17 Apr 2006; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-apr_cppflags.patch, subversion-1.3.1.ebuild:
Fix the compilation of the perl bindings with newer apr. Thanks to R.May
<tinitus1@onlinehome.de> in bug #123222 for the patch.
*subversion-1.3.1 (05 Apr 2006)
05 Apr 2006; <pauldv@gentoo.org>
+files/subversion-1.3.1-neon-config.patch, +subversion-1.3.1.ebuild:
New upstream version that resolves some issues.
30 Mar 2006; Diego Pettenò <flameeyes@gentoo.org>
subversion-1.3.0.ebuild:
Add ~x86-fbsd keyword.
20 Mar 2006; <pauldv@gentoo.org> subversion-1.3.0.ebuild:
Make the ebuild respect LDFLAGS (bug #126964) thanks to flameeyes.
16 Mar 2006; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.3.ebuild,
subversion-1.2.3.ebuild, subversion-1.2.3-r2.ebuild,
subversion-1.2.3-r3.ebuild, subversion-1.3.0.ebuild:
Suggest the use of emerge --config instead of ebuild config. Thanks Mike
Williams <mike@gaima.co.uk> in bug #114668.
10 Mar 2006; Paul de Vrieze <pauldv@gentoo.org>
files/subversion-neon-config.patch:
Fix the patch such that configure doesn't fail when neon wasn't requested
(bug #125570)
21 Feb 2006; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-neon-config.patch, subversion-1.3.0.ebuild:
Make subversion work with the newer neon.
21 Feb 2006; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-neon-config.patch, subversion-1.3.0.ebuild:
Add a patch to the configure script to have subversion fail if the neon
library version is not supported, while requested.
20 Feb 2006; Markus Rothe <corsair@gentoo.org> subversion-1.2.3-r3.ebuild:
Stable on ppc64
06 Feb 2006; Aron Griffis <agriffis@gentoo.org>
subversion-1.2.3-r3.ebuild:
Mark 1.2.3-r3 stable on alpha
04 Feb 2006; Aron Griffis <agriffis@gentoo.org>
subversion-1.2.3-r3.ebuild:
Mark 1.2.3-r3 stable on ia64
27 Jan 2006; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.3.ebuild,
subversion-1.2.3.ebuild, -subversion-1.2.3-r1.ebuild,
subversion-1.2.3-r2.ebuild, subversion-1.2.3-r3.ebuild,
-subversion-1.3.0_rc4.ebuild, subversion-1.3.0.ebuild:
Remove some old stale versions, and add blockers to
perl-core/ExtUtils-MakeMaker. This package is often broken and causes insecure
runpaths. Fixes bug #105054.
*subversion-1.3.0 (03 Jan 2006)
03 Jan 2006; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.3.0.ebuild:
New upstream version. Note that it no longer includes the book.
01 Jan 2006; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.3.0_rc4.ebuild:
The book is not present in the release candidate (bug #117321). Comment it out.
16 Dec 2005; Diego Pettenò <flameeyes@gentoo.org>
subversion-1.3.0_rc4.ebuild:
Move elibtoolize at the end of src_unpack so that it's called with the final
autotools support. See bug #106176.
08 Dec 2005; Rene Nussbaumer <killerfox@gentoo.org>
subversion-1.2.3-r3.ebuild:
Stable on hppa.
08 Dec 2005; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.2.3-r3.ebuild, subversion-1.3.0_rc4.ebuild:
Tighten the ruby dependencies. Unstabilize 1.2.3-r3 as its ruby bindings
depend on an unstable version of swig.
07 Dec 2005; <pauldv@gentoo.org> subversion-1.2.3-r3.ebuild,
subversion-1.3.0_rc4.ebuild:
As makemaker has been fixed, the blocking is no longer needed. Removing
it.
06 Dec 2005; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.2.3-r3.ebuild, subversion-1.3.0_rc4.ebuild:
Block extutils-makemaker as it has security vulnerabilities and isn't needed
with newer perl versions. Also mark 1.2.3-r3 stable as it hasn't had bugs for some
while.
*subversion-1.3.0_rc4 (01 Dec 2005)
01 Dec 2005; <pauldv@gentoo.org> +subversion-1.3.0_rc4.ebuild:
Add release candidate to the tree. According to upstream this version
is be stable enough for production use.
25 Oct 2005; <pauldv@gentoo.org> subversion-1.2.3-r3.ebuild:
Fix dep to depend on newer swig version.
24 Oct 2005; <pauldv@gentoo.org> subversion-1.2.3-r3.ebuild:
Fix the runtime dependency on the jdk to only be a jre dependency. Bug
#110322
21 Oct 2005; <pauldv@gentoo.org> subversion-1.2.3-r3.ebuild:
Add support for ruby bindings. Courtessy of Tom Payne <twp@gentoo.org>
in bug #102543.
*subversion-1.2.3-r3 (17 Oct 2005)
17 Oct 2005; <pauldv@gentoo.org> +files/subversion-hotbackup-config.patch,
+subversion-1.2.3-r3.ebuild:
Make hot-backup backup number configurable. Virtue of Urs Joss in bug
#98099
*subversion-1.2.3-r2 (14 Oct 2005)
14 Oct 2005; Paul de Vrieze <pauldv@gentoo.org> subversion-1.2.3-r2.ebuild:
Security bump to force a perl version that has secure RUNPATH's (bug #105054)
10 Oct 2005; Danny van Dyk <kugelfang@gentoo.org>
subversion-1.2.3-r1.ebuild:
Marked ~ppc-macos.
07 Oct 2005; Gustavo Zacarias <gustavoz@gentoo.org>
subversion-1.2.3-r1.ebuild:
Stable on sparc
04 Oct 2005; <pauldv@gentoo.org> subversion-1.1.3.ebuild,
subversion-1.2.3-r1.ebuild, subversion-1.2.3.ebuild:
Try to fix bug #106443 to make the ebuild work on bsd.
02 Oct 2005; Aron Griffis <agriffis@gentoo.org>
subversion-1.2.3-r1.ebuild:
Mark 1.2.3-r1 stable on ia64
29 Sep 2005; Fernando J. Pereda <ferdy@gentoo.org>
subversion-1.2.3-r1.ebuild:
stable on alpha
26 Sep 2005; <pauldv@gentoo.org> -subversion-1.0.9.ebuild,
-subversion-1.1.1-r3.ebuild, -subversion-1.1.3-r1.ebuild,
-subversion-1.1.4-r1.ebuild, -subversion-1.1.4.ebuild,
-subversion-1.2.0.ebuild, -subversion-1.2.1.ebuild:
Clean out many old versions
19 Sep 2005; Marcus D. Hanwell <cryos@gentoo.org>
subversion-1.2.3-r1.ebuild:
Stable on amd64.
19 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
subversion-1.2.3-r1.ebuild:
Stable on hppa and ppc.
19 Sep 2005; Markus Rothe <corsair@gentoo.org> subversion-1.2.3-r1.ebuild:
Stable on ppc64 (bug #106421)
17 Sep 2005; Aron Griffis <agriffis@gentoo.org> subversion-1.2.3.ebuild:
Mark 1.2.3 stable on ia64
14 Sep 2005; Aaron Walker <ka0ttic@gentoo.org> subversion-1.2.3.ebuild:
1.2.3 stable on mips.
12 Sep 2005; Michael Hanselmann <hansmi@gentoo.org>
subversion-1.2.3.ebuild:
Stable on ppc.
12 Sep 2005; Paul de Vrieze <pauldv@gentoo.org> subversion-1.2.3.ebuild,
subversion-1.2.3-r1:
Restrict the neon dependency
07 Sep 2005; Gustavo Zacarias <gustavoz@gentoo.org>
subversion-1.2.3.ebuild:
Stable on sparc
06 Sep 2005; Markus Rothe <corsair@gentoo.org> subversion-1.2.3.ebuild:
Stable on ppc64
31 Aug 2005; Paul de Vrieze <pauldv@gentoo.org> subversion-1.2.3.ebuild,
subversion-1.2.3-r1.ebuild:
Fix the ebuild to use `get_libdir` instead of lib. Thanks to seemant in bug
#104154
*subversion-1.2.3-r1 (27 Aug 2005)
*subversion-1.2.3 (27 Aug 2005)
27 Aug 2005; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.2.3.ebuild,
+subversion-1.2.3-r1.ebuild:
New upstream versions. The one that works with unstable apache is -r1. The
1.2.3 version (masked because still untested) should work with the stable
apache versions. As stable and unstable apache are incompatible the two
ebuilds are released simultaneously.
25 Aug 2005; <pauldv@gentoo.org> files/svnserve.initd:
Fix the init script to change its working directory to the root to
prevent unmounting and hook script problems. See bug #97926
25 Aug 2005; <pauldv@gentoo.org> subversion-1.1.3.ebuild,
subversion-1.2.1.ebuild:
Fix the pkg_postinst message to suggest a more secure setup for ssh+svn
such that user permissions are not overly free and membership of the
apache group is not needed. (bug #94718)
25 Aug 2005; <pauldv@gentoo.org> files/svnserve.xinetd,
subversion-1.2.1.ebuild:
Fix the svnserve xinet.d script (see bug #82262)
25 Aug 2005; <pauldv@gentoo.org> subversion-1.2.1.ebuild:
Make the subversion book be installed again. Thanks to Axel
Dyks<XL@XLsigned.net> in bug #103576.
29 Jul 2005; Aaron Walker <ka0ttic@gentoo.org> subversion-1.1.3.ebuild,
subversion-1.2.1.ebuild:
Added ~mips.
*subversion-1.2.1 (08 Jul 2005)
08 Jul 2005; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.2.1.ebuild:
New upstream version
23 Jun 2005; Sven Wegener <swegener@gentoo.org> subversion-1.2.0.ebuild:
Correctly check for the perl USE flag before calling perl-module_pkg_postrm.
23 Jun 2005; Fernando J. Pereda <ferdy@gentoo.org>
subversion-1.1.3.ebuild:
stable on alpha
27 May 2005; <pauldv@gentoo.org> +files/vc-svn.el,
-files/vc-svn.el.20050527, subversion-1.2.0.ebuild:
Use the vc-svn.el from the 1.1.4 version of subversion. The new one
doesn't work with current emacs.
27 May 2005; <pauldv@gentoo.org> +files/vc-svn.el.20050527,
subversion-1.2.0.ebuild:
Fix the problem that vc-svn.el has been changed to a canned error
message pointing to the proper location to get it.
*subversion-1.2.0 (25 May 2005)
25 May 2005; <pauldv@gentoo.org> +subversion-1.2.0.ebuild:
New upstream version, and some dependency updates. Also make zlib use
really optional and add it as dependency.
*subversion-1.1.4-r1 (20 May 2005)
20 May 2005; <pauldv@gentoo.org> +subversion-1.1.4-r1.ebuild:
Try to fix perl file collisions #82648
12 May 2005; Elfyn McBratney <beu@gentoo.org> subversion-1.1.3.ebuild:
Update *DEPEND.
05 May 2005; Sven Wegener <swegener@gentoo.org> subversion-1.0.9.ebuild,
subversion-1.1.1-r3.ebuild, subversion-1.1.3.ebuild:
Removed '*' postfix from <, <=, >= and > dependencies.
05 May 2005; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.4.ebuild:
Try to fix #88651 by making the location of modules in the config file
consistent and derived from the depend.apache eclass.
21 Apr 2005; Michael Hanselmann <hansmi@gentoo.org>
subversion-1.1.3.ebuild:
Stable on ppc.
21 Apr 2005; <pauldv@gentoo.org> subversion-1.1.4.ebuild:
Change the swig dependency to include newer swig versions, as subversion
can compile against them now.
15 Apr 2005; Paul de Vrieze <pauldv@gentoo.org>
-files/subversion-1.1.2-perl.patch, subversion-1.1.3.ebuild:
Block the apache versions that have split apr/apu out.
13 Apr 2005; <pauldv@gentoo.org> -subversion-1.1.4-r1.ebuild,
subversion-1.1.4.ebuild:
Revert trapni's broken changes and change the webdav useflag into a
nowebdav useflag. As the default behaviour is not changed, the change is
incorporated in the normal 1.1.4 ebuild and the 1.1.4-r1 version has
been removed.
10 Apr 2005; Christian Parpart <trapni@gentoo.org>
subversion-1.1.4-r1.ebuild:
dropped a note to endusers of to inform them about the new useflag and their
results
*subversion-1.1.4-r1 (10 Apr 2005)
10 Apr 2005; Christian Parpart <trapni@gentoo.org>
+subversion-1.1.4-r1.ebuild:
added optional depend on neon via webdav local useflag
*subversion-1.1.4 (05 Apr 2005)
05 Apr 2005; <pauldv@gentoo.org> -subversion-1.1.2.ebuild,
subversion-1.1.3-r1.ebuild, +subversion-1.1.4.ebuild:
New upstream version and cleaned away an old testing version. Also
fixed a small default configuration file bug.
20 Mar 2005; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.1.3-r1.ebuild:
Remove the autoconf check as the dependency should get this.
18 Mar 2005; Markus Rothe <corsair@gentoo.org> subversion-1.1.3.ebuild:
Stable on ppc64
11 Mar 2005; Gustavo Zacarias <gustavoz@gentoo.org> subversion-1.1.3.ebuild:
Stable on sparc
09 Mar 2005; Marcus D. Hanwell <cryos@gentoo.org> subversion-1.1.3.ebuild:
Marked stable on amd64.
08 Mar 2005; <pauldv@gentoo.org> subversion-1.1.3.ebuild:
Mark 1.1.3 stable
27 Feb 2005; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.1.3-r1.ebuild:
Use the new apache.depend eclass (bug #83445)
15 Feb 2005; Guy Martin <gmsoft@gentoo.org> subversion-1.1.1-r3.ebuild:
Stable on hppa.
15 Feb 2005; <pauldv@gentoo.org> subversion-1.1.3-r1.ebuild,
subversion-1.1.3.ebuild:
Add a patch from seemant to make nls support optional
31 Jan 2005; <pauldv@gentoo.org> subversion-1.1.3.ebuild:
Try to fix bug #80121
28 Jan 2005; Paul de Vrieze <pauldv@gentoo.org>
-subversion-1.1.2-r1.ebuild:
Remove broken testing ebuild
28 Jan 2005; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.1.3-r1.ebuild:
Redo the apr ebuild so that it is based upon the latest normal ebuild. Also
this ebuild will actually build the apache2 module. The other ebuild should
never have been put in cvs. Even masked. The removal of apache2 has been
rather simplistic. The optional apache2 dependency is still there, it just
isn't overloaded anymore.
*subversion-1.1.3-r1 (22 Jan 2005)
22 Jan 2005; Christian Parpart <trapni@gentoo.org>
+subversion-1.1.3-r1.ebuild:
Remerged with changes/improvements the apache herd made.
(as available in release 1.1.2-r1, too)
21 Jan 2005; Aron Griffis <agriffis@gentoo.org> subversion-1.1.1-r3.ebuild:
stable on ia64
18 Jan 2005; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.9.ebuild,
subversion-1.1.1-r3.ebuild, subversion-1.1.2-r1.ebuild,
subversion-1.1.2.ebuild:
The old autoconf versions are gone, so no need to take them into account
(bug #78047)
*subversion-1.1.3 (18 Jan 2005)
18 Jan 2005; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.1.3.ebuild:
New upstream version
*subversion-1.1.2-r1 (10 Jan 2005)
10 Jan 2005; Christian Parpart <trapni@gentoo.org>
+subversion-1.1.2-r1.ebuild:
a package refresh from the Apache Herd
(splitted up apache module(s) from base package into www-apache/mod_dav_svn)
31 Dec 2004; Ciaran McCreesh <ciaranm@gentoo.org> :
Change encoding to UTF-8 for GLEP 31 compliance
*subversion-1.1.2 (30 Dec 2004)
30 Dec 2004; Paul de Vrieze <pauldv@gentoo.org>
+files/subversion-1.1.2-perl.patch, +subversion-1.1.2.ebuild:
A new upstream version
19 Dec 2004; Bryan Østergaard <kloeri@gentoo.org>
subversion-1.1.1-r3.ebuild:
Stable on alpha.
16 Dec 2004; Markus Rothe <corsair@gentoo.org> subversion-1.1.1-r3.ebuild:
Stable on ppc64
16 Dec 2004; Dylan Carlson <absinthe@gentoo.org>
subversion-1.1.1-r3.ebuild:
Stable on amd64.
11 Dec 2004; Jason Wever <weeve@gentoo.org> subversion-1.1.1-r3.ebuild:
Stable on sparc.
08 Dec 2004; <pauldv@gentoo.org> subversion-1.1.1-r3.ebuild:
Fix the default authz module config file. Thanks to Benjamin Boksa
<benjamin@boksa.de> in bug #73675
03 Dec 2004; <pauldv@gentoo.org> subversion-1.1.1-r3.ebuild:
Fix a small bug in the config function, now checking for existence, not
file existene in the src_config function. Thanks to John Croisant
<jacius@gmail.com> in bug #73186 for pointing this out.
03 Dec 2004; <pauldv@gentoo.org> subversion-1.1.1-r3.ebuild:
Disable jikes for now as jikes is broken
30 Nov 2004; <pauldv@gentoo.org> subversion-1.1.1-r3.ebuild:
Mark stable
28 Nov 2004; Paul de Vrieze <pauldv@gentoo.org>
subversion-1.1.1-r3.ebuild:
Add an optional dependency on jikes, courtessy of Travis
Snoozy<ai2097@yahoo.com> in bug #72679
*subversion-1.1.1-r3 (12 Nov 2004)
12 Nov 2004; Aron Griffis <agriffis@gentoo.org>
-subversion-1.1.1-r2.ebuild, +subversion-1.1.1-r3.ebuild:
Install init script in /etc/init.d not /
*subversion-1.1.1-r2 (12 Nov 2004)
12 Nov 2004; <agriffis@gentoo.org> +files/svnserve.confd,
+files/svnserve.initd, +files/svnserve.xinetd, -subversion-0.27.0.ebuild,
-subversion-0.32.1.ebuild, -subversion-1.0.8.ebuild,
-subversion-1.1.0.ebuild, -subversion-1.1.1-r1.ebuild,
+subversion-1.1.1-r2.ebuild, -subversion-1.1.1.ebuild:
Add svnserve init script and xinetd snippet #43245 -- thanks to Martin Jackson
and Joby Walker. Trim older ebuilds
12 Nov 2004; Aron Griffis <agriffis@gentoo.org>
subversion-1.1.1-r1.ebuild:
Use bash-completion.eclass; thanks to ka0ttic in bug 70939
*subversion-1.1.1-r1 (11 Nov 2004)
11 Nov 2004; Aron Griffis <agriffis@gentoo.org>
+subversion-1.1.1-r1.ebuild:
Install svn_load_dirs.pl as /usr/bin/svn-load-dirs #57715
Install more hook-scripts in /usr/share/doc #50593
Don't tell the user to su apache #53233
Install hot-backup.py as /usr/bin/svn-hot-backup #54304
Install bash-completion snippet #43179
Fix svn-config to omit references to @SVN_DB_*@ #64634
Fix perl bindings Makefile.PL bug #65230 #62979
Install perl bindings in vendor_perl instead of site_perl #66712
09 Nov 2004; Aron Griffis <agriffis@gentoo.org> subversion-1.1.1.ebuild:
Replace ~ppc64 and ~ia64 keywords which went missing
05 Nov 2004; Aron Griffis <agriffis@gentoo.org> subversion-1.0.9.ebuild:
Remove attempted installation of cvs2svn #47099
*subversion-1.1.1 (05 Nov 2004)
05 Nov 2004; <pauldv@gentoo.org> +subversion-1.1.1.ebuild:
New upstream version
04 Nov 2004; Aron Griffis <agriffis@gentoo.org> subversion-1.0.9.ebuild,
subversion-1.1.0.ebuild:
add ia64 keywords
01 Nov 2004; Markus Rothe <corsair@gentoo.org> subversion-1.1.0.ebuild:
Marked ~ppc64; bug #63683
21 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.9.ebuild:
Backport the svn-revision.txt fix
19 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0.ebuild:
Explicitly enable or disable javahl to fix bug #67681
19 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0.ebuild:
Fix missing quotes problem in combination with jikes. Thanks to
snikkt@yahoo.com in bug #63464 for signalling this.
*subversion-1.0.9 (19 Oct 2004)
19 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.0.9.ebuild:
A new upstream version that fixes some slowness with "svn ls"
09 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0.ebuild:
Fix bug #63464 on compilation with jikes.
08 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0.ebuild:
Fix bug #66659 concerning the name of the book file. Why doesn't dohtml
complain when a file doesn't exist?
08 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> +files/subversion-1.1.0-build.patch,
-files/subversion-1.1.0-rc4-build.patch, subversion-1.1.0.ebuild:
The previous fix was not applied. Also fix bug #66644 by broadening the
sed script that hacks around the svnversion stuff (the output is
constant)
08 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> files/subversion-1.1.0-rc4-build.patch:
Fix javahl linking (again) to fix bug #66625, this fix comes from rc2
01 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> -files/subversion-pre-1.0.5.patch,
-subversion-1.0.1.ebuild, -subversion-1.0.2.ebuild,
-subversion-1.0.3.ebuild, -subversion-1.0.4-r1.ebuild,
-subversion-1.0.4.ebuild, -subversion-1.0.6.ebuild,
-subversion-1.1.0_rc4.ebuild:
Clean up old versions
*subversion-1.1.0 (01 Oct 2004)
01 Oct 2004; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.1.0.ebuild:
New upstream version
27 Sep 2004; Bryan Østergaard,,, <kloeri@gentoo.org>
subversion-1.0.8.ebuild:
Stable on alpha, bug 65085.
25 Sep 2004; Gustavo Zacarias <gustavoz@gentoo.org> subversion-1.0.8.ebuild:
Stable on sparc wrt #65085
27 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.8.ebuild,
subversion-1.1.0_rc2.ebuild, subversion-1.1.0_rc4.ebuild:
Fix subversion swig dependency as the 1.3.22 release does not longer
provide a runtime library while subversion still expects one.
24 Sep 2004; <SeJo@gentoo.org> subversion-1.0.8.ebuild:
stable on ppc GSLA bug: 65085
*subversion-1.0.8 (23 Sep 2004)
23 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.0.8.ebuild,
+subversion-1.1.0_rc4.ebuild:
New upstream versions. They implement security fixes!!
21 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0_rc2.ebuild:
Fix two issues. Bug #63991 to add support for authz_svn authentication in
the default apache2 configuration file (conditional). Bug #64672 to take
into account that with the new fs_fs support the server part is no longer
dependent on berkeley db.
21 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.6.ebuild:
Fix the location of the jar archive (bug #64800)
06 Sep 2004; Ciaran McCreesh <ciaranm@gentoo.org> subversion-0.32.1.ebuild:
Switch to use epause and ebeep, bug #62950
05 Sep 2004; Paul de Vrieze,,, <paul@gentoo.org> subversion-1.0.6.ebuild
subversion-1.1.0_rc2.ebuild:
Fix bug #62753. swig is now build when either python or perl is in the
useflags, not python only.
07 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0_rc2.ebuild:
Spelling fixes. Thanks to Marko Djukic <marko@oblo.com> in bug #63014
01 Sep 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.1.0_rc2.ebuild:
Change the book installation location to it's own dir, to make it easier
to find.
30 Aug 2004; Paul de Vrieze <pauldv@gentoo.org> +files/subversion-1.1.0-rc2-build.patch,
subversion-1.1.0_rc2.ebuild:
Fix some java linking error and a variable substitution error. Thanks to
Holger Thon <ht_gentoo04@arcor.de> in bug #59693
*subversion-1.1.0_rc2 (19 Aug 2004)
19 Aug 2004; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.1.0_rc2.ebuild:
An initial version of the rc2 package. It has some streamlining for the
building of the bindings too, and installs the example hook-scripts in the
documentation dir.
04 Aug 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.6.ebuild:
Make the java stuff compile in all cases by specifying an encoding
(needed for a french author name) and a source version (needed for 1.5
jdk's)
23 Jul 2004; Travis Tilley <lv@gentoo.org> subversion-1.0.6.ebuild:
stable on amd64
23 Jul 2004; Guy Martin <gmsoft@gentoo.org> subversion-1.0.6.ebuild:
Marked stable on hppa.
23 Jul 2004; Bryan Østergaard,,, <kloeri@gentoo.org>
subversion-1.0.6.ebuild:
Stable on alpha, see bug #57747.
20 Jul 2004; Ciaran McCreesh <ciaranm@gentoo.org> subversion-1.0.6.ebuild:
Stable on sparc for bug #57747
20 Jul 2004; Stuart Herbert <stuart@gentoo.org> subversion-1.0.6.ebuild:
Stable on x86
*subversion-1.0.6 (20 Jul 2004)
20 Jul 2004; Stuart Herbert <stuart@gentoo.org> +subversion-1.0.6.ebuild:
Version bump for security problem; see bug #57747
24 Jun 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.4-r1.ebuild:
Clarify the ebuild config comment (bug #54940)
11 Jun 2004; Jason Wever <weeve@gentoo.org> subversion-1.0.4-r1.ebuild:
Stable on sparc wrt bug #53555.
11 Jun 2004; Guy Martin <gmsoft@gentoo.org> subversion-1.0.4-r1.ebuild:
Marked stable on hppa.
11 Jun 2004; Bryan Østergaard <kloeri@gentoo.org>
subversion-1.0.4-r1.ebuild:
Stable on alpha, bug #53555.
10 Jun 2004; Kurt Lieber <klieber@gentoo.org> subversion-1.0.4-r1.ebuild:
marking stable on x86. fixes 53555.
10 Jun 2004; Jason Eric Huebel <jhuebel@gentoo.org>
subversion-1.0.4-r1.ebuild:
amd64 for bug #53555
*subversion-1.0.4-r1 (07 Jun 2004)
07 Jun 2004; <solar@gentoo.org> subversion-1.0.4-r1.ebuild,
files/subversion-pre-1.0.5.patch:
added pre-1.0.5 patch to subversion
07 Jun 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.4.ebuild:
Do not longer install the apache config file when the module is not
build (bug #49315)
*subversion-1.0.4 (24 May 2004)
24 May 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.3.ebuild,
+subversion-1.0.4.ebuild:
set amd64 to stable on 1.0.3. Add a new upstream version in 1.0.4 and
make it even more hard to merge subversion with autoconf-2.58
24 May 2004; Bryan Østergaard <kloeri@gentoo.org> subversion-1.0.3.ebuild:
Keyworded ~alpha, requested in bug #51550.
*subversion-1.0.3 (20 May 2004)
20 May 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.2.ebuild,
+subversion-1.0.3.ebuild:
Security fix
27 Apr 2004; Aron Griffis <agriffis@gentoo.org> subversion-1.0.1.ebuild,
subversion-1.0.2.ebuild:
Add inherit eutils
13 May 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.2.ebuild:
Mark stable
*subversion-1.0.2 (27 Apr 2004)
27 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> +subversion-1.0.2.ebuild:
New upstream version with bug fixes. Also add javahl compilation based on
the java useflag.
26 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.1.ebuild:
First stable subversion!
26 Apr 2004; Paul de Vrieze <pauldv@gentoo.org> -subversion-0.28.0.ebuild,
-subversion-0.30.0.ebuild, -subversion-0.31.0.ebuild,
-subversion-0.34.0.ebuild, -subversion-0.35.1.ebuild,
-subversion-0.37.0.ebuild, -subversion-1.0.0-r1.ebuild,
-subversion-1.0.0.ebuild:
Clean out old versions
26 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.1.ebuild:
Finally fix bug #31106 and add svn-config to the installed set
26 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.1.ebuild:
Reverse the alternative dependencies so that the newest version is considered
first. This should stop flipping around caused by emerge -u world
23 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.1.ebuild:
Add the swig dependency to use==perl too, not only to python
*subversion-1.0.1 (23 Mar 2004)
23 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.1.ebuild:
New upstream version. Also re-enabled the svnversion.txt hack as there are
still cases (like changing db version) where svnversion.txt cannot be created
in the normal way
17 Mar 2004; Seemant Kulleen <seemant@gentoo.org> subversion-0.28.0.ebuild:
fix for bug #44712 by Michael Sterret <mr_bones_@gentoo.org>
10 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.0-r1.ebuild,
files/Makefile.PL.patch:
The makefile patch was not necessary after all
*subversion-1.0.0-r1 (09 Mar 2004)
09 Mar 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.0-r1.ebuild,
files/Makefile.PL.patch:
Add the perl bindings to the ebuild. The patch to Makefile.PL is from
gentoo.datacore.ch.
25 Feb 2004; Daniel Ahlberg <aliz@gentoo.org> subversion-1.0.0.ebuild:
Adding amd64 keyword. Closing #42693.
25 Feb 2004; David Holm <dholm@gentoo.org> subversion-1.0.0.ebuild:
Readded to ~ppc once again, why is it so difficult to maintain KEYWORDS
between releases for this ebuild?
23 Feb 2004; Jason Wever <weeve@gentoo.org> subversion-1.0.0.ebuild:
Added ~sparc keyword.
23 Feb 2004; Jason Wever <weeve@gentoo.org> subversion-1.0.0.ebuild:
Fixed bad unpack command and extra whitespace.
*subversion-1.0.0 (23 Feb 2004)
23 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-1.0.0.ebuild,
files/subversion-db4.patch:
New upstream STABLE version. It might become the first stable subversion
ebuild in gentoo :-)
22 Feb 2004; David Holm <dholm@gentoo.org> subversion-0.37.0.ebuild:
Readded ~ppc. Thanks for dropping it so we all could run on an old, possibly
buggy, version.
19 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.37.0-r1.ebuild,
subversion-0.37.0.ebuild:
Remove the -r1 version as it is based on an old ebuild version and is broken.
Incorporate the python changes in this version.
*subversion-0.37.0-r1 (14 Feb 2004)
14 Feb 2004; <kloeri@gentoo.org> subversion-0.37.0-r1.ebuild:
Replace python-config with python_version.
13 Feb 2004; <paul@gentoo.org> subversion-0.37.0.ebuild:
Make emacs regeneration more tolerant (bug #41411)
11 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.37.0.ebuild:
Add optional emacs dependency
05 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.37.0.ebuild:
Some autoconf changes
04 Feb 2004; <paul@gentoo.org> subversion-0.37.0.ebuild:
Some more explanations
04 Feb 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.37.0.ebuild:
Take the new FHS's /srv directory into account, moving the default location
from /var
03 Feb 2004; <paul@gentoo.org> subversion-0.37.0.ebuild:
Hopefully fix emacs module compilation problems
*subversion-0.37.0 (28 Jan 2004)
28 Jan 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.37.0.ebuild:
New upstream version. Also taking new apache locations into account
15 Jan 2004; Paul de Vrieze <pauldv@gentoo.org> subversion-0.35.1.ebuild:
Things actually work with autoconf-2.59, so changing the dependency.
11 Jan 2004; <paul@gentoo.org> subversion-0.34.0.ebuild,
subversion-0.35.1.ebuild:
Fix the autoconf dependencies to be compile-time only
*subversion-0.35.1 (22 Dec 2003)
22 Dec 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.35.1.ebuild:
New upstream version. Note that this version has deltification reenabled.
20 Dec 2003; <paul@gentoo.org> subversion-0.34.0.ebuild:
The fetch line for the old svnadmin was removed, but the system still tried to
install it, causing a failure if the file didn't exist in the distfiles dir.
The new system is cleaner in forcing interaction by requiring an environment
variable to be set, so I removed the remnants of the old static binary
*subversion-0.34.0 (19 Dec 2003)
19 Dec 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.34.0.ebuild:
Add a new version of subversion. This one again has an incompatible library
change. Further the ebuild supports python-config instead of hard-coded python
paths. If updating do ensure that you first dump your existing repositories.
The default repository path is also updated to become /var.
13 Dec 2003; <paul@gentoo.org> subversion-0.27.0.ebuild,
subversion-0.28.0.ebuild, subversion-0.30.0.ebuild:
fix chown syntax
*subversion-0.32.1 (09 Nov 2003)
09 Nov 2003; David Holm <dholm@gentoo.org> subversion-0.32.1.ebuild:
Added to ~ppc.
22 Oct 2003; <paul@gentoo.org> subversion-0.31.0.ebuild:
Hopefully fix linking issues by taking back some older ebuild code
*subversion-0.28.0 (17 Oct 2003)
17 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.28.0.ebuild:
Get 0.28.0 back as rapidsvn needs this particular version
*subversion-0.31.0 (12 Oct 2003)
12 Oct 2003; <paul@gentoo.org> subversion-0.31.0.ebuild:
Fix chown
10 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.2-r1.ebuild,
subversion-0.25.0.ebuild, subversion-0.26.0.ebuild,
subversion-0.28.0.ebuild, subversion-0.30.0.ebuild,
files/subversion-db4.patch:
Clean up old versions, and add the 0.31.0 version
02 Oct 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.30.0.ebuild:
Add a static precompiled svnadmin-pre28 instead of the old dynamic one. This
one should work in all cases
*subversion-0.30.0 (27 Sep 2003)
27 Sep 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.2-r1.ebuild,
subversion-0.25.0.ebuild, subversion-0.26.0.ebuild,
subversion-0.27.0.ebuild, subversion-0.28.0.ebuild,
subversion-0.30.0.ebuild:
New version, and fix small dependency error (apache instead of net-www/apache)
The new version is based on the the ebuild by Hattya <hattya@inter7.jp> in bug
#29586
25 Sep 2003; Martin Holzer <mholzer@gentoo.org> subversion-0.24.2-r1.ebuild,
subversion-0.25.0.ebuild, subversion-0.26.0.ebuild,
subversion-0.27.0.ebuild, subversion-0.28.0.ebuild, files/70svn-gentoo.el:
leading space errors.
26 Sep 2003; Martin Holzer <mholzer@gentoo.org> subversion-0.28.0.ebuild:
Added autoconf version. Closes #28198.
22 Sep 2003; <paul@gentoo.org> metadata.xml:
Fix metadata.xml
*subversion-0.28.0 (01 Sep 2003)
01 Sep 2003; <iggy@gentoo.org> subversion-0.28.0.ebuild:
bumping this for pauldv since he's oot
*subversion-0.27.0 (26 Aug 2003)
26 Aug 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.27.0.ebuild,
files/subversion-db4.patch:
New upstream version
*subversion-0.26.0 (24 Jul 2003)
24 Jul 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.10_pre1.ebuild,
subversion-0.21.0-r1.ebuild, subversion-0.21.0.ebuild,
subversion-0.22.2.ebuild, subversion-0.23.0.ebuild,
subversion-0.24.1.ebuild, subversion-0.24.2.ebuild,
subversion-0.26.0.ebuild:
Cleaning up old versions, and adding new upstream version
18 Jul 2003; <paul@gentoo.org> subversion-0.25.0.ebuild:
Have the ebuild output the location of the repository in the config function
*subversion-0.25.0 (16 Jul 2003)
16 Jul 2003; <paul@gentoo.org> subversion-0.25.0.ebuild:
New upstream version
*subversion-0.24.2 (15 Jul 2003)
15 Jul 2003; <paul@gentoo.org> subversion-0.24.2-r1.ebuild:
Make repository location configurable by an environment variable
15 Jul 2003; <paul@gentoo.org> subversion-0.24.2-r1.ebuild,
subversion-0.24.2.ebuild:
Fix some python files going to the wrong location: #23657
12 Jul 2003; Daniel Ahlberg <aliz@gentoo.org> :
Added missing changelog entry.
26 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.1.ebuild:
Added a comment saying to use USE="-berkdb" to build a client-only version.
26 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.1.ebuild:
Fixed an issue with a compilation failure together with the included libapr.
#23307
19 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.24.1.ebuild:
Add a comment concerning rebuilding the repository with an upgrade of the db
version, bug #22144 courtessy of Markus Luisser
<e9427574@student.tuwien.ac.at>
*subversion-0.24.1 (18 Jun 2003)
18 Jun 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.21.0-r1.ebuild,
subversion-0.22.2.ebuild, subversion-0.23.0.ebuild,
subversion-0.24.1.ebuild:
Fix bug #21876, and add new version.
31 May 2003; root <pvdabeel@gentoo.org> subversion-0.22.2.ebuild,
subversion-0.23.0.ebuild:
ppc keyworded
*subversion-0.23.0 (28 May 2003)
28 May 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.23.0.ebuild:
Version bump, and add some more documentation to the docs dir.
*subversion-0.22.2 (17 May 2003)
17 May 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.22.2.ebuild:
New upstream version, and inclusion of berkdb and python useflags. For now
python bindings are never build if berkdb is not set as the bindings
unconditionally depend on python. Closes #20840 and #20842
*subversion-0.21.0-r1 (30 Apr 2003)
12 May 2003; Martin Holzer <mholzer@gentoo.org> subversion-0.10_pre1.ebuild,
subversion-0.20.1.ebuild, subversion-0.21.0-r1.ebuild,
subversion-0.21.0.ebuild:
Updated db url. Fixed typo. Closes #20812.
08 May 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.21.0-r1.ebuild:
Fix a stupid typo. Thanks to Cesar Eduardo Barros <cesarb@nitnet.com.br> for
helping in finding this.
08 May 2003; Patrick Kursawe <phosphan@gentoo.org>
subversion-0.10_pre1.ebuild:
Set -0.10_pre1 to ~arch, it seems to be quite broken. YMMV, see bug #20571.
06 May 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.21.0-r1.ebuild:
Make subversion use an allready merged db4 instead of its own
30 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.21.0-r1.ebuild:
Made subversion use libtool.eclass, cleans up things quite a bit
*subversion-0.21.0 (26 Apr 2003)
29 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.20.1.ebuild,
subversion-0.21.0.ebuild:
Fixed depends to depend on apache-2.0.45 instead of apache-2.0.44
26 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.21.0.ebuild:
New upstream version. Also do not build the apache module if the apache2 use
flag is not specified. As in this case subversion provides its own apr libs,
it actually blocks on apache2.
*subversion-0.20.1 (25 Apr 2003)
26 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.20.1.ebuild:
Fixed a small error in the config script. It did not ensure the existence of
/home/svn resulting in a failure.
25 Apr 2003; Paul de Vrieze <pauldv@gentoo.org> subversion-0.20.1.ebuild:
Added || die to the make install parts
15 Mar 2003; Martin Schlemmer <azarah@gentoo.org> subversion-0.10_pre1.ebuild :
Fix m4 depend.
06 Dec 2002; Rodney Rees <manson@gentoo.org> : changed sparc ~sparc keywords
*subversion-0.10_pre1 (26 Feb 2002)
29 Oct 2002; Karl Trygve Kalleberg <karltk@gentoo.org> subversion-0.10_pre1.ebuild :
It depends on =net-misc/neon-0.19.2 exactly. Any other version will fail.
I'm resurrecting neon-0.19.2.
26 Feb 2002; G.Bevin <gbevin@gentoo.org> subversion-0.10_pre1.ebuild,
files/digest-subversion-0.10_pre1 :
added today's snapshot
|