File: changelog

package info (click to toggle)
python3-defaults 3.9.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 664 kB
  • sloc: python: 1,258; makefile: 381; sh: 105
file content (1641 lines) | stat: -rw-r--r-- 59,672 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
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
python3-defaults (3.9.2-3) unstable; urgency=medium

  * Ship index.html to unbreak links in python-policy.html. Closes: #985313.
  * Don't ship html policy links in the python3.9 doc directory.
    Closes: #984961.

 -- Matthias Klose <doko@debian.org>  Mon, 05 Apr 2021 14:00:48 +0200

python3-defaults (3.9.2-2) unstable; urgency=medium

  * Upload to unstable.

 -- Stefano Rivera <stefanor@debian.org>  Tue, 02 Mar 2021 10:55:41 -0800

python3-defaults (3.9.2-1) experimental; urgency=medium

  [ Stefano Rivera ]
  * Update Python Policy to describe python3-full and other interpreter
    packaging changes.
  * Convert Python Policy to Sphinx.
  * Add myself to uploaders.

  [ Matthias Klose ]
  * Bump version to 3.9.2.
  * Make the Sphinx generated documents more compact.
  * Clarify that python3-full must not be used neither as a build dependency
    nor a recommendation.
  * Move the html version of the policy into the python3-dev package.
  * policy: Add paragraphs "Removal of the unversioned packages" and
    "Unversioned python commands.

 -- Stefano Rivera <stefanor@debian.org>  Tue, 02 Mar 2021 10:37:38 -0800

python3-defaults (3.9.2~rc1-1) experimental; urgency=medium

  * Bump version to 3.9.2 rc1.

  [ Stefano Rivera ]
  * Improve package descriptions, describing venv, stdlib, and lib2to3 package
    contents.

  [ Matthias Klose ]
  * Build a python3-full package.
    - Depends on ca-certificates. Closes: #960869.

 -- Matthias Klose <doko@debian.org>  Thu, 18 Feb 2021 12:16:46 +0100

python3-defaults (3.9.1-1) unstable; urgency=medium

  * Bump version to 3.9.1.

 -- Matthias Klose <doko@debian.org>  Wed, 23 Dec 2020 07:05:58 +0100

python3-defaults (3.9.0-4) unstable; urgency=medium

  * Remove 3.8 as a supported Python3 versions.

 -- Matthias Klose <doko@debian.org>  Sun, 06 Dec 2020 11:36:08 +0100

python3-defaults (3.9.0-3) unstable; urgency=medium

  * Bump standards version.

 -- Matthias Klose <doko@debian.org>  Wed, 18 Nov 2020 21:21:16 +0100

python3-defaults (3.9.0-2) experimental; urgency=medium

  * Relax dependencies on packages built by python3-stdlib-extensions.

 -- Matthias Klose <doko@debian.org>  Mon, 19 Oct 2020 13:35:56 +0200

python3-defaults (3.9.0-1) experimental; urgency=medium

  * Default python3 version to 3.9.
  * Drop the venv binary and man page. Closes: #970764.

 -- Matthias Klose <doko@debian.org>  Thu, 15 Oct 2020 12:10:47 +0200

python3-defaults (3.8.6-1) unstable; urgency=medium

  * Bump version to 3.8.6.
  * Re-introduce the the python3-venv package.

 -- Matthias Klose <doko@debian.org>  Tue, 13 Oct 2020 21:25:54 +0200

python3-defaults (3.8.5-1) experimental; urgency=medium

  [ Scott Kitterman ]
  * Policy: Update wheel policy to allow python3 only wheels for packages
    (like setuptools) that no longer support python2 (Scott Kitterman).

  [ Matthias Klose ]
  * Bump version to 3.8.5.
  * Add 3.9 as a supported Python3 version.
  * Stop building the python3-venv package.
  * Bump debhelper version.

 -- Matthias Klose <doko@debian.org>  Thu, 13 Aug 2020 14:51:41 +0200

python3-defaults (3.8.2-3) unstable; urgency=medium

  * Remove 3.7 as a supported Python3 versions.
  * Fix policy for location for Python 3 local modules. Closes: #884736.
  * Policy: Clarify module package naming (Simon McVittie).
  * Policy: Prefer to document python3-foo in python-foo-doc (Simon McVittie).

 -- Matthias Klose <doko@debian.org>  Tue, 07 Apr 2020 12:43:18 +0200

python3-defaults (3.8.2-2) unstable; urgency=medium

  [ Stuart Prescott ]  
  * py3compile: use unbuffered IO to pass filenames to py_compile
    (closes: 953056)

  [ Piotr Ożarowski ]
  * Byte compile exception patterns (bcep) changes:
    - new "file" type to list just one file
      example: file|-4.0|/usr/share/foo/test.py
    - ignore lines that start with hash char. (to allow comments)
    - tighten checking directory name (partial match was possible before)
    - in "re" type's pattern - check relative paths in addition to full path
      (i.e. no need to include directory path in the pattern)
      example: re|-4.0|/usr/lib/bar|baz/test.*\.py
    - only warn about invalid patterns (instead of failing)

 -- Piotr Ożarowski <piotr@debian.org>  Sat, 21 Mar 2020 17:18:03 +0100

python3-defaults (3.8.2-1) unstable; urgency=medium

  * Bump version to 3.8.2.
  * Bump standards version.

 -- Matthias Klose <doko@debian.org>  Mon, 02 Mar 2020 13:40:23 +0100

python3-defaults (3.8.0-3) experimental; urgency=medium

  * Drop the symlinks with the m modifier.

 -- Matthias Klose <doko@debian.org>  Sun, 15 Dec 2019 13:49:16 +0100

python3-defaults (3.8.0-2) experimental; urgency=medium

  * Bump the defaults version in the python_defaults file as well-

 -- Matthias Klose <doko@debian.org>  Tue, 26 Nov 2019 17:31:54 +0100

python3-defaults (3.8.0-1) experimental; urgency=medium

  * Default python3 version to 3.8.
  * python3-dbg: Provide a python3-dbg-embed.pc pkg-config file.
  * Move the pkg-config files into libpython3-dev and libpython3-dbg.

 -- Matthias Klose <doko@debian.org>  Mon, 25 Nov 2019 12:38:19 +0100

python3-defaults (3.7.5-3) unstable; urgency=medium

  [ Matthias Klose ]
  * Update the Python policy for the Python2 removal (Neil Williams).
    Closes: #943666.
  * Prepare to ship the python*-embed pkg-config files with 3.8 as the
    default Python3 version.

  [ Piotr Ożarowski ]
  * Remove dh-python dependency from python3-all and python3-dev packages.
    Packages should build depend on dh-python or dh-sequence-python3 instead.

 -- Matthias Klose <doko@debian.org>  Thu, 14 Nov 2019 15:13:23 +0100

python3-defaults (3.7.5-2) experimental; urgency=medium

  * Add 3.8 as a supported Python3 versions.

 -- Matthias Klose <doko@debian.org>  Sun, 20 Oct 2019 11:41:55 +0200

python3-defaults (3.7.5-1) unstable; urgency=medium

  * Bump version to 3.7.5.
  * Bump standards version.

 -- Matthias Klose <doko@debian.org>  Wed, 02 Oct 2019 14:31:29 +0200

python3-defaults (3.7.3-1) unstable; urgency=medium

  * Bump version to 3.7.3.

 -- Matthias Klose <doko@debian.org>  Tue, 26 Mar 2019 11:25:14 +0100

python3-defaults (3.7.2-1) unstable; urgency=medium

  * Bump version to 3.7.2.
  * Bump standards version.

 -- Matthias Klose <doko@debian.org>  Fri, 18 Jan 2019 08:54:49 +0100

python3-defaults (3.7.1-3) unstable; urgency=medium

  * Remove 3.6 as a supported Python3 versions.

 -- Matthias Klose <doko@debian.org>  Wed, 19 Dec 2018 03:54:07 +0100

python3-defaults (3.7.1-2) unstable; urgency=medium

  * Default python3 version to 3.7, targeting sid/buster.
  * Fix FTCBFS: Annotate python build dependencies with :any (Helmut Grohne).
    Closes: #912899.

 -- Matthias Klose <doko@debian.org>  Wed, 21 Nov 2018 13:04:27 +0100

