File: changelog

package info (click to toggle)
nvidia-cuda-toolkit 11.8.0-5~deb12u1
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm
  • size: 18,338,396 kB
  • sloc: ansic: 172,472; cpp: 57,058; javascript: 21,597; python: 12,656; xml: 12,438; makefile: 2,949; sh: 2,056; perl: 352
file content (1801 lines) | stat: -rw-r--r-- 68,889 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
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
nvidia-cuda-toolkit (11.8.0-5~deb12u1) bookworm; urgency=medium

  * Rebuild for bookworm.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 29 Jun 2023 17:52:33 +0200

nvidia-cuda-toolkit (11.8.0-5) unstable; urgency=medium

  * Fix nvidia-fs kernel module build for Linux 6.4.
  * Use a snapshot of openjdk-8-jre (8u372-ga-1).

 -- Andreas Beckmann <anbe@debian.org>  Tue, 27 Jun 2023 18:17:09 +0200

nvidia-cuda-toolkit (11.8.0-4) unstable; urgency=medium

  * nsight-systems: Fix symlinks to executables.
  * nvidia-openjdk-8-jre: Add libatk-wrapper-java-jni dependency.
  * Fix nvidia-fs kernel module build for Linux 6.2/6.3.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 16 May 2023 11:58:52 +0200

