File: changelog

package info (click to toggle)
xapian-bindings 1.4.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 21,436 kB
  • sloc: cpp: 379,853; python: 10,780; cs: 9,529; java: 6,949; sh: 4,629; perl: 4,435; makefile: 1,274; ruby: 1,028; php: 586; tcl: 246
file content (1265 lines) | stat: -rw-r--r-- 49,434 bytes parent folder | download
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
xapian-bindings (1.4.29-1) unstable; urgency=medium

  * New upstream release.
  * debian/control.in: Mark conformance with policy 4.7.2.

 -- Olly Betts <olly@survex.com>  Sun, 20 Apr 2025 09:20:16 +1200

xapian-bindings (1.4.25-1) unstable; urgency=medium

  * New upstream release:
    + debian/control.in: Add pkgconf to Build-Depends, needed since upstream
      1.4.24.
  * debian/clean: Remove python3/__pycache__/ on clean.  (Closes: #1047428)
  * debian/copyright: Update copyright holders and years.

 -- Olly Betts <olly@survex.com>  Wed, 10 Apr 2024 10:45:09 +1200

xapian-bindings (1.4.22-2) unstable; urgency=medium

  * debian/control.in: Mark conformance with policy 4.7.0.
  * debian/rules: Adjust ruby-xapian generated "Depends" to pick up t64
    suffix.  (Closes: #1068599)

 -- Olly Betts <olly@survex.com>  Mon, 08 Apr 2024 17:05:15 +1200

xapian-bindings (1.4.22-1) unstable; urgency=medium

  * debian/control.in: Mark conformance with policy 4.6.2.
  * New upstream release.

 -- Olly Betts <olly@survex.com>  Fri, 03 Feb 2023 10:07:50 +1300

xapian-bindings (1.4.21-1) unstable; urgency=medium

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Fri, 23 Sep 2022 17:47:09 +1200

xapian-bindings (1.4.20-2) unstable; urgency=medium

  * debian/rules,debian/python3-xapian.install: Update for removal of
    Python 3.9. (Closes: #1015340)

 -- Olly Betts <olly@survex.com>  Wed, 20 Jul 2022 11:34:17 +1200

xapian-bindings (1.4.20-1) unstable; urgency=medium

  * New upstream release.
  * debian/python3-xapian.install: Update path where module is installed by
    upstream build system (which has changed due to switch away from
    distutils).
  * debian/control.in: Mark conformance with policy 4.6.1.

 -- Olly Betts <olly@survex.com>  Fri, 08 Jul 2022 15:16:20 +1200

xapian-bindings (1.4.18-2) unstable; urgency=medium

  * debian/rules: Fix to work with Ruby 3.0. (Closes: #997909)

 -- Olly Betts <olly@survex.com>  Wed, 27 Oct 2021 12:09:47 +1300

xapian-bindings (1.4.18-1) unstable; urgency=medium

  * New upstream release.
  * Add support for packaging perl bindings.  This is disabled by default
    since for Xapian 1.4.x the perl bindings here are still flagged as
    experimental and Search::Xapian (packaged separately) is the stable
    option.
  * debian/php7-xapian.postinst: Enable the module on first install.
    Reported by sylock.
  * debian/rules: Drop workaround for long-fixed bug in the PHP7 bindings
    (comment notes "Can be dropped once 1.4.5 is released and packaged"!)
  * debian/rules: Stop telling pyversions/py3versions to check debian/control
    since we aren't specifying X-Python-Version/X-Python3-Version there
    anyway, and the check has to be hacked around when generating
    debian/control in a clean tree.  Thanks due to Gaurav Arora.
  * debian/control.in: Mark conformance with policy 4.5.1.
  * Update to debhelper compat level 12.

 -- Olly Betts <olly@survex.com>  Wed, 03 Feb 2021 17:06:52 +1300

xapian-bindings (1.4.15-1) unstable; urgency=medium

  * New upstream release
    + debian/patches/ruby-2.7.patch: Drop patch included upstream.
  * Drop Python 2 bindings (python-xapian binary package).
    (Closes: #938836, #955072, #953949)

 -- Olly Betts <olly@survex.com>  Tue, 07 Apr 2020 09:44:14 +1200

xapian-bindings (1.4.14-1) unstable; urgency=medium

  * New upstream release
    + debian/patches/ruby2.4-compat.patch: Drop patch included upstream.
  * debian/patches/ruby-2.7.patch: Fix to work with Ruby 2.7. (Closes: #950739)
  * debian/tests/control: Drop Python 2 autopkgtest.  (Closes: #943410)
  * debian/control.in: Mark conformance with policy 4.4.0.

 -- Olly Betts <olly@survex.com>  Sat, 08 Feb 2020 12:09:53 +1300

xapian-bindings (1.4.12-2) unstable; urgency=medium

  * debian/patches/ruby2.4-compat.patch: Cherry-pick patch from upstream
    to restore compatibility with Ruby 2.4.  Not important for the package
    in unstable or buster, but it is for backports to stretch, etc.

 -- Olly Betts <olly@survex.com>  Fri, 23 Aug 2019 14:48:28 +1200

xapian-bindings (1.4.12-1) unstable; urgency=medium

  * New upstream release
  * debian/control.in: Mark conformance with policy 4.4.0.

 -- Olly Betts <olly@survex.com>  Fri, 23 Aug 2019 10:53:26 +1200

xapian-bindings (1.4.11-2) unstable; urgency=medium

  * debian/control: Needs libxapian-dev (>= 1.4.11) for
    Xapian::MSet::SNIPPET_CJK_NGRAM.

 -- Olly Betts <olly@survex.com>  Sat, 02 Mar 2019 17:47:05 +1300

xapian-bindings (1.4.11-1) unstable; urgency=medium

  * New upstream release
  * debian/control.in: Mark conformance with policy 4.3.0.

 -- Olly Betts <olly@survex.com>  Sat, 02 Mar 2019 15:58:57 +1300

xapian-bindings (1.4.10-1) unstable; urgency=medium

  * New upstream release
  * Enable Multi-Arch for Java bindings.
  * debian/control.in: Specify "Rules-Requires-Root: no"

 -- Olly Betts <olly@survex.com>  Tue, 12 Feb 2019 13:11:48 +1300

xapian-bindings (1.4.9-1) unstable; urgency=medium

  * New upstream release
    + debian/patches/php7.3-compat.patch: Included upstream so drop.

 -- Olly Betts <olly@survex.com>  Sat, 03 Nov 2018 15:08:06 +1300

xapian-bindings (1.4.8-1) unstable; urgency=medium

  * New upstream release
  * debian/rules: xapian-core now has a shlibs file so drop hack here to add
    versioning to the libxapian dependency.  (Closes: #912105)
  * debian/control.in: Mark conformance with policy 4.2.1.
  * debian/patches/php7.3-compat.patch: Add patch for PHP 7.3 compatibility.

 -- Olly Betts <olly@survex.com>  Mon, 29 Oct 2018 12:44:10 +1300

xapian-bindings (1.4.7-2) unstable; urgency=medium

  * debian/control-ruby.in: Correct typo: $${ruby:Versions} -> ${ruby:Versions}
  * debian/tests/control: Need default-jdk for the java bindings test.
  * debian/tests/control: Add explicit dependencies for tests, so each test
    only depends on the bindings it is actually testing.

 -- Olly Betts <olly@survex.com>  Sat, 21 Jul 2018 07:19:37 +1200

xapian-bindings (1.4.7-1) unstable; urgency=medium

  * New upstream release
  * Add autopkgtest which checks that each of bindings can be imported or
    equivalent.
  * debian/control.in: Mark conformance with policy 4.1.5.

 -- Olly Betts <olly@survex.com>  Fri, 20 Jul 2018 16:02:35 +1200

xapian-bindings (1.4.6-1) unstable; urgency=medium

  * New upstream release
  * debian/rules: Take PHP7_VERSIONS from environment variable if set.
  * debian/control.in: Declare conformance with standards-version 4.1.4.
  * debian/control.in: Update Vcs-* to point to salsa.d.o.
  * Drop "X-Python-Version: 2.3" - Debian oldstable satisfies this requirement
    so it's no longer useful.
  * debian/ruby-xapian.doc-base: Remove unused wildcard pattern to silence
    Lintian error.

 -- Olly Betts <olly@survex.com>  Tue, 03 Jul 2018 12:37:54 +1200

xapian-bindings (1.4.5-1) unstable; urgency=medium

  * New upstream release:
    + Fixes FTBFS on hppa.
  * Add support for building php7-xapian package, disabled by default
    due to GPL vs PHP licence incompatibility.

 -- Olly Betts <olly@survex.com>  Wed, 01 Nov 2017 14:42:26 +1300

xapian-bindings (1.4.4-3) unstable; urgency=medium

  * Upload to unstable.
  * debian/control.in: Declare conformance with standards-version 4.0.0.
  * debian/watch: Update to use https links.

 -- Olly Betts <olly@survex.com>  Sat, 01 Jul 2017 14:55:29 +1200

xapian-bindings (1.4.4-2) experimental; urgency=medium

  * debian/control: Needs libxapian-dev (>= 1.4.4) for elimination of
    superfluous "0 *" from query descriptions.

 -- Olly Betts <olly@survex.com>  Wed, 26 Apr 2017 16:01:17 +1200

xapian-bindings (1.4.4-1) experimental; urgency=medium

  * New upstream release
    + Fix QueryParser methods add_boolean_prefix() and add_prefix() to accept
      a string for the `grouping` parameter.  (Closes: #849722)

 -- Olly Betts <olly@survex.com>  Wed, 26 Apr 2017 11:14:16 +1200

xapian-bindings (1.4.3-1) unstable; urgency=medium

  * New upstream release
  * debian/copyright: Update.

 -- Olly Betts <olly@survex.com>  Wed, 25 Jan 2017 16:00:05 +1300

xapian-bindings (1.4.2-2) unstable; urgency=medium

  * debian/control: Needs libxapian-dev (>= 1.4.2) for
    Xapian::DOC_ASSUME_VALID.

 -- Olly Betts <olly@survex.com>  Mon, 26 Dec 2016 22:41:42 +1300

xapian-bindings (1.4.2-1) unstable; urgency=medium

  * New upstream release:
    + Disable parallel make for java subdirectory as it causes random build
      failures.  Closes: #848733 (Thanks to Lucas Nussbaum for diagnosing).

 -- Olly Betts <olly@survex.com>  Mon, 26 Dec 2016 21:24:14 +1300

xapian-bindings (1.4.1-1) unstable; urgency=medium

  * New upstream release
    + Incorporates patch bsd-java-jni-dir.patch so drop.
    + Incorporates fixup-swig-py2-wrapper and debian/fixup-swig-py3-wrapper
      scripts do drop these from the Debian packaging.
  * ruby-xapian: rdoc creates timestamp file "created.rid" - don't install it
    to make the build reproducible.
  * libxapian-java-doc: Mark as "Multi-Arch: foreign".
  * debian/rules: Upstream now installs jar file as xapian.jar so drop code to
    rename it.
  * debian/rules: Add workaround so "make check" works with srcdir!=builddir
    for python and python3 bindings.

 -- Olly Betts <olly@survex.com>  Tue, 22 Nov 2016 14:28:09 +1300

xapian-bindings (1.4.0-7) unstable; urgency=medium

  * Revert change from 1.4.0-5 - needs to be done in xapian-core not here:
    - Use dh_makeshlibs -V instead of ad-hoc rough equivalent.
  * Fix FTBFS on kBSD due to Java bindings - new patch bsd-java-jni-dir.patch
    taken from upstream git.
  * debian/fixup-swig-py2-wrapper,debian/fixup-swig-py3-wrapper: Fix repr() to
    not return None.  Reported by Stuart Prescott on IRC.
  * debian/control-java.in: Fix Python->Java (copy+paste typo)
    (Closes: #839286)

 -- Olly Betts <olly@survex.com>  Sun, 02 Oct 2016 12:10:27 +1300

xapian-bindings (1.4.0-6) unstable; urgency=medium

  * Upload to unstable.

 -- Olly Betts <olly@survex.com>  Fri, 30 Sep 2016 13:26:39 +1300

xapian-bindings (1.4.0-5) experimental; urgency=medium

  * Use dh_makeshlibs -V instead of ad-hoc rough equivalent.

 -- Olly Betts <olly@survex.com>  Sat, 17 Sep 2016 09:16:22 +1200

xapian-bindings (1.4.0-4) experimental; urgency=medium

  * control-java.in: Fix bugs in dependency added in previous upload, masked
    by failure to actually regenerate control.

 -- Olly Betts <olly@survex.com>  Mon, 15 Aug 2016 14:26:50 +1200

xapian-bindings (1.4.0-3) experimental; urgency=medium

  * debian/rules: Fix up import failures of Python and Python3 bindings.
    (Closes: #834201)
  * control-java.in: Make libxapian-java depend on libxapian-jni.
  * Avoid using "debian/not-installed" as it is not supported by older
    debhelper, so is an obstacle to backporting.

 -- Olly Betts <olly@survex.com>  Mon, 15 Aug 2016 12:23:44 +1200

xapian-bindings (1.4.0-2) experimental; urgency=medium

  * Rework packaging to use dh:
    + Drop lingering traces of support for Ruby 1.x.
    + Support building backports for codenames without Ruby >= 2.1.
  * Package Java bindings.
  * control-python3.in: "Python" -> "Python3" in description.

 -- Olly Betts <olly@survex.com>  Fri, 12 Aug 2016 18:14:11 +1200

xapian-bindings (1.4.0-1) experimental; urgency=medium

  * New upstream release series:
    + Package new bindings for python3. (Closes: #647441, LP: 823227):
    + ruby docs now built during package build. (Closes: #782270)
  * debian/control.in: Declare conformance with "Standards-Version: 3.9.8".
  * debian/control.in: Use https for "Vcs-git".
  * debian/control.in: Use cgit instead of gitweb for "Vcs-Browser".
  * debian/copyright: Update.

 -- Olly Betts <olly@survex.com>  Fri, 05 Aug 2016 16:44:30 +1200

xapian-bindings (1.2.23-1) unstable; urgency=medium

  * New upstream release.
  * ruby-xapian now depends on libruby2.x (with alternates if built for
    multiple ruby versions) instead of ruby | ruby-interpeter.
    (Closes: #816775)

 -- Olly Betts <olly@survex.com>  Thu, 07 Apr 2016 16:01:27 +1200

xapian-bindings (1.2.22-2) unstable; urgency=medium

  * debian/rules: Avoid generating multiple "X-Dummy:" headers.
  * debian/rules: Avoid generating empty "Provides:" in some situations.
  * debian/control.in: http->https in "Vcs-Browser:" and "Homepage:".
  * debian/copyright,debian/watch: http->https for xapian.org.
  * debian/control.in: "Standards-Version: 3.9.7" (no changes required).
  * Update to debhelper compat level 9.

 -- Olly Betts <olly@survex.com>  Fri, 22 Jan 2016 10:56:07 +1300

xapian-bindings (1.2.22-1) unstable; urgency=medium

  * New upstream release.
  * Ack NMU; adjust changes so building backports should just work.
  * debian/rules: Align handling of xapian-core dependency with xapian-omega
    packaging.
  * debian/copyright: Update copyright years for packaging.

 -- Olly Betts <olly@survex.com>  Thu, 21 Jan 2016 15:26:09 +1300

xapian-bindings (1.2.21-2.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Build-depend on libxapian-dev (>= 1.2.21-1.2), g++ (>= 4:5.2)
  * Fix rewriting the dependency on libxapianN.

 -- Matthias Klose <doko@debian.org>  Mon, 03 Aug 2015 16:24:58 +0200

xapian-bindings (1.2.21-2) unstable; urgency=medium

  * debian/rules: Add BD on ruby-test-unit to fix FTBFS with Ruby 2.2, which
    unbundled this module (fixes FTBFS reported in #778177 by Daniel
    Schepler).
  * debian/control-python.in: Remove @XB_PYTHON_VERSION@ left over from code
    removed in 1.2.21-1.

 -- Olly Betts <olly@survex.com>  Mon, 29 Jun 2015 16:05:53 +1200

xapian-bindings (1.2.21-1) unstable; urgency=medium

  * New upstream release.
  * debian/rules: Strip out special cases for obsolete Debian and Ubuntu
    releases.
  * debian/ruby-xapian.preinst: Drop cleanup for upgrade failure from 1.2.15-4
    to 1.2.16-1.  Realistically, anyone affected will have had it resolved by
    upgrading to a version containing this clean-up, as the jessie release has
    happened since.

 -- Olly Betts <olly@survex.com>  Mon, 25 May 2015 15:08:14 +1200

xapian-bindings (1.2.19-2) unstable; urgency=medium

  * debian/ruby-xapian.preinst: Add missing line continuation to fix
    workaround for upgrade failures from versions 1.2.15-4 to 1.2.16-1.
    (Closes: #782269)

 -- Olly Betts <olly@survex.com>  Fri, 10 Apr 2015 08:31:12 +1200

xapian-bindings (1.2.19-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Use dh_autotools-dev_updateconfig and
    dh_autotools-dev_restoreconfig.
  * debian/control.in: Declare conformance with "Standards-Version: 3.9.6".

 -- Olly Betts <olly@survex.com>  Thu, 23 Oct 2014 17:44:00 +0000

xapian-bindings (1.2.18-1) unstable; urgency=medium

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Sun, 29 Jun 2014 16:56:01 +1200

xapian-bindings (1.2.17-3) unstable; urgency=medium

  * Fix reversed conditional for adding pre-ruby-all-dev ruby BDs.
    (Closes: #748749)

 -- Olly Betts <olly@survex.com>  Sun, 04 May 2014 18:25:44 +1200

xapian-bindings (1.2.17-2) unstable; urgency=medium

  * Check debian/bindings-to-packages for a list of bindings to package, to
    allow people to easily build subsets of the binary packages.
  * Always regenerate debian/control on "debian/rules maint" as the
    dependencies are complex and the work to regenerate is minor.
  * Where available, use ruby-all-dev and ruby-all as BDs and use
    ruby_debian_dev.rb to determine the ruby versions to build for.
    (Closes: #745924)

 -- Olly Betts <olly@survex.com>  Sun, 04 May 2014 17:15:00 +1300

xapian-bindings (1.2.17-1) unstable; urgency=medium

  * New upstream release.
    + Drop passing RUBY_INC_ARCH to configure which is no longer required.
  * debian/rules: Drop bindings for ruby1.8.  (Closes: #735417)
  * Add workaround to allow smooth upgrades from ruby-xapian 1.2.15-4 to
    1.2.16-1 which installed duplicate doc-base files.  (Closes: #735418)
  * debian/watch: Add pgpsigurlmangle setting to automatically verify
    detached GPG signatures on upstream release tarballs.

 -- Olly Betts <olly@survex.com>  Fri, 31 Jan 2014 14:57:39 +1300

xapian-bindings (1.2.16-2) unstable; urgency=low

  * debian/rules: Fix accidentally hard-coded "x86_64-linux-gnu" in path of
    file to install.

 -- Olly Betts <olly@survex.com>  Fri, 06 Dec 2013 19:20:24 +1300

xapian-bindings (1.2.16-1) unstable; urgency=low

  * New upstream release.
  * Rename ".in" templates for doc-base files so they aren't processed by
    dh_installdocs.  (Closes: #722096)
  * debian/rules: Update for upcoming changes in Tcl/Tk (based on patch from
    Sergei Golovan).  (Closes: #724830)
  * Build ruby bindings for ruby2.0 as well - requires passing RUBY_INC_ARCH
    to configure until upstream updates configure for ruby2.0.
  * debian/watch: Fix to only consider stable releases, and to look for
    .tar.xz which upstream now uses.
  * debian/control.in: "Standards-Version: 3.9.5" (no changes required).
  * debian/control.in: Packaging now stored in git in debian collab-maint.

 -- Olly Betts <olly@survex.com>  Fri, 06 Dec 2013 15:18:06 +1300

xapian-bindings (1.2.15-4) unstable; urgency=low

  * Add missing dh_installdeb so the ruby bindings postinst files actually
    make it into the binary packages.  (Closes: #709667)

 -- Olly Betts <olly@survex.com>  Wed, 29 May 2013 22:14:52 +0000

xapian-bindings (1.2.15-3) unstable; urgency=low

  * Add postinst to transitional packages for ruby bindings to make the
    directory to symlink change in /usr/share/doc work.  (Closes: #709667)
  * debian/control.in: tclxapian - move from section "libs" to "interpreters"
    to match overrides file.
  * debian/rules: Fix target dependencies so we don't run the testsuite twice.
  * debian/rules: Mark build-arch and build-indep as phony targets.

 -- Olly Betts <olly@survex.com>  Tue, 28 May 2013 03:42:51 +0000

xapian-bindings (1.2.15-2) unstable; urgency=low

  * Restore changes from 1.2.12-2 which were accidentally omitted in
    1.2.15-1, so hardening flags are now reactivated.

 -- Olly Betts <olly@survex.com>  Sun, 12 May 2013 00:28:33 +0000

xapian-bindings (1.2.15-1) unstable; urgency=low

  * New upstream release.
  * Update to new Ruby packaging policy (based on patch from Per Andersson).
    (Closes: #675702)
  * debian/control.in: Standards-Version: 3.9.4 (no changes required).
  * debian/rules: Fix binary-arch to depend on build-arch (instead of build).
  * debian/rules: Remove code which aided backporting to Ubuntu hardy.
  * debian/copyright: Update to include 2013.

 -- Olly Betts <olly@survex.com>  Sat, 11 May 2013 03:42:04 +0000

xapian-bindings (1.2.12-2) unstable; urgency=low

  * debian/rules: Pass CFLAGS, etc to configure so hardening flags actually get
    used.

 -- Olly Betts <olly@survex.com>  Sat, 30 Jun 2012 02:21:20 +0000

xapian-bindings (1.2.12-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Enable hardening flags.
  * debian/rules,debian/control.in: Clean up special handling for versions
    of Debian and Ubuntu which have reached end of life.

 -- Olly Betts <olly@survex.com>  Thu, 28 Jun 2012 13:52:14 +0000

xapian-bindings (1.2.10-1) unstable; urgency=low

  * New upstream release.
  * debian/control.in: Standards-Version: 3.9.3 (no changes required).
  * debian/copyright: Update copyright years.

 -- Olly Betts <olly@survex.com>  Thu, 10 May 2012 03:35:41 +0000

xapian-bindings (1.2.8-1) unstable; urgency=low

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Sat, 17 Dec 2011 10:48:13 +0000

xapian-bindings (1.2.7-1) unstable; urgency=low

  * New upstream release.
    + Includes fixes for #625679 and Ruby Dir.mktmpdir() issue, so drop
      patches for these.
  * debian/rules: Use single quotes for substituting into debian/control.in to
    stop the shell from attempting to expand ${python:Versions}.
  * debian/rules: Use build-stamp and configure-stamp in the top level rather
    than in the debian subdirectory - this is consistent with where other
    packages put these files, and means dh_clean removes them for us
    automatically.
  * debian/rules: Add build-arch and build-indep targets.

 -- Olly Betts <olly@survex.com>  Fri, 12 Aug 2011 02:08:22 +0000

xapian-bindings (1.2.5-2) unstable; urgency=low

  * Use dh_python2 instead of pycentral for Debian >= squeeze and Ubuntu >=
    natty.  (Closes: #617149)
  * python/pythontest2.py: With Python 2.7, gc.collect() doesn't always
    collect all the garbage, so repeat until no further objects are
    freed.  (Closes: #625679)
  * ruby/smoketest.rb: Older Ruby 1.8.x doesn't have Dir.mktmpdir() -
    just skip the compaction tests for these versions.
  * debian/rules: Don't force building against tcl 8.5 in experimental - that
    was just for the transition to tcl 8.5 being the default.
  * debian/control.in: Standards-Version: 3.9.2 (no changes required).

 -- Olly Betts <olly@survex.com>  Tue, 17 May 2011 02:54:08 +0000

xapian-bindings (1.2.5-1) unstable; urgency=low

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Tue, 05 Apr 2011 13:52:50 +0000

xapian-bindings (1.2.4-1) unstable; urgency=low

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Tue, 21 Dec 2010 07:48:14 +0000

xapian-bindings (1.2.3-3) unstable; urgency=low

  * debian/libxapian-ruby1.9.1.doc-base: Correct paths to rdocs to say "1.9.1"
    not "1.9".

 -- Olly Betts <olly@survex.com>  Fri, 27 Aug 2010 00:35:42 +0000

xapian-bindings (1.2.3-2) unstable; urgency=low

  * debian/rules: Stop trying to build against tcl 8.5.
  * debian/rules: dh_clean -k -> dh_prep.

 -- Olly Betts <olly@survex.com>  Wed, 25 Aug 2010 16:22:03 +0000

xapian-bindings (1.2.3-1) unstable; urgency=low

  * New upstream release.
  * Upload to unstable.
  * debian/control.in:
    + Standards-Version: 3.9.1 (no changes required).

 -- Olly Betts <olly@survex.com>  Tue, 24 Aug 2010 09:05:31 +0000

xapian-bindings (1.2.2-1) experimental; urgency=low

  * New upstream release.
  * Build against tcl 8.5 in experimental.  (Closes: #582217)
  * debian/rules: Set TCLSH=/usr/bin/tclsh-default to make sure we use the
    default version of tclsh even if another version is installed and the
    preferred alternative.  Reported by Jonathan Nieder as a secondary issue in
    #582217.

 -- Olly Betts <olly@survex.com>  Mon, 05 Jul 2010 13:50:16 +0000

xapian-bindings (1.2.0-3) experimental; urgency=low

  * Removing the call to autoreconf means we need libxapian-dev >= 1.2.0-2.
  * Update to require dh7 and use dh compact level 7.
  * Switch to dpkg-source 3.0 (quilt) format.
  * Drop unused build-dependency on po-debconf.
  * Drop version from Python dependency - even etch and dapper have a new
    enough Python.  Drop out-dated fallback if pyversions isn't installed.

 -- Olly Betts <olly@survex.com>  Tue, 04 May 2010 14:36:05 +0000

xapian-bindings (1.2.0-2) experimental; urgency=low

  * Don't need to autoreconf now.

 -- Olly Betts <olly@survex.com>  Mon, 03 May 2010 16:29:25 +0000

xapian-bindings (1.2.0-1) experimental; urgency=low

  * New upstream release.
  * debian/php5-xapian.postinst: Drop support for upgrading from version in
    etch.

 -- Olly Betts <olly@survex.com>  Thu, 29 Apr 2010 07:45:30 +0000

xapian-bindings (1.1.5-2) experimental; urgency=low

  * debian/rules:
    + Fix reversed conditional so we actually build Ruby 1.9.1 packages.
    + Drop php5-xapian packages due to licence incompatibility.
      (Closes: #513796)
  * debian/control.in: Add missing build-dependencies: autoconf, automake-1.10,
    and libtool.

 -- Olly Betts <olly@survex.com>  Sun, 25 Apr 2010 06:56:27 +0000

xapian-bindings (1.1.5-1) experimental; urgency=low

  * Drop support for unsupported Debian and Ubuntu releases, and also Ubuntu
    dapper.
  * debian/python-xapian.install: The xapian packages are now generated in a
    subdirectory, so update the paths accordingly, and include the .pth file.
  * debian/rules: Do all building under debian/build so we can clean up with a
    single call to "rm -rf".
  * debian/rules,debian/control.in,debian/control-ruby.in: Build packages for
    Ruby 1.9.1 where appropriate.
  * debian/rules: Run autoreconf to pick up Debian's patched libtool.
  * Drop conflicts on versioned python packages (e.g. python2.4-xapian) as
    these packages were phased out before etch.

 -- Olly Betts <olly@survex.com>  Sun, 25 Apr 2010 01:37:51 +0000

xapian-bindings (1.0.19-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Fix clean target to remove python/testsuite.pyc.
    (Closes: #577094)
  * debian/rules: Compile with -g - needed for armel to workaround unaligned
    relocations. (Closes: #576944)

 -- Olly Betts <olly@survex.com>  Thu, 15 Apr 2010 14:55:34 +0000

xapian-bindings (1.0.18-1) unstable; urgency=low

  * New upstream release.
  * debian/control.in:
    + Remove "DM-Upload-Allowed: yes" as I'm now a DD.
    + Add "Vcs-Browser:" and "Vcs-svn:".
    + Standards-Version: 3.8.4 (no changes required).
  * debian/rules: Update licence boilerplate from GPLv2+ to MIT/X.
  * debian/etc-php-conf.d-xapian.ini: Use ';' for comment instead of '#' as
    PHP 5.3 deprecates the latter.
  * Register the documentation for each language with doc-base.

 -- Olly Betts <olly@survex.com>  Sun, 14 Feb 2010 12:17:03 +0000

xapian-bindings (1.0.17-1) unstable; urgency=low

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Thu, 19 Nov 2009 04:13:17 +0000

xapian-bindings (1.0.16-2) unstable; urgency=low

  * Fix non-POSIX use of ".", fixing regression introduced in 1.0.15.
    (Closes: #546635)

 -- Olly Betts <olly@survex.com>  Tue, 15 Sep 2009 09:21:08 +0000

xapian-bindings (1.0.16-1) unstable; urgency=low

  * New upstream release.

 -- Olly Betts <olly@survex.com>  Sat, 12 Sep 2009 14:19:16 +0100

xapian-bindings (1.0.15-1) unstable; urgency=low

  * New upstream release.
  * Fix typo in package descriptions.
  * debian/control.in: Standards-Version: 3.8.3 (no changes required).

 -- Olly Betts <olly@survex.com>  Thu, 27 Aug 2009 02:01:39 +0000

xapian-bindings (1.0.14-1) unstable; urgency=low

  * New upstream release.
  * debian/control.in: Standards-Version: 3.8.2 (no changes required).
  * debian/control.in: Drop the "www." from the homepage URL for consistency
    with upstream use.
  * debian/rules: Enable php5 bindings for hurd-i386 as php5 has now built
    there.
  * debian/rules: Include DH_PYCENTRAL=include-links change from Ubuntu - this
    means that the package is immediately useful when installed or upgraded.
    The downside is that the package needs a rebuild when the list of Python
    versions changes, but that's much less frequent than new Xapian packages.
  * debian/control.in: Update required debhelper version for Debian sarge and
    Ubuntu dapper.

 -- Olly Betts <olly@survex.com>  Thu, 30 Jul 2009 03:45:53 +0100

xapian-bindings (1.0.13-1) unstable; urgency=low

  * New upstream release.
    + Fixes deadlocks due to bugs in mod_python. (Closes: #442006)
  * debian/rules: Don't allow CODENAME to be set in the environment.
  * Relicense the Debian packaging under the MIT/X licence.

 -- Olly Betts <olly@survex.com>  Sat, 20 Jun 2009 13:31:06 +0100

xapian-bindings (1.0.12-2) unstable; urgency=low

  * debian/copyright: Update for 2009 (and 2008 for the code in java/).
    /usr/share/common-licenses/GPL -> /usr/share/licenses/GPL-2 since the
    former is now a symlink to GPL-3 and Xapian is GPL v2 or later.
  * debian/python-xapian.install: Look for files to install in "*-packages"
    instead of "site-packages" as Ubuntu jaunty's Python 2.6 installs packaged
    extensions in dist-packages instead.

 -- Olly Betts <olly@survex.com>  Sun,  3 May 2009 10:56:17 +0100

xapian-bindings (1.0.12-1) unstable; urgency=low

  * New upstream release.
  * debian/control.in: Standards-Version: 3.8.1 (no changes required).
  * debian/control.in,debian/control-php.in: Update sections of php5-xapian
    and libxapian-ruby1.8.
  * debian/compat: Increase from 4 to 5 since 4 is now deprecated in sid and
    5 is supported by all currently supported Debian and Ubuntu releases.

 -- Olly Betts <olly@survex.com>  Wed, 22 Apr 2009 05:42:53 +0100

xapian-bindings (1.0.10-1) unstable; urgency=low

  * ACK NMU - thanks Chris!
    - Bug #506090 fixed upstream in 1.0.10 so NMU patch no longer required.
  * New upstream release.
  * debian/control.in: Add "DM-Upload-Allowed: yes" since I'm now a Debian
    Maintainer.

 -- Olly Betts <olly@survex.com>  Tue, 23 Dec 2008 07:32:55 +0000

xapian-bindings (1.0.7-3.1) unstable; urgency=medium

  * Non-maintainer upload.
  * Fix FTBFS when built twice in a row by cleaning python/testsuite.pyc in
    clean target. (Closes: #506090)

 -- Chris Lamb <lamby@debian.org>  Tue, 18 Nov 2008 19:32:24 +0000

xapian-bindings (1.0.7-3) unstable; urgency=low

  * Install /etc/php5/conf.d/xapian.ini instead of /etc/php5/conf.d/xapian as
    the file is ignored unless it has extensions ".ini".  Closes: #493941
  * Install xapian.php in /usr/share/php not /usr/share/php5 so that it is in
    the default PHP include_path.  Closes: #493944
  * debian/rules: Run "make all" and "make check" as separate commands to
    avoid hitting parallel building bugs.  Closes: #494247

 -- Olly Betts <olly@survex.com>  Fri,  8 Aug 2008 08:18:52 +0100

xapian-bindings (1.0.7-2) unstable; urgency=low

  * debian/rules: Fix build rule to be parallel make safe.
  * debian/rules: Back out link_all_deplibs=no change made in 1.0.7-1 since
    the bindings shared objects weren't getting an explicit dependency on zlib
    anyway.

 -- Olly Betts <olly@survex.com>  Tue, 29 Jul 2008 15:25:56 +0100

xapian-bindings (1.0.7-1) unstable; urgency=low

  * New upstream release.
  * debian/copyright: Update for 2008 and a few other minor changes.
  * debian/rules: The dependency on libxapianN is now versioned.  We require a
    version >= the version of xapian-bindings being packaged (which is
    sometimes slightly too conservative, but simple to implement without
    manual maintenance).  Closes: #462106
  * debian/rules: Add support for parallel=<n> in DEB_BUILD_OPTIONS, as
    recommended by policy 3.8.0.  Use $(filter ...) instead of $(find ...)
    to check for noopt in DEB_BUILD_OPTIONS to avoid false matches on
    substrings of non-standard options (e.g. snooptables).  Add support
    for nocheck in DEB_BUILD_OPTIONS.
  * debian/control.in: Standards-Version: 3.8.0
  * debian/watch: Add watch file.  Not useful for me as I make the upstream
    releases, but DEHS, etc find it useful.
  * debian/control.in: Capitalise python to placate lintian.
  * debian/patch: Remove since all patches are already in the upstream
    sources.
  * debian/rules: Calculate the version starting the next release branch (so
    1.1.0 currently) and use that as the upper bound on the libxapian-dev
    build dependency).
  * debian/tclxapian.install: Update to reflect new install location which
    reflects the new tcl policy: /usr/lib/xapian<version> ->
    /usr/lib/tcltk/xapian<version>
  * debian/rules: Tweak how we build the conflicts/replaces for old
    python-xapian as the old way doesn't seem to work for newer versions of
    GNU make.
  * debian/rules: Force link_all_deplibs=no so libtool doesn't try to
    explicitly link with -lz.

 -- Olly Betts <olly@survex.com>  Sat, 26 Jul 2008 16:27:57 +0100

xapian-bindings (1.0.5-1) unstable; urgency=low

  * debian/rules: Look for "CODENAME" and "debian/codename" rather than
    "COMPONENT" and "debian/component".
  * debian/rules: Strip out unused support for Ubuntu breezy since it reached
    end-of-life and we stopped building packages for it a while ago.
  * debian/control.in: Standards-Version: 3.7.3 (no changes required).
  * debian/patch: Remove patch for building tcl8 on latest sid as it is
    already in the upstream sources.
  * debian/patch: Add patch to fix installation of Ruby RDocs.
  * debian/patch: Add patch to fix "make check" for PHP4 (needed for some of
    the backports).
  * debian/libxapian-ruby1.8.install: Package the installed RDocs.
  * debian/control.in,debian/control-php.in: The "Homepage:" header is now
    official, so convert "Homepage:" pseudo-headers.
  * debian/rules: For Debian lenny and later, and Ubuntu hardy and later,
    make use of the new tcl and tcl-dev packages as the Debian Tcl/Tk policy
    describes.

 -- Olly Betts <olly@survex.com>  Sun, 23 Dec 2007 01:30:45 +0000

xapian-bindings (1.0.4-1) unstable; urgency=low

  * New upstream release.
    + "make clean" now removes python/testsuite.pyc.  Closes: #442766
  * debian/rules: Override RUBY_LIB and RUBY_LIB_ARCH which now have different
    defaults upstream.
  * debian/patch: Backport configure fix from upstream SVN to allow tcl8 to be
    built on unstable.
  * debian/tclxapian.install: Also package "usr/share/tcltk/xapian*" which is
    where files get installed on unstable.
  * debian/php4-xapian.install,debian/php5-xapian.install,
    debian/python-xapian.install,debian/libxapian-ruby1.8.install,
    debian/tclxapian.install: Update for "bindings.html" -> "index.html"
    change.

 -- Olly Betts <olly@survex.com>  Fri,  2 Nov 2007 05:13:29 +0000

xapian-bindings (1.0.2-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Upstream build now installs xapian.php, so remove code to
    install it here.

 -- Olly Betts <olly@survex.com>  Thu,  5 Jul 2007 01:17:29 +0100

xapian-bindings (1.0.1-1) unstable; urgency=low

  * New upstream release.
  * php4-xapian and php5-xapian now make use of the (relatively) new
    /etc/phpN/conf.d mechanism to enable the xapian extension automatically,
    instead of modifying php.ini directly (after checking that's OK using
    debconf).  Backports to Debian oldstable, and to Ubuntu etch and earlier,
    now require the user to add "extension=xapian.so" to php.ini by hand,
    so backports where this is required now include a README.Debian which
    explains this.
  * debian/rules: Upstream build now generates .pyo so we need to tell
    dh_install that we don't want to package it.

 -- Olly Betts <olly@survex.com>  Tue, 12 Jun 2007 02:21:14 +0100

xapian-bindings (1.0.0-1) unstable; urgency=low

  * New upstream release.
  * New debconf translations:
    - Malayalam.  Closes: #418032
    - Dutch.  Closes: #423066
  * debian/rules: Debian unstable has dropped PHP4 support, so don't build
    php4-xapian for it.  Closes: #424809
  * debian/rules,debian/php4-xapian.install,debian/php5-install: Install and
    package xapian.php which is handy for PHP4 and vital for PHP5.
  * debian/rules: Update now there's a new stable release.  Keep support for
    oldstable for the time being, in case someone wants to backport.
  * debian/patch: Changes included upstream so remove.
  * debian/patch: Add new patches to fix "package require xapian" issues for
    Tcl example scripts.
  * debian/copyright: Update.
  * debian/rules: We don't need to pass --mandir or --infodir to configure
    as the values we explicitly set are the defaults anyway (and we don't
    have any documentation in "info" format).
  * debian/rules: Avoid Lintian's uses-dh-python-with-no-pycompat warning -
    for now we want to keep the call to dh_python for backports.

 -- Olly Betts <olly@survex.com>  Tue, 29 May 2007 14:13:14 +0100

xapian-bindings (0.9.9-2) unstable; urgency=low

  * ACK NMU - thanks Christian!
  * debian/rules: Fix how we determine the phpapi version to depend on.
    The previous way was technically wrong, but got the right answer
    for Debian unstable, and for Ubuntu dapper and edgy (Debian sarge was
    wrong though).
  * debian/po/nb.po: New debconf translation from Hans Fredrik Nordhaug
    (Closes: #414461).
  * debian/rules: Ubuntu feisty has dropped php4 support.

 -- Olly Betts <olly@survex.com>  Wed, 28 Mar 2007 03:02:50 +0000

xapian-bindings (0.9.9-1.1) unstable; urgency=low

  * Non-maintainer upload on maintainer's request to fix remaining l10n issues.
  * Debconf translations:
    - German. Closes: #412250
    - Russian. Closes: #412274
    - Galician. Closes: #412338
    - Basque. Closes: #412420
    - Catalan. Closes: #412579
    - Romanian. Closes: #412933

 -- Christian Perrier <bubulle@debian.org>  Sat, 10 Mar 2007 07:41:40 +0100

xapian-bindings (0.9.9-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Build tcl and ruby bindings in the same build tree to save
    a bit of diskspace and time during the build.
  * debian/rules: Fix the incorrect "Conflicts:" and "Replaces:" we generate
    for the old "per-version" Python packages (broken in 0.9.8-1).
  * debian/patch: Patch to fix building bindings for Python 2.5 on amd64
    (needed for the Ubuntu etch and any other Debian derived distros with
    Python 2.5).

 -- Olly Betts <olly@survex.com>  Fri, 10 Nov 2006 04:03:28 +0000

xapian-bindings (0.9.8-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Add no-op "binary-indep" target (Closes: #395761).
  * debian/rules: Don't try to build PHP bindings on hurd-i386 (PHP hasn't
    been ported, but Python, Tcl, and Ruby have).
  * debian/rules: Upstream no longer support Python 2.1 bindings so update
    comments regarding the Python versions supported by the sarge backport.
  * debian/control.in,debian/control-php.in: Add "Suggests: xapian-doc" since
    the xapian-core documentation is useful reading for people developing
    using xapian-bindings.
  * debian/rules: Use python-all-dev where we can.

 -- Olly Betts <olly@survex.com>  Sat,  4 Nov 2006 22:02:05 +0000

xapian-bindings (0.9.7-2) unstable; urgency=low

  * debian/control.in,debian/rules: Build dependency on libxapian-dev
    should be versioned (Closes: #392537).
  * debian/rules: Don't include Python 2.1 support in the stable backport
    since SWIG generates bad code for it at present.

 -- Olly Betts <olly@survex.com>  Thu, 12 Oct 2006 14:36:43 +0100

xapian-bindings (0.9.7-1) unstable; urgency=low

  * New upstream release.
  * debian/rules: Fix typo in configure invocation for Tcl so that we only
    build the Tcl bindings in that source tree.
  * debian/rules: Build-Depends on phpN-cli so that we can run "make check".
  * debian/po/: Added newly translated debconf messages for fr, cs, pt, sv
    (Closes: #380341, #382933, #383396, #387533).

 -- Olly Betts <olly@survex.com>  Wed, 11 Oct 2006 19:09:35 +0100

xapian-bindings (0.9.6-5) unstable; urgency=low

  * debian/copyright: Add Java bindings copyrights and licences.
  * debian/rules: Run "make check" on each of the built bindings.  It's a very
    lightweight test but will at least ensure that the basics work.  It also
    serves to check the core library is working - xapian-core's own testsuite
    is probably too slow to justify devoting autobuilder time to.
  * debian/control.in,debian/control-php.in: Remove "designed to be" from the
    package description at Wookey's suggestion.

 -- Olly Betts <olly@survex.com>  Sun, 09 Jul 2006 01:31:02 +0100

xapian-bindings (0.9.6-4) unstable; urgency=low

  * debian/rules: Since the python packaging change we no longer have any
    "Architecture: all" packages to build so remove the binary-indep target.
  * Fix prerm file comments which said "postinst".
  * debian/copyright: Update with a thorough list of copyrights and licences.

 -- Olly Betts <olly@survex.com>  Mon, 26 Jun 2006 16:16:37 +0100

xapian-bindings (0.9.6-3) unstable; urgency=low

  * Tweak description and add "Homepage: http://www.xapian.org/".
  * tclxapian package wasn't depending on the tcl interpreter due to a typo
    in debian/rules.
  * libxapian-ruby1.8 package wasn't depending on the ruby interpreter due to
    a typo in debian/rules.
  * Update python packages to follow new python packaging policy.

 -- Olly Betts <olly@survex.com>  Fri, 16 Jun 2006 04:09:49 +0100

xapian-bindings (0.9.6-2) unstable; urgency=low

  * dh_strip checks for nostrip in DEB_BUILD_OPTIONS, so we don't need to.
  * configure with --disable-depending-tracking to reduce build time and
    space requirements a little.
  * Fix debian/control generation not to leave a partial file if interrupted.
  * Add packages for the Ruby bindings, built for Ruby 1.8.

 -- Olly Betts <olly@survex.com>  Fri,  9 Jun 2006 02:33:10 +0100

xapian-bindings (0.9.6-1) unstable; urgency=low

  * New upstream release.
  * "Standards-Version: 3.7.2" - no changes required.
  * Debian unstable no longer includes Python 2.1 or 2.2, so don't package
    Python bindings for them (backports can easily reenable them.)
  * Add packages for the TCL bindings (which should work with any Tcl version
    from 8.1 onwards.)
  * We no longer need to change the permissions of xapian.py and xapian.pyc
    as they are now set correctly by the upstream "make install".
  * Add "python" to "Build-Depends" so that dh_python works and also to
    workaround a broken configure test for PYTHON_PATHSEP which uses "python"
    instead of "$PYTHON" so PYTHON_PATHSEP is empty if there's no "python"
    in the path.

 -- Olly Betts <olly@survex.com>  Mon, 15 May 2006 21:11:41 +0100

xapian-bindings (0.9.5-3) unstable; urgency=low

  * PHP bindings packages now have the correct "Depends:" and are able to
    automatically modify php.ini upon installation (using debconf to ask if
    this should be done) and removal.
  * dh_python automatically generates the xapian-python->xapian-python2.X
    dependency for us, so remove the PYTHON_VERSION_MAIN mechanism (which
    wasn't actually being used anyway!)

 -- Olly Betts <olly@survex.com>  Wed, 12 Apr 2006 19:03:23 +0100

xapian-bindings (0.9.5-2) unstable; urgency=low

  * Added packages for PHP bindings (for both PHP4 and PHP5).
  * Don't install .py wrapper as executable (fixes Lintian warning).
  * dh_install with --fail-missing intead of just --list-missing.

 -- Olly Betts <olly@survex.com>  Sun,  9 Apr 2006 19:54:03 +0100

xapian-bindings (0.9.5-1) unstable; urgency=low

  * New upstream release.
  * "Standards-Version: 3.6.2" - no changes required.
  * debian/copyright: Update FSF address and give download URL for releases
    instead of obsolete CVS location.
  * debian/rules: When generating debian/control, die if the python package
    isn't installed (since we require it to discover the default python
    version).
  * debian/rules: Simplify configure invocation by taking advantage of the
    change to handling of --with-XXX options in 0.9.3.
  * debian/rules: Increase DH_COMPAT from 3 to 4.
  * debian/TODO: No point planning to package guile right now!
  * debian/rules: Generate bindings package for Python 2.1.
  * New maintainer.

 -- Olly Betts <olly@survex.com>  Sun,  9 Apr 2006 00:46:22 +0100

xapian-bindings (0.9.4-2) unstable; urgency=low

  * Fix invalid date line in previous changelog entry.

 -- Richard Boulton <richard@tartarus.org>  Fri,  3 Mar 2006 02:32:31 +0000

xapian-bindings (0.9.4-1) unstable; urgency=low

  * New upstream release.  (No package was made of 0.9.3)
  * Query constructor which takes a list of strings fixed.
  * Zero byte cleanliness.
  * Improved tests.
  * Other small fixes.

 -- Richard Boulton <richard@tartarus.org>  Fri,  3 Mar 2006 02:32:31 +0000

xapian-bindings (0.9.2-1) unstable; urgency=low

  * New upstream release.
  * Added wrappers for new optional flags argument to
    QueryParser::parse_query().
  * Efficiency improvement when converting python list to vector<string>.

 -- Richard Boulton <richard@tartarus.org>  Fri, 15 Jul 2005 13:11:12 +0100

xapian-bindings (0.9.1-3) unstable; urgency=low

  * Correct python2.4-xapian.install to include the 2.4 files, not the 2.3
    ones.

 -- Richard Boulton <richard@tartarus.org>  Wed, 15 Jun 2005 12:11:34 +0100

xapian-bindings (0.9.1-2) unstable; urgency=low

  * Temporarily disable python 2.1 packages, since tarball seems to be
    broken for them.

 -- Richard Boulton <richard@tartarus.org>  Wed, 15 Jun 2005 11:16:19 +0100

xapian-bindings (0.9.1-1) unstable; urgency=low

  * New upstream releases (No package was generated for release 0.9.0)
  * Now build for python 2.4.
  * Update default python version to be compatible with that for new
    Debain stable version.

 -- Richard Boulton <richard@tartarus.org>  Wed, 15 Jun 2005 09:12:07 +0100

xapian-bindings (0.8.5-1) unstable; urgency=low

  * New upstream release.
  * Remove patch - fixed in slightly different manner in release.

 -- Richard Boulton <richard@tartarus.org>  Wed,  5 Jan 2005 11:57:17 +0000

xapian-bindings (0.8.4-4) unstable; urgency=low

  * Fixes to patch.

 -- Richard Boulton <richard@tartarus.org>  Fri, 10 Dec 2004 18:16:38 +0000

xapian-bindings (0.8.4-3) unstable; urgency=low

  * Add patch needed to get python install to work.  This is backported
    from latest CVS, so will be removed with the next release.

 -- Richard Boulton <richard@tartarus.org>  Fri, 10 Dec 2004 17:24:42 +0000

xapian-bindings (0.8.4-2) unstable; urgency=low

  * Don't configure with csharp support when building the python packages.

 -- Richard Boulton <richard@tartarus.org>  Fri, 10 Dec 2004 10:15:53 +0000

xapian-bindings (0.8.4-1) unstable; urgency=low

  * New upstream release.
  * Build fixes - in particular, swig is used at package generation time,
    not build time.
  * python: wrap MSet::MSet() again, and other fixes.

 -- Richard Boulton <richard@tartarus.org>  Thu,  9 Dec 2004 17:38:29 +0000

xapian-bindings (0.8.3-1) unstable; urgency=low

  * New upstream release.
  * Use swig's -modern switch for Python 2.2 and up - it gives cleaner, leaner,
    faster Python wrapper code.

 -- Richard Boulton <richard@tartarus.org>  Tue, 21 Sep 2004 13:31:14 +0100

xapian-bindings (0.8.2-2) unstable; urgency=low

  * Build against libxapian3. (See changelog for libxapian for explanation)

 -- Richard Boulton <richard@tartarus.org>  Tue, 14 Sep 2004 17:03:28 +0100

xapian-bindings (0.8.2-1) unstable; urgency=low

  * New upstream release.
  * Many changes and additions to methods which are wrapped - applications
    may need updates.  See NEWS for full details.
  * Builds against libxapian4.

 -- Richard Boulton <richard@tartarus.org>  Tue, 14 Sep 2004 13:20:31 +0100

xapian-bindings (0.8.1-2) unstable; urgency=low

  * debian/control.in: Update build dependency on swig to require at
    least version 1.3.20, since the configure script now requires this.

 -- Richard Boulton <richard@tartarus.org>  Thu,  1 Jul 2004 10:02:35 +0100

xapian-bindings (0.8.1-1) unstable; urgency=low

  * New upstream release.

 -- Richard Boulton <richard@tartarus.org>  Wed, 30 Jun 2004 20:19:11 +0100

xapian-bindings (0.8.0-9) unstable; urgency=low

  * debian/rules: Read value of $COMPONENT from a file, rather than the
    environment, so that it is the same whenever we re-run.

 -- Richard Boulton <richard@tartarus.org>  Wed, 30 Jun 2004 14:21:20 +0100

xapian-bindings (0.8.0-8) unstable; urgency=low

  * debian/rules: Build appropriate python versions depending on enviornment
    variable "$COMPONENT", set in my build script.  Remove dependencies on
    debian/control, so that it is only generated when explicitly requested
    by build script.

 -- Richard Boulton <richard@tartarus.org>  Wed, 30 Jun 2004 13:28:43 +0100

xapian-bindings (0.8.0-7) unstable; urgency=low

  * debian/rules: Change ' to " so that python versions get substituted
    correctly.
  * debain/python*-xapian.install: Install documentation files.

 -- Richard Boulton <richard@tartarus.org>  Wed, 30 Jun 2004 11:39:55 +0100

xapian-bindings (0.8.0-6) unstable; urgency=low

  * debian/rules: Determine primary python version on the system
    automatically (by invoking /usr/bin/python).

 -- Richard Boulton <richard@tartarus.org>  Wed, 30 Jun 2004 00:52:52 +0100

xapian-bindings (0.8.0-5) unstable; urgency=low

  * debian/rules: move stamp files into debian directory, to avoid polluting
    other builds.
  * debian/patch: Add patch containing missing documentation files for python
    bindings (were missing from distribution tarballs in the 0.8.0 release).

 -- Richard Boulton <richard@tartarus.org>  Tue, 29 Jun 2004 15:13:50 +0100

xapian-bindings (0.8.0-4) unstable; urgency=low

  * Split debian/control into debian/control.in and debian/control-python.in
    and add rules to generate debian/control whilst substituting python
    version numbers.  The python versions supported can now be updated
    simply by changing variables in debian/rules and rebuilding.
  * debian/rules: remove --enable-maintainer-mode configure flag.

 -- Richard Boulton <richard@tartarus.org>  Wed, 19 May 2004 10:55:02 +0100

xapian-bindings (0.8.0-3) unstable; urgency=low

  * Add --list-missing back to dh_install command, since we're already
    depending on a debhelper version high enough to support that option.

 -- Richard Boulton <richard@tartarus.org>  Wed, 12 May 2004 12:27:27 +0100

xapian-bindings (0.8.0-2) unstable; urgency=low

  * Add rules to make symlinks to config.guess and config.sub, and added
    Build-Depends on autotools-dev.
  * Add some more TODO notes.

 -- Richard Boulton <richard@tartarus.org>  Wed, 12 May 2004 10:15:06 +0100

xapian-bindings (0.8.0-1) unstable; urgency=low

  * Initial release - provides packages for only the python bindings, so far.

 -- Richard Boulton <richard@tartarus.org>  Tue, 11 May 2004 15:12:04 +0100