python3-defaults (3.7.1-1) experimental; urgency=medium

  * Default python3 version to 3.7.

 -- Matthias Klose <doko@debian.org>  Sun, 21 Oct 2018 14:23:45 +0200

python3-defaults (3.6.7-1) unstable; urgency=high

  * Really ship the policy in the python3 package, and update from the last
    version found in the python package. Closes: #910113.
  * Bump version to 3.6.7.

 -- Matthias Klose <doko@debian.org>  Sun, 21 Oct 2018 11:21:31 +0200

python3-defaults (3.6.6-1) unstable; urgency=medium

  [ Matthias Klose ]
  * Fix the idle desktop file. Closes: #901096.
  * Install the policy files in the python3 package. Closes: #901486.
  * python3-minimal: Pre-Depend on python3.6-minimal. Closes: #901001.
  * Bump version to 3.6.6.

  [ Scott Kitterman ]
  * Remove myself from uploaders

 -- Matthias Klose <doko@debian.org>  Wed, 27 Jun 2018 18:18:20 +0200

python3-defaults (3.6.5-5) experimental; urgency=medium

  * Fix typo in the defaults file. Closes: #900937, #900949.

 -- Matthias Klose <doko@debian.org>  Thu, 07 Jun 2018 17:57:53 +0200

python3-defaults (3.6.5-4) experimental; urgency=medium

  * Update Vcs attributes.
  * Add Python 3.7 to the list of supported Python3 versions.

 -- Matthias Klose <doko@debian.org>  Wed, 06 Jun 2018 18:26:50 +0200

python3-defaults (3.6.5-3) unstable; urgency=medium

  * Update valgrind support file. LP: #1513364.
  * debian/control.in (Michael Vogt):
    - add Cnf-Visible-Pkgname hint to ensure command-not-found recommends
      installing "python3" instead of "python3-minimal" when it is missing.

 -- Matthias Klose <doko@debian.org>  Tue, 10 Apr 2018 11:48:03 +0200

python3-defaults (3.6.5-2) unstable; urgency=medium

  * Distinguish between python3.6 and python3-stdlib-extensions versions.
    Closes: #894168.
  * python3-venv: Depend on python3-distutils.

 -- Matthias Klose <doko@debian.org>  Mon, 02 Apr 2018 07:06:32 +0200

python3-defaults (3.6.5-1) unstable; urgency=medium

  [ Matthias Klose ]
  * Bump version to 3.6.5.

  [ Michael Vogt ]
  * debian/control.in: LP: #1752415
    - add "XB-Cnf-Extra-Commands: python" to ensure command-not-found
      outputs the python3 package when searching for "python"
    - add XB-Cnf-Priority-Bonus to ensure python3 is listed on the
      top when typing "python"

 -- Matthias Klose <doko@debian.org>  Sat, 31 Mar 2018 16:26:32 +0800

python3-defaults (3.6.5~rc1-1) unstable; urgency=medium

  * Bump version to 3.6.5~rc1.
  * Remove dh-python dependency from python3.
  * Add dh-python and python3-distutils dependencies to python3-all and
    python3-dev.

 -- Matthias Klose <doko@debian.org>  Sun, 25 Mar 2018 19:05:26 +0800

python3-defaults (3.6.4-1) unstable; urgency=medium

  * Bump version to 3.6.4.
  * 2to3: Depend on python3-lib2to3 and provide the 2to3 launcher.

 -- Matthias Klose <doko@debian.org>  Fri, 29 Dec 2017 23:53:39 +0100

python3-defaults (3.6.4~rc1-2) unstable; urgency=medium

  * 2to3: Fix breaks/replaces relation with python. Closes: #884418.

 -- Matthias Klose <doko@debian.org>  Fri, 15 Dec 2017 08:24:00 +0100

python3-defaults (3.6.4~rc1-1) unstable; urgency=medium

  * Bump version to 3.6.4~rc1.
  * Stop using priority extra for the -dbg packages.
  * Build a 2to3 package.

 -- Matthias Klose <doko@debian.org>  Wed, 13 Dec 2017 23:52:01 +0100

python3-defaults (3.6.3-2) unstable; urgency=medium

  * Remove python3.5 as a supported Python3 version.

 -- Matthias Klose <doko@debian.org>  Thu, 26 Oct 2017 21:09:05 +0200

python3-defaults (3.6.3-1) unstable; urgency=medium

  * Bump version to 3.6.3.
  * Update more references from 3.5 to 3.6.
  * Rename the idle3 package to idle, keep a transitional idle3 package.
  * Fix idle script to run with Python3.
  * Bump standards version to 4.1.1.

 -- Matthias Klose <doko@debian.org>  Tue, 10 Oct 2017 08:36:04 +0200

python3-defaults (3.6.2-1) experimental; urgency=medium

  * Default python3 version to 3.6.
  * Bump standards version to 4.1.0.
  * Change policy format from debiandoc SGML to DocBook/XML (W. Martin Borgert).
    Closes: #871526, #872581.
  * Fix some invalid escape sequences that make autopkgtests fail by causing
    warnings on stderr (Michael Hudson-Doyle).
  * python3-doc, python3-examples: Mark M-A: foreign.

 -- Matthias Klose <doko@debian.org>  Mon, 18 Sep 2017 19:52:28 +0200