nvidia-cuda-toolkit (11.8.0-3) unstable; urgency=medium

  * Add clang-14 as supported compiler alternative.
  * Use vendor-specific alternatives for the driver dkms package.
  * Backport nvfs_io_complete changes from nvidia-fs 2.14.14 (CUDA 12.0.1) to
    fix kernel module build for Linux 5.16.
  * Backport nvfs_rw_verify_area changes from nvidia-fs 2.14.14 (CUDA 12.0.1)
    to fix kernel module build for Linux 5.18.
  * Switch from prandom_u32() to get_random_u32() to fix kernel module build
    for Linux 6.1.  (Closes: #1033288)

 -- Andreas Beckmann <anbe@debian.org>  Wed, 22 Mar 2023 11:04:32 +0100

nvidia-cuda-toolkit (11.8.0-2) unstable; urgency=medium

  * Merge changes from 11.7.1-5.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 28 Feb 2023 23:43:28 +0100

nvidia-cuda-toolkit (11.8.0-1) experimental; urgency=medium

  * New upstream release 11.8.0 (October 2022).
    * Fixes CVE-2022-34667.  (Closes: #1021625)
      https://nvidia.custhelp.com/app/answers/detail/a_id/5373
  * Refresh patches.
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.7 => libaccinj64-11.8
    - libcuinj64-11.7 => libcuinj64-11.8
    - libcupti11.7 => libcupti11.8
    - libnvrtc-builtins11.7 => libnvrtc-builtins11.8
  * Update symbols control files.
  * The nsight-systems gui is now using Qt6 and available on arm64.
  * Drop libqtiff.so due to dependency on libtiff5.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 14 Feb 2023 09:54:44 +0100

nvidia-cuda-toolkit (11.7.1-5) unstable; urgency=medium

  * nsight-systems: Use the system libpfm.so.4 library.
  * Use a snapshot of openjdk-8-jre (8u362-ga-4).
  * Misc. packaging cleanup.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 24 Feb 2023 01:24:09 +0100

nvidia-cuda-toolkit (11.7.1-4) unstable; urgency=medium

  * nsight-systems: Add Recommends: nvidia-profiler.  (Closes: #1029793)
  * Fix version in libcufile0, libcufile-rdma1 symbol files.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 13 Feb 2023 14:53:55 +0100

nvidia-cuda-toolkit (11.7.1-3) unstable; urgency=medium

  * Fix separate binary-indep build.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 07 Feb 2023 14:50:34 +0100

nvidia-cuda-toolkit (11.7.1-2) unstable; urgency=medium

  * Merge changes from 11.7.0-2.
  * The nvidia-fs kernel module currently only builds for Linux 4.17 to 5.15.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 06 Feb 2023 23:42:41 +0100

nvidia-cuda-toolkit (11.7.1-1) experimental; urgency=medium

  * New upstream release 11.7.1 (August 2022).
  * Add new packages for GPUDirect Storage (GDS): libcufile-dev, libcufile0,
    libcufile-rdma1, gds-tools, nvidia-fs-dkms.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 09 Jan 2023 01:31:43 +0100

nvidia-cuda-toolkit (11.7.0-2) unstable; urgency=medium

  * Merge changes from 11.6.2-6.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 30 Jan 2023 12:50:48 +0100

nvidia-cuda-toolkit (11.7.0-1) experimental; urgency=medium

  * New upstream release 11.7.0 (May 2022).
  * Refresh patches.
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.6 => libaccinj64-11.7
    - libcuinj64-11.6 => libcuinj64-11.7
    - libcupti11.6 => libcupti11.7
    - libnvrtc-builtins11.6 => libnvrtc-builtins11.7
  * Update symbols control files.
  * Add clang-13 as supported compiler alternative.
  * The nsight-compute gui is now available on arm64, too.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 12 Nov 2022 23:20:44 +0100

nvidia-cuda-toolkit (11.6.2-6) unstable; urgency=medium

  * Fix bad version substitution.  (Closes: #1029598)

 -- Andreas Beckmann <anbe@debian.org>  Wed, 25 Jan 2023 12:55:21 +0100

nvidia-cuda-toolkit (11.6.2-5) unstable; urgency=medium

  * Use the separately packaged libcu++-dev.
  * Bump Standards-Version to 4.6.2 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Tue, 24 Jan 2023 14:25:19 +0100

nvidia-cuda-toolkit (11.6.2-4) unstable; urgency=medium

  * The CUDA Code Samples are now packaged in nvidia-cuda-samples.
    (Closes: #702948)
  * Update compiler support matrix.
  * Misc. packaging cleanup.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 01 Dec 2022 11:59:32 +0100

nvidia-cuda-toolkit (11.6.2-3) unstable; urgency=medium

  * Use a snapshot of openjdk-8-jre (8u352-ga-1).

 -- Andreas Beckmann <anbe@debian.org>  Fri, 11 Nov 2022 11:59:04 +0100

nvidia-cuda-toolkit (11.6.2-2) unstable; urgency=medium

  * Merge changes from 11.5.2-4.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 31 Oct 2022 13:31:23 +0100

nvidia-cuda-toolkit (11.6.2-1) experimental; urgency=medium

  * New upstream release 11.6.2 (March 2022).  (Closes: #1008695)
    * Fixes CVE-2022-21821.
      https://nvidia.custhelp.com/app/answers/detail/a_id/5334
  * d/copyright: Synchronize with updated EULA.txt.
  * Use gcc-11 again as default host compiler.  (Closes: #1006962)
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 05 Oct 2022 11:47:53 +0200

nvidia-cuda-toolkit (11.6.1-1) experimental; urgency=medium

  * New upstream release 11.6.1 (February 2022).
  * Refresh patches.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 30 Sep 2022 23:50:21 +0200

nvidia-cuda-toolkit (11.6.0-1) experimental; urgency=medium

  * New upstream release 11.6.0 (January 2022).
  * Refresh patches.
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.5 => libaccinj64-11.6
    - libcuinj64-11.5 => libcuinj64-11.6
    - libcupti11.5 => libcupti11.6
    - libnvrtc-builtins11.5 => libnvrtc-builtins11.6
  * Update symbols control files.
  * Add B-D: libnuma1.
  * nsight-systems-target: Add CollectX.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 21 Sep 2022 15:20:38 +0200

nvidia-cuda-toolkit (11.5.2-4) unstable; urgency=medium

  * nsight-systems: Ship nsys-exporter documentation on all platforms.
  * nsight-systems*: Do not ship a python interpreter.
  * Build-Depend on dh-sequence-python3 and use it to rewrite shebangs and
    generate python dependencies.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 17 Oct 2022 22:12:39 +0200

nvidia-cuda-toolkit (11.5.2-3) unstable; urgency=medium

  * Update documentation regarding the CUDA Code Samples.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 12 Oct 2022 09:10:48 +0200

nvidia-cuda-toolkit (11.5.2-2) unstable; urgency=medium

  * Merge changes from 11.4.3-5.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 19 Sep 2022 13:51:41 +0200

nvidia-cuda-toolkit (11.5.2-1) experimental; urgency=medium

  * New upstream release 11.5.2 (February 2022).
  * Merge changes from 11.4.3-4.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 26 Jun 2022 15:28:15 +0200

nvidia-cuda-toolkit (11.5.1-2) experimental; urgency=medium

  * Merge changes from 11.4.3-3.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 24 May 2022 15:43:02 +0200

nvidia-cuda-toolkit (11.5.1-1) experimental; urgency=medium

  * New upstream release 11.5.1 (November 2021).
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 02 Dec 2021 13:47:45 +0100

nvidia-cuda-toolkit (11.5.0-1) experimental; urgency=medium

  * New upstream release 11.5.0 (October 2021).
  * Refresh patches.
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.4 => libaccinj64-11.5
    - libcuinj64-11.4 => libcuinj64-11.5
    - libcupti11.4 => libcupti11.5
    - libnvrtc-builtins11.4 => libnvrtc-builtins11.5
  * Update symbols control files.
  * Add clang-12 as supported compiler alternative.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 17 Nov 2021 03:51:21 +0100

nvidia-cuda-toolkit (11.4.3-5) unstable; urgency=medium

  * Use a snapshot of openjdk-8-jre (8u342-b07-1).
  * Switch to the unversioned Tesla driver as alternate dependency.
  * Fix FTBFS with readline 8.2.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 10 Sep 2022 21:50:40 +0200

nvidia-cuda-toolkit (11.4.3-4) unstable; urgency=medium

  * Drop autopkgtest again, it may exceed ci-worker resources while unpacking
    the source package. An equivalent test has been added to src:pycuda.
  * Bump Standards-Version to 4.6.1 (no changes needed).
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 24 Jun 2022 10:01:45 +0200

nvidia-cuda-toolkit (11.4.3-3) unstable; urgency=medium

  * Switch back to gcc-10 as default host compiler, since some STL headers
    fail to compile with nvcc using g++ 11.2 (but not 11.1) as host compiler.
  * Add superficial autopkgtest checking the usability of the STL headers in
    host code compiled with nvcc (cf. #1006962).
  * nsight-compute: Move the 'sections' folder to a multiarch location.
    (Closes: #1009719)
  * Check usability of the java binary.  (Closes: #1008591)
  * Use a snapshot of openjdk-8-jre (8u332-ga-1).
  * nsight-systems: Drop unused libraries.
  * Use system libssh-4 (and therefore system openssl).  (Closes: #1011114)

 -- Andreas Beckmann <anbe@debian.org>  Mon, 23 May 2022 01:30:18 +0200

nvidia-cuda-toolkit (11.4.3-2) unstable; urgency=medium

  * Add (tesla-)510 driver as alternate dependency.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 03 Feb 2022 00:02:32 +0100

nvidia-cuda-toolkit (11.4.3-1) unstable; urgency=medium

  * New upstream release 11.4.3 (November 2021).
  * d/copyright: Synchronize with updated EULA.txt.
  * Use a snapshot of openjdk-8-jre (8u312-b07-1).
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 10 Nov 2021 17:54:25 +0100

nvidia-cuda-toolkit (11.4.2-1) experimental; urgency=medium

  * New upstream release 11.4.2 (September 2021).
  * Add Build-Depends: libegl1, libwayland-*.
  * Add gcc-11 (default) as supported host compiler alternative.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 09 Nov 2021 00:41:23 +0100

nvidia-cuda-toolkit (11.4.1-2) experimental; urgency=medium

  * d/copyright: Synchronize with updated EULA.txt.
  * cuda-gdb: Re-enable python support. Only dlopen the libpython3.X.so.1 we
    built against.
  * Set version for Nsight Compute to 2021.2.1.0, missing from version.json.
    (Closes: #995888)

 -- Andreas Beckmann <anbe@debian.org>  Fri, 05 Nov 2021 12:19:27 +0100

nvidia-cuda-toolkit (11.4.1-1) experimental; urgency=medium

  * New upstream release 11.4.1 (August 2021).
  * Refresh patches.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 28 Sep 2021 13:46:13 +0200

nvidia-cuda-toolkit (11.4.0-1) experimental; urgency=medium

  * New upstream release 11.4.0 (June 2021).
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.3 => libaccinj64-11.4
    - libcuinj64-11.3 => libcuinj64-11.4
    - libcupti11.3 => libcupti11.4
    - libnvrtc-builtins11.3 => libnvrtc-builtins11.4
  * Update symbols control files.
  * Refresh cuda-gdb patch and synchronize configure flags with gdb 10.1.
  * Ship new headers and static libraries.
  * Add Build-Depends: libxcb-*.
  * Update Lintian overrides.
  * Upload to experimental.
  * Work around non-monotonic libcusparse11 version.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 02 Sep 2021 11:21:39 +0200

nvidia-cuda-toolkit (11.3.1-5) unstable; urgency=medium

  * cuda-gdb: Disable non-functional python support causing segmentation
    faults.  (Closes: #997031)
  * Do not ship a spurious CMakeLists.txt below /usr/include/cuda.
  * Record upstream versions to detect non-monotonic cases.
  * Semi-automatically update version-prefixes in non-monotonic cases.
  * Symlink cuda.h into the shim tree /usr/lib/cuda.  (Closes: #995122)
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 02 Nov 2021 18:01:18 +0100

nvidia-cuda-toolkit (11.3.1-4) unstable; urgency=medium

  [ Graham Inggs ]
  * Rearrange order of #includes to avoid FTBFS with glibc 2.34

  [ Andreas Beckmann ]
  * Use a snapshot of openjdk-8-jre (8u302-b08-1).
  * Bump Standards-Version to 4.6.0 (no changes needed).
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 23 Sep 2021 21:21:29 +0200

nvidia-cuda-toolkit (11.3.1-3) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 18 Aug 2021 02:02:32 +0200

nvidia-cuda-toolkit (11.3.1-2) experimental; urgency=medium

  * Merge changes from 11.2.2-3.
  * libnvrtc-builtins11.3: Split from libnvrtc11.2 due to SOVERSION
    divergence.
  * d/copyright: Synchronize with updated EULA.txt.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 26 Jul 2021 00:59:58 +0200

nvidia-cuda-toolkit (11.3.1-1) experimental; urgency=medium

  * New upstream release 11.3.1 (May 2021).
  * Use a snapshot of openjdk-8-jre (8u292-b10-1).

 -- Andreas Beckmann <anbe@debian.org>  Tue, 15 Jun 2021 08:48:11 +0200

nvidia-cuda-toolkit (11.3.0-1) experimental; urgency=medium

  * New upstream release 11.3.0 (April 2021).
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.2 => libaccinj64-11.3
    - libcuinj64-11.2 => libcuinj64-11.3
    - libcupti11.2 => libcupti11.3
  * Update symbols control files.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 21 May 2021 15:47:25 +0200

nvidia-cuda-toolkit (11.2.2-3+deb11u3) bullseye; urgency=medium

  * Fix nvidia-openjdk-8-jre version ordering.
  * Drop autopkgtest again, it may exceed ci-worker resources while unpacking
    the source package. An equivalent test has been added to src:pycuda (sid).

 -- Andreas Beckmann <anbe@debian.org>  Sun, 19 Jun 2022 20:45:20 +0200

nvidia-cuda-toolkit (11.2.2-3+deb11u2) bullseye; urgency=medium

  * Use a snapshot of openjdk-8-jre (8u332-ga-1~deb9u1) for amd64.
  * Use a snapshot of openjdk-8-jre (8u302-b08-1) for ppc64el.
  * Check usability of the java binary.  (Closes: #1008591)
  * nsight-compute: Move the 'sections' folder to a multiarch location.
    (Closes: #1009719)
  * Upload to bullseye.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 20 May 2022 09:48:41 +0200

nvidia-cuda-toolkit (11.2.2-3+deb11u1) bullseye; urgency=medium

  * cuda-gdb: Disable non-functional python support causing segmentation
    faults.  (Closes: #997031)
  * Use a snapshot of openjdk-8-jre (8u312-b07-1).
  * Do not ship a spurious CMakeLists.txt below /usr/include/cuda.
  * Bump Standards-Version to 4.6.0 (no changes needed).
  * Update Lintian overrides.
  * Record upstream versions to detect non-monotonic cases.
  * Semi-automatically update version-prefixes in non-monotonic cases.
  * Add (tesla-)510 driver as alternate dependency.
  * Add superficial autopkgtest checking the usability of the STL headers in
    host code compiled with nvcc (cf. #1006962).
    Mark as flaky to avoid regressions.
  * Upload to bullseye.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 16 Mar 2022 08:28:35 +0100

nvidia-cuda-toolkit (11.2.2-3) unstable; urgency=medium

  * Use a snapshot of openjdk-8-jre (8u292-b10-3).
  * Tighten library dependencies.
  * Add (tesla-)470 driver as alternate dependency.
  * Add clang-11 as supported compiler alternative.
  * Update watch file.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 24 Jul 2021 00:01:52 +0200

nvidia-cuda-toolkit (11.2.2-2) unstable; urgency=medium

  * Use a snapshot of openjdk-8-jre (8u292-b10-0+deb9u1) for amd64.
  * Add Build-Depends on libxdamage1 (no longer pulled in by MESA 21).

 -- Andreas Beckmann <anbe@debian.org>  Tue, 11 May 2021 22:12:21 +0200

nvidia-cuda-toolkit (11.2.2-1) unstable; urgency=medium

  * New upstream release 11.2.2 (March 2021).
  * The nsight-systems gui is only available on amd64.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 25 Mar 2021 11:48:42 +0100

nvidia-cuda-toolkit (11.2.1-2) unstable; urgency=medium

  * Fix prefixing component versions starting with 11.1.0.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 20 Feb 2021 11:33:19 +0100

nvidia-cuda-toolkit (11.2.1-1) unstable; urgency=medium

  * New upstream release 11.2.1 (Feb 2021).
  * Use a snapshot of openjdk-8-jre (8u275-b01-1~deb9u1) for amd64.
  * Get component versions from version.json.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 16 Feb 2021 02:14:51 +0100

nvidia-cuda-toolkit (11.2.0-2) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 26 Jan 2021 00:24:29 +0100

nvidia-cuda-toolkit (11.2.0-1) experimental; urgency=medium

  * New upstream release 11.2.0 (Dec 2020).
  * d/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump, rename library packages:
    - libaccinj64-11.1 => libaccinj64-11.2
    - libcuinj64-11.1 => libcuinj64-11.2
    - libcupti11.1 => libcupti11.2
    - libnvrtc11.1 => libnvrtc11.2
    - libnvvm3 => libnvvm4
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 18 Jan 2021 17:04:26 +0100

nvidia-cuda-toolkit (11.1.1-4) unstable; urgency=medium

  * Use cuda-gdb 11.1.105.
  * Use per-library SOVERSIONs.
  * Use individual library versions.
  * Use component versions for versioning most binary packages.
  * Remove toolkit upstream version from shlibs files.
  * Add (tesla-)460 driver as alternate dependency.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 18 Jan 2021 12:32:21 +0100

nvidia-cuda-toolkit (11.1.1-3) unstable; urgency=medium

  * Fix misspelled g++-10 dependency.  (Closes: #976077)
  * Use substitution for the default gcc version.
  * Overhaul component tarball handling.
  * Use a snapshot of openjdk-8-jre (8u272-b10-0+deb9u1) for amd64.
  * Bump Standards-Version to 4.5.1 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Thu, 03 Dec 2020 22:21:32 +0100

nvidia-cuda-toolkit (11.1.1-2) unstable; urgency=medium

  * Add cuda.pc.  (Closes: #930731)
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 19 Nov 2020 15:45:52 +0100

nvidia-cuda-toolkit (11.1.1-1) experimental; urgency=medium

  * New upstream release 11.1 Update 1 (Oct 2020).
    * Fixes CVE-2020-5991.  (Closes: #973543)
      https://nvidia.custhelp.com/app/answers/detail/a_id/5094
  * Refresh cuda-gdb 11.0.221 patch.
  * Add gcc-10 (default) and clang-10 as supported host compiler alternatives.
  * Driver 450.80.02 is sufficient.
  * Conflict with Ubuntu .deb packages from NVIDIA that cause file conflicts.
    (LP: #1901239)
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 12 Nov 2020 22:23:18 +0100

nvidia-cuda-toolkit (11.1.0-1) experimental; urgency=medium

  * New upstream release 11.1 (Sept 2020).
  * d/copyright: Synchronize with updated EULA.txt.
  * Use the newer cuda-gdb 11.0.221 from nvidia-cuda-toolkit 11.0.3.
  * Documentation and manpages are not longer bundled, please refer to
    https://docs.nvidia.com/cuda instead.
  * Runtime SOVERSION bump: 11.0 => 11.1, rename core library packages.
  * Some core libraries are still at SOVERSION 11.0.
  * Delayed SOVERSION bump: 10 => 11, rename cusolver library packages.
  * Update symbols control files.
  * Ship new files.
  * Refresh patches and fix more typos.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 05 Nov 2020 19:49:44 +0100

nvidia-cuda-toolkit (11.0.3-3) unstable; urgency=medium

  [ Andreas Beckmann ]
  * nvidia-cuda-dev: Promote libcuda1 to Depends.
  * Support building the docs on all architectures by taking the missing bits
    from amd64.

  [ Graham Inggs ]
  * Update libcuda1 availability for groovy (LP: #1900627)

 -- Andreas Beckmann <anbe@debian.org>  Thu, 12 Nov 2020 20:33:01 +0100

nvidia-cuda-toolkit (11.0.3-2) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 04 Nov 2020 10:29:15 +0100

nvidia-cuda-toolkit (11.0.3-1) experimental; urgency=medium

  * New upstream release 11.0 Update 1 (Aug 2020).
  * Fix separate binary-indep build.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 13 Aug 2020 09:19:03 +0200

nvidia-cuda-toolkit (11.0.2-1) experimental; urgency=medium

  * New upstream release 11.0 (May 2020).
    - Provides nsight-systems for ppc64el.
    - Adds support for arm64 (excluding nvidia-{,visual-}profiler).
      (Closes: #934666)
  * Drop packages and infrastructure for removed components: nvidia-nsight,
    libnppicom10, libnvgraph10.
  * Runtime SOVERSION bump: 10.2 => 11.0, rename core library packages.
  * SOVERSION bump: 10 => 11, rename application library packages.
  * Some applications libraries are still at SOVERSION 10.
  * Update symbols control files.
  * Add gcc-9 (default) and clang-9 as supported host compiler alternatives.
    (Closes: #955524)
  * Remove non-C++14 compiler alternatives: gcc < 5, clang < 6.
  * Adjust installation paths for changed upstream layout.
  * Refresh patches.
  * Update Build-Depends.
  * Use system libraries libcrypto.so.1.1/libssl.so.1.1.
  * Fix building cuda-gdb (now based on gdb-8.2).
  * Ship (or ignore) new files.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 08 Aug 2020 22:02:14 +0200

nvidia-cuda-toolkit (10.2.89-5) unstable; urgency=medium

  * nvidia-cuda-dev, libnvidia-ml-dev: Set Multi-Arch: same.
    (Closes: #969962)
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 24 Sep 2020 21:41:41 +0200

nvidia-cuda-toolkit (10.2.89-4) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 07 Aug 2020 02:00:02 +0200

nvidia-cuda-toolkit (10.2.89-3) experimental; urgency=medium

  * Merge changes from 10.1.243-8.
  * Rename nvidia-cuda-doc to nvidia-cuda-toolkit-doc.
  * Split nsight-compute-target from nsight-compute.
  * Split nsight-systems-target from nsight-systems.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 28 Jul 2020 20:21:23 +0200

nvidia-cuda-toolkit (10.2.89-2) experimental; urgency=medium

  * Merge changes from 10.1.243-7.
  * nsight-compute: Ignore missing dependencies for unused QtWebEngineProcess.
  * libcupti10.2: Add Breaks+Replaces: libcupti10.1 due to file conflict.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 17 Jul 2020 20:44:39 +0200

nvidia-cuda-toolkit (10.2.89-1) experimental; urgency=medium

  * New upstream release 10.2 (Nov 2019).
  * Refresh patches and fix more typos.
  * Install new/renamed/moved/... files.
  * Runtime SOVERSION bump: 10.1 => 10.2, rename core library packages.
  * Update symbols control files.
  * Ship both nvvm and nvvmx, do not build libnvvm3.
  * Update Lintian overrides.
  * Try to use the system library as replacement for the missing
    libQt5WebEngineCore.so.5.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 06 Jun 2020 01:24:33 +0200

nvidia-cuda-toolkit (10.1.243-8) unstable; urgency=medium

  * Use vendor-specific alternatives for libcuda.so.1 and libnvidia-ml.so.1.
  * Fix the no-libcuda1 virtual package generation for Ubuntu.
  * Fix building cuda-gdb with GCC-10 by adding -fcommon.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 22 Jul 2020 21:50:39 +0200

nvidia-cuda-toolkit (10.1.243-7) unstable; urgency=medium

  * Switch build-dependency to libasound2-dev to avoid pulling in the virtual
    libasound2 provided by liboss4-salsa-asound2.
  * libcupti10.1: Add Provides/Conflicts/Replaces: libnvperf to avoid file
    conflicts on unversioned libnvperf_host.so, libnvperf_target.so.
  * cuda-gdb: Fix linking against python3.
  * Use doctools.js and searchtools.js from libjs-sphinxdoc.
  * Tighten libthrust-dev dependency.
  * Use dh-exec for arch-dependent installation.
  * nsight-systems: Reduce Qt5 library footprint.
  * Reactivate watch file.
  * Overhaul get-orig-source target.
  * Overhaul packaging in preparation for CUDA 11.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 17 Jul 2020 14:10:08 +0200

nvidia-cuda-toolkit (10.1.243-6) unstable; urgency=medium

  * nsight-systems: Do not ship libstdc++.so.6, libhyphen.so.0.
  * Use vendor-specific jre dependency substitutions.
  * Adjust B-D to use libjpeg62-dev on Ubuntu.  (Closes: #962263)
  * Do not build nvidia-openjdk-8-jre on Ubuntu.
  * Use versioned openjdk-8-jre component tarballs.
  * nvidia-openjdk-8-jre: Use a snapshot of openjdk-8-jre (8u252-b09-1~deb9u1)
    from Debian stretch which is backportable to buster.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 05 Jun 2020 19:15:23 +0200

nvidia-cuda-toolkit (10.1.243-5) unstable; urgency=medium

  * Merge changes from 10.1.168-11.
  * Update Lintian overrides.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 03 Jun 2020 09:54:22 +0200

nvidia-cuda-toolkit (10.1.243-4) experimental; urgency=medium

  * Merge changes from 10.1.168-9.
  * Use updated nvidia-openjdk-8-jre on amd64 and ppc64el for
    nvidia-visual-profiler and nvidia-nsight.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 19 May 2020 00:32:39 +0200

nvidia-cuda-toolkit (10.1.243-3) experimental; urgency=medium

  [ Graham Inggs ]
  * Switch back to openjdk-8-jre for nvidia-visual-profiler and nvidia-nsight.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 11 Apr 2020 14:56:37 +0200

nvidia-cuda-toolkit (10.1.243-2) experimental; urgency=medium

  * Merge changes from 10.1.168-8.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 01 Apr 2020 15:52:09 +0200

nvidia-cuda-toolkit (10.1.243-1) experimental; urgency=medium

  * New upstream release 10.1 Update 2 (Aug 2019).  (Closes: #935001)
  * d/copyright: Synchronize with updated EULA.txt.
  * Refresh patches and fix more typos.
  * Update symbols control files.
  * Drop nvidia-openjdk-8-jre package, no longer bundles an ancient JRE.
  * Adjust to changed upstream layout.
  * nsight-compute (non-gui) is available for ppc64el, too.
  * libcusolvermg10: New package for the cuSOLVERmg library.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 09 Dec 2019 14:10:25 +0100

nvidia-cuda-toolkit (10.1.168-11) unstable; urgency=medium

  * Do not ship gdb headers conflicting with binutils-dev.  (Closes: #961263)

 -- Andreas Beckmann <anbe@debian.org>  Mon, 25 May 2020 13:57:38 +0200

nvidia-cuda-toolkit (10.1.168-10) unstable; urgency=medium

  * Build cuda-gdb from source.  (Closes: #898045)
    ./configure flags are based on gdb 7.12 (stretch).

 -- Andreas Beckmann <anbe@debian.org>  Wed, 20 May 2020 22:45:19 +0200

nvidia-cuda-toolkit (10.1.168-9) unstable; urgency=medium

  * Switch to debhelper-compat (= 13).
  * Override executable-in-usr-lib.
  * Add targets for creating component tarballs with openjdk-8-jre snapshots.
  * Add openjdk-8-jre (8u252-b09-1) snapshot as openjdk-8-{source, jre-amd64,
    jre-ppc64el} component tarballs.
  * nvidia-openjdk-8-jre: Replace ancient openjdk-8-jre (8u77) binaries from
    NVIDIA with a snapshot of openjdk-8-jre (8u252-b09-1) from Debian sid.
  * Build nvidia-visual-profiler and nvidia-nsight on ppc64el.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 18 May 2020 19:12:19 +0200

nvidia-cuda-toolkit (10.1.168-8) unstable; urgency=medium

  * Add nvidia-cuda-toolkit-gcc compatibility package providing
    /usr/bin/cuda-gcc, /usr/bin/cuda-g++ symlinks (pointing to gcc-8/g++-8
    currently) to ease building packages needing a cuda-compatible compiler.
  * Add tesla-440 driver as alternative.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 11 Apr 2020 00:58:49 +0200

nvidia-cuda-toolkit (10.1.168-7) unstable; urgency=medium

  * Adjust dependencies for the packaged tesla driver rename to tesla-418.
  * Bump Standards-Version to 4.5.0 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Thu, 06 Feb 2020 21:59:47 +0100

nvidia-cuda-toolkit (10.1.168-6) unstable; urgency=medium

  * nvcc.profile: Append -L/usr/lib/<triplet> to the LIBRARIES variable,
    thanks to Eyal Rozenberg.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 31 Dec 2019 01:10:59 +0100

nvidia-cuda-toolkit (10.1.168-5) unstable; urgency=medium

  [ Andreas Beckmann ]
  * nvidia-cuda-dev: Depend on libcupti-dev, thanks to Gengyu Rao.
  * man-typos.patch: Fix more misspellings.
  * Make libnvidia-ml-dev installable on Ubuntu/ppc64el w/o driver.
  * Update Lintian overrides.

  [ Graham Inggs ]
  * [Ubuntu] Add build dependencies on libxi6 and libasound2.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 27 Dec 2019 14:43:31 +0100

nvidia-cuda-toolkit (10.1.168-4) unstable; urgency=medium

  * Split out libnvidia-ml-dev as a separate package.
  * libnvjpeg10 is available for ppc64el, too.
  * Refresh Build-Depends.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 23 Dec 2019 22:07:12 +0100

nvidia-cuda-toolkit (10.1.168-3) unstable; urgency=medium

  * Fix tesla driver dependencies.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 25 Nov 2019 19:41:47 +0100

nvidia-cuda-toolkit (10.1.168-2) unstable; urgency=medium

  * Add support for the packaged tesla driver.
  * Remove Zhou Mo from Uploaders, thanks for all your work! (Closes: #942267)
  * Bump Standards-Version to 4.4.1 (no changes needed).
  * Update Lintian overrides.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 22 Nov 2019 13:47:11 +0100

nvidia-cuda-toolkit (10.1.168-1) experimental; urgency=medium

  [ Graham Inggs ]
  * New upstream release 10.1 Update 1 (May 2019).  (Closes: #930365)
  * d/copyright: Synchronize with updated EULA.txt.
  * Add clang-8 as supported host compiler alternative.
  * nsight-systems: Ship new documentation.
  * Refresh patches and fix more typos.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 17 Aug 2019 14:22:01 +0200

nvidia-cuda-toolkit (10.1.105-3) unstable; urgency=medium

  * Stop building libthrust-dev. It is provided by a separate source package
    in main, again.  (Closes: #923689)
  * d/rules{,.defs}: Distinguish between minimal and bundled driver version.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 16 Aug 2019 13:58:15 +0200

nvidia-cuda-toolkit (10.1.105-2) unstable; urgency=medium

  * Bump Standards-Version to 4.4.0 (no changes needed).
  * man-typos.patch: Fix more misspellings.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 10 Jul 2019 11:07:56 +0200

nvidia-cuda-toolkit (10.1.105-1) experimental; urgency=medium

  * New upstream release 10.1 (Feb 2019).  (Closes: #924488)
  * Repack the upstream *.run files and keep only the toolkit, dropping driver
    and (not redistributable) samples.
  * d/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump: 10.0 => 10.1, rename core library packages.
  * SOVERSION change: 10.0 => 10, rename application library packages.
  * libcublaslt10: New package for the cuBLASLt library.
  * nsight-systems: New package for NVIDIA Nsight Systems.
  * Add gcc-8 and clang-7 as supported host compiler alternatives.
  * Install new/renamed/moved/... files.
  * Refresh patches and fix more typos.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 26 Mar 2019 21:31:01 +0100

nvidia-cuda-toolkit (10.0.130-3) experimental; urgency=medium

  * Merge changes from 9.2.148-7.
  * Generalize the get-orig-source target.
  * Prepare support for having a different SOVERSION in the core libraries
    (libcudart and friends) than in the application libraries.
  * Generalize nsight-compute packaging.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 22 Mar 2019 23:35:42 +0100

nvidia-cuda-toolkit (10.0.130-2) experimental; urgency=medium

  * Rename uuid(3) to CUDA_uuid(3) to avoid manpage conflict with uuid-dev,
    thanks to Cédric Dufour.  (Closes: #921533)

 -- Andreas Beckmann <anbe@debian.org>  Fri, 08 Feb 2019 15:51:50 +0100

nvidia-cuda-toolkit (10.0.130-1) experimental; urgency=medium

  * New upstream release 10.0 (Sept 2018).  (Closes: #909497)
  * d/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump: 9.2 => 10.0, rename all library packages.
  * libnvjpeg10.0: New package for the nvJPEG library.
  * nsight-compute: New package for NVIDIA Nsight Compute.
  * Install new headers.
  * Update symbols control files.
  * Add clang-6.0 as supported host compiler alternative.
  * Refresh patches.
  * man-typos.patch: Fix more misspellings.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 15 Jan 2019 13:21:01 +0100

nvidia-cuda-toolkit (9.2.148-7+deb10u1) buster; urgency=medium

  * [ppc64el]: Do not overwrite the customized nvcc.profile with the
    unmodified upstream copy from CUDA 9.2 Patch 1.  (Closes: #991592)

 -- Andreas Beckmann <anbe@debian.org>  Tue, 07 Sep 2021 16:02:46 +0200

nvidia-cuda-toolkit (9.2.148-7) unstable; urgency=medium

  * Use debianize.patch to customize paths etc. in nvcc.profile and the
    wrappers nsight and nvvp to avoid missing upstream changes.
  * d/control: Use substvars to generalize handling of [arch] restrictions.
  * nvidia-cuda-dev: Add dependency on libnvidia-ml1.  (Closes: #924484)
  * Replace embedded javascript libraries with dependencies on
    libjs-html5shiv, libjs-jquery.
  * Deduplicate images in documentation.
  * Fix install location of examples.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 22 Mar 2019 01:46:16 +0100

nvidia-cuda-toolkit (9.2.148-6) unstable; urgency=medium

  * Restore strict libcuda1 dependency.  (Closes: #919647)
  * Drop Breaks+Replaces against packages predating jessie.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 07 Feb 2019 01:08:16 +0100

nvidia-cuda-toolkit (9.2.148-5) unstable; urgency=medium

  * Fix nvidia-openjdk-8-jre version number customization.
  * Adjust libcuda1 dependency relaxation.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 13 Jan 2019 13:41:13 +0100

nvidia-cuda-toolkit (9.2.148-4) unstable; urgency=medium

  * New upstream CUDA 9.2 Patch 1 (Aug 6, 2018).
    - This update includes performance improvements to cuBLAS GEMM APIs and
      bug fixes for CUPTI and cuda-gdb.
  * d/rules: Add infrastructure for downloading, unpacking and installing
    patch releases.
    - Patch releases are handled as additional component tarballs.
    - The upstream release version number is not adjusted (only a few shared
      libraries bump their filename).
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 12 Jan 2019 17:46:38 +0100

nvidia-cuda-toolkit (9.2.148-3) unstable; urgency=medium

  * Merge changes from 9.1.85-8.
  * Switch to debhelper-compat (= 12).
  * Relax the libcuda1 dependency to start the transition in unstable while
    the required driver is still in experimental.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 08 Jan 2019 22:51:52 +0100

nvidia-cuda-toolkit (9.2.148-2) experimental; urgency=medium

  * Merge changes from 9.1.85-7.
  * A ppc64el release is now available.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 11 Dec 2018 21:30:36 +0100

nvidia-cuda-toolkit (9.2.148-1) experimental; urgency=medium

  * New upstream release 9.2 Update 1 (amd64 only).
  * nvidia-opencl-dev: Add Breaks: nvidia-libopencl1 for a smoother transition
    to ocl-icd-opencl-dev.
  * Bump Standards-Version to 4.1.5 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Wed, 18 Jul 2018 21:42:36 +0200

nvidia-cuda-toolkit (9.2.88-1) experimental; urgency=medium

  * New upstream release 9.2 (May 2018).  (Closes: #899343, #900183)
  * d/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump: 9.1 => 9.2, rename all library packages.
  * Refresh patches.
  * Update Lintian overrides.
  * Bump Standards-Version to 4.1.4 (no changes needed).
  * Add gcc-7 and clang-5.0 as supported host compiler alternatives.
    (Closes: #892415)
  * d/rules: Simplify shifting around the unpacked contents.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 15 Jun 2018 18:07:24 +0200

nvidia-cuda-toolkit (9.1.85-8) unstable; urgency=medium

  * libnppc9.1: Abuse this high scoring package and add Conflicts/Breaks
    against nvidia-libopencl1 and older nvidia-opencl-dev to enforce
    switching to ocl-icd-opencl-dev on nvidia-cuda-toolkit upgrades.
  * Bump Standards-Version to 4.3.0 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Mon, 24 Dec 2018 14:10:43 +0100

nvidia-cuda-toolkit (9.1.85-7) unstable; urgency=medium

  * d/rules: Simplify shifting around the unpacked contents.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 09 Dec 2018 04:57:24 +0100

nvidia-cuda-toolkit (9.1.85-6) unstable; urgency=medium

  * nvidia-opencl-dev: Add Breaks: nvidia-libopencl1 for a smoother transition
    to ocl-icd-opencl-dev.
  * *.symbols: Add Build-Depends-Package.
  * Switch to debhelper-compat (= 11).
  * Add debian/rules targets for archiving the tarballs in a separate
    repository using sparse checkouts and git-lfs as storage backend.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 08 Dec 2018 12:42:30 +0100

nvidia-cuda-toolkit (9.1.85-5) unstable; urgency=medium

  * Add nvidia-openjdk-8-jre package shipping the JRE binaries.
  * Use it as JRE for nvidia-visual-profiler and nvidia-nsight on amd64.
    (Closes: #900300)
  * Do not build nvidia-visual-profiler and nvidia-nsight on ppc64el.
  * Bump Standards-Version to 4.2.1 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Tue, 18 Sep 2018 20:22:22 +0200

nvidia-cuda-toolkit (9.1.85-4) unstable; urgency=medium

  * Visual Profiler and Nsight do not work with default-jre,
    so let nvidia-visual-profiler and nvidia-nsight packages depend on
    openjdk-8-jre and set JAVA_HOME in the nvvp and nsight wrappers
    (LP: #1766948)
  * Let nvidia-profiler depend on libaccinj64-${cuda:SoVersion}

 -- Graham Inggs <ginggs@debian.org>  Wed, 02 May 2018 12:46:27 +0000

nvidia-cuda-toolkit (9.1.85-3) unstable; urgency=medium

  [ Graham Inggs ]
  * Drop libOpenCL.so symlink from nvidia-opencl-dev

  [ Andreas Beckmann ]
  * Switch Vcs-* URLs to salsa.debian.org.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 12 Mar 2018 07:01:23 +0100

nvidia-cuda-toolkit (9.1.85-2) experimental; urgency=medium

  * Let nvidia-opencl-dev depend on ocl-icd-opencl-dev.
    nvidia-libopencl1 only supports up to OpenCL 2.0 and therefore requires
    (no longer available) opencl-c-headers (<< 2.1~) or applications that
    don't use features newer than OpenCL 2.0 (even if the headers declare
    support for newer standards.)  (Closes: #889287)
  * Build the libthrust-dev package. The embedded copy is newer than the last
    release on github.
  * Add clang-4.0 as a supported host compiler alternative.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 26 Feb 2018 17:27:30 +0100

nvidia-cuda-toolkit (9.1.85-1) experimental; urgency=medium

  * New upstream release 9.1 (Dec 2017).  (Closes: #887701)
  * debian/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump: 9.0 => 9.1, rename all library packages.
  * Refresh patches.
  * Place the documentation in /usr/share/doc/nvidia-cuda-toolkit/.
  * Require libopencl-2.0-1 as alternative.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 20 Jan 2018 17:26:32 +0100

nvidia-cuda-toolkit (9.0.176-2) unstable; urgency=medium

  * Bump Standards-Version to 4.1.3 (no changes needed).
  * Switch to debhelper compat level 11.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 11 Jan 2018 15:01:38 +0100

nvidia-cuda-toolkit (9.0.176-1) experimental; urgency=medium

  * New upstream release 9.0 (Sept 2017).  (Closes: #862522)
  * debian/copyright: Synchronize with updated EULA.txt.
  * Remove libnppi8.0. The full sized library was split up into multiple
    libraries in 8.0 and is now deprecated by upstream.
  * SOVERSION bump: 8.0 => 9.0, rename all library packages.
  * libaccinj64-9.0: New package for the 64-bit ACCINJ library.
  * Update installation paths.
  * Simplify symbols control files and use wildcard matching on symbol
    versions now that upstream uses versioned symbols.
  * Update symbols control files.
  * Refresh patches.
  * man-typos.patch: Fix more misspellings.
  * Fix packaging for ppc64el.
  * Use gcc-6/g++-6 as preferred compiler and clang-3.9 as alternative.
    (Closes: #873468, #864840)
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 24 Nov 2017 00:26:06 +0100

nvidia-cuda-toolkit (8.0.61-3) unstable; urgency=medium

  * Use dpkg makefile snippets instead of manual changelog parsing.
  * Add monolithic cuda tree shim in /usr/lib/cuda/.
    Use for 'clang++ --cuda-path=/usr/lib/cuda'.  (LP: #1706326)
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 23 Nov 2017 05:23:45 +0100

nvidia-cuda-toolkit (8.0.61-2) unstable; urgency=medium

  * Set Priority to optional.
  * Switch from dh_install --list-missing to dh_missing.
  * Ship some overlooked files and drop some removed docs.
  * Factor out a build-stamp target and prepare the tree in build/.
  * Convert packaging repository from SVN to GIT.
  * Add gbp.conf to enable overlay mode.
  * Add get-tarball-dir target to checkout the tarball archive from SVN.
  * Set Rules-Requires-Root: no.
  * Use https:// URLs where possible.
  * nvidia-profiler: Add Suggests: nvidia-cuda-toolkit for the
    cuda-binaries(1) manpage.  (Closes: #854900)

 -- Andreas Beckmann <anbe@debian.org>  Tue, 07 Nov 2017 14:28:50 +0100

nvidia-cuda-toolkit (8.0.61-1) unstable; urgency=medium

  [ Andreas Beckmann ]
  * New upstream release 8.0 GA2 (Feb 2017).
  * Update symbols control files.
  * Bump Standards-Version to 4.1.1.
  * Update Lintian overrides.

  [ Russ Allbery ]
  * Remove myself from Uploaders.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 04 Oct 2017 15:15:32 +0200

nvidia-cuda-toolkit (8.0.44-4) unstable; urgency=medium

  [ Zhou Mo ]
  * README.Debian: Discuss adding nvcc options regarding PIE when mixing GCC
    and CLANG generated objects, since the defaults differ between the
    compilers.  (Closes: #861878)

 -- Andreas Beckmann <anbe@debian.org>  Mon, 29 May 2017 20:48:54 +0200

nvidia-cuda-toolkit (8.0.44-3) unstable; urgency=medium

  [ Zhou Mo ]
  * Depend on clang-3.8 as default host compiler alternative, since CUDA does
    not support GCC-6.  (Closes: #835940)
    Use 'nvcc -ccbin clang-3.8' to compile your CUDA applications.
  * Add NEWS entry for this change.

  [ Andreas Beckmann ]
  * Switch to debhelper compat level 10.
  * Generate debian/g++ from debian/gcc.
  * gcc/g++ wrappers: Report if clang-3.8 could be used instead of gcc/g++.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 20 Jan 2017 20:25:17 +0100

nvidia-cuda-toolkit (8.0.44-2) unstable; urgency=medium

  * Overhaul installation of examples.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 27 Oct 2016 04:05:12 +0200

nvidia-cuda-toolkit (8.0.44-1) experimental; urgency=medium

  [ Andreas Beckmann ]
  * New upstream release 8.0 GA1 (Sept 2016).  (Closes: #822434, #695304)
  * Use gzip to compress orig tarballs containing already compressed files.
  * Revert the -D_FORCE_INLINES workaround.
  * gcc-support.patch: Remove, fixed upstream.
  * man-sections.patch, man-typos.patch, man-hyphenation.patch: Refresh.
  * Fix more typos found by Lintian.
  * Update Lintian overrides.
  * Upload to experimental.

  [ Zhou Mo ]
  * SOVERSION bump: 7.5 => 8.0, rename all library packages.
  * Update symbols control files.
  * Ship new binary: gpu-library-advisor.
  * New packages for nppi sub-library series:
    + libnppial8.0: New package for image arithmetic and logic
    + libnppicc8.0: New package for image color conversion
    + libnppicom8.0: New package for image compression
    + libnppidei8.0: New package for image data exchange and initialization
    + libnppif8.0: New package for image filters
    + libnppig8.0: New package for image geometry transforms
    + libnppim8.0: New package for image morphological operations
    + libnppist8.0: New package for image statistics
    + libnppisu8.0: New package for image support
    + libnppitc8.0: New package for image threshold and compare
  * libnvgraph8.0: New package for the nvGRAPH library.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 21 Oct 2016 18:34:36 +0200

nvidia-cuda-toolkit (7.5.18-4) unstable; urgency=medium

  * [ppc64el] Use the no-libcuda1 virtual package on Debian, too, since there
    is no current driver available for ppc64el.
  * Fix more typos found by Lintian.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 07 Sep 2016 13:53:33 +0200

nvidia-cuda-toolkit (7.5.18-3) unstable; urgency=medium

  * d/rules: Add missing build-arch/build-indep targets.  (Closes: #832589)
  * nvcc.profile: Add -D_FORCE_INLINES for better glibc 2.23 support.
    (Closes: #822783)
  * Fix more typos found by Lintian.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 31 Jul 2016 15:50:16 +0200

nvidia-cuda-toolkit (7.5.18-2) unstable; urgency=medium

  * man-typos.patch: Fix more typos.
  * Update Lintian overrides.
  * Bump Standards-Version to 3.9.8 (no changes needed).
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 03 May 2016 02:18:58 +0200

nvidia-cuda-toolkit (7.5.18-1) experimental; urgency=medium

  [ Zhou Mo ]
  * New upstream release 7.5 (Sept 2015).  (Closes: #807579)
  * SOVERSION bump: 7.0 => 7.5, rename all library packages.
  * Update symbols control files.
  * [ppc64el] Adjust location of nvvm/lib.
  * Update Lintian overrides.

  [ Andreas Beckmann ]
  * Refresh man-sections.patch.
  * debian/copyright: Synchronize with updated EULA.txt.
  * Use multiarch substitution in nvcc.profile.
  * gcc-support.patch: New, allow usage of GCC 5.
  * Use gcc-5/g++-5 as preferred compiler.
  * Update documentation regarding the CUDA Code Samples.
  * [ppc64el] Use the no-libcuda1 virtual package on Ubuntu.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 09 Mar 2016 02:12:57 +0100

nvidia-cuda-toolkit (7.0.28-4) unstable; urgency=medium

  * [ppc64el] Enable the nvidia-opencl-dev package.
  * Ship nvprune manpage.
  * rules: Enforce that arch:all documentation packages are built on amd64 only.
  * get-orig-source: Exclude driver and GPU Deployment Kit.
  * Drop Conflicts/Breaks/Replaces targeting pre-jessie versions.
  * Add Conflicts with the CUDA repo packages from NVIDIA for Ubuntu.
  * man-typos.patch: Fix more misspellings.
  * Bump Standards-Version to 3.9.7 (no changes needed).
  * Update Lintian overrides.  (Closes: #815822)

 -- Andreas Beckmann <anbe@debian.org>  Sun, 28 Feb 2016 14:02:08 +0100

nvidia-cuda-toolkit (7.0.28-3) unstable; urgency=medium

  [ Andreas Beckmann ]
  * Drop Build-Depends on libcuda1 and always use the libcuda.so stub (with
    some postprocessing) for dependency resolution.
  * Revert the no-libcuda1 virtual package hack.

  [ Graham Inggs ]
  * [ppc64el] Add Build-Depends on libexpat1.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 17 Feb 2016 08:33:34 +0100

nvidia-cuda-toolkit (7.0.28-2) unstable; urgency=medium

  * Merge changes from 6.5.19-3.
  * get-orig-source: Generate an additional .orig-ppc64el tarball by repacking
    cuda-repo-ubuntuAABB-X-Y-local_*_ppc64el.deb.
  * Add preliminary support for building ppc64el packages.
  * Work around libcuda1 not being available on ppc64el:
    - Use the stub library shipped with the library for dependency resolution.
    - libcudart7.0:ppc64el: Provide virtual package no-libcuda1 and use that
      as alternative dependency.
  * [ppc64el] Strip RPATH from cuda-gdb.
  * Apply the patches over the nvidia-cuda symlink.
  * Update Lintian overrides.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 03 Feb 2016 09:43:31 +0100

nvidia-cuda-toolkit (7.0.28-1) experimental; urgency=medium

  [ Zhou Mo ]
  * New upstream release 7.0 (March 2015).  (Closes: #783770)
  * Drop i386 support for all remaining packages, removed upstream.
  * SOVERSION bump: 6.5 => 7.0, rename all library packages and
    bump alternate virtual B-D to libcuda-7.0-1.
  * libnvvm SOVERSION bump: 2 => 3, rename libnvvm2 to libnvvm3.
  * Update symbols control files.
  * Do not ship open64 binaries, no longer provided upstream.
    (Closes: #774297)
  * Ship new headers and nvprune binary.
  * libcusolver7.0: New package for the cuSOLVER library.
  * libnvrtc7.0: New package for the NVRTC library.

  [ Andreas Beckmann ]
  * Refresh man-sections.patch and man-typos.patch.
  * debian/copyright: Synchronize with updated EULA.txt.
  * nvidia-cuda-dev: Ship the library stubs, downgrade Depends: libcuda1 to
    Recommends.
  * Remove compatibility symlink for thrust includes.
  * Update documentation regarding the CUDA Code Samples.
  * nvidia-visual-profiler, nvidia-nsight: Disable more tracking scripts.
  * Update Lintian overrides.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 28 Nov 2015 07:35:39 +0100

nvidia-cuda-toolkit (6.5.19-3) unstable; urgency=medium

  * Do not run dh_strip_nondeterminism, it may perform modifications not
    permitted by the NVIDIA license.
  * get-orig-source: Generate tarball reproducibly.
  * Add Zhou Mo to Uploaders.
  * Update Lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 20 Jan 2016 03:11:45 +0100

nvidia-cuda-toolkit (6.5.19-2) unstable; urgency=medium

  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 13 Nov 2015 19:46:02 +0100

nvidia-cuda-toolkit (6.5.19-1) experimental; urgency=medium

  * New upstream release 6.5 (September 2014).
    - Adding support for GTX9xx GPUs. (Needs a 343.xx or newer driver.)
  * Refresh man-sections.patch.
  * Update symbols control files.
  * Update Lintian overrides.
  * nvidia-cuda-toolkit: Suggest nvidia-driver and mention in the long
    description that an NVIDIA GPU and the NVIDIA driver kernel module are
    required to run CUDA applications.  (Closes: #795262)
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 05 Oct 2015 23:26:43 +0200

nvidia-cuda-toolkit (6.5.14-2) unstable; urgency=medium

  [ Andreas Beckmann ]
  * Add B-D: libncurses5.  (Closes: #789090)
  * Update Lintian overrides.
  * Upload to unstable.

  [ Graham Inggs ]
  * Update my email address.
  * Re-enable the gcc/g++ wrappers, depend on gcc/g++ 4.9 | 4.8.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 30 Sep 2015 17:26:21 +0200

nvidia-cuda-toolkit (6.5.14-1) experimental; urgency=medium

  [ Graham Inggs ]
  * New upstream release 6.5 (August 2014).
  * SOVERSION bump: 6.0 => 6.5, rename all library packages and
    bump alternate virtual B-D to libcuda-6.5-1.
  * Update symbols control files.
  * Use SOVERSION substitution in nvidia-cuda-toolkit.manpages.
  * debian/copyright: Synchronize with updated EULA.txt.
  * Remove nvvp, nsight and various libs no longer shipped for i386.
  * Remove workaround to create symlinks for libnvvm.
  * Allow documentation packages to build on i386.
  * Refresh all postunpack patches.
  * Rebase postunpack patches against non-symlinked directory
    for compatibility with patch >= 2.7.3-1.
  * nvidia-profiler: Update compat symlinks as nvprof now looks for
    libcuinj{32,64}.so without the SOVERSION.
  * Update Lintian overrides.

  [ Andreas Beckmann ]
  * nvidia-opencl-dev: Recommends: nvidia-opencl-icd.
  * d/watch, get-orig-source: Include the arm64 .run installer.
  * Upload to experimental.

 -- Andreas Beckmann <anbe@debian.org>  Wed, 25 Feb 2015 21:51:04 +0100

nvidia-cuda-toolkit (6.0.37-5) unstable; urgency=medium

  * nvidia-opencl-dev: Bump Breaks/Replaces on nvidia-libopencl1 from
    (<< 304.88-7~) to (<< 305~) to cover all versions that could end up in
    wheezy. New nvidia-graphics-drivers upstream releases from the 304.xx
    legacy series fixing security bugs have been uploaded to stable
    previously. The package in wheezy (current version: 304.117-1) still
    contains libOpenCL.so while the package in sid stopped shipping this
    symbolic link in 304.88-7.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 21 Nov 2014 18:53:52 +0100

nvidia-cuda-toolkit (6.0.37-4) unstable; urgency=medium

  * libnvblas6.0 is only available on amd64.
  * nvidia-cuda-dev: Add Recommends: libnvcuvid1.
  * nvidia-cuda-dev: Remove some header file workaround symlinks.
  * Update documentation regarding downloading, installing and building the
    CUDA Code Samples.
  * Update library package descriptions from cuda-libraries(7).

 -- Andreas Beckmann <anbe@debian.org>  Sun, 12 Oct 2014 21:47:11 +0200

nvidia-cuda-toolkit (6.0.37-3) unstable; urgency=medium

  * Bump Standards-Version to 3.9.6 (no changes needed).
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Fri, 10 Oct 2014 09:27:22 +0200

nvidia-cuda-toolkit (6.0.37-2) experimental; urgency=medium

  [ Graham Inggs ]
  * Add missing Breaks/Replaces on libcuinj{32,64}-5.5.  (Closes: #763177)

  [ Andreas Beckmann ]
  * Add wrapper script for nvprof due to its insane library search behavior.
  * Add compat symlinks for libcuinj{32,64}.so.6.0 to the real nvprof's
    bindir.  (Closes: #761363)
  * nvidia-cuda-doc: Remove more tracking scripts.
  * Ship the new upstream manpages.
  * Fix typos, hyphenation, and sections in the manpages.
  * Implement minimal quilt based patch system that is activated after
    unpacking the .run files.
  * libnvblas6.0: New package for the NVBLAS runtime library.
  * Update lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 30 Sep 2014 16:23:39 +0200

nvidia-cuda-toolkit (6.0.37-1) experimental; urgency=medium

  * New upstream release 6.0 (April 2014).  (Closes: #751522)
  * Upload to experimental.
  * debian/copyright: Synchronize with updated EULA.txt.
  * SOVERSION bump: 5.5 => 6.0, rename all library packages.
  * Update symbols control files.

 -- Andreas Beckmann <anbe@debian.org>  Mon, 08 Sep 2014 14:49:21 +0200

nvidia-cuda-toolkit (5.5.22-6) unstable; urgency=medium

  [ Andreas Beckmann ]
  * Move libcuinj{32,64}-5.5 dependency from nvidia-visual-profiler to
    nvidia-profiler.
  * Move libcuinj{32,64}.so back to nvidia-cuda-dev, nvprof now dlopen()s the
    proper soname.  (Closes: #763177)
  * nvidia-cuda-dev: Upgrade libcuda.so dependency from Recommends to Depends.
  * nvidia-cuda-doc: Remove tracking scripts and images.
  * Update lintian overrides.

  [ Graham Inggs]
  * New package descriptions to satisfy lintian description-is-pkg-name.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 28 Sep 2014 18:31:12 +0200

nvidia-cuda-toolkit (5.5.22-5) unstable; urgency=medium

  [ Andreas Beckmann ]
  * Add Graham Inggs to Uploaders.

  [ Graham Inggs ]
  * Do not prevent the use of GCC 4.9.  (Closes: #757961)
  * Add missing Breaks/Replaces to nvidia-opencl-dev for a clean takeover of
    the libOpenCL.so symlink from {amd,nvidia,ocl-icd}-libopencl1.
    (Closes: #760554)

 -- Graham Inggs <graham@nerve.org.za>  Mon, 08 Sep 2014 17:00:27 +0200

nvidia-cuda-toolkit (5.5.22-4) unstable; urgency=low

  * Bump the alternate virtual libcuda dependency to libcuda-5.5-1.
  * Remove alternate (Build-)Depends on nvidia-current.  (Closes: #745149)
  * Add libopencl-1.1-1 as alternate virtual libopencl1 dependency.
  * Update lintian overrides.
  * Remove switch for non-multiarch builds.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 25 May 2014 01:27:03 +0200

nvidia-cuda-toolkit (5.5.22-3) unstable; urgency=low

  * Bump the alternate virtual B-D to libcuda-5.5-1.
  * Bump Standards-Version to 3.9.5 (no changes needed).
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Thu, 07 Nov 2013 01:19:29 +0100

nvidia-cuda-toolkit (5.5.22-2) experimental; urgency=low

  * Add missing Breaks/Replaces to libcuinj{32,64}-5.5 for a clean takeover of
    the libcuinj{32,64}.so symlink from libcuinj{32,64}-5.0.
  * nvcc.profile: Add missing NVVMIR_LIBRARY_DIR setting.  (Closes: #725649)
  * nvcc.profile: Add -L/usr/lib/<triplet> to make nvlink multiarch aware.
  * Drop the gcc/g++ wrappers, all versions up to 4.8 are supported.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 22 Oct 2013 13:39:10 +0200

nvidia-cuda-toolkit (5.5.22-1) experimental; urgency=low

  * New upstream release 5.5 (July 2013).
  * Upload to experimental.
  * Update watch file.
  * debian/copyright: Synchronize with reformatted and updated EULA.txt.
  * SOVERSION bump: 5.0 => 5.5, rename all library packages.
  * libnpp[cis]5.5: New packages replacing the split libnpp5.0 library.
  * libnvtoolsext1: Renamed from libnvtoolsext5.0, upstream soname change.
  * libnvvm2: New package for the NVCC runtime library.
  * libcufftw5.5: New package for CUDA FFT library with FFTW interface.
  * Ship new binaries and auxiliary files.
  * Update symbols control files.
  * Update lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 22 Sep 2013 14:17:57 +0200

nvidia-cuda-toolkit (5.0.35-8) unstable; urgency=low

  * Simplify renaming control files on SOVERSION change.
  * Update lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Sat, 19 Oct 2013 20:58:39 +0200

nvidia-cuda-toolkit (5.0.35-7) unstable; urgency=low

  * nvidia-opencl-dev: Provides/Conflicts/Replaces: opencl-dev.
  * nvidia-opencl-dev: Set Multi-Arch: same.
    - Ship libOpenCL.so symlink previously in nvidia-libopencl1.
      (Closes: #719833)
    - Tighten the dependency on nvidia-libopencl1.
  * nvidia-cuda-toolkit: Allow opencl-dev as an alternative to
    nvidia-opencl-dev. (Closes: #719834)

 -- Andreas Beckmann <anbe@debian.org>  Sat, 17 Aug 2013 06:48:53 +0200

nvidia-cuda-toolkit (5.0.35-6) unstable; urgency=low

  [ Graham Inggs ]
  * Dependency updates for Ubuntu Saucy: nvidia-* now provides libcuda-5.0-1
    and libopencl1 virtual packages. Use these instead of enumerating all
    packaged driver versions.  (Closes: #710820)

  [ Andreas Beckmann ]
  * nvidia-cuda-dev: Add Breaks against too old libcuda1 versions.
  * Update lintian overrides.

 -- Andreas Beckmann <anbe@debian.org>  Tue, 16 Jul 2013 11:37:43 +0200

nvidia-cuda-toolkit (5.0.35-5) unstable; urgency=low

  * Use canonical Vcs-* URLs.
  * Update lintian overrides.
  * Upload to unstable.

 -- Andreas Beckmann <anbe@debian.org>  Sun, 05 May 2013 11:59:50 +0200

nvidia-cuda-toolkit (5.0.35-4ubuntu1) raring; urgency=low

  * Ubuntu: Build-Depend/Depend on nvidia-304*, nvidia-310* and
    nvidia-313*.  (LP: #1162945)

 -- Graham Inggs <graham@nerve.org.za>  Tue, 02 Apr 2013 13:24:16 +0200

nvidia-cuda-toolkit (5.0.35-4) experimental; urgency=low

  [ Graham Inggs ]
  * Ubuntu: Build-Depend/Depend on nvidia-experimental-*.  (LP: #1092259)

  [ Andreas Beckmann ]
  * Ubuntu: Override libcuda.so.1 dependencies via shlibs.local to support
    installing with nvidia-experimental-* while building against
    nvidia-current.  (Closes: #700621)

 -- Andreas Beckmann <anbe@debian.org>  Sat, 16 Feb 2013 15:58:28 +0100

nvidia-cuda-toolkit (5.0.35-3) experimental; urgency=low

  * nvidia-profiler: New package (split from nvidia-cuda-toolkit) that ships
    the nvprof binary which supports both CUDA and OpenCL.
  * nvidia-visual-profiler: Depend on nvidia-profiler for the nvprof binary.
    (Closes: #695493)
  * nvcc.profile: Enable the 'LIBRARIES =+ -lcudart' setting to not deviate
    from upstream behavior.  (Closes: #697730)
  * Update my email address and remove DMUA.
  * Switch to Standards-Version: 3.9.4 (no changes needed).

 -- Andreas Beckmann <anbe@debian.org>  Fri, 25 Jan 2013 19:27:19 +0100

nvidia-cuda-toolkit (5.0.35-2) experimental; urgency=low

  * debian/copyright: Synchronize with reformatted EULA.txt.
  * Drop hardcoded java path from nvvp.ini and nsight.ini.  (Closes: #693703)
  * nvidia-nsight: Add /usr/share/nvidia-nsight/configuration ->
    /usr/lib/nvidia-nsight/configuration symlink.

 -- Andreas Beckmann <debian@abeckmann.de>  Sat, 24 Nov 2012 15:57:03 +0100

nvidia-cuda-toolkit (5.0.35-1) experimental; urgency=low

  * New upstream release 5.0 (October 2012).
  * debian/{control,rules}: Use substvars for the names of the libcuda1 and
    nvidia-libopencl1 packages.
  * Ubuntu: Build-Depend/Depend on nvidia-current | nvidia-current-updates
    instead of libcuda1 and nvidia-libopencl1.
  * Update lintian overrides.

 -- Andreas Beckmann <debian@abeckmann.de>  Sun, 21 Oct 2012 17:06:18 +0200

nvidia-cuda-toolkit (5.0.24-1) experimental; urgency=low

  * New upstream release candidate 5.0 RC.  (Closes: #686560)
  * Upload to experimental.
  * watch: simplify and switch to the release candidate page.
  * Only extract the .run file for the current architecture.
  * Drop B-D: libqt*, since 4.1 the profiler uses eclipse instead of Qt.
  * get-orig-source: skip downloading if cached files are in ../.cache/
  * get-orig-source: extract and repack run-in-run archives.
  * SOVERSION bump: 4 => 5.0, rename all library packages.
  * libcuinj.so.4 has changed the SONAME to libcuinj{32,64}.so.5.0: rename and
    clone package accordingly.
  * Update symbols files.
  * Update lintian overrides and override hardening warnings.
  * nvidia-visual-profiler: Generalize installation and linking to
    automatically pickup new files and forget removed ones.
  * nvidia-nsight: new package for NVIDIA Nsight Eclipse Edition.
  * libnvtoolsext5.0: new package for the NVIDIA Tools Extension (runtime).
  * Update .install lists for added files.

 -- Andreas Beckmann <debian@abeckmann.de>  Wed, 12 Sep 2012 01:44:29 +0200

nvidia-cuda-toolkit (4.2.9-2) unstable; urgency=low

  * nvcc.profile: Enable the 'LIBRARIES =+ -lcudart' setting to not deviate
    from upstream behavior.  (Closes: #697730)

 -- Andreas Beckmann <debian@abeckmann.de>  Thu, 10 Jan 2013 01:19:06 +0100

nvidia-cuda-toolkit (4.2.9-1) unstable; urgency=low

  * New upstream release 4.2 (April 2012).
  * New download URL: https://developer.nvidia.com/cuda-downloads
  * Update symbols files.
  * debian/copyright: Update NVIDIA license.
  * The toolkit now supports GCC 4.6 (but nothing newer).  Add g++-4.6 and
    gcc-4.6 as preferred alternative dependencies.

 -- Andreas Beckmann <debian@abeckmann.de>  Fri, 11 May 2012 10:32:07 +0200

nvidia-cuda-toolkit (4.1.28-2) unstable; urgency=low

  * nvidia-visual-profiler: Add dependency on libcuinj4. (Closes: #665931)
  * Move libcuinj.so to libcuinj4 as this gets dlopen()ed.
  * Switch to Standards-Version: 3.9.3 (no changes needed).
  * Use the final copyright-format/1.0 URL.
  * Drop biarch lib32* packages, there were no users of these packages.
    Multi-arch is the way to go.

 -- Andreas Beckmann <debian@abeckmann.de>  Thu, 12 Apr 2012 21:09:27 +0200

nvidia-cuda-toolkit (4.1.28-1) unstable; urgency=low

  * New upstream release 4.1 (January 2012).
  * Upload to unstable.
  * Update symbols files.
  * Ship cicc and ci_include.h in the nvidia-cuda-toolkit package.  GPUs
    pre-dating the Fermi architecture still need the pre-LLVM compiler.
    Thanks to Tomasz Rybak for testing this.
  * Do not compress examples.
  * The toolkit now supports GCC 4.5 (but nothing newer).  Add g++-4.5 and
    gcc-4.5 as preferred alternative dependencies.
  * nvidia-cuda-toolkit: Add wrapper scripts (used internally by nvcc) for
    gcc/g++ that execute the newest of gcc-4.5/g++-4.5 or gcc-4.4/g++-4.4,
    even if /usr/bin/gcc and /usr/bin/g++ point to a newer version.
  * nvidia-visual-profiler: Ship the copy of Eclipse 3.6 that was included in
    the upstream archive.  I can't get nvvp working properly with the Debian
    Eclipse 3.7.

 -- Andreas Beckmann <debian@abeckmann.de>  Wed, 22 Feb 2012 15:10:50 +0100

nvidia-cuda-toolkit (4.1.21-1) experimental; urgency=low

  * New upstream release candidate 4.1 RC2.
  * Upload to experimental.
  * Rename package nvidia-compute-profiler to nvidia-visual-profiler, this is
    now a cross-platform application based on eclipse.
  * libcuinj4: New package for the INJ library.
  * libcupti{4,-dev,-doc}: New packages for the NVIDIA CUDA Profiler Tools
    Interface (CUPTI).
  * Update install lists and symbols files.
  * debian/copyright: Update to dep5.mdwn?revision=202.  Add LLVM license.
  * Bump debhelper dependency to 9.

 -- Andreas Beckmann <debian@abeckmann.de>  Thu, 16 Feb 2012 17:08:36 +0100

nvidia-cuda-toolkit (4.0.17-3) unstable; urgency=low

  [ Russ Allbery ]
  * Add DM-Upload-Allowed: yes to debian/control.

  [ Andreas Beckmann ]
  * Add compatibility symlink for thrust because nvcc refuses kernels from
    system include directories.  (Closes: #644844)
  * Add a README entry how to install the GPU Computing SDK (code examples).
  * Update lintian overrides.

 -- Andreas Beckmann <debian@abeckmann.de>  Mon, 10 Oct 2011 20:56:23 +0200

nvidia-cuda-toolkit (4.0.17-2) unstable; urgency=low

  * Upload to unstable.
  * Add XS-Autobuild: yes to debian/control.  See instructions in #602838.
  * Add Depends: libthrust-dev. Thrust has been packaged separately in contrib
    as it is available under the Apache-2.0 license.
  * nvidia-opencl-dev now Provides: opencl-dev.
  * Drop lintian-overrides for shlib-calls-exit (no longer emitted in 2.5.1).
  * Enable multiarch build.
    - Add and use #LIBDIR# substitution.
    - Add misc:Pre-Depends and Multi-Arch: same.
    - Add conflicts with biarch libraries.
    - Use compat level 9.
  * Set Maintainer to Debian NVIDIA Maintainers and move myself to Uploaders.
  * Add Russ Allbery to Uploaders.

 -- Andreas Beckmann <debian@abeckmann.de>  Sat, 25 Jun 2011 18:20:19 +0200

nvidia-cuda-toolkit (4.0.17-1) experimental; urgency=low

  * New upstream release 4.0.
  * Upload to experimental.
  * Detect license changes by comparing debian/copyright with upstream
    EULA.txt during build.
  * Refresh debian/copyright from the updated EULA.txt in 4.0.
  * Switch to arch tagged overrides (lintian 2.5.0).
  * Add dependency on gcc-4.4/g++-4.4, add gcc/g++ compatibility symlinks.
    The CUDA toolkit does not work with 4.5 or newer compilers.

 -- Andreas Beckmann <debian@abeckmann.de>  Fri, 27 May 2011 15:00:56 +0200

nvidia-cuda-toolkit (4.0.13-1) experimental; urgency=low

  * New upstream release candidate 4.0 RC2.
    - The OpenCL API 1.1 is now implemented.
  * Upload to experimental.
  * Upstream has bumped the SOVERSION from 3 to 4, rename the packages
    accordingly.
  * Update install lists and symbols files.
  * Add lintian-overrides for shlib-calls-exit.
  * Add packages libnpp4 and lib32npp4 for the NVIDIA Performance Primitives
    library.
  * Allow libopencl1 as an alternative to nvidia-libopencl1.
  * Add Breaks: nvidia-libopencl1 (<< 195.36.31-90) because the older version
    from squeeze doesn't contain the libOpenCL.so symlink.

 -- Andreas Beckmann <debian@abeckmann.de>  Sun, 15 May 2011 18:12:01 -0700

nvidia-cuda-toolkit (3.2.16-2) unstable; urgency=low

  * Upload to unstable.
  * Use dpkg-parsechangelog to extract the upstream version number from
    debian/changelog, simplifying debian/rules.defs even more.
  * Generate watch file in the clean target.  The watch file is now limited to
    updates to the current release as NVIDIA no longer provides a page
    redirecting to the current release.
  * Switch to Standards-Version: 3.9.2 (no changes needed).

 -- Andreas Beckmann <debian@abeckmann.de>  Tue, 26 Apr 2011 18:56:41 -0700

nvidia-cuda-toolkit (3.2.16-1) experimental; urgency=low

  * New upstream release 3.2.
  * Upload to experimental.
  * Upstream no longer ships the manual pages.
  * Create new packages libcusparse3 and libcurand3 (and their 32-bit
    variants) for the libraries added by NVIDIA.
  * Update symbols files and install lists.
  * Update lintian overrides.
  * Switch to source format 3.0 (quilt).

 -- Andreas Beckmann <debian@abeckmann.de>  Sat, 20 Nov 2010 19:20:46 -0800

nvidia-cuda-toolkit (3.1-1) experimental; urgency=low

  * New upstream release 3.1.
  * Initial release.  (Closes: #581184)
  * Upload to experimental.

 -- Andreas Beckmann <debian@abeckmann.de>  Mon, 11 Oct 2010 15:15:18 +0200