1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
|
subversion (1.5.0dfsg1-4ubuntu1) intrepid; urgency=low
* Merge with Debian; remaining changes:
- Create pot file on build.
- Build a python-subversion-dbg package.
-- Matthias Klose <doko@ubuntu.com> Mon, 07 Jul 2008 13:44:50 +0200
subversion (1.5.0dfsg1-4) unstable; urgency=medium
* Work around bug where 'make javahl' is not -j-safe.
-- Peter Samuelson <peter@p12n.org> Mon, 07 Jul 2008 01:37:38 -0500
subversion (1.5.0dfsg1-3) unstable; urgency=medium
* Bump shlibs file to libsvn1 (>= 1.5.0). (Closes: #488949)
* Fix typo in Build-Conflicts (libsvn-dev, not libsvn1-dev).
* Fix svnwrap(1) manpage inetd.conf example. (Closes: #462313)
-- Peter Samuelson <peter@p12n.org> Wed, 02 Jul 2008 08:23:31 -0500
subversion (1.5.0dfsg1-2) unstable; urgency=low
* Reenable Java support.
* patches/java-build: New patch to hack around incompatibilities between
Sun javah and gcj javah.
* Remove the last remnants of libsvn-javahl from the source package.
* Include upstream release notes file svn_1.5_releasenotes.html.
* Add svn-populate-node-origins-index (used in upgrading a repository
to 1.5) and svnmucc (useful client tool) to the subversion package.
-- Peter Samuelson <peter@p12n.org> Mon, 30 Jun 2008 00:22:28 -0500
subversion (1.5.0dfsg1-1ubuntu2) intrepid; urgency=low
* Do not build-depend on serf. The client can be compiled against either
libneon or libserf (or both), as they offer competing implementations.
serf is available in universe only.
-- Matthias Klose <doko@ubuntu.com> Tue, 24 Jun 2008 15:05:21 +0000
subversion (1.5.0dfsg1-1ubuntu1) intrepid; urgency=low
* Merge with Debian; remaining changes:
- Create pot file on build.
- Build a python-subversion-dbg package.
-- Matthias Klose <doko@ubuntu.com> Tue, 24 Jun 2008 14:13:13 +0200
subversion (1.5.0dfsg1-1) experimental; urgency=low
* New upstream release
- Fixes many bugs including:
- Translation errors (Closes: #404982, #451514)
- Now exports externals from a working copy. (Closes: #448864)
- Newer psvn.el provided. (Closes: #393651, #441994)
- 'svn export' handles externals now. (Closes: #448864)
- Perl module destructor doesn't crash. (Closes: #401340)
- Update debian/contrib-license-audit, README.Debian-tarball
- Remove obsolete patches: jelmer-python-bindings, kaffe,
kaffe-javah, limit-zlib-link, neon27, python-memleak,
ruby-newswig, ruby-test-ra-race, svn-clean-manpage,
svn_load_dirs, swig-warning-124, testsuite-dont-use-os-popen3
* rules: Run autogen-swig for each python version.
(Not strictly needed, but it is the simplest approach.)
* Switch from dpatch to quilt.
* Policy 3.8.0:
- copyright: Delete copy of common-licenses/Apache-2.0
- control: Add Homepage field;
Wrap Uploaders field, which was > 80 columns
- rules: Support DEB_BUILD_OPTIONS=parallel=n;
Require DEB_BUILD_OPTIONS to be space-separated
- README.source: New file explaining quilt
* control: Add XS-Python-Version header, to suppress a warning
* control: Build-Conflicts: libsvn1-dev (<< 1.5); libtool can cause
trouble with installed .so files that don't contain needed symbols.
* control: New Build-Depends: libserf-0-0-dev, libsasl2-dev.
* control: Simplify Depends/Recommends to assume etch or newer. (Keep
some old Conflicts/Replaces/Provides.) Delete the libsvn-javahl etch
transition package.
* control: libsvn-java: I believe it needs java5 now, not just java2.
Hence gij | java5-runtime-headless.
* patches/perl-test-syntax-error: New patch borrowed from upstream, to
fix a perl5.10 issue in one of the tests.
* patches/ruby-test-wc-normalize-compared-value: New patch borrowed from
upstream, to fix a ruby test failure.
* patches/svn2cl: Split into svn2cl-upstream and svn2cl-debian.
Update svn2cl-upstream to 0.10 from upstream trunk.
* patches/apr-abi: Small adjustment to reduce libtool warnings.
* patches/out-of-tree-build-fixes: New patch: fix a few issues with
building outside the source tree.
* rules: Disable Java for the first upload to experimental, as I'm still
working on fixing that.
-- Peter Samuelson <peter@p12n.org> Fri, 20 Jun 2008 21:53:29 -0500
subversion (1.4.6dfsg1-5) UNRELEASED; urgency=low
* Downgrade libsvn-dev "Depends: libneon27-gnutls-dev" to Suggests and
add zlib1g-dev. These are for static linking. (Closes: #482512)
-- Peter Samuelson <peter@p12n.org> Thu, 29 May 2008 20:29:41 -0500
subversion (1.4.6dfsg1-4) unstable; urgency=low
* Disable java on alpha and hppa, as requested by Matthias Klose.
(Closes: #477908)
* Switch from neon27 to neon27-gnutls. (Closes: #478142)
* patches/testsuite-dont-use-os-popen3: New patch (from upstream):
use popen2.Popen3 instead of os.popen3. (Closes: #479079)
* patches/svn-clean-ignore: New feature patch, a mechanism to specify
files which, though unversioned, 'svn-clean' should not remove.
Suggested by Jonathan Hall.
* Add another -j1 to debian/rules, to fix a parallel build problem.
* patches/ssh-no-controlmaster: New patch to avoid a bad interaction
with OpenSSH connection sharing. (Closes: #413102)
-- Peter Samuelson <peter@p12n.org> Sat, 03 May 2008 00:35:18 -0500
subversion (1.4.6dfsg1-3) unstable; urgency=low
* patches/neon27: update for neon 0.28. (Closes: #476117)
* Build for all supported python versions. Loosely based on an Ubuntu
patch by Matthias Klose. (Closes: #446636)
-- Peter Samuelson <peter@p12n.org> Mon, 14 Apr 2008 11:08:22 -0500
subversion (1.4.6dfsg1-2ubuntu1) hardy; urgency=low
* Merge with Debian; remaining changes:
- Create pot file on build.
- Fix bashisms in tools/po/po-update.sh.
- Build for all supported python versions.
- Build a python-subversion-dbg package.
- debian/rules: Do not let the failed ruby swig tests fail the build. They
are currently broken, work in progress in Debian (Debian #453166).
- Drop hppa java support.
-- Matthias Klose <doko@ubuntu.com> Tue, 11 Mar 2008 06:28:25 +0000
subversion (1.4.6dfsg1-2) unstable; urgency=low
* subversion.NEWS: Add a note about the db4.6 upgrade. (Closes: #465432)
* rules: use dh_link rather than hand-rolled symlink management.
Closes: #465609 in the process.
* rules: Define DEB_HOST_ARCH and friends before using them, to fix
FTBFSes on the non-java architectures.
-- Peter Samuelson <peter@p12n.org> Sat, 08 Mar 2008 14:27:22 -0600
subversion (1.4.6dfsg1-0ubuntu1) hardy; urgency=low
* Merge with Debian svn repository (trunk r823); remaining changes:
- Create pot file on build.
- Fix bashisms in tools/po/po-update.sh.
- Build for all supported python versions.
- Build a python-subversion-dbg package.
- debian/rules: Do not let the failed ruby swig tests fail the build. They
are currently broken, work in progress in Debian (Debian #453166).
- Drop hppa java support.
-- Matthias Klose <doko@ubuntu.com> Wed, 30 Jan 2008 12:45:05 +0100
subversion (1.4.6dfsg1-1) unstable; urgency=low
* New upstream version.
* Build with db 4.6, to match apr-util.
* patches/svn-clean-manpage: New patch, fix a small typo. (Closes: #441827)
* patches/neon27: New patch from upstream trunk to support neon 0.27.
- control: build-depend on libneon27-dev.
- rules: no longer --disable-neon-version-check.
* patches/ruby-newswig: Support swig 1.3.33. (Closes: #453166)
* patches/python-memleak: New patch to fix a serious memory leak in the
Python bindings. Thanks to Jelmer Vernooij. (Closes: #428755)
* control: Policy 3.7.3.
* control: spell 'Source-Version' as 'binary:Version' for political
correctness. (Or for clarity.)
* control: add appropriate Vcs-Svn and Vcs-Browser fields.
* control: subversion-tools Recommends: rsync. (Closes: #459023)
* patches/svn2cl: update svn2cl to 0.9 (from upstream trunk).
* patches/commit-email: use original 'sendmail' commit-email.pl mode,
rather than the direct SMTP feature. (Closes: #447824)
* rules: do not run 'dh_testroot' or 'make extraclean' in clean rule.
* rules: rewrite DEB_BUILD_OPTIONS support; remove 'notest' synonym, as
the world seems to be standardizing on 'nocheck'.
* rules: remove 'DEB_BUILD_OPTIONS=-j[N]' support, add support for the
new 'dpkg-buildpackage -j[N]' feature.
* rules: add an option to disable ruby bindings. Though it turns out
we don't need it ... yet.
-- Peter Samuelson <peter@p12n.org> Mon, 11 Feb 2008 23:49:02 -0600
subversion (1.4.4dfsg1-1ubuntu5) hardy; urgency=medium
* Add debian/patches/python-memleak: Fix major memory leak in the
Python bindings. Taken from Debian SVN head. (LP: #54253)
-- Jelmer Vernooij <jelmer@samba.org> Fri, 18 Jan 2008 01:28:28 +0100
subversion (1.4.4dfsg1-1ubuntu4) hardy; urgency=low
* debian/control:
- libneon 26 -> 27.
- libdb 4.4 -> 4.6.
- Bump libaprutil1-dev build dependency to ensure that we build against
one that also links against db4.6.
* Add debian/patches/neon27: Fix configure tests for defining the
right version #defines for libneon27. Taken from Debian SVN head.
* Add debian/patches/ruby-newswig: Fix duplicate symbols in SWIG so that it
actually builds. Taken from Debian SVN head. (Debian #458771)
* debian/rules: Do not let the failed ruby swig tests fail the build. They
are currently broken, work in progress in Debian (Debian #453166).
-- Martin Pitt <martin.pitt@ubuntu.com> Thu, 03 Jan 2008 10:16:24 +0100
subversion (1.4.4dfsg1-1ubuntu3) gutsy; urgency=low
* Build separate libsvn_swig_py libraries for each python version.
LP: #91848.
-- Matthias Klose <doko@ubuntu.com> Thu, 27 Sep 2007 11:10:46 +0200
subversion (1.4.4dfsg1-1ubuntu2) gutsy; urgency=low
* Drop hppa java support for now
-- LaMont Jones <lamont@ubuntu.com> Mon, 13 Aug 2007 15:43:46 -0600
subversion (1.4.4dfsg1-1ubuntu1) gutsy; urgency=low
* Merge with Debian; remaining changes:
- Create pot file on build.
- Fix bashisms in tools/po/po-update.sh.
- Build for all supported python versions.
- Build a python-subversion-dbg package.
-- Matthias Klose <doko@ubuntu.com> Mon, 11 Jun 2007 11:24:52 +0200
subversion (1.4.4dfsg1-1) unstable; urgency=low
* New upstream version.
- Fixes rare case of data loss / repository corruption. (Closes: #419348)
- Fixes minor security inconsistency regarding restricted paths being
copied to unrestricted paths, CVE-2007-2448. (Closes: #428194)
* Fix note in README.Debian about how to download vc-svn.el.
Thanks to Michael Richters. (Closes: #416582)
* rules: configure --disable-neon-version-check, to allow use of neon 0.26.3.
* rules: replace $(PWD) with $(CURDIR) to appease lintian.
Our use of PWD was safe, this is just a cleanup.
* rules: ship a shlibs file only for libsvn1; nobody should ever link to
the libraries in other packages. (Thanks again to lintian.)
- lintian-overrides: inform lintian that it's ok not to have shlibs
files in the swig-based packages
-- Peter Samuelson <peter@p12n.org> Thu, 07 Jun 2007 00:57:11 -0500
subversion (1.4.3dfsg1-1ubuntu1) feisty; urgency=low
* Merge from Debian experimental; remaining changes:
- Create pot file on build.
- Fix bashisms in tools/po/po-update.sh.
- Build for all supported python versions.
- Build a python-subversion-dbg package.
-- Matthias Klose <doko@ubuntu.com> Tue, 20 Mar 2007 06:47:26 +0100
subversion (1.4.3dfsg1-1) experimental; urgency=low
[ Peter Samuelson ]
* New upstream version.
- patches/neon26 removed; applied upstream
* rules: Small cleanups, thanks to Patrick Desnoyers.
* patches/jelmer-python-bindings: Remove some python2.4isms (should help
with porting to sarge and elsewhere). Thanks to Romain Francoise, and
upstream.
-- Peter Samuelson <peter@p12n.org> Thu, 25 Jan 2007 18:30:04 -0600
subversion (1.4.2dfsg1-2ubuntu5) feisty; urgency=low
* Build-depend on python-all-dev, python-all-dbg.
-- Matthias Klose <doko@ubuntu.com> Sun, 18 Feb 2007 15:44:48 +0100
subversion (1.4.2dfsg1-2ubuntu4) feisty; urgency=low
* Build a python-subversion-dbg package.
* Add modules for all supported python versions.
* Set Ubuntu maintainer address.
-- Matthias Klose <doko@ubuntu.com> Sun, 18 Feb 2007 00:43:04 +0100
subversion (1.4.2dfsg1-2ubuntu3) feisty; urgency=low
* Rebuild for python2.5 as the default python version.
-- Matthias Klose <doko@ubuntu.com> Fri, 12 Jan 2007 13:18:35 +0000
subversion (1.4.2dfsg1-2ubuntu2) feisty; urgency=low
* Fix bashisms in tools/po/po-update.sh.
-- Matthias Klose <doko@ubuntu.com> Wed, 13 Dec 2006 20:29:01 +0100
subversion (1.4.2dfsg1-2ubuntu1) feisty; urgency=low
* Merge with Debian unstable; remaining changes:
- Create pot file on build.
-- Matthias Klose <doko@ubuntu.com> Wed, 13 Dec 2006 17:57:16 +0100
subversion (1.4.2dfsg1-2) unstable; urgency=medium
[ Peter Samuelson ]
* rules: fix 'dontberoot' target not to run when it shouldn't.
(Closes: #396435)
* Add subversion-tools Conflicts: kdesdk-scripts (<= 4:3.5.5-1).
I'm told that their next release will remove the 'svn-clean' script,
which is quite similar to the one in subversion-tools. (See: #397874)
* Add manpages for svn-clean, svn-hot-backup, svn-fast-backup, and
svn-backup-dumps. Troy Heber helped write the last three.
* Ship svnmerge.README in subversion-tools.
-- Peter Samuelson <peter@p12n.org> Fri, 10 Nov 2006 08:45:01 -0600
subversion (1.4.2dfsg1-1) unstable; urgency=low
[ Peter Samuelson ]
* New upstream release.
- No longer ships IETF draft spec. (Closes: #393414)
- patches/svnsync-manpage, parts of patches/neon26, patches/svnshell:
Obsolete, removed.
- Re-roll upstream tarball to remove some unlicensed files from the
"contrib" directory. Update debian/copyright regarding other files
in "contrib". (Closes: #394395)
* patches/neon26: update for 1.4.2, add neon 0.26.2 to the whitelist.
* Improve libapache2-svn installation experience:
- Use a2enmod/a2dismod instead of hand-hacking.
- dav_svn.conf: Comment everything out. (Many will want to use
sites-available/* rather than dav_svn.conf anyway.) Fix some of
the text and add more. (Closes: #392805)
* libsvn-java: Remove alternative Depends: java1-runtime.
It does in fact require JRE 1.2 (java2-runtime).
* Build with neon26 instead of neon25.
* Ship some example code from upstream in the various devel packages.
- patches/examples-compile-instructions: New patch, some small doc fixes.
* Ship a lot more scripts in subversion-tools, including svnmerge
(Closes: #293528), svn2cl (Closes: #350133).
- List these scripts in the Description. (Closes: #357506)
- Downgrade most Depends to Recommends, augment Recommends and Suggests
to match the scripts.
* rules: Add explicit check and informative error message for trying to
build as root. (Closes: #396435)
* libapache2-svn Description: it's Apache 2.2, not 2.0. (Closes: #397113)
* patches/ruby-test-ra-race: replace my fix by upstream's better one,
should _really_ fix m68k build this time. (Closes: #397173)
* patches/jelmer-python-bindings: New patch: backport python binding
improvements by Jelmer Vernooij from trunk. This is needed for
certain advanced python-based tools.
-- Peter Samuelson <peter@p12n.org> Thu, 9 Nov 2006 00:07:42 -0600
subversion (1.4.0-5) unstable; urgency=medium
[ Peter Samuelson ]
* rules: Set HOME to a dummy value to prevent a build failure if the
real HOME is mode -x. Plus a few minor cleanups.
* rules: Link -ldb explicitly (rather than implicitly via -laprutil-1).
This is required for libdb symbol versioning to propagate.
Thanks to Pitr Jansen for help tracking this down.
* patches/svnshell: Fix insufficient argument checking in 'setrev'
command. (Closes: #392004)
-- Peter Samuelson <peter@p12n.org> Wed, 11 Oct 2006 03:30:03 -0500
subversion (1.4.0-4) unstable; urgency=medium
[ Peter Samuelson ]
* patches/apr-abi: switch to a simpler test that actually DTRT on 64-bit
platforms. (Closes: #391744)
-- Peter Samuelson <peter@p12n.org> Sun, 8 Oct 2006 09:26:04 -0500
subversion (1.4.0-3) unstable; urgency=low
[ Peter Samuelson ]
* patches/ruby-test-ra-race: New patch for another testsuite race
discovered on m68k.
* patches/ruby-typemap-digest: New patch to fix a m68k failure, quite
possibly the same failure we've seen sporadically on other arches
in the past. Thanks to Roman Zippel. (Closes: #387996)
* rules: sed *.la to change internal *.la references to -l form.
(Closes: #388733)
* control,rules: Reinstate libsvn-javahl as a dummy package, for
sarge upgrades. (Closes: #387901)
* control,rules: Disable Java on hurd-i386, requested by Cyril Brulebois.
* Build with apache 2.2 / apr1 / aprutil1 again, now that apache 2.2 is
going into unstable.
- aprutil1 always links to libdb4.4 nowadays. (Closes: #387396)
* libapache2-svn.postinst: Do not enable the dav_fs module: not needed
for a Subversion server.
[ Troy Heber ]
* debian/control clean up of Maintainer and Uploaders fields to reflect the
current team.
-- Troy Heber <troyh@debian.org> Tue, 3 Oct 2006 07:45:31 -0600
subversion (1.4.0-2) unstable; urgency=low
[ Peter Samuelson ]
* Run tests in 'build' target, not 'binary' target. This prevents a
build failure if 'binary' is run as root (not fakeroot).
* patches/svnsync-manpage: trivial typo fix from upstream.
* Delete README.db4.4: the upgrade procedure it describes is now fully
automatic.
-- Peter Samuelson <peter@p12n.org> Sun, 10 Sep 2006 05:05:47 -0500
subversion (1.4.0-1) unstable; urgency=low
[ Peter Samuelson ]
* New upstream version - well, not really new, it's rc5 rebranded.
* Revert libsvn1/apache2.2 change, since apache 2.2 is not yet in
unstable. libsvn1 is libsvn0 again, for now.
* patches/no-extra-libs: detect apr0/apr1 correctly, and use
pkg-config for neon.
* patches/neon26: new patch to build cleanly with neon 0.26.1.
Though we won't actually use it until #386652 is fixed.
* Document BDB 4.4 upgrade better; also, move the NEWS entry from
'libsvn0' to 'subversion' where it is more likely to actually be
read.
* patches/no-extra-libs-2: Tweak to remove more unnecessary linking.
-- Peter Samuelson <peter@p12n.org> Thu, 7 Sep 2006 21:03:06 -0500
subversion (1.4.0~rc5-1) experimental; urgency=low
* New upstream version.
- patches/ruby-txtdelta-apply-instructions: remove (obsolete).
-- Peter Samuelson <peter@p12n.org> Thu, 24 Aug 2006 05:31:24 -0500
subversion (1.4.0~rc4-2) experimental; urgency=low
[ Peter Samuelson ]
* Reenable apache support; build-depend on apache2-threaded-dev 2.2,
now that it's in experimental.
* Build-Depends: remove bison, relax python version again (as python
handling is now done by python-support).
* patches/ruby-txtdelta-apply-instructions: new patch from upstream,
fixes the test failure on amd64.
* Compile against libdb4.4, which should fix the famous "wedged
repository" issue.
- Build-Depends: libaprutil1-dev (>= 1.2.7+dfsg-1)
- Update rules, control, README.db4.4
- Add note to libsvn1.NEWS - please read it!
-- Peter Samuelson <peter@p12n.org> Fri, 18 Aug 2006 13:06:49 -0500
subversion (1.4.0~rc4-1) experimental; urgency=low
* There is a known issue with amd64 and the SvnDeltaTest in the ruby
testsuite.
[ Peter Samuelson ]
* New upstream release.
- commit-email.pl has option not to send diffs. (Closes: #217133)
- Help text clarified for options like --file. (Closes: #233099)
- Rediff patches. Delete patches already included upstream:
apache-crash-fix, bash_completion, lc_ctype, perl-test-clean,
svn_load_dirs-symlinks, swig-1.3.28.
- Add Build-Depends: zlib1g-dev.
* Bump subversion-tools dependencies on the other packages to >= 1.4.
* Support ENABLE_APACHE macro, to disable 'libapache2-svn'.
Disable apache until apache 2.2 makes its way into experimental.
* Switch to libapr1, which entails an ABI change to libsvn.
- libsvn0 -> libsvn1
- libsvn0-dev -> libsvn-dev
- patches/apr-abi: New patch: change the libsvn_* SONAMEs.
(This type of change should be upstream-driven, but upstream has
declined to do it.)
- patches/fix-bdb-version-detection: New patch: tweak BDB version
detection not to rely on an apr-util misfeature (#387105).
* Rename libsvn-javahl to libsvn-java, to comply (in spirit) with the
Java Policy. (Closes: #377119)
* Rename libsvn-core-perl to libsvn-perl, because it provides several
modules in the SVN:: namespace, not just SVN::Core.
* patches/limit-zlib-link: New patch from upstream to prevent
unnecessary -lz linkage in client binaries.
* Update copyright file again.
* Switch to python-support.
* subversion-tools: downgrade rcs and exim4 to Recommends.
* Add NEWS entry to libsvn1, explaining compatibility issues - please
read it, folks!
[ Troy Heber ]
* tweaked rpath patch HUNK 2, so it would apply cleanly.
-- Peter Samuelson <peter@p12n.org> Thu, 10 Aug 2006 20:43:19 -0500
subversion (1.3.2-6) unstable; urgency=low
[ Peter Samuelson ]
* Add libsvn0 Conflicts: subversion (<< 1.3) to prevent chaos from
linking to both neon24 and neon25.
* Add libsvn0 Conflicts: python2.3-subversion (<< 1.2.3dfsg1-1)
because of the libsvn_swig_py move. (Closes: #385146)
* Link with Berkeley DB 4.4. (Closes: #385589, #383880 again)
- patches/bdb-44: new patch cobbled together from upstream trunk
* patches/ruby-test-svnserve-race: update from our 'sleep 3' hack to
what I hope is a proper fix. Thanks to Kobayashi Noritada, Wouter
Verhelst and Roman Zippel. (Closes: #378837)
* Switch to python-support.
-- Peter Samuelson <peter@p12n.org> Sat, 2 Sep 2006 05:04:09 -0500
subversion (1.3.2-5) unstable; urgency=medium
[ Peter Samuelson ]
* python-subversion.{prerm,postinst}: use pyversions, fix stupid bug
(Closes: #379278) in prerm. Tighten python build-dep to ensure
availability of pyversions.
* patches/ruby-test-svnserve-race: increase 'sleep 1' hack to 'sleep 3'
for now. Not a proper fix, but should build on m68k.
* control: downgrade subversion Depends: patch to Suggests. You can do
a lot with subversion without a 'patch' program.
-- Troy Heber <troyh@debian.org> Mon, 24 Jul 2006 14:01:49 -0600
subversion (1.3.2-4) unstable; urgency=low
[ Peter Samuelson ]
* control, rules, patches/*: switch from cdbs-simple-patchsys to dpatch.
Remove .patch suffixes, change build-depends.
* rules: separate the *-arch and *-indep targets properly.
* copyright: updates, mention licenses for the bits in the tarball which we
don't use.
* Support new python policy, building for version 'current'.
Thanks to Max Bowsher. (Closes: #373387)
* Improve package descriptions. (Closes: #375469)
* Add java2-runtime alternative to libsvn-javahl JVM dependency.
(Closes: #377529)
* Add libsvn0 Conflicts: libsvn-core-perl (<< 1.2.3dfsg1-1) to force a
necessary upgrade. (Closes: #376565)
[ Guilherme de S. Pastore ]
* control: updated e-mail address.
-- Troy Heber <troyh@debian.org> Mon, 17 Jul 2006 08:39:20 -0600
subversion (1.3.2-3ubuntu2) edgy; urgency=low
* Backport improved python bindings (Jelmer Vernooij),
cleanup patch and adapt for 1.3.2. Ubuntu #51304.
-- Matthias Klose <doko@ubuntu.com> Wed, 4 Oct 2006 21:36:23 +0000
subversion (1.3.2-3ubuntu1) edgy; urgency=low
* Merge from debian unstable, remaining changes:
- create pot file on build,
- python2.4.
-- Scott James Remnant <scott@ubuntu.com> Mon, 10 Jul 2006 16:22:15 +0100
subversion (1.3.2-3) unstable; urgency=low
[ Troy Heber]
* Adding arm to list of javahl disabled architectures
-- Troy Heber <troyh@debian.org> Wed, 14 Jun 2006 14:26:44 -0600
subversion (1.3.2-2) unstable; urgency=low
[ Peter Samuelson ]
* control, rules: switch from kaffe to java-gcj-compat-dev. Thanks to
Bastian Blank. Also reenable libsvn-javahl, for now, on all
architectures except m68k, mips, mipsel. (Closes: #370228)
* ruby-test-svnserve-race.patch: new kludge to avoid a race condition in
the ruby testsuite on really slow machines.
-- Peter Samuelson <peter@p12n.org> Mon, 12 Jun 2006 18:50:08 -0500
subversion (1.3.2-1) unstable; urgency=low
[ Peter Samuelson ]
* New upstream release.
- Remove patches applied upstream: apache-crash-fix.patch,
svn_load_dirs-symlinks.patch, swig-1.3.28.patch
* debian/watch: new file for use by 'uscan' from devscripts.
* Standards version 3.7.2. (No changes.)
* control: upgrade Build-Conflicts to libsvn0 (<< 1.3).
This is that old workaround for #291641.
* rules: rework testsuite invocation:
- Add 'check' series of targets, and 'check-help' to remind one
of what they are
- Conditionalise javahl tests on ENABLE_JAVAHL
- Reorder the checks to put the core tests at the end; they are by far
the most time-consuming, and rarely fail anyway
- Only 'cat tests.log' if the core tests fail: the other testsuites
don't use that file anyway
-- Peter Samuelson <peter@p12n.org> Thu, 1 Jun 2006 04:10:19 -0500
subversion (1.3.1-3ubuntu1) dapper; urgency=low
* Merge new upstream version from Debian, UVF exception approved by mdz.
* Very (very, very) carefully merge our Java-related changes with Debian's
rather different Java changes to produce something that should work.
* Create a python2.4-subversion transitional package to smooth upgrades.
-- Adam Conrad <adconrad@ubuntu.com> Mon, 8 May 2006 14:07:51 +1000
subversion (1.3.1-3) unstable; urgency=medium
[ Peter Samuelson ]
* Tighten dependency between subversion and libsvn0, to reduce user
confusion. It is almost always the library version that matters, as
far as bugs and features are concerned. (Closes: #359315)
* Disable java bindings on hppa and ia64, since kaffe is broken on
those architectures. It's been broken on ia64 for a long time, and it
looks as though hppa may remain broken for awhile too (see #364819).
* ssh-no-sigkill.patch: new patch to SIGTERM (instead of SIGKILL) the
tunnel agent, which is usually ssh. We can do this now that #313371
is fixed. (Closes: #335528)
* rules: add -V'libsvn0 (>= 1.3.0)' to dh_makeshlibs to loosen the
shlibs file a bit. Upstream guarantees that the library ABI won't be
augmented during any single x.y.* cycle.
* svnwrap.sh, man/svnwrap.1: new script for subversion-tools package to
optionally wrap subversion client commands with 'umask 002'.
(Closes: #242368, #259226, #282468, #292358)
* lc_ctype.patch: new patch to make locale errors non-fatal, suggested
by upstream developer Peter Lundblad. (Closes: #363983)
* last-changed-date-charset.patch: new patch: convert $LastChangedDate$
keyword from UTF-8 to local character set. (Closes: #290774)
* apache-crash-fix.patch: new patch to fix a crash in mod_dav_svn.
* swig-warning-124.patch: new patch to disable swig typemap warning,
drastically shrinking the build log.
[ Troy Heber ]
* changing from UNRELEASED to unstable and uploading
-- Troy Heber <troyh@debian.org> Fri, 05 May 2006 18:14:57 -0600
subversion (1.3.1-2) unstable; urgency=low
[ Peter Samuelson ]
* Fix libsvn-ruby1.8: actually ship the swig glue, which we had overlooked.
Thanks to Thiago Avancini for the report and some Ruby help.
* Exclude Java bindings on kfreebsd-amd64. (Closes: #361488)
-- Peter Samuelson <peter@p12n.org> Sun, 9 Apr 2006 05:10:42 -0500
subversion (1.3.1-1) unstable; urgency=low
[ Peter Samuelson ]
* New upstream version.
- Delete obsolete neon-0.25.5.patch.
* swig-1.3.28.patch: add a few more upstream patches.
-- Troy Heber <troyh@debian.org> Tue, 04 Apr 2006 15:05:12 -0600
subversion (1.3.0-5) unstable; urgency=high
* rpath.patch: Delete rpaths for apache2 modules.
(Closes: #359234, also see CVE-2006-1564)
- rules: Do not override INSTALL_MOD_SHARED, this is no longer needed
- libapache2-svn.install: Use modules from the install, not from
the build tree
-- Peter Samuelson <peter@p12n.org> Tue, 28 Mar 2006 00:56:59 -0600
subversion (1.3.0-4) unstable; urgency=low
[ Peter Samuelson ]
* rules: Support DEB_BUILD_OPTIONS=-jN, passed to child make processes.
Invoke 'make autogen-swig' separately as it has problems with -j.
Be more paranoid about cleaning out old swig headers.
Document all the DEB_BUILD_OPTIONS we now support.
* control: Don't say we provide python2.4-subversion, since we don't.
* swig-1.3.28.patch: add another upstream patchlet. Should fix the
intermittent FTBFS due to the ruby test suite.
* rules: fix doc/subversion/README.db4.3.gz symlink (Closes: #357856)
-- Troy Heber <troyh@debian.org> Mon, 20 Mar 2006 08:13:33 -0700
subversion (1.3.0-3) unstable; urgency=low
[ Peter Samuelson ]
* rules: Symlink /usr/share/doc/libsvn-ruby -> libsvn-ruby1.8
* swig-1.3.27.patch: Rename to swig-1.3.28.patch, and update it with
more patches stolen from upstream, to support SWIG 1.3.28.
- control: Remove Build-Conflicts: swig (>= 1.3.28). Assume for now
that 1.3.29 and newer won't cause other problems.
[ Adam Conrad ]
* Do the Provides/Replaces/Conflicts dance for python2.4-subversion as
well, since Ubuntu has shipped that for ages, and this allows for
smoother upgrades/sidegrades between the two.
-- Troy Heber <troyh@debian.org> Sun, 12 Mar 2006 15:32:57 -0700
subversion (1.3.0-2) unstable; urgency=low
[ Peter Samuelson ]
* Disable java bindings on m68k for now. It seems to have problems
similar to the ones on arm and mips. (See #344986.)
* Some suggestions from Ubuntu backporter Blair Zajac (Closes: #347775):
- Delete pregenerated swig headers which may or may not be compatible
with Debian's version of swig.
- Tighten Build-Depends on kaffe to >= 2:1.1.6: he reports that 1.1.5
fails to build the Java bindings.
- Build-Depends: junit, pass --with-junit to configure, and run 'make
check-javahl'. It fails on current free JVMs, so ignore failure.
- Tighten subversion-dev dependency on libapr0-dev to >= 2.0.55-3,
to match the Build-Depends.
- Pass CLEANUP=true to 'make check' to reduce disk usage.
* subversion.README.Debian: Rewrite for clarity, and to document the two
Emacs helpers. Thanks to Gavin Baker for both the research and the
writing.
* rules: 'make swig-rb' so that 'make install-swig-rb' does not have
to do it for us. Thanks to Max Bowsher for noticing.
* Adjust swig patches:
- swig-1.3.27-hack.patch: remove, obsoleted by upstream changes.
- ruby-swig-1.3.27.patch: rename to swig-1.3.27.patch and update to
include trunk r18172, which is likely to go in a future 1.3.x.
* New package libsvn-doc with doxygen-generated API docs in HTML
format. Thanks to Max Bowsher. (Closes: #269635)
- Add Suggests: libsvn-doc for libsvn0-dev
* Rename python2.3-subversion to python-subversion, recommended by
Python policy. This will allow for a slightly smoother global python
transition in the future.
- Replaces/Conflicts/Provides: python2.3-subversion
- Use #!/usr/bin/python everywhere, not #!/usr/bin/python2.3
* Add Provides: libsvn-dev to libsvn0-dev. The package will be renamed
in the future, when libsvn0 becomes libsvn1.
* Loosen dependencies between subversion-tools and the other packages,
as the one is "Architecture: all" and the others are not.
* Build-Conflict with swig 1.3.28 and newer, to document reality. This
has been addressed by upstream trunk but not yet backported.
* patches/neon-0.25.5.patch: new patch from upstream, to allow compiling
with neon 0.25.5.
[ Troy Heber ]
* Changing my email address
-- Troy Heber <troyh@debian.org> Wed, 22 Feb 2006 08:18:12 -0700
subversion (1.3.0-1ubuntu3) dapper; urgency=low
* debian/rules: Create a POT file on package build
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 5 May 2006 01:48:11 +0200
subversion (1.3.0-1ubuntu2) dapper; urgency=low
* Reenable the build of libsvn-javahl, build using java-gcj-compat-dev.
* libsvn-javahl: Prefer gij over kaffe.
-- Matthias Klose <doko@ubuntu.com> Thu, 23 Mar 2006 14:10:04 +0000
subversion (1.3.0-1ubuntu1) dapper; urgency=low
* Merge with Debian by hand, bringing in shiny new upstream version.
* Disable the testsuite for the ruby bindings for now, as they are
failing obscurely, and "broken bindings are slightly better than
no bindings"; I will investigate the breakage later.
-- Adam Conrad <adconrad@ubuntu.com> Tue, 17 Jan 2006 12:35:07 +1100
subversion (1.3.0-1) experimental; urgency=low
[ Peter, Guilherme ]
* New upstream version. (Closes: #344819)
- Undeprecates svnserve -R (Closes: #341438)
- Fixes typo in locks/db-logs.lock (Closes: #339298)
- README does not mention bdb specifics when using fsfs (Closes: #295860)
- Back to a pristine upstream tar, as upstream has removed the
(non-free) Subversion Book.
- All patches rediffed / ported.
- no_extra_libs, svn_load_dirs_symlinks: renamed to no-extra-libs,
svn_load_dirs-symlinks, for consistency.
- commit-email-warning, l10n-segfault: Removed (fixed upstream).
[ Peter Samuelson ]
* New packages libsvn-ruby1.8 and dummy libsvn-ruby. (Closes: #335987)
- patches/ruby-no-strict-aliasing.patch: new patch.
- patches/ruby-swig-1.3.27.patch: new patch from upstream, to
build with SWIG 1.3.27. Upstream says this is still unofficial.
* Disable java on kfreebsd-i386. (Closes: #345196)
* patches/bash_completion.patch: new patch to fix minor wildcard
breakage with bash completion. (Closes: #342052)
* rules: remove x bit from /etc/bash_completion.d/subversion.
Thanks, lintian.
* control: downgrade db4.3-util to Suggests.
* Move README.db4.3 and the corresponding NEWS entry to the libsvn0
package. Leave a symlink in /usr/share/doc/subversion/.
(Closes: #342235)
* README.db4.3: add notes about preserving file permissions.
Thanks to Ross Boylan. (Closes: #345819)
* patches/svn_load_dirs_symlinks.patch: new patch to handle symlinks in
the svn_load_dirs contrib script. Thanks to Tilman Koschnick.
(Closes: #311440, #319165)
* rules: cleanups:
- Use debhelper -s instead of -a, and -i -s instead of -A.
This would have prevented the need for 1.2.3dfsg1-2.
- Move some build rules out of the 'install' target.
- Enable additional tests (make check-swig-py).
- Drop use of 'time' (and corresponding build-dep in control).
* control: move from libneon24 to libneon25, as upstream now prefers.
* patches/no-extra-libs-2.patch: new patch: more spurious-link pruning.
-- Peter Samuelson <peter@p12n.org> Fri, 6 Jan 2006 03:28:16 -0600
subversion (1.2.3dfsg1-3ubuntu1) dapper; urgency=low
* Merge with the final Debian release of 1.2.3dfsg1-3, bringing in
fixes to the clean target, better documentation of the libdb4.3
upgrade and build fixes to work with swig1.3_1.3.27.
-- Adam Conrad <adconrad@ubuntu.com> Mon, 5 Dec 2005 01:26:14 +1100
subversion (1.2.3dfsg1-3) unstable; urgency=low
[ Peter Samuelson ]
* rules: Remove the unwritten requirement that /usr/bin/python be
specifically version 2.3:
- derive python version from debian/control, not from dpkg -l
- pass PYTHON=python2.3 explicitly into configure
* rules: clean rule: Seek and destroy _all_ *.pyc files. There were
a few we didn't catch before, buried in the testsuite.
* Remove various unneeded files from language bindings (Closes: #310777)
- libsvn-core-perl.install: don't install /usr/lib/*.{a,la,so}
- python2.3-subversion.install: likewise
- libsvn-javahl.install: don't install /usr/lib/jni/*.{a,la}
- rules: delete *.{a,la} from python2.3/site-packages/libsvn
* control: build-depends on libapr0-dev (>= 2.0.55-3).
Earlier versions of libapr0 will try to make us link to libdb4.2.
* subversion.NEWS, README.db4.3: document db4.2 -> db4.3 upgrade.
* patches/no_extra_libs.patch: new patch to prevent linking to several
unneeded libraries. (Closes: #336373, which was caused by linking to
libssl0.9.8.)
- debian/control: Remove several depends and build-depends we are no
longer using because of this
* patches/commit-email-warning.patch: new patch to eliminate a harmless
warning in a hook script. (Closes: #336781)
* patches/perl-test-clean.patch: new patch to avoid leaving several
/tmp/svn-perl-test-xxxxxx dirs.
* patches/swig-1.3.27-hack.patch: new patch to avoid FTBFS from bad
interaction of swig 1.3.27 and <apr.h>. A *really* ugly hack.
[ Adam Conrad ]
* Switch to using DB4.3 instead of DB4.2, as libapr0 has
(Closes: #335455, #335438)
- Bump build-dep and libsvn0-dev dep from libdb4.2-dev to libdb4.3-dev
- Bump subversion and libapache2-svn deps from db4.2-util to db4.3-util
[ Troy Heber ]
* Added note about the requirement for nfs-common when your repository lives
on a NFS volume. (closes: #316097)
* Changing the default behavior to not use apr_generate_random_bytes(),
Debian use the system APR which is configured to use /dev/random. In cases
where the entropy pool is drained svn commands can block waiting. Removing
the call to apr_generate_random_bytes and using the fallback apr_time_now
instead. (closes: #285708, #298822)
-- Peter Samuelson <peter@p12n.org> Fri, 2 Dec 2005 16:22:44 -0600
subversion (1.2.3dfsg1-2ubuntu1) dapper; urgency=low
* Roll this release from the Debian pkg-subversion SVN repo (Ubuntu #19334)
* Stop building python2.3 bindings, as python2.3 is leaving Ubuntu main.
* Disable the build of libsvn-javahl, since kaffe is in Ubuntu universe.
-- Adam Conrad <adconrad@ubuntu.com> Sat, 26 Nov 2005 01:17:20 +1100
subversion (1.2.3dfsg1-2) unstable; urgency=low
* Use DH_OPTIONS=-Nlibsvn-javahl in debian/rules, rather than the
Architecture fields in debian/control, to disable the java package.
Due to misuse of debhelper, the last attempt didn't work. And I think
this way is nicer anyway. Suggested by Steve Langasek.
-- Peter Samuelson <peter@p12n.org> Wed, 19 Oct 2005 04:27:51 -0500
subversion (1.2.3dfsg1-1) unstable; urgency=low
[ Guilherme de S. Pastore ]
* debian/control:
- changed section of libsvn-core-perl to perl
- changed section of libsvn-javahl to devel
- bump to Standards-Version 3.6.2.1 with no changes
* debian/rules:
- minor cleanups
- removed remnants of control auto-generation
[ Peter Samuelson ]
* Re-repack orig tarball to eliminate the tar-in-tar arrangement
* debian/rules: adjust to build without the tar-in-tar
- configure and build in ./BUILD
- 'clean' removes ./BUILD and files from autogen.sh
- adjust a lot of installation source paths
- pass both DEB_SRCDIR and DEB_BUILDDIR into debian/tools/Makefile
* debian/tools/Makefile: support separate src and build dirs
* debian/rules: modernise use of debhelper
- use dh_install instead of dh_movefiles
- move pathnames out of rules, into *.install, *.dirs, *.docs, *.examples
- side effect (but correct): move libsvn_swig_* from libsvn0{,-dev}
to python2.3-subversion and libsvn-core-perl
- install Java libraries to /usr/lib/jni, not /usr/lib (Closes: #327789)
* debian/rules, debian/control: disable libsvn-javahl on arm, armeb,
mips, mipsel, on advice from Jeroen van Wolffelaar. It seems kaffe
may remain broken on these architectures for a while. (Closes: #329184)
* debian/rules: rip out "architectures to run full testsuite on" logic,
on advice from Steve Langasek. It is not safe to assume that
debian-specific changes to an upstream release will never cause test
failures. Local admins can still use DEB_BUILD_OPTIONS=notest to
speed up a local compile.
* debian/control: relax all versioned build-deps; all the versions are
satisfied in sarge (and most of them in woody).
* debian/rules, debian/subversion-tools.{postinst,postrm,install}:
- move /usr/lib/subversion to /usr/share/subversion (Closes: #330824)
- move hot-backup.py to /usr/share/doc/subversion/examples
- create compat symlink /usr/lib/subversion
* debian/control: remove pkg-subversion-maintainers from Uploaders - it's
not the right place to document the existence of a list
* debian/control, debian/rules: build with kaffe-pthreads specifically
(works around a FTBFS with kaffe 1.1.6)
-- Peter Samuelson <peter@p12n.org> Tue, 18 Oct 2005 03:03:27 -0500
subversion (1.2.3a-1) unstable; urgency=low
* Welcome the Debian Subversion Team (Closes: #322257)
[ Guilherme de S. Pastore ]
* New upstream release (Closes: #320417)
- tarball repackaged without svnbook, as it's licensed under
a non-DFSG-free license (Closes: #215083, #218185, #314154)
- fixes export segmentation fault with versioned items in
"deleted" state (Closes: #314381, #316133, #316227, #320572, #324037)
* debian/compat:
- bump to debhelper compatibility version 4
- no longer export DH_COMPAT from inside debian/rules
* debian/control:
- dropped auto-generation with m4
- dropped build-dependency on quilt
- bump to Standards-Version 3.6.2 with no changes
- removed Conflicts/Replaces on all packages not present in
stable anymore (Closes: #310519)
* debian/patches/ltmain.sh.patch:
- removed; applied upstream
* debian/patches/kaffe-cast.patch:
- removed; broken and unnecessary
* debian/subversion.doc-base.book:
- removed; the book is no longer present
* debian/README.Debian:
- Removed; was doing the work of a package description, and
mentioned the (removed) svnbook
* debian/python2.3-subversion.README.Debian:
- Renamed from pythonX.Y-subversion.README.Debian, we longer
use that auto-generation stuff
* debian/rules:
- tiny fixes to unbreak the build process
- include simple-patchsys.mk from CDBS instead of using quilt;
it was too complex for our needs
- fixed detection of tarballs, as to not get confused by CDBS
auto-generated lists, which would cause the build to fail
- no longer do any magic to auto-generate debian/control and
python related documentation; too complex for too little gain
- set LANG to C, otherwise the build may fail because of tests
failing for not being able to recognize strings returned by
some tools
- no longer do any magic to support builds on pre-sarge
environments; the package is already complex enough without
supporting old cruft unnecessarily
* Removed packaging documentation, as it was pretty much outdated
* Removed maintenance scripts from the package; left them
on the 'tools' section of the repository on svn.debian.org
[ David Kimdon ]
* Do not install vc-svn.el (closes: #314213, #315100, #324633)
* Autoload psvn.el by default. (closes: #223303, #235905, #305953)
* Remove hard-coded DEB_BUILDDIR from debian/rules.
* Enable javahl bindings by default (closes: #271125, #323839)
[ Peter Samuelson ]
* debian/patches/l10n-segfault.patch:
- fixes a "svn add" crash in the es, fr, it, pl, pt_BR and zh_TW
locales (Closes: #316143, #323376, #326079)
* debian/patches/rpath.patch:
- port to subversion 1.2.x and reenable (work in progress, suppresses
most rpaths)
* debian/lintian-overrides: new file for binary package overrides
* debian/rules:
- support DEB_BUILD_OPTIONS=noopt
- invent a DEB_BUILD_OPTIONS=notest to disable the test suite more
easily
- the INSTALL file is redundant, do not install it in /usr/share/doc
- change #!/usr/bin/env python to #!/usr/bin/python2.3 in assorted
scripts
- split and install lintian-overrides to appropriate packages
- minor cruft removal
-- Guilherme de S. Pastore <guilherme.pastore@terra.com.br> Fri, 9 Sep 2005 14:57:03 -0300
subversion (1.2.0-1ubuntu1) breezy; urgency=low
* Resynchronise with Debian.
-- Michael Vogt <michael.vogt@ubuntu.com> Wed, 29 Jun 2005 13:09:32 +0200
subversion (1.2.0-1) unstable; urgency=low
* New upstream release. (Closes: #310474)
* Fixes many bugs (some of these may have actually been fixed
before 1.2.0, in any case they are now fixed) :
svndumpfilter: no crash on 64-bit platforms (Closes: #309161)
symlink now works in "svn merge" (Closes: #296046)
svnserve does ipv6 (Closes: #235755)
svn no longer can export non-existent files (Closes: #279080)
svn status "R" is documented in the svn book: (Closes: #269021)
Fix auth problem (Closes: #269165)
svn diff handles ctrl-c (Closes: #266973)
* Build-conflict with libsvn0 (<<1.2). This is a work-around to
Debian bug 291641.
* The subversion book source has moved out of this package, install a
pre-built book.
-- David Kimdon <dwhedon@debian.org> Wed, 8 Jun 2005 22:19:21 -0700
subversion (1.1.4-2ubuntu1) breezy; urgency=low
* Sync with Debian.
-- Matthias Klose <doko@ubuntu.com> Wed, 25 May 2005 00:09:22 +0000
subversion (1.1.4-2) unstable; urgency=high
* Put call to dh_installdeb after call to dh_python. Fixes purge
of python2.3-subversion (closes: #308777)
* Disable full testsuite. All archs have already past it. No need to
burden the autobuilders with all the tests.
* Set DEB_BUILDDIR correctly since something is apparently setting it
incorrectly.
-- David Kimdon <dwhedon@debian.org> Thu, 12 May 2005 21:04:56 -0700
subversion (1.1.4-1) unstable; urgency=low
* New upstream release. (Closes: #303179)
* Set LC_ALL for testsuite so build runs in a known environent.
(closes: #301495)
* Omit unnecessary svn.vim (now included in the standard vim distribution)
(closes: #298901)
* Try again to get -O2 in CFLAGS. (closes: #303744)
-- David Kimdon <dwhedon@debian.org> Sun, 27 Mar 2005 20:43:17 -0800
subversion (1.1.3-3) unstable; urgency=low
* Add -O2 to CFLAGS.
* Fix trac's revision log (closes: #299817)
patche thanks to Torsten Landschoff <torsten@debian.org>
-- David Kimdon <dwhedon@debian.org> Fri, 25 Feb 2005 20:25:02 -0800
subversion (1.1.3-2) unstable; urgency=low
* Patches thanks to Torsten Landschoff <torsten@debian.org>
- Let cdbs handle updating config.{sub|guess}.
- Support swig 1.3.24. (closes: #295452)
* Remove old upgrade notes from README.Debian.
* Fix doc url (closes: #293310)
-- David Kimdon <dwhedon@debian.org> Sun, 20 Feb 2005 11:31:34 -0800
subversion (1.1.3-1) unstable; urgency=low
* New upstream release. (closes: #290610, #288344, #290381)
- remove r12102.patch as it is integrated in this upstream release.
* Make libsvn0 conflict with libsvn-core-perl (= 1.0.9) (closes: #290807)
* Allow the build to use a 1.3.22 swig version since the Debian
version is patched to include the necessary runtime libraries.
* Don't start description synopses with a capital letter, make homepage
consistent explicit in package description (as suggested by the
Developer's Reference).
* Be more explicit about what the default apache module configuration
allows. Default to a read-only repository for non-anonymous
users. (closes: #277303)
* The book isn't being built properly, stop building it and use the
version that is shipped with the tarball (closes: #282393).
-- David Kimdon <dwhedon@debian.org> Sat, 15 Jan 2005 14:12:54 -0800
subversion (1.1.1-2ubuntu4) hoary; urgency=low
* Build a python2.3-subversion package as well.
-- Matthias Klose <doko@ubuntu.com> Tue, 17 May 2005 09:55:44 +0000
subversion (1.1.1-2ubuntu3) hoary; urgency=low
* python2.4-subversion: Add conflict to python2.3-subversion.
Closes: #4957.
-- Matthias Klose <m@klose.in-berlin.de> Mon, 10 Jan 2005 08:31:59 +0100
subversion (1.1.1-2ubuntu2) hoary; urgency=low
* Tighten build dependency on python.
-- Matthias Klose <m@klose.in-berlin.de> Fri, 17 Dec 2004 14:02:19 +0100
subversion (1.1.1-2ubuntu1) hoary; urgency=low
* Build using python2.4.
* debian/control.m4: Fix generation of control file for PYVERSION != 2.3.
-- Matthias Klose <m@klose.in-berlin.de> Wed, 15 Dec 2004 20:37:50 +0100
subversion (1.1.1-2) unstable; urgency=low
* Fix minor incompatability between 1.0 and 1.1 libraries.
(closes: #275545)
* Remove conditionals and variables that allow debian/rules to
support building subversion 1.0.
* Re-enable debian/patches/rpath.patch. This get rpath out of
some of the binaries.
* Minor build system fixes.
* python2.3-subversion now Conflict/Replace's python2.1-subversion
(closes: #281047)
* Mention DAV in description of libapache2-svn package.
(closes: #277301)
* Uncomment section markers in default configuration files. It is easy
to uncomment the option, but not the section marker and then wonder
why the change has not taken effect. (closes: #278162)
* Fix path to subversion book. (closes: #285240)
-- David Kimdon <dwhedon@debian.org> Sun, 5 Dec 2004 10:26:12 -0800
subversion (1.1.1-1) experimental; urgency=low
* New upstream release. (closes: #272000)
* Fix hard-coded swig version in debian/rules (closes: #276838)
* Mention 'dav' in the description of libapache2-svn so the package
is easier to find. (closes: #277302)
* Create libsvn-core-perl dependency on libsvn0 via the shlibs file
so the version is taken into account. (closes: #279439)
-- David Kimdon <dwhedon@debian.org> Sat, 30 Oct 2004 07:59:52 -0700
subversion (1.1.0-1) experimental; urgency=low
* New upstream release.
* Make debian/control.in a double-colon rule. This allows us to
build with old and new versions of cdbs. We are not using
cdbs's debian/control rule.
* Increase debhelper build dependency to 4.1.25 since we use
dh_python.
* Increase version number to prevent this package from being
removed from experimental. (1.0.8-1 has been uploaded to
unstable.)
* Disable testsuite on powerpc since I just ran it.
* Build depend on swig >= 1.3.22-2 so we get a runtime library
and the build doesn't fail.
-- David Kimdon <dwhedon@debian.org> Sat, 25 Sep 2004 10:11:12 -0700
subversion (1.0.6+1.1.0rc4-1) experimental; urgency=high
* New upstream release.
* CAN-2004-0749: mod_authz_svn fails to protect metadata
-- David Kimdon <dwhedon@debian.org> Fri, 24 Sep 2004 20:38:15 -0700
subversion (1.0.6+1.1.0rc2-1) experimental; urgency=low
* New upstream release.
* Build system changes so we can easily support subversion 1.1.x.
* Minor build changes to support 1.1.x.
-- David Kimdon <dwhedon@debian.org> Wed, 8 Sep 2004 22:36:04 -0700
subversion (1.0.6-2) unstable; urgency=high
* This package is source equivalent to 1.0.6-1.
* Remove debian/patches/apr_dir_make.patch as this is now fixed
in the apache2 version we depend on.
* Build depend on apache2 >= 2.0.50-11 so we get all fixes.
* Put version number to something that katie will not interpret as
a binary NMU.
-- David Kimdon <dwhedon@debian.org> Wed, 1 Sep 2004 22:03:43 -0700
subversion (1.0.6-1.2.1) unstable; urgency=high
* Binary non-maintainer upload by temporary maintainer.
-- Matt Kraai <kraai@debian.org> Thu, 26 Aug 2004 15:06:09 -0700
subversion (1.0.6-1.2) unstable; urgency=high
* Non-maintainer upload with maintainer approval.
* Reverting the apache2/apr LFS transition by bumping our build-dep
to (>= 2.0.50-10), as the apache2 maintenance team has decided that
the ABI transition, while desireable, just wasn't manageable this
close to a release.
* Re-enable the testsuite on all arches to make sure all this ABI
buggery hasn't, well, buggered anything.
-- Adam Conrad <adconrad@0c3.net> Fri, 20 Aug 2004 10:34:24 -0600
subversion (1.0.6-1.1) unstable; urgency=medium
* Non-maintainer upload by temporary maintainer.
* Work around the apr_dir_make bug in Apache 2.0.50 (closes: #256909).
* Update apache build-dep to >= 2.0.50-9 (closes: #266170, #266193).
-- Matt Kraai <kraai@debian.org> Tue, 17 Aug 2004 04:31:49 -0700
subversion (1.0.6-1) unstable; urgency=high
* New upstream release.
- fix mod_authz_svn COPY security hole (closes: #261938)
* Depend on exim4 rather than exim. (closes: #255363)
* Link libsvn_swig_perl-1.so with all the libraries it depends on.
(closes: #262025)
* Update neon build-dep to >= 0.24.7.
* Update apache build-dep to >= 2.0.50.
* Refresh debian/patches/repos-templates.patch.
* Add build-dep on libkrb5-dev.
* Fix permissions on libsvn-core-perl shared libraries.
* Only remove modules from apache's configuration when we are
removing libapache2-svn, not on upgrades. (closes: #251245)
Additionally, move the module config manipulation from the postrm
to the prerm. This way there is no time when apache is configured
to load a module that is not present on the system.
-- David Kimdon <dwhedon@debian.org> Sun, 20 Jun 2004 15:34:57 +0200
subversion (1.0.5-1) unstable; urgency=low
* New upstream release.
- Fix CAN-2004-0413: Subversion svn:// protocol string parsing error.
(closes: #253694)
* Update build-depends to neon 0.24.6.
* Fix broken /etc/emacs/site-start.d/vc-svn.el (closes: #250058)
-- David Kimdon <dwhedon@debian.org> Mon, 24 May 2004 14:45:09 +0200
subversion (1.0.3-1) unstable; urgency=high
* New upstream release.
- fix CAN-2004-0397 : Subversion remote vulnerability
(closes: #249791)
-- David Kimdon <dwhedon@debian.org> Wed, 19 May 2004 20:31:15 +0200
subversion (1.0.2-5) unstable; urgency=low
* Fix apache modules link in a cleaner way. Previously I had some
hard-coded link lines in debian rules. The present change modfies the
subversion build system itself to hopefully do the right thing in all
cases. This change is less invasive and should allow all archs to
build. (closes: #246903)
-- David Kimdon <dwhedon@debian.org> Sun, 2 May 2004 11:09:20 +0200
subversion (1.0.2-4) unstable; urgency=low
* Remove 'sudo' line that I didn't mean to commit and got included
in 1.0.2-3. Thanks to Norbert Tretkowski for noticing.
-- David Kimdon <dwhedon@debian.org> Sat, 1 May 2004 14:07:28 +0200
subversion (1.0.2-3) unstable; urgency=low
* Fix apache modules link. (closes: #246258)
-- David Kimdon <dwhedon@debian.org> Sat, 1 May 2004 09:26:23 +0200
subversion (1.0.2-2) unstable; urgency=low
* Fix python interpreter in svnshell. (closes: #245473)
* Include manpage for svn_load_dirs. Thanks to Per Olofsson.
(closes: #245630)
* Remove rpath from shared libraries.
* Archs not marked to run the testsuite will now still run basic_tests.py
* Disable full testsuite on archs that have passed it for 1.0.2-1.
-- David Kimdon <dwhedon@debian.org> Fri, 23 Apr 2004 20:53:43 +0200
subversion (1.0.2-1) unstable; urgency=low
* New upstream release.
* fix assertion failure in vwrite_tuple() (closes: #241076)
* Remove shlibs.local (closes: #244466)
* Put back in svnshell, patch the error messages so they are not
confusing (closes: #234462).
* Point to /usr/bin/svnshell as an example to help get started using
the pythong bindings. (closes: #239924)
* subversion now suggests subversion-tools. This may make it easier
to find the tools contained in subversion-tools. (closes: #243917)
-- David Kimdon <dwhedon@debian.org> Sun, 18 Apr 2004 16:09:55 +0200
subversion (1.0.1-3) unstable; urgency=low
* Fix python2.3-subversion and subversion-tools priority so they are
the same as the priorities in the override file.
* Fix libtool problem by no longer doing the LIBTOOL_IS_A_FOOL
hack. (closes: #242460)
* Fix hard-coded link in debian/rules to link with ptoper swig.
-- David Kimdon <dwhedon@debian.org> Sat, 3 Apr 2004 11:13:29 +0200
subversion (1.0.1-2) unstable; urgency=low
* Apply changes up to the current head of the 1.0.x branch.
This line is making its way to become 1.0.2. The diff was
obtained like this:
svn diff http://svn.collab.net/repos/svn/tags/1.0.1 \
http://svn.collab.net/repos/svn/branches/1.0.x@9275
- Fix recursive propset (closes: #238558)
* Increase swig build dependancy to 1.3.21-2 so we get a working
dependancy. (closes: #237230)
-- David Kimdon <dwhedon@debian.org> Fri, 2 Apr 2004 20:19:46 +0200
subversion (1.0.1-1) unstable; urgency=low
* New upstream release.
* Change libsvn0-dev and subversion-tools priority to extra so that
there is no longer a disparity between the override file and the
control file.
* cvs2svn is no longer part of this package, request for package filed,
see http://bugs.debian.org/237934 .
* libswig1.3 provides an incorrect shlibs file, add proper dependancies
to debian/shlibs.local (closes: #220107)
-- David Kimdon <dwhedon@debian.org> Thu, 11 Mar 2004 12:21:33 +0100
subversion (1.0.0-2) unstable; urgency=low
* Apply changes up to the current head of the 1.0.x branch.
This line is making its way to become 1.0.1 which is expected
to be released soon. The diff was obtained like this:
svn diff http://svn.collab.net/repos/svn/tags/1.0.0 \
http://svn.collab.net/repos/svn/branches/1.0.x@8939
- Fix directory walk ordering on filesystems that don't return
'.' first. (closes: #231364)
- Many other fixes.
* Fix description of the subversion book (it is a version control,
not a revision control system)
* Remove local copy of patchsys-quilt.mk and add version to quilt build-dep.
* Don't strip binaries if 'nostrip' is in DEB_BUILD_OPTIONS.
* Patch from Erno Kuusela to 50vc-svn.el so subversion vc backend doesn't
supersede an existing default.
* Don't ship .pyc files in pythonX.Y-subversion. These files should instead
be generated in the postinst. (closes: #236170)
* Detect if debian/control is invalid. If invalid then recreate it and
exit failure telling the user to try again. (closes: #204253)
* Add debian/shlibs.local which needs to stay around until #231659
is fixed (closes: #234932).
* Fix broken stamp files that were among other things making the build
execute the configure and autogen rules unnecessarily.
* Update to policy 3.6.1 (no changes).
-- David Kimdon <dwhedon@debian.org> Mon, 23 Feb 2004 22:32:22 +0100
subversion (1.0.0-1) unstable; urgency=low
* New upstream release.
- INSTALL no longer says Subversion is alpha. (closes: #232945)
- Remove cvs2svn manpage.
* Fix formatting of NEWS.Debian. (closes: #232940)
* Put version in shlibs file. In the last upload I removed all version
info from the shlibs file rather than converting = to >=.
* Enable testsuite on many archs.
* Build with srcdir == builddir. This fixes some problems in the
perl bindings and generally makes the build system cleaner.
* Remove svnadmin-static. With the build system changes it wasn't
easy to keep it and we won't need it for a while if ever.
-- David Kimdon <dwhedon@debian.org> Sat, 21 Feb 2004 08:49:04 +0100
subversion (0.37.0-3) unstable; urgency=low
* When saying you need to dump/reload your repository it is helpful
to provide the path to the manual which describes how to do so.
(closes: #231176)
* Include README and HACKING. (closes: #218052)
* Mention to abbreviation 'svn' in short package descriptions.
(closes: #231698)
* shlibs file now creates a >= dependancy rather than a strict =.
(closes: #231681)
* Don't include svnshell. It is just an example of how to use the
bindings and isn't for general consumption. (closes: #230534)
* New package libsvn-core-perl. (closes: #208935)
* Fix doc build by giving the new path to the docbook stylesheets.
(closes: #231981)
* Start using 'quilt' and part of 'cdbs' to maintain separate pataches
within the source package.
* Fix default repos templates. (closes: #210901)
* Update swig build-dep to >= 1.3.21. This isn't actually required
by Subversion but I have some current Subversion bug reports that
indicate mixing 1.3.19 builds with 1.3.21 systems may cause problems.
* Pass fulll path the swig to configure so as to ensure we use the swig
from the Debian package.
* Don't pass broken CFLAGS to swig wrapper build (closes: #232591)
-- David Kimdon <dwhedon@debian.org> Sat, 7 Feb 2004 00:00:41 +0100
subversion (0.37.0-2) unstable; urgency=low
* Remove more references to Subversion being alpha (closes: #230744)
* Fix up debian/build.sh so the source package has all necessary files.
(closes: #230948)
* It looks like all archs have built the new swig now, so try this build
again (closes: #230955)
* NEWS.Debian and README.Debian made references to subversion
0.35.1-1 which was never uploaded. Fix those references so they point
to 0.37.0-1.
-- David Kimdon <dwhedon@debian.org> Mon, 2 Feb 2004 19:56:12 +0100
subversion (0.37.0-1) unstable; urgency=low
** NOTE: Repository dump/reload required. See NEWS.Debian **
* New upstream release.
- Subversion is getting close to the 1.0 release (closes: #193062)
- svnserve ssh now accepts user@host (closes: #202885)
* Rebuild against new libapr. (closes: #230311)
* doc build has changed since the last release, update so it still builds.
* Add build-conflicts against broken libtool 1.5-6.
* Don't build book since the source distribution already provides
us with a built book.
* Build with Berkeley DB 4.2.
* Increase required apache2 version to 2.0.48-7 so we build with the
same version of Berkeley DB.
* No longer install binaries that include debug symbols.
* Autogenerated cruft is no longer part of the source package's diff.
* Update debian/copyright notice for 2004.
* The default /etc/subversion/config and /etc/subversion/servers are now
generated as part of the build.
* Link libsvn_swig_py properly. (closes: #220107)
* Remove note from debian/control saying that this is an alpha release.
-- David Kimdon <dwhedon@debian.org> Tue, 18 Nov 2003 21:39:50 +0100
subversion (0.33.0-1) unstable; urgency=low
* New upstream release. (closes: #220672)
- fix internal diff library (closes: #218406, #220474)
- cvs2svn fixed (closes: #216868)
* Change build dependancy from apache2-devb to apache2-threaded-dev.
* Remove hack to get around broken apr-config now that bug #197685 is
fixed.
* Build depend on docbook-xsl rather than docbook-xsl-stylesheets.
(closes: #220788)
* Now that neon 0.24.4 is available increase build dependancy to require
it. Subversion itself doesn't require the new version but there are
enough bug fixes in that version of neon that it is better to use it.
* Enable mod_dav_fs in libapache2-svn.postinst (closes: #219620)
* Fix propchange-email.pl and commit-access-control.pl interpreter
(closes: #220692)
* Corrent python invocation in svnperms.py.
* Update /etc/subversion/{config,servers}
* Update debian/copyright. Re-sync with current upstream license (remove
reference to expat-lite, add reference to apr-util). Fix download
URL to point only to http://subversion.tigris.org rather than trying
to show the exact URL since that can change.
-- David Kimdon <dwhedon@debian.org> Sat, 15 Nov 2003 22:29:33 +0100
subversion (0.32.1-1) unstable; urgency=low
* New upstream release.
New manpages. (closes: #206646)
* The source package shouldn't be in Debian native format. (closes: #216514)
* Update default /etc/apache2/mods-available/dav_svn.conf with some better
comments and bring it up to date with current required syntax.
* Move last dump/reload notes from NEWS.Debian into README.Debian since it
isn't news anymore.
-- David Kimdon <dwhedon@debian.org> Sun, 19 Oct 2003 19:22:52 +0200
subversion (0.31.0-1) unstable; urgency=low
* New upstream release.
* Remove Matt Kraai from Uploaders field. Thanks for all the help
Matt!
* Wrote debian/tools/svn-make-config.c which is a tool that helps to
create default config files. Maybe this can be included upstream
somehow. Update /etc/subversion/{config,servers}
* Include svnadmin-static manpage.
-- David Kimdon <dwhedon@debian.org> Tue, 7 Oct 2003 07:03:12 +0200
subversion (0.30.0-2) unstable; urgency=low
* Adjust dynamic linker search path and location of svnversion
binary so the book build doesn't generate a spurious error message.
As a bonus the version number in the built doc should be correct
now instead of saying 'Draft'.
* Set XSL_DIR when building the docs so we can find things like
docbook.xsl. It appears as though this succeeded when I built
0.30.0-1 because make didn't need to recreate the documentation
completely. On the autobuilders this was not the case.
(closes: #213116)
-- David Kimdon <dwhedon@debian.org> Sun, 28 Sep 2003 21:24:55 +0200
subversion (0.30.0-1) unstable; urgency=low
* New upstream release.
* Update /etc/subversion/{config,servers}
-- David Kimdon <dwhedon@debian.org> Wed, 24 Sep 2003 22:15:17 +0200
subversion (0.29.0-2) unstable; urgency=low
* Force neon build dependancy and libsvn0-dev dependancy to libneon24.
In reality neon 0.23.9 or greater will work, but since we need to
hard-code the version in the libsvn0-dev dependnacy it is simpler to just
force libneon24. (closes: #206031)
* Disable testsuite on archs where it has passed.
* Remove unneeded, crufty shlibs.local.
* Make debian/control read-only to discourage edits to it rather than
debian/control.in. (closes: #211091)
* Drop debhelper build dependancy back to >=3 so it is easier to
build the package on old systems.
* Actually install NEWS.Debian rather than having it sit in the
source package where no one can see it. (closes: #210684, #210822)
* Update /etc/subversion/config and /etc/subversion/servers
* Make package descriptions more clear and detailed. (closes: #210065)
* Fix commit-email.pl (closes: #211577)
* Remove extra hyphen in subversion.preinst rm's and make a note
about why we are doing the rm.
-- David Kimdon <dwhedon@debian.org> Sun, 14 Sep 2003 09:04:35 +0000
subversion (0.29.0-1) unstable; urgency=low
* New upstream release:
- Work with neon 0.24 (closes: #206031).
- Handle tool rearrangment, thanks to Kevin M. Rosenberg (closes:
#208813).
* Require debhelper 4.1.51 or later to install NEWS.Debian.
-- Matt Kraai <kraai@debian.org> Fri, 05 Sep 2003 16:14:51 -0700
subversion (0.27.0-1) unstable; urgency=low
* Merge multi-line depends and build-depends fields (closes: #203413).
* Fix verb conjugations in libapache2-svn's description (closes:
#203417).
* Change Apache location from /svn/repos to /svn (closes: #203301).
* Change the default repository location to /var/lib/svn.
* Force dependencies on libsvn0 to require the same version that was
used to build (closes: #203454).
* Move svnindex.css and svnindex.xsl to /var/www/apache2-default in
libapache2-svn (closes: #203749).
* Include "svn" in the description of subversion (closes: #204179).
* Regenerate control (closes: #205311).
-- Matt Kraai <kraai@debian.org> Thu, 14 Aug 2003 16:22:04 -0700
subversion (0.26.0-1) unstable; urgency=low
* Add self to Uploaders.
* New upstream release:
- Handle absolute paths in svn_load_dirs.pl (closes: #187331).
- Call Cmd.__init__ in svnshell.py (closes: #198140).
- Handle paths containing quotes in cvs2svn (closes: #201290).
* Build-depend on apache2-dev (>= 2.0.47), libapr0-dev (>= 2.0.47), and
libneon23-dev (>= 0.23.9).
* Include fixes from 0.25-0.1 (closes: #198304, #199015, #199710,
#200657, #201009).
* Add perl (>= 5.8.0-7) to subversion-tools's dependencies (closes:
#191138).
* Add liburi-perl (>= 1.17-1) to subversion-tools's dependencies
(closes: #198143).
* Rename libapache2-dav-svn to libapache2-svn and include mod_authz_svn
(closes: #198182).
-- Matt Kraai <kraai@debian.org> Thu, 24 Jul 2003 05:55:37 -0700
subversion (0.25-0.1) unstable; urgency=low
* Non-maintainer upload.
* New upstream release.
* Add missing files to python2.2-subversion (closes: #199015).
* Make subversion-tools replace subversion (<< 0.22.1-1)
(closes: #198304).
-- Matt Kraai <kraai@debian.org> Sat, 12 Jul 2003 15:29:45 +0200
subversion (0.24.2-1) unstable; urgency=low
* New upstream release
* Fix quoting error in debian/rules that was breaking the swig build.
* Add shlibs.local to work around problems like bug 197989.
-- David Kimdon <dwhedon@debian.org> Wed, 18 Jun 2003 18:06:55 -0700
subversion (0.24.1-1) unstable; urgency=low
* New upstream release :
- no long includes svn-deisgn info document (closes: #196412)
* strip svnadmin-static. It is very large and not needed for
debugging since the shared version of svnadmin can be used as long
as the package is installed.
* Follow apache2 change to module build helper (apxs -> apxs2).
(closes: #196577)
* Update apache2 and apr build dependancy.
* Build fixes thanks to Michael Cardenas <mbc@debian.org>
* Update build dependancy libsasl-dev -> libsasl2-dev.
* svn-design.info is no longer built, remove texinfo build-dep.
* Update apache2 example configuration based on input from
solo turn <soloturn99@yahoo.com> (closes: #197089)
* Don't attempt to load vc-svn when package has been removed and
only conffiles remain, patch thanks to Kalle Olavi Niemitalo <kon@iki.fi>
(closes: #193427)
* work around problem with apr-config (see bug #197685).
-- David Kimdon <dwhedon@debian.org> Sun, 1 Jun 2003 20:45:05 -0700
subversion (0.23.0-2) unstable; urgency=low
* Abort build on testsuite failure.
* Create a proper source package. (closes: #194517)
* Fix export over ra_svn. Thanks to Branden Robinson for the fix and
offering to NMU. (closes: #193060)
* Update comment-out vc-svn autoload commands to avoid problems with
xemacs. Thanks to Kalle Olavi Niemitalo <kon@iki.fi> for the
problem analysis and patch. (closes: #191632)
* Disable testsuite on archs that passed 0.23.0-1.
-- David Kimdon <dwhedon@debian.org> Thu, 22 May 2003 09:52:35 -0700
subversion (0.23.0-1) unstable; urgency=low
* New upstream release.
* Add build-dep on xsltproc, docbook-xsl-stylesheets, create
html version of book during build.
* Update to standards version 3.5.10 (no changes).
-- David Kimdon <dwhedon@debian.org> Mon, 19 May 2003 18:34:24 -0700
subversion (0.22.2-1) unstable; urgency=low
* New upstream release.
* Don't strip objects. This is a deliberate policy violation. The
goal is to lower the barrier to anyone wishing to debug this
software. See the notes in Bug#193062 for more info.
* Let debhelper create conffiles.
* Include perl dependancy information in subversion-tools package
(closes: #191138, #187324).
* Disable testsuite on archs that passed 0.22.1-1.
-- David Kimdon <dwhedon@debian.org> Tue, 13 May 2003 18:20:44 -0700
subversion (0.22.1-1) unstable; urgency=low
* New upstream release.
* Tone down the warning in the package description about data loss, simply
indicate that this software is still in development.
* Apply 0.21.0 changes to debian/control.in that were erronously applied
only to debian/control. (closes: #190353)
* Include HACKING in /usr/share/doc/subversion/. (closes: #191450)
* Don't automatically load emacs lisp files. The bindings can still be
enabled by the system administrator uncommenting the lines in
/etc/emacs/site-start.d. (closes: #190804)
* Update build dependancy to require more recent apache2-dev and
libapr0-dev (closes: #192595)
* Speed up ./debian/rules by limiting the number of times we exec dpkg.
* Add versioned build-dep on debhelper.
* Move the python script /usr/bin/svnshell from the 'subversion'
package into the 'subversion-tools' package. ('subversion-tools'
already had a python dependancy)
-- David Kimdon <dwhedon@debian.org> Thu, 8 May 2003 08:16:13 -0700
subversion (0.21.0-1) unstable; urgency=low
* New upstream release.
* Include svnshell. (closes: #187446)
* Include svnindex.css and svnindex.xsl. (closes: #185465)
* Make subversion priority optional. (closes: #188141)
* Update to policy 3.5.9 (no changes).
* Fix svn-dev.vim (closes: #187937).
* Fix emacs svn-status-mode (closes: #188706).
* Remove subversion-server package (closes: #182653). As indicated
in the bug report the subversion-server package was only necessary if
one wanted to use subversion with apache. I don't see a compelling
need for the subversion-server package, all it did is depend on
subversion, subversion-tools and libapache2-dav-svn.
-- David Kimdon <dwhedon@debian.org> Wed, 16 Apr 2003 00:37:05 -0700
subversion (0.20.1-2) unstable; urgency=low
* Fix svnversion breakage, again, sigh. This time with a fix that
is easier to maintain (no longer need to patch upstream source).
(closes: #186966)
* Fix improperly generated source package (was in Debian native format).
* Update package sections for libsvn0-dev and python2.2-subversion
based on new archive sections.
* Update debian/copyright (fix spelling of 'acknowledgment' and
extend copyright to 2003).
* Remove NEWS.Debian (was news from 0.17)
* Update /etc/subversion/[config,servers]
-- David Kimdon <dwhedon@debian.org> Mon, 31 Mar 2003 07:34:01 -0800
subversion (0.20.1-1) unstable; urgency=low
* New upstream release.
-- David Kimdon <dwhedon@debian.org> Sun, 30 Mar 2003 18:14:01 -0800
subversion (0.20-1) unstable; urgency=low
* New upstream release.
-- David Kimdon <dwhedon@debian.org> Thu, 20 Mar 2003 21:43:10 -0800
subversion (0.19.1-2) unstable; urgency=low
* Fix psvn.el autoload. (closes: #185130)
* Fix autobuild failure. (closes: #185088)
* Minor update to /etc/subversion/servers.
-- David Kimdon <dwhedon@debian.org> Mon, 17 Mar 2003 07:00:17 -0800
subversion (0.19.1-1) unstable; urgency=low
* New upstream release.
* Install psvn.el and vc-svn.el so they are autoloaded by emacs,
thanks to Martin Pool <mbp@sourcefrog.net> for a patch. (closes: #184032)
* Retiring svn-[buildpackage|inject] until I update them.
-- David Kimdon <dwhedon@debian.org> Sun, 9 Mar 2003 18:45:57 -0800
subversion (0.18.1-1) unstable; urgency=low
* New upstream minor release.
* add python fixups from woody backport
* disable testsuite for archs that have passed it
* fixup db tool path in hotbackup.py, again (closes: #182777)
-- David Kimdon <dwhedon@debian.org> Sun, 23 Feb 2003 13:22:45 -0800
subversion (0.18.0-1) unstable; urgency=low
* New upstream release. (closes: #180910)
- Use new --with-editor configure switch to set default editor to
/usr/bin/editor (closes: #162632, #164371)
- New cvs2svn manpage thanks to Robert Bihlmeyer <robbe@orcus.priv.at>
(closes: #176576)
* Fixups for woody backport
- libtool patch is back. It is only applied for the versions of libtool
that need it (such as the libtool in woody).
- make the testsuite run on woody.
* Add build-dep on libsasl-dev.
* Make subversion-tools depend on an explicit version of subversion and
python2.2-subversion (closes: #180621)
-- David Kimdon <dwhedon@debian.org> Sun, 9 Feb 2003 22:16:27 -0800
subversion (0.17.1-2) unstable; urgency=low
* The Berkeley DB update as of 0.17.1-1 requires you to run
'svnadmin recover /path/to/repos', see README.Debian for
more information.
* Include prominent note in changelog, README.Debian and
NEWS.Debian indicating steps required for Berkeley DB upgrade.
(closes: #178819)
* Don't include CHANGES twice. (closes: #178694)
* libapache2-dav-svn depends on a specific version of apache2
(closes: #178833)
* Build-Dep on apache2 packages tightened to >> 2.0.44-6 since -5
didn't have a non-interative install, this made subversion fail on
some autobuliders.
* Disable testsuite on the archetectures that passed 0.17.1-1.
* Remove version information for libapache2-dav-svn dependancy on
apache2 since apache2 is a virtual package.
-- David Kimdon <dwhedon@debian.org> Mon, 27 Jan 2003 17:02:31 -0800
subversion (0.17.1-1) unstable; urgency=low
* New upstream release.
* Build against berkeley db 4.1.24.
* Apply some changes from revs 4521:4523 so cvs2svn works.
* Include CHANGES in /usr/share/doc/subversion/. This is the upstream
summary of changes for each release.
* Compile against current libapr (closes: #177836).
* Fix path in svn_load_dirs (closes: #176610).
* Increase verbosity on testsuite so autobuilders don't kill the testsuite
due to inactivity.
* Don't create arch independant packages in the binary-arch target
(closes: #174381)
* Make testsuite run on sparc and alpha. It wasn't previously being run
due to a bug in the shell snippet that determines whether or not we want
it to run.
* Change libapache2-dav-svn dependancy from apache2-common to apache2,
we need one of the mpm's to have a working server (closes: #175902)
* Work-around for duplicate conffile entries created by debhelper.
-- David Kimdon <dwhedon@debian.org> Sun, 15 Dec 2002 11:08:02 -0800
subversion (0.16.0-1) unstable; urgency=low
* New upstream release.
* update /etc/subversion/config to include webdav compression option
* add back subversion.conffiles, it is needed for older versions of
debhelper.
* /etc/subversion/proxies renamed to /etc/subversion/servers (actually this
happenned with 0.15.0 or so but I forgot to note it here)
* upgrade to policy 3.5.8
* include the contents of tools/hook-scripts/ in subversion-tools package
(closes: #171997)
* patches from Brandon Ehle <behle@pipedreaminteractive.com> to fix swig
build
* cat tests.log on testsuite failure.
* fix the pathnames on some scripts from tools/ on install.
* compile with -Wall
* subversion-tools now depends on exim | mail-transport-agent
* sed cvs2svn at install so we find rcsparse.py (closes: #172284)
-- David Kimdon <dwhedon@debian.org> Thu, 5 Dec 2002 07:52:24 -0800
subversion (0.15.0-2) unstable; urgency=low
* Fix broken conffile (closes: #171323)
* Don't run testsuite on archs that succeeded with 0.15.0-1.
* remove subversion.conffiles until Bug#126520 is closed.
-- David Kimdon <dwhedon@debian.org> Sun, 1 Dec 2002 08:28:35 -0800
subversion (0.15.0-1) unstable; urgency=low
* New upstream release.
* Add dependancy on libdb4.0-util for subversion and libapache2-dav-svn
packages. In case a repository gets wedged we want db4.0_recover
available. Fix paths in hot-backup.py (closes: #169797, #169796)
* Doc install cleanup thanks to Jon Middleton <jjm@ixtab.org.uk>
* aprutl version checking hack, thanks to Jon Middleton <jjm@ixtab.org.uk>
* Include a statically linked svnadmin that we can copy to svnadmin-$(VERSION)
on upgrade if the repository format changes. This facilitates a
repository dump/reload.
-- David Kimdon <dwhedon@debian.org> Fri, 29 Nov 2002 10:19:14 -0800
subversion (0.14.5-1) unstable; urgency=low
* add hot-backup.py (closes: #164870)
* Make swig1.3 build-dep a versioned build-dep (closes: #166301)
* The suggested location of the passwd file for libapache2-dav-svn has
moved from /etc/svn to /etc/subversion since the command line tools
store configuration info in that directory.
* add subversion-tools package.
* Add subversion-server package. This package depends on other packages
that you probably want to have if you are setting up a Subversion server.
* Don't ship svn-design.info anymore. All the info we need can be
found in the Subversion book.
* Subversion handbook is now a xml book, "Subversion : The Definitive Guide"
include the html version of this book.
* Build fixes and updates thanks to Jon Middleton <jjm@debian.org>
* Warn users upgrading from versions prior to 0.14.3 that they need to
do a dump/reload (closes: #163092). At some point I'd like to find a
good way of better automating the conversion.
* a few lintian fixes.
-- David Kimdon <dwhedon@debian.org> Wed, 23 Oct 2002 08:01:54 -0700
subversion (0.14.3-3) unstable; urgency=low
* Put autogen back as a prerequisite for the clean target. I
erroneously removed the autogen.sh run in the last upload, this left
us with a broken libtool. (closes: #164781)
-- David Kimdon <dwhedon@debian.org> Sat, 19 Oct 2002 09:10:03 -0700
subversion (0.14.3-2) unstable; urgency=low
* Disable testsuite on archs that have already built 0.14.3-1
* new package python2.2-subversion (based on package created by
the subversion-snapshot source). These python bindings are used
by various scripts that we want to include eventually.
* libtool bug 98342 is fixed. We don't need to patch ltmain.sh anymore
(closes: #163858)
* build against new libapr0 which has a versioned shlibs file
(closes: #162814)
-- David Kimdon <dwhedon@debian.org> Wed, 25 Sep 2002 22:57:41 -0700
subversion (0.14.3-1) unstable; urgency=low
* New upstream release (closes: #158677)
- build against new libneon (closes: #160270)
- updated manpage (closes: #158834)
* make symlinks in /etc/apache2/ relative rather than absolute
(closes: #161268)
* Change priotiry (optional->extra).
* Update to standards version 3.5.7.
- honor 'nostrip' in DEB_BUILD_OPTIONS
- build with debug info by default
* include default dav_svn.conf in the proper location so
we can disable mod_dav_svn when libapache2-dav-svn is removed
(closes: #158549).
* Use /etc/subversion/config to give us proper editor behavior rather
than patching the C source as I had when I closed Bug#157129.
* Patch libsvn_subr so it respects /etc/subversion/config.
-- David Kimdon <dwhedon@debian.org> Sat, 24 Aug 2002 11:36:11 -0700
subversion (0.14.1-3) unstable; urgency=low
* rename apache module libapache-dav-svn -> libapache2-dav-svn
to indicate it is an apache2 module (closes: #158133)
* remove libapache-dav-svn dependancy on apache2, we only need to depend
on apache2-common (closes: #158132)
* cleanup handling of config.{sub|guess}
-- David Kimdon <dwhedon@debian.org> Mon, 26 Aug 2002 21:15:35 -0700
subversion (0.14.1-2) unstable; urgency=low
* Autotools fixes prompted by a failed autobuild and based on recomendations
in /usr/share/doc/autotools-dev/README.Debian.gz
- call configure with --host and --build flags based on the output of
dpkg-architecture
- symlink config.{sub|guess} during build so they are always up to date.
Add build-dep on autotools-dev.
- Call autogen.sh when cleaning the tree. Add versioned build-dep
on autoconf.
* Remove commented python package rule and python2.2-dev build-dep.
(I do plan on making the python package like in subversion-snapshot
in the future but still need to figure some things out.)
-- David Kimdon <dwhedon@debian.org> Sat, 24 Aug 2002 07:42:49 -0700
subversion (0.14.1-1) unstable; urgency=low
* New upstream version.
* some build fixes thanks to Jon Middleton <jjm@ixtab.org.uk>
* libsvn0-dev priority changed from optional to extra since
libsvn0-dev depends on extra libdb4.0-dev and policy forbids
binary dependancies on packages with lower priorities.
* libneon build dep changed (libneon-dev -> libneon21-dev)
* Conform to policy section 12.4 (Editors and Pagers) which states
that if the EDITOR variable is not set the program should use
/usr/bin/editor when necessary. (closes: #157129)
-- David Kimdon <dwhedon@debian.org> Fri, 9 Aug 2002 19:29:12 -0700
subversion (0.14.0-2) unstable; urgency=low
* Fix up descriptions to indicate this is no longer pre-alpha,
this is an alpha realease.
* remove version dependancy's from build-deps and libapache-dav-svn deps,
the versions cause more trouble than they are worth and the proper
dependancy will be realized (for the most part) by way of libapr.
* rebuild with new apache2.
-- David Kimdon <dwhedon@debian.org> Tue, 6 Aug 2002 20:51:36 -0700
subversion (0.14.0-1) unstable; urgency=low
* New upstream. Alpha release.
- fix svn merge segfault (closes: #152461)
- requires new libneon (closes: #152622)
* Updates to svn-[inject|buildpackage].
* Install /etc/bash_completion.d/subversion. (This allows for
programmable completion for the svn command under bash.)
* Include svn-handbook and svn-design, register properly with info
directory (closes: #153262)
* libsvn -> libsvn0 and other fixes base on recommendations in
Junichi Uekawa's Debian Library Packaging guide.
* Simplify libapache-dav-svn.postrm.
* Add url to package descriptions.
* add build-dep on python-dev (closes: #153199)
* remove build-dep on texi2html and texinfo since build documents are
available in the distribution.
* enable mod_dav in libapache_dav_svn, thanks to minus <minus@toneby.com>
for catching the bug.
-- David Kimdon <dwhedon@debian.org> Sun, 30 Jun 2002 19:44:50 -0700
subversion (0.13.0-1) unstable; urgency=low
* New upstream.
* Actually uploading for real (closes: #97234)
* Build debug version if DEB_BUILD_OPTIONS says to.
* Include hack to fix broken apxs2, we include our own version of apxs2
and use that during the build. This will go away when apache2-dev
is fixed, that will likely be the release after 2.0.37-2.
* include selection from INSTALL in README.Debian
* Make warnings in debian/control about this being in-development,
pre-alpha software more conspicuous.
* Create /etc/apache2/mods-enabled/dav_svn.{load|conf} symlinks in
libapache-dav-svn.postinst if appropriate files exist in
/etc/apache2/mods-available. Delete these links in
libapache-dav-svn.postrm.
* include identical README.Debian in subversion and libapache-dav-svn
the info is pertinant to both packages.
* write svnadmin manpage
-- David Kimdon <dwhedon@debian.org> Sat, 8 Jun 2002 08:19:04 -0700
subversion (0.12.0-1) unstable; urgency=low
* New upstream.
* decided to delete apr/, apr-util/ and neon/ subdirs from original tarball.
We aren't using them, they just take up space.
* include experimental svn-inject and svn-buildpackage
* run testsuite during build
* add build-dep on python so we can run the testsuite
* update package descriptions
* bring back libsvn package
-- David Kimdon <dwhedon@debian.org> Sat, 4 May 2002 09:41:54 -0700
subversion (0.11.1-1) unstable; urgency=low
* New upstream.
* Now we aren't deleting the apr/ and neon/ subdirs, even though
we don't use them.
* add zlib1g-dev, bison, and patch to build depends.
* files previously in libsvn package are now in subversion package,
there aren't any other projects that use those libraries.
* build in build-svn to keep source tree cleaner.
* subversion-server package renamed to libapache-dav-svn
-- David Kimdon <dwhedon@debian.org> Fri, 12 Apr 2002 20:16:22 -0700
subversion (0.10.2-1) unstable; urgency=low
* New upstream.
* build against new apache2, neon, Berkeley DB
* stop using DBS, it was getting in my way.
* work around libtool bug #98342 with patch from the BTS.
* use Debian's libexpat rather than the included one.
* no longer using autoconf as part of the build.
-- David Kimdon <dwhedon@debian.org> Wed, 20 Feb 2002 22:52:29 -0800
subversion (0.8.0-1) unstable; urgency=low
* New upstream.
* track releases now rather than snapshots.
* build-depend on libtool, autoconf
* use dbs build scripts from package rather than on filesystem
* /etc/apache2/modules->/etc/apache2/mods-available
* rename packages svn-[server|client]-svn
-> subversion-[server|client]-svn
* change LIBTOOL_IS_A_FOOL hack since libsvn_ra wasn't building
properly
* create /etc/svn/ in subversion-server
-- David Kimdon <dwhedon@debian.org> Fri, 23 Nov 2001 20:37:16 -0800
subversion-svn (473-1) unstable; urgency=low
* New upstream.
* build against pre-release apache-2.0.28 package
* install manpages and info pages.
* don't strip libmod_dav_svn, otherwise apache can't load it
* get the module name right in dav_svn.load
* create repository in /var/svn in postinst if directory
doesn't exist and set up symlinks for apache2
* remove dav_svn.conf on purge
* remove rpath
* subversion Debian package is now self-hosting
-- David Kimdon <dwhedon@debian.org> Fri, 16 Nov 2001 22:01:32 -0800
subversion-svn (282-2) unstable; urgency=low
* libexpat -> libsvn_expat to avoid conflict.
* don't use maintainer-mode b/c apache2 doesn't
* override mod_dav_svn install rule so we can put it in the right
place.
-- David Kimdon <dwhedon@debian.org> Tue, 23 Oct 2001 08:32:55 -0700
subversion-svn (282-1) unstable; urgency=low
* New upstream version.
-- David Kimdon <dwhedon@debian.org> Mon, 22 Oct 2001 15:35:25 -0700
subversion-svn (256-1) unstable; urgency=low
* New upstream, various packaging fixes.
-- David Kimdon <dwhedon@debian.org> Wed, 17 Oct 2001 14:02:58 -0700
subversion-svn (252-1) unstable; urgency=low
* Initial release.
-- David Kimdon <dwhedon@debian.org> Fri, 28 Sep 2001 20:31:48 -0700
|