python3-defaults (3.5.3-3) unstable; urgency=medium

  * Upload to unstable
  * Update python3 version number in debian/README.Debian (Closes:
    #826565)
  * Add debian/watch, thanks to Taylor Kline for the patch (Closes:
    #850789)
  * No VCS cruft in the tarball this time (Closes: #854974)
  * Bump standards version to 4.0.0 without further change
  * Delete ancient Breaks/Replaces for idle3 and python3-minimal

 -- Scott Kitterman <scott@kitterman.com>  Wed, 28 Jun 2017 23:07:12 -0400

python3-defaults (3.5.3-2) experimental; urgency=medium

  * Add python3.6 to supported python3 versions for experimental

 -- Scott Kitterman <scott@kitterman.com>  Fri, 16 Jun 2017 22:09:52 -0400

python3-defaults (3.5.3-1) unstable; urgency=medium

  * Bump version to 3.5.3.

 -- Matthias Klose <doko@debian.org>  Fri, 20 Jan 2017 11:03:28 +0100

python3-defaults (3.5.1-4) unstable; urgency=medium

  * Bump standards version.
  * Rebuild to pick up the GNU triplet change on i386 archs. Addresses: #826128.

 -- Matthias Klose <doko@debian.org>  Fri, 03 Jun 2016 01:34:07 +0200

python3-defaults (3.5.1-3) unstable; urgency=medium

  * Drop build dependency on python3.4.
  * Bump standards and debhelper versions.

 -- Matthias Klose <doko@debian.org>  Mon, 21 Mar 2016 12:58:34 +0100

python3-defaults (3.5.1-2) unstable; urgency=medium

  * Drop Python 3.4 as a supported python3 version.

 -- Matthias Klose <doko@debian.org>  Mon, 22 Feb 2016 12:53:25 +0100

python3-defaults (3.5.1-1) unstable; urgency=medium

  * Upload to unstable

  [ Scott Kitterman ]
  * Drop redundant supported/default version definitions in debpython/
    version.py

  [ Matthias Klose ]
  * Bump version to 3.5.1.
  * Stop shipping menu files.

 -- Scott Kitterman <scott@kitterman.com>  Mon, 11 Jan 2016 11:35:49 -0500

python3-defaults (3.5.0-2) experimental; urgency=medium

  * Update py3versions to list versions in a consistent order: default listed
    last and non-default listed first in ascending order (Closes: #801376)

 -- Scott Kitterman <scott@kitterman.com>  Sat, 10 Oct 2015 21:21:44 -0400

python3-defaults (3.5.0-1) experimental; urgency=medium

  * Set python3.5 as the default python3 for testing in experimental

 -- Scott Kitterman <scott@kitterman.com>  Mon, 05 Oct 2015 16:44:27 -0400

python3-defaults (3.4.3-7) unstable; urgency=medium

  * Update py3versions to list versions in a consistent order: default listed
    last and non-default listed first in ascending order (Closes: #801376)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 11 Oct 2015 12:50:01 -0400

python3-defaults (3.4.3-6) unstable; urgency=medium

  * Upload to unstable
    - Adds python3.5 as a supported python3 version in unstable
  * Update idle3 desktop file to better support use from file managers such as
    nautilus (Closes: #796125)
    - Thanks to Pat Hooper for the patch

 -- Scott Kitterman <scott@kitterman.com>  Thu, 24 Sep 2015 21:47:47 -0400

python3-defaults (3.4.3-5) experimental; urgency=medium

  * Readd python3.5 as a supported version for experimental

 -- Scott Kitterman <scott@kitterman.com>  Sat, 27 Jun 2015 18:50:26 -0400

python3-defaults (3.4.3-4) unstable; urgency=medium

  * Upload to unstable

  [ Matthias Klose ]
  * Update README for python 3.4. Closes: #772545.

  [ Scott Kitterman ]
  * Drop python3.5 as a supported version for upload to unstable

 -- Scott Kitterman <scott@kitterman.com>  Sat, 27 Jun 2015 18:47:18 -0400

python3-defaults (3.4.3-2) experimental; urgency=medium

  * Add python3.5 as a supported Python version.

 -- Matthias Klose <doko@debian.org>  Wed, 03 Jun 2015 01:41:07 +0200

python3-defaults (3.4.3-1) experimental; urgency=medium

  * Bump version to 3.4.3.
  * Make python3-minimal a pre-dependency for python3.

 -- Matthias Klose <doko@debian.org>  Sat, 28 Feb 2015 17:05:58 +0100

python3-defaults (3.4.2-2) unstable; urgency=medium

  * py3clean: remove pyc files generated from files with dot in its name
    (workaraunds http://bugs.python.org/issue22966)

 -- Piotr Ożarowski <piotr@debian.org>  Sat, 29 Nov 2014 18:14:17 +0100

python3-defaults (3.4.2-1) unstable; urgency=medium

  [ Scott Kitterman ]
  * Drop unused B-D-I on libhtml-tree-perl
  * Use dpkg-vendor instead of lsb-release to determine distribution.

  [ Matthias Klose ]
  * Bump version to 3.4.2.
  * Bump standards version to 3.9.6.
  * Build-depend on python3.4 and dpkg-dev versions to consistently
    generate the i586-* symlinks. Closes: #762980.

 -- Matthias Klose <doko@debian.org>  Wed, 08 Oct 2014 12:52:49 +0200

python3-defaults (3.4.1-1) unstable; urgency=medium

  * Bump version to 3.4.1.
  * Drop python3.3 as a supported python version.
  * Build a python3-venv binary package.
  * Fix lintian warnings.
  * py3versions: Ignore blank lines before the source section in the control
    file. Closes: #739935.

 -- Matthias Klose <doko@debian.org>  Wed, 04 Jun 2014 12:39:42 +0200

python3-defaults (3.4.1~rc1-1) unstable; urgency=medium

  * Upload to unstable
  * Bump version to 3.4.1~rc1

 -- Scott Kitterman <scott@kitterman.com>  Tue, 27 May 2014 22:49:41 -0400

python3-defaults (3.4~rc1-1) experimental; urgency=medium

  * Default to python3.4.

 -- Matthias Klose <doko@debian.org>  Wed, 12 Feb 2014 13:03:28 +0100

python3-defaults (3.3.4-1) unstable; urgency=medium

  * Bump version to 3.3.4.

 -- Matthias Klose <doko@debian.org>  Wed, 12 Feb 2014 11:15:40 +0100

python3-defaults (3.3.3-1) experimental; urgency=low

  * Add python3.4 as a supported python version.

 -- Matthias Klose <doko@debian.org>  Thu, 26 Dec 2013 00:39:55 +0100

python3-defaults (3.3.2-17) unstable; urgency=low

  * Add Multi-Arch: allowed for python3-all-dev.

 -- Matthias Klose <doko@debian.org>  Wed, 18 Sep 2013 15:46:08 +0200

python3-defaults (3.3.2-16) unstable; urgency=low

  * Restore :any relationship for python3-minimal build-dep now that it is
    supported on the buildds

 -- Scott Kitterman <scott@kitterman.com>  Sat, 07 Sep 2013 17:11:07 -0400

python3-defaults (3.3.2-15) unstable; urgency=low

  * Drop non-existing :any from python3-minimal build-dep.

 -- Scott Kitterman <scott@kitterman.com>  Sun, 18 Aug 2013 11:38:29 -0400

python3-defaults (3.3.2-14) unstable; urgency=low

  * Add python3.1 and python3.2 to unsupported-versions
  * Build-depend on python3-minimal:any instead of python since that's what's
    used during the build now
  * Build-depend on python3-docutils instead of python-docutils
  * Add Multi-Arch: allowed for python3-all and python3-all-dbg
  * Add libpython3-dbg to python3-dbg depends
  * Add libpython3-dev to python3-dev depends
  * Use generated depends in control.in for libpython3-stdlib as with other
    binaries
  * Set UPSTRVER for Ubuntu in debian/rules so correct results are produced in
    both Debian and Ubuntu

 -- Scott Kitterman <scott@kitterman.com>  Sun, 18 Aug 2013 06:22:22 -0400

python3-defaults (3.3.2-13) unstable; urgency=low

  * Bump python3-minimal Breaks/Replaces python3 versions to 3.3.2-13~ to
    account for files moved in -4 and later (Closes: #718734)
  * Fix broken libpython3-all-dbg symlink

 -- Scott Kitterman <scott@kitterman.com>  Mon, 05 Aug 2013 02:25:13 -0400

python3-defaults (3.3.2-12) unstable; urgency=low

  * Re-upload with a version newer than the one in experimental.
  * Build libpython3-all-{dev,dbg} and libpython3-stdlib packages.
  * Move debiandoc-sgml and lsb-release from Build-Depends-Indep to
    Build-Depends.

 -- Matthias Klose <doko@debian.org>  Sat, 03 Aug 2013 09:52:26 +0200

python3-defaults (3.3.2-5) unstable; urgency=low

  * Drop python3.2 from supported python3 versions

 -- Scott Kitterman <scott@kitterman.com>  Fri, 02 Aug 2013 22:58:22 -0400

python3-defaults (3.3.2-4) unstable; urgency=low

  * Upload to unstable
  * Remove /usr/share/python3/debpython/__pycache__ in python3-minimal's prerm
  * Change source format back to 1.0 (native)

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 01 Aug 2013 21:41:34 +0200

python3-defaults (3.3.2-11) experimental; urgency=low

  * Make datetime module optional in debpython (it's not available in
    python3.X-minimal, closes: #717232)

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 18 Jul 2013 22:50:17 +0200

python3-defaults (3.3.2-10) experimental; urgency=low

  [ Matthias Klose ]
  * Move py3compile and py3clean back to the python3-minimal package.

  [ Piotr Ożarowski ]
  * Remove pybuild and dh_python3, dh-python source package provides it now
  * Add dh-python dependency in python3 package (to make sure dh_python3 is
    installed)
  * Bump Standards-Version to 3.9.4

 -- Piotr Ożarowski <piotr@debian.org>  Mon, 15 Jul 2013 23:48:04 +0200

python3-defaults (3.3.2-3) unstable; urgency=low

  * Bump python3-minimal Breaks/Replaces python3 versions to 3.3.2-1~ to
    account for files moved in -2 (closes: #717373)

 -- Scott Kitterman <scott@kitterman.com>  Sun, 21 Jul 2013 09:30:39 -0400

python3-defaults (3.3.2-2) unstable; urgency=low

  [ Matthias Klose ]
  * Build dependency packages as architecture dependent packages.
  * Make python3, python3-{minimal,dev,dbg} Multi-Arch: allowed.
  * Don't use the `u' abi flag when defaulting to 3.3.
  * Build Multi-Arch: same packages libpython3-{dev,dbg} packages providing
    $(DEB_HOST_MULTIARCH)-python3-config symlinks.

  [ Piotr Ożarowski ]
  * Move python-docutils to Build-Depends (python3 package is now arch:any)

  [ Dmitry Shachnev ]
  * Include architecture.mk in debian/rules instead of defining
    DEB_HOST_* manually.

  [ Scott Kitterman ]
  * Correct doc directory in README.Debian
  * Bump standards version to 3.9.4 without further change

 -- Scott Kitterman <scott@kitterman.com>  Wed, 17 Jul 2013 17:14:22 -0400

python3-defaults (3.3.2-1) unstable; urgency=low

  [ Scott Kitterman ]
  * Make python3.3 the default python3
  * When X-Python3-Version is not present, do not describe it as missing,
    just indicate it is not there

  [ Matthias Klose ]
  * Bump version to 3.3.2.
  * Don't use the `u' abi flag when defaulting to 3.3.

 -- Scott Kitterman <scott@kitterman.com>  Sun, 14 Jul 2013 18:35:33 -0400

python3-defaults (3.3.0-3) experimental; urgency=low

  [ Piotr Ożarowski ]
  * pybuild:
    - add --ext-dest-dir (PYBUILD_EXT_DESTDIR) and --ext-pattern
      (PYBUILD_EXT_PATTERN) options to move files after install step
    - save before/after command logs if quiet mode is on
    - do not warn about limiting versions if there's only one
    - distutils plugin: do not skip build in install target
      (ugly workaround for yet another distutils "feature",
      closes: #701137)
    - do not run tests if DEB_BUILD_OPTIONS contains "nocheck"
  * dh_python3:
    - add version range to py3compile in maintainer scripts
    - no longer sensitive to trailing slash in private dir names
      (closes: #701215)
  * Bump minimum required dpkg-dev build dependency to 1.16.1~
    (due to architecture.mk in debian/rules)

  [ Dmitry Shachnev ]
  * Include architecture.mk in debian/rules instead of defining
    DEB_HOST_* manually.
  * tests/t1: Build-depend on python3-all instead of python-all.
  * Make tests work without python-support installed.
  * debian/tests/control: Add a dependency on libjs-jquery (test1 contains
    a symlink to /usr/share/javascript/jquery/jquery.js).
  * Added missing docinfo to man pages, to fix a lintian warning
    (Closes: #702777).

  [ Matthias Klose ]
  * dh_python3: Use the multiarch tuple for the host (if DEB_HOST_MULTIARCH
    is set in the environment).
  * Add a libpython3-stdlib package (not yet built).

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 17 Mar 2013 13:47:29 +0100

python3-defaults (3.3.0-2) experimental; urgency=low

  [ Piotr Ożarowski ]
  * dh_python3:
    - add multiarch support (rename extensions in dist-packages)
    - rename foomodule.so to foo.so in dist-packages (for Python >= 3.3)
  * pybuild:
    - add --{before,after}-{clean,configure,build,install,test}
      command line options and many more PYBUILD_FOO environment vars
      (f.e. PYBUILD_DESTDIR, PYBUILD_DESTDIR_python3,
      PYBUILD_DESTDIR_python3.3-dbg)
    - add --disable command line option (to disable step, interpreter, version
      or any mix of them); drop --no-clean and --no-tests arguments
      (replaced by --disable clean, --disable test or --disable 'clean test')
    - add new build system to dh sequencer (dh --buildsystem=pybuild)
    - add manpage
  * Move python-docutils to Build-Depends (python3 package is now arch:any) 

  [ Matthias Klose ]
  * Build dependency packages as architecture dependent packages.
  * Make python3, python3-{minimal,dev,dbg} Multi-Arch: allowed.
  * Don't use the `u' abi flag when defaulting to 3.3.
  * Build Multi-Arch: same packages libpython3-{dev,dbg} packages providing
    $(DEB_HOST_MULTIARCH)-python3-config symlinks.
  * Add Multi-Arch: same packages libpython3-all-{dev,dbg} (not yet built,
    python3.2 doesn't have support for multiarch).

  [ Dmitry Shachnev ]
  * debpython/interpreter.py: fix failing doctest
    (architecture no longer hardcoded)
  * Added DEP-8 tests (Closes: #698002).

 -- Piotr Ożarowski <piotr@debian.org>  Sat, 12 Jan 2013 17:13:14 +0100

python3-defaults (3.3.0-1) experimental; urgency=low

  [ Piotr Ożarowski ]
  * Add Python 3.3 to the list of supported Python 3 versions and make it a
    default one.
  * dh_python3:
    - remove egg-info file/dir while moving files to common directory
      if the later one already contains it
  * rewrite dh_python3.1, py3compile.1 and py3clean.1 manpages in
    ReStructured Text
  * Add pybuild

  [ Scott Kitterman ]
  * Update Makefile to install pybuild
  * Fix file name typo in README.derivatives

 -- Scott Kitterman <scott@kitterman.com>  Mon, 26 Nov 2012 09:20:46 -0500

python3-defaults (3.2.3-7) unstable; urgency=low

  * Add Python 3.3 as a supported Python version.

 -- Matthias Klose <doko@debian.org>  Mon, 06 May 2013 03:05:02 +0200

python3-defaults (3.2.3-6) unstable; urgency=low

  [ Piotr Ożarowski ]
  * dh_python3
    - ignore empty files while trying to normalize shebangs 
    - mention the right file (debian/py3dist-overrides) while warning about
      guessed dependency - thanks to Sebastian Ramacher for the patch
      (Closes: #685067)
    - fix generating dependencies when maximum version is specified
      (Closes: #687060)
  * py3versions.py: fix parsing DEBPYTHON3_SUPPORTED env. variable
    (versions should be separated using comma, as in debian_defaults
    config file)
  * py3versions, debpython: close previously opened files - thanks to Dmitry
    Shachnev for the patch (Closes: #686587)

  [ Dmitry Shachnev ]
  [ Barry Warsaw ]
  * py3clean: Don't remove everything in the __pycache__ directory for
    system site package directories. Prevents bogus cleaning of unrelated
    *.pyc files. Original patch by Dmitry, with review, clean up, small
    modifications, and additional comments by Barry. (Closes: #685167)

  [ Barry Warsaw ]
  * dh_python3: Rework calculation of extension tags to add support for
    Python 3.3's different suffixes, and to allow for unadorned .so files
    to assume they are built with the default Python 3 version.
    Closes: 672178
  * README.derivatives: It is no longer necessary to edit
    debian/py3versions.py since the values are taken from
    debian_defaults. Also added some text on how to separate the
    specification when multiple versions are supported.
  * Makefile: Fix the nosetests3 command. Closes: 690259

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 21 Oct 2012 21:29:45 +0200

python3-defaults (3.2.3-5) unstable; urgency=low

  * dh_python3:
    - do not rewrite /usr/bin/python{,2.*} shebangs
      (Closes: #683294, /me still thinks it was a feature, not a bug)
    - parsing debian/control fields is now case insensitive
  * Change source format from native to 3.0 (native)

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 02 Aug 2012 23:26:08 +0200

python3-defaults (3.2.3-4) unstable; urgency=high

  * py3clean: really close #681389

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 12 Jul 2012 22:45:47 -0600

python3-defaults (3.2.3-3) unstable; urgency=high

  * Yet another update in SHEBANG_RE to handle even more cases
  * test4 fixed to catch missing /usr/bin/python → /usr/bin/python3 rewrites
  * py3clean: accept --package *and* directory name at the same time
    (change missed in -1 upload, closes: #681389)
  * Bump minimum required python3 version to 3.2.3-3~ in packages with .py files
    (due to --package option that is added to py3compile/py3clean in rtupdate
    scripts)

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 12 Jul 2012 12:40:42 -0600

python3-defaults (3.2.3-2) unstable; urgency=high

  * Urgency high for grave bug because this will cause other packages to
    misbuild
  * Correct SHEBANG_RE in debpython/tools.py to not capture the 3 from python3
    (Closes: #681235)

 -- Scott Kitterman <scott@kitterman.com>  Wed, 11 Jul 2012 11:51:46 -0400

python3-defaults (3.2.3-1) unstable; urgency=low

  * Bump upstream version to match current unstable/wheezy python3.2 version
  * dh_python3:
    - generates rtupdate scripts for private directories that compile files
      from given package only, add --compile-all to dh_python3's call if you
      want the old behaviour (i.e. compile also files (plugins?) provided by
      other packages, which do not use a helper/bytecompile them)
    - rewrite shebangs by default (disable via --no-shebang-rewrite),
      examples:
       + "/usr/bin/env python3*" → "/usr/bin/python3*"
       + "/usr/local/bin/python3 foo" → "/usr/bin/python3 foo"
    - new --shebang option to replace all shebangs in bin dirs
      (example: --shebang /usr/bin/python3)
    - translate Python version numbers into Debian ones for those
      require.txt items that have a pydist file with (uscan like) rules
      or PEP386 flag
  * py3versions, dh_python3, py3compile: allow to override system's list of
    supported Python3 versions via DEBPYTHON3_SUPPORTED and default Python3
    version via DEBPYTHON3_DEFAULT env. variables
  * Debhelper's python3 sequence now inserts dh_python3 before dh_installinit

 -- Piotr Ożarowski <piotr@debian.org>  Sat, 30 Jun 2012 15:20:39 +0200

python3-defaults (3.2.3~rc2-1) unstable; urgency=low

  [ Scott Kitterman ]
  * Drop unused XS-Python-Version support from dh_python3
  * Remove unused debian/pyversions support from dh_python3
  * Remove unused support for comma delimited lists of versions with
    X-Python3-Version from py3versions and debpython/debhelper.py (dh_python3)
  * Clean up log messages in py3versions a bit
  * Remove unused code related to parsing debian/pyversions from
    debian/py3versions 
  * idle3 should Break as well as Replace python3
  * Correct Python package names with hyphens in them being ignored
    (Closes: #657667)
  * Fix python3.2 related deprecation and resource warnings in
    debian/py3versions.py (Closes: #670471)
  * Drop -n from /usr/bin/idle3 invocations in debian/idle.desktop and
    debian/idle.menu (Closes: #671704)
  * dh_python3, py3versions: make comparison of X-Python-Version field names
    case-insensitive (Closes: #676225)
    - Change based on Piotr Ożarowski's change for python-defaults
  * Bump upstream version number to match python3.2 (3.2.3~rc2)
  * Bump minimum debhelper version to 7.0.50~ to support minumum version
    needed by tests
  * Add debian/python3-minimal.postinst.in and python3-minimal.prerm to
    support byte compiling py3versions.py (Closes: #672226)
    - byte compiling only works if py3compile is present, which it may not be
      on fresh installs, but removing .pyc files is reliable (best we can do
      without moving py3compile to python3-minimal
  * Move /usr/bin/py3versions -> ../share/python3/py3versions.py symlink from
    python3 to python3-minimal to match the change in python-defaults
    - Add Breaks/Replaces

  [ Piotr Ożarowski ]
  * Generate correct python3 (<< 3.X) dependencies when maximum Python 3
    version is specified (Closes: #675703)

 -- Scott Kitterman <scott@kitterman.com>  Tue, 05 Jun 2012 23:58:13 -0400

python3-defaults (3.2.3~rc1-2) unstable; urgency=low

  * Fix max version expansion for -V/X-P-V to be the max version and not +1
  * Move idle3.xpm symlink from python3 to idle3 and add Replaces
  * Add 'dependency package' to long description of python3-all,
    python3-all-dev, and python3-all-dbg

 -- Scott Kitterman <scott@kitterman.com>  Fri, 16 Mar 2012 17:19:58 -0400

python3-defaults (3.2.3~rc1-1) unstable; urgency=low

  * debpython/depends.py:
    - Add functional support for -V, specify list of supported Python versions
      for dh_python3
  * Adjust upstream version number to match current python3.2 version
  * Bump standards version to 3.9.3 without further change

 -- Scott Kitterman <scott@kitterman.com>  Thu, 15 Mar 2012 00:43:38 -0400

python3-defaults (3.2.2-1) unstable; urgency=low

  [ Scott Kitterman ]
  * Update upstream version to match python3.2
  * Add versioned idle3 package to idle3 depends (Closes: #637973)
  * Fix typo in debian/py3versions.1 (Closes: #651342)
    - Patch thanks to Daniel Stender
  * Specify Python 3 and not just Python in python3-doc/dbg descriptions
  * Add build-arch and build-indep targets in debian/rules
  * Add native-package-with-dash-version to source lintian overrides
  * Add idle3.lintian-overrides for menu-icon-missing since it is provided
    in the python3 package
  * Bump standards version to 3.9.2 without further change

  [ Matthias Klose ]
  * Add symlinks for python3-config man page.
  * Add symlinks for binaries and man pages including the abi flags.

  [ Piotr Ożarowski ]
  * py3compile:
    - fix -O option
    - speed up a bit (remove unnecessary interpreter calls)

 -- Scott Kitterman <scott@kitterman.com>  Wed, 11 Jan 2012 17:26:18 -0500

python3-defaults (3.2.2~rc1-2) unstable; urgency=medium

  * Medium urgency to avoid blocking the python2.7 transition
  * python3 now provides python3-profiler
  * Drop suggests on old (non-free) python3-profiler package

 -- Scott Kitterman <scott@kitterman.com>  Wed, 28 Sep 2011 11:29:05 -0400

python3-defaults (3.2.2~rc1-1) unstable; urgency=low

  * Update upstream version to match python3.2
  * dh_python3: Assume .so files without tag in /usr/lib/python3/ are built for
    Python 3.2 instead of for Python 3.1
  * dh_python3 and dh_python3.1: add --no-dbg-cleaning option (to disable
    removing files from debug packages) from dh_python2

 -- Scott Kitterman <scott@kitterman.com>  Sun, 25 Sep 2011 01:14:16 -0400

python3-defaults (3.2-3) unstable; urgency=low

  * Fix a typo in dh_python3 and generate correct prerm scripts
    (with py3clean rather than pyclean, thanks to IRIE Shinsuke for bug
    reporta and a patch, closes: 622708, LP: #760401)

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 14 Apr 2011 21:44:29 +0200

python3-defaults (3.2-2) unstable; urgency=low

  [ Piotr Ożarowski ]
  * Drop Python 3.1 from supported Python 3 versions
  * python.mk: add py_builddir and py_builddir_sh macros.
    $(call py_builddir, 3.2) returns "build/lib.linux-x86_64-3.2" on amd64

  [ Scott Kitterman ]
  * Upload to unstable

 -- Scott Kitterman <scott@kitterman.com>  Sun, 03 Apr 2011 19:02:43 -0400

python3-defaults (3.2-1) experimental; urgency=low

  [ Piotr Ożarowski ]
  * dh_python3 and py3compile: read /usr/share/python3/debian_defaults to get
    default Python 3 version and a list of supported Python 3 versions
  * py3compile:
    - let py_compile.py warn about syntax errors again
  * dh_python3:
    - fix checking shebangs in private directories (executable bit wasn't
      checked correctly)
    - private modules without extensions will not cause FTBFS anymore
      (closes: 617358, thanks to IRIE Shinsuke for the patch)
    - generate "python3 (>= 3.X), python3 (<< 3.Y)" dependencies if package
      provides public extensions
    - make egg-info files/dirs searches case insensitive

  [ Scott Kitterman ]
  * More Python/Python 3 in package descriptions

 -- Scott Kitterman <scott@kitterman.com>  Wed, 23 Mar 2011 22:48:56 -0400

python3-defaults (3.2~rc1-2) experimental; urgency=low

  * dh_python3: add support for DH_OPTIONS env. variable
  * disable check_versions test and drop python3 package from Build-Depends

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 20 Jan 2011 23:29:04 +0100

python3-defaults (3.2~rc1-1) experimental; urgency=low

  * Bump Python minimum version to >= 3.2~rc1
  * dh_python3: ignore binary files while checking shebangs
  * py3compile: fix magic number check

 -- Piotr Ożarowski <piotr@debian.org>  Wed, 19 Jan 2011 19:16:30 +0100

python3-defaults (3.2~b2-2) experimental; urgency=low

  * dh_python3
    - fix moving files from old debug locations
    - move as many files to /usr/lib/python3/dist-packages as possible
      (files that cannot be shared between Python 3.X versions are left in
      original location for now)
    - add tag name to Python >= 3.2 extensions if they're missing (due to
      custom build system) in /usr/lib/pythonX.Y/dist-packages directories

 -- Piotr Ożarowski <piotr@debian.org>  Thu, 06 Jan 2011 21:22:51 +0100

python3-defaults (3.2~b2-1) experimental; urgency=low

  [ Matthias Klose ]
  * Default to Python 3.2.
  * py3compile:
    - Don't over-optimize, check the timestamps of byte-code files.
    - Add options -f/--force, -O.
    - Copy stdout/stderr of py_compile processes in case of error.
    - Propagate the exit value of the py_compile processes.
    - Update manual page.
  * Bump depends to require the fixed pycompile for dh_python3 based package
    builds.
  * Don't touch the standard python library in rtupdate scripts.

  [ Piotr Ożarowski ]
  * dh_python3:
    - do not rename .so files outside dist-packages directory
      (Python 3.1 tag name will be added only in public directories)
    - generate proper dependencies/maintainer scripts for private
      directories with private extensions for more than one Python version
    - fix a crash in packages with private extension, test2 added (to test
      architecture dependent packages)
   * Invoke /usr/share/python3/runtime.d/ hooks in python3's preinst and
     postinst

  [ Scott Kitterman ]
  * Convert python.desktop to python3.desktop

 -- Scott Kitterman <scott@kitterman.com>  Thu, 23 Dec 2010 17:55:40 -0500

python3-defaults (3.1.3-15) experimental; urgency=low

  [ Matthias Klose ]
  * Depend on the 3.1.1 versions of the packages.

  [ Piotr Ożarowski ]
  * py3compile: do not try to check if interpreter is present when version
    range is empty

 -- Matthias Klose <doko@debian.org>  Tue, 30 Nov 2010 18:43:11 +0100

python3-defaults (3.1.2-15) experimental; urgency=low

  * debpython/version.py: Add 3.2 as supported version.

 -- Matthias Klose <doko@debian.org>  Sat, 16 Oct 2010 15:03:53 +0200

python3-defaults (3.1.2-14) experimental; urgency=low

  * Add python3.2 as a supported version.

 -- Matthias Klose <doko@debian.org>  Thu, 14 Oct 2010 16:42:31 +0200

python3-defaults (3.1.2-12) unstable; urgency=low

  * Upload to unstable

 -- Piotr Ożarowski <piotr@debian.org>  Wed, 22 Sep 2010 23:20:10 +0200

python3-defaults (3.1.2-11) experimental; urgency=low

  * dh_python3:
    - egg renaming fixed
    - generate correct dependency for /usr/bin/python3 shebangs

 -- Piotr Ożarowski <piotr@debian.org>  Wed, 15 Sep 2010 23:18:56 +0200

python3-defaults (3.1.2-10) experimental; urgency=low

  * dh_python3: fix python3:Versions and python3:Provides (now lists Python
    versions for which public extensions are provided by binary package)

 -- Piotr Ożarowski <piotr@debian.org>  Mon, 13 Sep 2010 23:03:02 +0200

python3-defaults (3.1.2-9) experimental; urgency=low

  * dh_python3: add tag name to extension files that are missing it
    (to avoid conflicts with python3.2 in Wheezy)

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 12 Sep 2010 19:05:46 +0200

python3-defaults (3.1.2-8) experimental; urgency=low

  * py3compile: recognize /usr/lib/python3/ directories correctly
    (dh_python3: minimum required python version bumped to 3.1.2-8)

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 12 Sep 2010 17:26:21 +0200

python3-defaults (3.1.2-7) experimental; urgency=low

  [ Piotr Ożarowski ]
  * py3versions.py: open debian/control files with encoding='utf-8' as
    otherwise all my packages (with "ż" in debian/control) will FTBFS if
    user's locale is not set to UTF-8 (f.e. in build daemons)
  * dh_python3:
    - adjust to python3.1 3.1.2+20100909-1 changes
    - move files from /usr/lib/python3.X/dist-packages to
      /usr/lib/python3/dist-packages
    - set the right minimum required python3 package version in
      packages with private modules (for py3compile)
    - add dist_fallback file with a list of Python distribution name and
      Debian package name pairs (to be used as a fall back source for
      PyDist feature)
    - if dist_fallback and `dpkg -S` fails to find the right package name,
      fall back to package name recommended by Debian Python Policy (use
      debian/py3dist-overrides file to override)
  * py3compile, py3clean: adjust to PEP 3147 changes, -R option removed
  * Add manpages for dh_python3, py3compile and py3clean
  * Add README.derivatives (source package)

  [ Matthias Klose ]
  * python3: Install /usr/share/python3/python.mk.
  * python.mk (py_libdir): Return /usr/lib/python3/dist-packages for 3.x
    versions.
  * python.mk (py_pkgname): New macro to refer the package name depending
    on the python version.
  * Generate dependencies on python3 (>= 3.1.2-7~).
  * Require python3.1 3.1.2+20100909 as minimal version.

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 12 Sep 2010 15:54:25 +0200

python3-defaults (3.1.2-6) unstable; urgency=low

  [ Matthias Klose ]
  * Substitution variables for control files always start with a `python3'
    prefix (python:Versions -> python3:Versions, python:Provides ->
    python3:Provides).
  * Generate dependencies on python3 (>= 3.1.2-6~).

  [ Piotr Ożarowski ]
  * py3compile: do not hang if interpreters are not started in the same order
    as they're used
  * dh_python3: pass shallow=False to cmpfiles to make sure file comparison
    works as expected

  [ Scott Kitterman ]
  * Us X-Python3-Version for Python 3 instead of XS-Python-Version (which
    should just be used for Python)

 -- Piotr Ożarowski <piotr@debian.org>  Fri, 13 Aug 2010 23:27:45 +0200

python3-defaults (3.1.2-5) unstable; urgency=medium

  * Add README.PyDist to python3-doc package
  * py3compile: compile public module for the right Python version
  * dh_python3: rename --depend to --depends, --recommend to --recommends and
    --suggest to --suggests
  * Bump Standards-Version to 3.9.1

 -- Piotr Ożarowski <piotr@debian.org>  Wed, 28 Jul 2010 22:34:17 +0200

python3-defaults (3.1.2-4) unstable; urgency=low

  * dh_python3:
    - add --depend, --recommend and --suggest command line options
     (use it if requires.txt doesn't contain dependency that package needs)
    - add {/usr,}/sbin to the list of directories with checked shebangs
  * py3compile: do not exit before all background byte compilation is finished

 -- Piotr Ożarowski <piotr@debian.org>  Sun, 25 Jul 2010 16:25:04 +0200

python3-defaults (3.1.2-3) unstable; urgency=low

  [ Piotr Ożarowski ]
  * pyclean, pycompile: use .communicate() instead of .wait() to avoid hanging
    `dpkg -L PACKAGE` in few situations
  * dh_python3: follow Distribute and replace all non-alphanumeric
    characters with underscore in distribution name
  * Add python3.{postinst,prerm} scripts
  * python3-doc now suggests python3-examples
  * Bump Standards-Version to 3.9.0

  [ Scott Kitterman ]
  * Drop deprecated call to dh_desktop from debian/rules
  * Bump PREVVER to 3.1.2-3~ for support for stdin in py_compile.py

  [ Matthias Klose ]
  * Provide the python3.pc symlink in python3-dev.
  * Call py3clean/py3compile on rtupdate in generated scripts.

 -- Matthias Klose <doko@debian.org>  Tue, 20 Jul 2010 20:20:01 +0200

python3-defaults (3.1.2-2) unstable; urgency=low

  * Add Vcs-Browser field
  * Add some lintian overrides (for false positives)
    - bump minimum required debhelper version to 6.0.7 (due to dh_lintian)
  * py3compile, py3clean and dh_python3 moved to python3 package
  * dh_python3:
    - some bugs fixed (encoding problems, parsing Python-Version,
      few python vs python3 leftovers)

 -- Piotr Ożarowski <piotr@debian.org>  Wed, 23 Jun 2010 22:57:23 +0200

python3-defaults (3.1.2-1) unstable; urgency=low

  [ Matthias Klose ]
  * Depend on the 3.1.2 versions of the packages.
  * Add py3clean, py3compile binaries to be called from python3-*
    maintainer scripts.
  * Don't allow installation of a mix of defaults packages for different
    python3 versions.

  [ Scott Kitterman ]
  * Provide default and supported Python3 versions (3.1 to start)
    - Rename pyversions(.py)(.1) to py3versions(.py)(.1)
    - Port py3versions.py to Python 3
    - Update py3versions to use python3 specific locations
    - Update py3versions to ignore all, current and python versions < 3.0 and
      not to use debian/pyversions
    - Update debian_defaults for python3
    - Install debian_defaults for python3
    - Update debian/rules
  * Update debian/copyright from python3.1 LICENSE file
  * Add myself to uploaders

  [ Piotr Ożarowski ]
  * Add dh_python3, py3compile and py3clean
  * Add myself to Uploaders

 -- Matthias Klose <doko@debian.org>  Fri, 18 Jun 2010 00:10:21 +0200

python3-defaults (3.1.1-1) unstable; urgency=low

  * Depend on the 3.1.1 versions of the packages.

 -- Matthias Klose <doko@debian.org>  Fri, 22 Jan 2010 17:44:37 +0100

python3-defaults (3.1-1) experimental; urgency=low

  * Depend on the 3.1 versions of the packages.

 -- Matthias Klose <doko@debian.org>  Thu, 23 Jul 2009 17:27:33 +0200

python3-defaults (3.0.1-0ubuntu4) jaunty; urgency=low

  * Make idle3 actually run with /usr/bin/python3.  (LP: #336381)
  * Remove unused idle.sh that led to the previous confusion.

 -- Anders Kaseorg <andersk@mit.edu>  Thu, 12 Mar 2009 15:37:50 -0400

python3-defaults (3.0.1-0ubuntu3) jaunty; urgency=low

  * Make idle3 run with /usr/bin/python3, not /usr/bin/python.
    (LP: #336381)
  * Remove Essential: yes from python3-minimal, and reduce the Priority of
    python3 and python3-minimal to optional.  (LP: #330613)

 -- Anders Kaseorg <andersk@mit.edu>  Sun, 08 Mar 2009 18:30:38 -0400

python3-defaults (3.0.1-0ubuntu2) jaunty; urgency=low

  * Depend on the 3.0.1 versions of the packages.

 -- Matthias Klose <doko@ubuntu.com>  Mon, 16 Feb 2009 23:23:06 +0100

python3-defaults (3.0~b3-0ubuntu1) intrepid; urgency=low

  * Build new defaults for python3.

 -- Matthias Klose <doko@ubuntu.com>  Mon, 15 Sep 2008 22:21:59 +0000

python-defaults (2.5.2-1ubuntu1) intrepid; urgency=low

  * Merge with Debian; remaining changes:
    - Build the -doc package from this source package.
    - Omit Debian specific upgrade code.
    - Regenerate the control file.

 -- Matthias Klose <doko@ubuntu.com>  Mon, 23 Jun 2008 13:13:51 +0200

python-defaults (2.5.2-0ubuntu1) hardy; urgency=low

  * Depend on the 2.5.2 versions of the packages.

 -- Matthias Klose <doko@ubuntu.com>  Mon, 10 Mar 2008 18:03:30 +0000

python-defaults (2.5.1-1ubuntu2) gutsy; urgency=low

  * Temporarily loosen the dependency on python2.5 to allow python2.5
    to build on powerpc and sparc.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 27 Apr 2007 00:00:32 +0200

python-defaults (2.5.1-1ubuntu1) gutsy; urgency=low

  * Depend on the 2.5.1 versions of the packages.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 26 Apr 2007 11:23:17 +0200

python-defaults (2.5.1~rc1-0ubuntu3) feisty; urgency=low

  * Fix versioned build dependency on python2.5.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 13 Apr 2007 06:37:58 +0200

python-defaults (2.5.1~rc1-0ubuntu2) feisty; urgency=low

  * Add a sanity check, that /usr/bin/python points to the default
    python version. Users tend to modify this symlink, which then
    breaks stuff in obscure ways. Ubuntu #75557, Debian #418002.

 -- Matthias Klose <doko@ubuntu.com>  Fri,  6 Apr 2007 17:47:24 +0200

python-defaults (2.5.1~rc1-0ubuntu1) feisty; urgency=low

  * Depend on the 2.5.1~rc1 versions of the packages.

 -- Matthias Klose <doko@ubuntu.com>  Fri,  6 Apr 2007 11:13:10 +0000

python-defaults (2.5-0ubuntu6) feisty; urgency=low

  * python-dbg: Add a python-dbg-config binary.

 -- Matthias Klose <doko@ubuntu.com>  Sat, 17 Feb 2007 21:39:44 +0100

python-defaults (2.5-0ubuntu5) feisty; urgency=low

  * python-all-dbg: Tighten dependencies on the python2.x-dbg packages.
  * python-dbg: Provide python-gdbm-dbg, python-tk-dbg,
    link to README.debug, SpecialBuilds.txt.gz.
  * python-dev: Add an unversioned python-config binary.
  * Readd build-dependency on python-docutils.
  * Set Ubuntu maintainer address.
  * Update the FAQ.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 16 Feb 2007 18:18:06 +0100

python-defaults (2.5-0ubuntu4) feisty; urgency=low

  * New package python-all-dbg.

 -- Matthias Klose <doko@ubuntu.com>  Fri,  9 Feb 2007 01:16:09 +0100

python-defaults (2.5-0ubuntu3) feisty; urgency=low

  * Temporarily remove build-dependency on python-docutils.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 12 Jan 2007 13:06:50 +0000

python-defaults (2.5-0ubuntu2) feisty; urgency=low

  * Fix icon for desktop file.
  * Robustify building the faq html pages.
  * Make the suggestions of various packages versioned.
  * Recommend depending on "pythonX.X-foo, python-foo" instead of recommending
    to only depend on "pythonX.X-foo" when a particular version is needed to
    permit upgrades from real packages to virtual ones. (Loic Minier).

 -- Matthias Klose <doko@ubuntu.com>  Fri, 12 Jan 2007 11:42:02 +0000

python-defaults (2.5-0ubuntu1) feisty; urgency=low

  * Make python2.5 the default version.

 -- Matthias Klose <doko@ubuntu.com>  Fri, 12 Jan 2007 09:10:52 +0000

python-defaults (2.4.4-1ubuntu2) feisty; urgency=low

  * python-minimal is essential, not python.

 -- Matthias Klose <doko@ubuntu.com>  Thu,  7 Dec 2006 14:25:20 +0000

python-defaults (2.4.4-1ubuntu1) feisty; urgency=low

  * Merge with Debian unstable.
    - Backout: Add 2.5 to unsupported-versions.
  * Build the FAQ again.

 -- Matthias Klose <doko@ubuntu.com>  Thu, 16 Nov 2006 15:21:31 -0800

python-defaults (2.4.4-1) unstable; urgency=medium

  * Depend on the 2.4.4 versions of the packages.
  * Sync pyversions.py with python-central.
  * Move 2.3 to old-versions, from supported-versions.
  * Add 2.5 to unsupported-versions.

 -- Matthias Klose <doko@debian.org>  Sun, 29 Oct 2006 11:06:39 +0100

python-defaults (2.4.3-11ubuntu3) edgy; urgency=low

  * Temporarily remove the FAQ and the build-dependency on python-docutils,
    so that the build dependencies can be installed.
    
 -- Matthias Klose <doko@ubuntu.com>  Wed, 20 Sep 2006 17:28:47 +0000

python-defaults (2.4.3-11ubuntu2) edgy; urgency=low

  * debian/pyversions:
    - merged the changes from python-central to support older python
      version (and not break on upgrades)

 -- Michael Vogt <michael.vogt@ubuntu.com>  Wed, 20 Sep 2006 16:42:12 +0200

python-defaults (2.4.3-11ubuntu1) edgy; urgency=low

  * Merge with Debian unstable.

 -- Matthias Klose <doko@ubuntu.com>  Fri,  8 Sep 2006 00:22:21 +0200

python-defaults (2.4.3-11) unstable; urgency=low

  * Add a conflict to python-central (<< 0.5.5).

 -- Matthias Klose <doko@debian.org>  Sun, 13 Aug 2006 19:32:59 +0000

python-defaults (2.4.3-10) unstable; urgency=low

  * Upload to unstable. Closes: #347440, #360851.
  * Let the preinst fail on the first failing pre-rtupdate hook,
    after running the corresponding failed-pre-rtupdate hook.
  * Reflect renaming of the docutils binaries. Closes: #377601.
  * Update the upstream FAQ.

 -- Matthias Klose <doko@debian.org>  Sat, 12 Aug 2006 20:28:30 +0200

python-defaults (2.4.3-9) experimental; urgency=low

  * Fix syntax error in python.preinst. Closes: #381673.

 -- Matthias Klose <doko@debian.org>  Sun,  6 Aug 2006 12:39:34 +0000

python-defaults (2.4.3-8) experimental; urgency=low

  * idle: Depend on python-tk, add desktop and menu files.

 -- Matthias Klose <doko@debian.org>  Sat,  5 Aug 2006 18:38:31 +0000

python-defaults (2.4.3-7) experimental; urgency=low

  * Update pyversions.py from 2.3.5-11.
  * Fix pyversions(1), -r takes exactly one parameter.
  * idle: Remove the dependency on idle-pythonX.Y, add start script
    and man page.

 -- Matthias Klose <doko@debian.org>  Sat,  5 Aug 2006 17:34:43 +0000

python-defaults (2.4.3-6) experimental; urgency=low

  * Remove python's dependency on python-central. Closes: #372658.
  * On upgrade of the runtime to a new major version, call the hooks
    (executable files) in /usr/share/python/runtime.d/*.rtupdate.
    - in python.preinst, call the script with parameters
        pre-rtupdate <old runtime> <new runtime>.
      run all hooks, then return exit with the correct exit status.
    - in python.postinst, call the script with parameters
        rtupdate <old runtime> <new runtime>.
      run all hooks, then return exit with the correct exit status.
    - in python.postinst, call the script with parameters
        post-rtupdate <old runtime> <new runtime>.
      run all hooks, then return exit with the correct exit status.
  * pyversions -r: If the XS-Python-Version field cannot be found in
    debian/control, fall back to debian/pyversions for the version
    information. Return with an error code, if the intersection of
    the versions in debian/pyversions and the supported python versions
    is empty. Fall back to the supported versions if no version
    information can be found. Based on a patch from Raphael Hertzog.
  * Reflect renaming of the docutils binaries. Closes: #377601.

 -- Matthias Klose <doko@debian.org>  Sat,  5 Aug 2006 17:54:43 +0200

python-defaults (2.4.3-5ubuntu1) edgy; urgency=low

  * Synchronize with Debian experimental.
  * Remove python's dependency on python-central. On upgrade of
    the runtime, call hooks /usr/share/python/runtime.d/*.rtupdate.
    Addresses: #372658.
  * pyversions -r: If the XS-Python-Version field cannot be found in
    debian/control, fall back to debian/pyversions for the version
    information. Return with an error code, if the intersection of
    the versions in debian/pyversions and the supported python versions
    is empty. Fall back to the supported versions if no version
    information can be found. Based on a patch from Raphael Hertzog.

 -- Matthias Klose <doko@ubuntu.com>  Wed,  5 Jul 2006 05:11:42 +0000

python-defaults (2.4.3-5) experimental; urgency=low

  * Tighten dependencies between packages built from this source.
    A versioned dependency on python-all / python-all-dev is enough
    to depend on the same version of python / python-dev.
  * python: Conflict with python-central (<< 0.4.17).
  * python: Depend on a python2.4 built for the updated Python policy.
  * python: Conflict with a python2.3 using the old Python policy.

 -- Matthias Klose <doko@debian.org>  Fri, 16 Jun 2006 18:15:00 +0200

python-defaults (2.4.3-4) experimental; urgency=low

  * Include version 0.4.1.0 of the python policy.
  * Fix 'pyversions -i'.

 -- Matthias Klose <doko@debian.org>  Tue, 13 Jun 2006 09:44:22 +0200

python-defaults (2.4.3-3) experimental; urgency=low

  * Point to the draft of the reworked Python policy.
  * Fix 'pyversions -r current' (Raphael Hertzog).

 -- Matthias Klose <doko@debian.org>  Mon, 12 Jun 2006 13:40:52 +0200

python-defaults (2.4.3-02) experimental; urgency=low

  * Really do not build python-doc.

 -- Matthias Klose <doko@debian.org>  Sun, 11 Jun 2006 23:25:02 +0000

python-defaults (2.4.3-1ubuntu1) edgy; urgency=low

  * Let the -all packages depend on the default packages (closes: #365219).
  * Add /usr/share/python/debian_defaults for some default values (i.e.
    the supported python versions).
  * Add /etc/python/debian_config for byte-compilation options.
  * Add a pyversions script to give information about python versions and
    parse the XS-Python-Version attribute.
  * Include version 0.4.1.0 of the python policy.

 -- Matthias Klose <doko@ubuntu.com>  Tue, 13 Jun 2006 13:22:43 +0200

python-defaults (2.4.3-01) experimental; urgency=low

  * Do not build the python-doc package from this source.

 -- Matthias Klose <doko@debian.org>  Sun, 11 Jun 2006 23:59:17 +0200

python-defaults (2.4.3-0) experimental; urgency=low

  * Upload to experimental.
  * Do not build the python-tk and python-gdbm packages from this source.
  * Let the -all packages depend on the default packages (closes: #365219).
  * Add /usr/share/python/debian_defaults for some default values (i.e.
    the supported python versions).
  * Add /etc/python/debian_config for byte-compilation options.
  * Add a pyversions script to give information about python versions and
    parse the XS-Python-Version attribute.

 -- Matthias Klose <doko@debian.org>  Sun, 11 Jun 2006 12:57:03 +0000

python-defaults (2.4.2-1) unstable; urgency=low

  * Change the default python version to 2.4.
  * Depend on python-central.

 -- Matthias Klose <doko@debian.org>  Thu, 12 Jan 2006 01:16:10 +0000

python-defaults (2.3.5-4) unstable; urgency=low

  * Add a package python-minimal. This package still depends on python2.3,
    will depend on python2.4-minimal when changing the default python version.
  * Add two dependency packages python-all and python-all-dev. These
    packages are used as build dependencies to determine the set of
    python version and implementations, which should be / currently are
    supported. Currently it depends on python2.3 and python2.4.  Future
    versions may add an updated version of jython and ironpython.
  * Update FAQ.

 -- Matthias Klose <doko@debian.org>  Thu, 12 Jan 2006 00:32:32 +0100

python-defaults (2.3.5-3) unstable; urgency=low

  * Add python-dbg package.
  * debian/control.in: idle enhances python.

 -- Matthias Klose <doko@debian.org>  Sun, 19 Jun 2005 13:49:16 +0200

python-defaults (2.3.5-2) unstable; urgency=low

  * Add valgrind support file /usr/lib/valgrind/python.supp (closes: #291128).
  * python-doc: Add an conflict/replace to older python packages.
    Closes: #297266.

 -- Matthias Klose <doko@debian.org>  Sat, 19 Mar 2005 22:49:29 +0100

python-defaults (2.3.5-1) unstable; urgency=low

  * Depend on python-2.3.5 packages.
  * Update FAQ.
  * python suggests python-profiler.

 -- Matthias Klose <doko@debian.org>  Sat, 12 Feb 2005 19:26:48 +0100

python-defaults (2.3.4-6) unstable; urgency=low

  * Add an 'Enhances: konsole' to the python package (closes: #286161).

 -- Matthias Klose <doko@debian.org>  Sun, 16 Jan 2005 12:53:58 +0100

python-defaults (2.3.4-5) unstable; urgency=low

  * Add conflict/replaces to ooold python-base package (closes: #279035).

 -- Matthias Klose <doko@debian.org>  Sun, 14 Nov 2004 11:44:14 +0100

python-defaults (2.3.4-4) unstable; urgency=low

  * Regenerate control file after adding python-docutils build dependency.
    Closes: #270177.

 -- Matthias Klose <doko@debian.org>  Mon,  6 Sep 2004 07:19:49 +0200

python-defaults (2.3.4-3) testing-proposed-updates; urgency=low

  * Unmodified 2.3.4-3sid, destination sarge, fixing build failure.

 -- Matthias Klose <doko@debian.org>  Fri, 20 Aug 2004 18:24:25 +0200

python-defaults (2.3.4-3sid) unstable; urgency=low

  * Add build dependency on python-docutils (closes: #266550).

 -- Matthias Klose <doko@debian.org>  Wed, 18 Aug 2004 12:30:37 +0200

python-defaults (2.3.4-2sid) unstable; urgency=low

  * Add pdb and pdb.1 symlinks.
  * Update FAQ.

 -- Matthias Klose <doko@debian.org>  Tue, 17 Aug 2004 16:17:06 +0200

python-defaults (2.3.4-1) unstable; urgency=low

  * Depend on python-2.3.4 packages.
  * Update FAQ.

 -- Matthias Klose <doko@debian.org>  Mon, 10 May 2004 06:58:24 +0200

python-defaults (2.3.3-7) unstable; urgency=low

  * Fix symlinks to proposed policy files (closes: #234874).

 -- Matthias Klose <doko@debian.org>  Thu, 26 Feb 2004 22:28:07 +0100

python-defaults (2.3.3-6) unstable; urgency=low

  * Build the default packages from a separate source package to ease
    migration between python versions.
  * Update to the proposed python-policy: byte-compile using -E.

 -- Matthias Klose <doko@debian.org>  Wed,  4 Feb 2004 23:16:35 +0100