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
|
snd (26.2-1) unstable; urgency=medium
* New upstream version 26.2
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 16 Mar 2026 10:11:17 +0100
snd (26.1-1) unstable; urgency=medium
* New upstream version 26.1
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 06 Feb 2026 12:53:58 +0100
snd (26.0-1) unstable; urgency=medium
* New upstream version 26.0
+ Update d/upstream-changelog
* Drop obsolete 'Priority: optional' stanza.
* Update d/watch to version 5
* Bump standards version to 4.7.3
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 12 Jan 2026 10:27:38 +0100
snd (25.9-1) unstable; urgency=medium
* New upstream version 25.9
+ Update d/upstream-changelog
* Drop obsolete Rules-Requires-Root stanza.
* Update d/copyright
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 18 Nov 2025 23:27:31 +0100
snd (25.8-1) unstable; urgency=medium
[ IOhannes m zmölnig (Debian/GNU) ]
* New upstream version 25.8
+ Update d/upstream-changelog
* Re-generate d/copyright_hints
* Update git repository layout to follow DEP-14
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 15 Oct 2025 20:38:16 +0200
snd (25.7-1) unstable; urgency=medium
* New upstream version 25.7
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 07 Sep 2025 23:13:59 +0200
snd (25.6-1) unstable; urgency=medium
* New upstream version 25.6
+ Update d/upstream-changelog
* Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 21 Aug 2025 23:02:40 +0200
snd (25.3-1) unstable; urgency=medium
* New upstream version 25.3
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 22 Apr 2025 11:29:28 +0200
snd (25.2-1) unstable; urgency=medium
* New upstream version 25.2
+ Update d/upstream-changelog
* Update copyright information
+ Bump copyright dates
+ Re-generate d/copyright_hints
* Bump standards version to 4.7.2
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 14 Mar 2025 20:50:46 +0100
snd (25.1-1) unstable; urgency=medium
* New upstream version 25.1
+ Update d/upstream-changelog
* Disable multiprecision arithmetic (upstream says its irrelevant)
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 10 Feb 2025 17:27:09 +0100
snd (25.0-1) unstable; urgency=medium
* New upstream version 25.0
* Apply 'wrap-and-sort -ast'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 06 Jan 2025 18:47:19 +0100
snd (24.9-1) unstable; urgency=medium
* New upstream version 24.9
+ Update d/upstream-changelog
* Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 15 Nov 2024 23:13:51 +0100
snd (24.8-1) unstable; urgency=medium
* New upstream version 24.8
+ Update d/upstream-changelog
* Update AppStream metainfo
* Re-generate d/copyright_hints
* Apply 'wrap-and-sort -ast'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 10 Oct 2024 23:13:48 +0200
snd (24.7-1) unstable; urgency=medium
* New upstream version 24.7
+ Update d/upstream-changelog
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 09 Sep 2024 23:40:20 +0200
snd (24.6-1) unstable; urgency=medium
* New upstream version 24.6
+ Update d/upstream-changelog
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 05 Aug 2024 00:01:00 +0200
snd (24.5-1) unstable; urgency=medium
* New upstream version 24.5
+ Update d/upstream-changelog
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 02 Jul 2024 15:07:44 +0200
snd (24.4-1) unstable; urgency=medium
* New upstream version 24.4
+ Update d/upstream-changelog
* Bump standards version to 4.7.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 17 May 2024 09:20:22 +0200
snd (24.3-1) unstable; urgency=medium
* New upstream version 24.3
+ Update d/upstream-changelog
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 15 Apr 2024 09:00:56 +0200
snd (24.2-1) unstable; urgency=medium
* New upstream version 24.2
+ Update d/upstream-changelog
* Update copyright information
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 18 Mar 2024 16:40:19 +0100
snd (24.1-1) unstable; urgency=medium
* New upstream version 24.1
+ Update d/upstream-changelog
* Apply 'wrap-and-sort -ast'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 02 Feb 2024 10:30:22 +0100
snd (24.0-1) unstable; urgency=medium
* New upstream version 24.0
* Update copyright information
+ Bump copyright dates
+ Re-generate d/copyright_hints
* Install "hi-res" icon
+ Add 's.png' from https://ccrma.stanford.edu/software/snd/snd/snd.html
+ Resize to 96x96
+ Allow binary debian/snd.png
* Install metainfo.xml (for snd-gui-jack)
* Add variant specifier to .desktop files
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 07 Jan 2024 22:47:17 +0100
snd (23.9-1) unstable; urgency=medium
* New upstream version 23.9
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sat, 25 Nov 2023 21:22:56 +0100
snd (23.8-2) unstable; urgency=medium
* Use dh_auto_configure to fix cross-compilation
* Use '--builddirectory' for dh_auto_build (rather than '--sourcedirectory')
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 19 Oct 2023 09:19:15 +0200
snd (23.8-1) unstable; urgency=medium
* New upstream version 23.8
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 16 Oct 2023 22:05:24 +0200
snd (23.7-1) unstable; urgency=medium
* New upstream version 23.7
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 17 Sep 2023 21:49:35 +0200
snd (23.6-1) unstable; urgency=medium
* New upstream version 23.6
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 06 Aug 2023 20:08:21 +0200
snd (23.5-1) unstable; urgency=medium
* New upstream version 23.5
+ Update d/upstream-changelog
* Drop transitional snd-gtk-* packages (Closes: #1038283, #1038299)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 02 Jul 2023 22:32:08 +0200
snd (23.4-1) unstable; urgency=medium
* New upstream version 23.4
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 13 Jun 2023 15:23:03 +0200
snd (23.1-1) unstable; urgency=medium
* New upstream version 23.1
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 10 Feb 2023 22:02:14 +0100
snd (23.0-1) unstable; urgency=medium
* New upstream version 23.0
+ Update d/upstream-changelog
* Apply 'wrap-and-sort -ast'
* Update d/copyright
+ Bump copyright-dates
+ Modernize 'licensecheck' target
+ Re-generate d/copyright_hints
* Drop unused lintian-override
* Fix d/watch to filter out pre-releases
* Bump standards version to 4.6.2
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 03 Jan 2023 10:18:48 +0100
snd (23-1) unstable; urgency=medium
* New upstream version 23
+ Update d/upstream-changelog
* Change my email address
* Update d/source/lintian-overrides
-- Dennis Braun <snd@debian.org> Mon, 19 Dec 2022 23:05:04 +0100
snd (22.9-1) unstable; urgency=medium
* New upstream version 22.9
+ Update d/upstream-changelog
* Update 'licensecheck' target
+ Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 21 Nov 2022 15:24:12 +0100
snd (22.8-1) unstable; urgency=medium
* New upstream version 22.8
+ Update d/upstream-changelog
* Re-generate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 17 Oct 2022 11:26:41 +0200
snd (22.7-1) unstable; urgency=medium
* New upstream version 22.7
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 16 Sep 2022 14:42:55 +0200
snd (22.6-2) unstable; urgency=medium
* Skip autopkgtests on big-endian architectures
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 19 Aug 2022 11:11:49 +0200
snd (22.6-1) unstable; urgency=medium
* New upstream version 22.6
+ Update d/upstream-changelog
* Drop B-D on notcurses (Closes: #1016444)
* Provide s7.h (in a private location) for dynamically creating libc_s7.so
* Add autopkgtests
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 11 Aug 2022 20:42:56 +0200
snd (22.5-2) unstable; urgency=medium
* B-D on libncurses-dev (as a transitional dependency of notcurses)
(See #1015747)
* Apply 'wrap-and-sort -ast'
* Regenerate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 20 Jul 2022 14:42:35 +0200
snd (22.5-1) unstable; urgency=medium
[ IOhannes m zmölnig (Debian/GNU) ]
* New upstream version 22.5
+ Update d/upstream-changelog
+ Refresh patches
* Revert "Add libjack-jackd2-dev as B-D and libjack-dev as optional"
(libjack-jackd2-dev already provides libjack-dev, so the current situation
is "libjack-dev as B-D, and libjack-jackd2-dev as optional")
* Update lintian-overrides
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 20 Jul 2022 09:23:14 +0200
snd (22.4-1) unstable; urgency=medium
[ Debian Janitor ]
* Fix day-of-week for changelog entries 4.10-1, 3.4-1.
* Use cross-build compatible macro for finding pkg-config.
[ Dennis Braun ]
* New upstream version 22.4
+ Update d/upstream-changelog
* d/control:
+ Add libjack-jackd2-dev as B-D and libjack-dev as optional
+ Bump Standards Version to 4.6.1
-- Dennis Braun <d_braun@kabelmail.de> Mon, 06 Jun 2022 11:54:58 +0200
snd (22.3-1) unstable; urgency=medium
* New upstream version 22.3
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 25 Apr 2022 18:29:17 +0200
snd (22.2-1) unstable; urgency=medium
* New upstream version 22.2
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 14 Mar 2022 22:05:40 +0100
snd (22.1-1) unstable; urgency=medium
* New upstream version 22.1
+ Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 09 Feb 2022 09:52:21 +0100
snd (22.0-1) unstable; urgency=medium
* New upstream version 22.0
+ Updated d/upstream-changelog
* Refresh d/copyright
+ Bump dates in d/copyright
+ Regenerate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 03 Jan 2022 21:32:15 +0100
snd (22-1) unstable; urgency=medium
* New upstream version 22
* Updated d/upstream-changelog
* Use 'command -v' instead of 'which' in upstream-changelog helper-script
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 24 Nov 2021 16:59:31 +0100
snd (21.8-1) unstable; urgency=medium
* New upstream version 21.8
* Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 03 Nov 2021 16:54:11 +0100
snd (21.7-1) unstable; urgency=medium
* New upstream version 21.7
* Update d/upstream-changelog
* Mark 'snd' as 'meta package'
* Bump standards version to 4.6.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 27 Sep 2021 16:02:30 +0200
snd (21.6-1) unstable; urgency=medium
* New upstream version 21.6
* Update d/upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 22 Aug 2021 23:27:38 +0200
snd (21.1-1) unstable; urgency=medium
* New upstream version 21.1
* Update d/upstream-changelog
* Drop patches applied by upstream
* Remove d/patches section for now
* Bump d/watch version
-- Dennis Braun <d_braun@kabelmail.de> Tue, 09 Feb 2021 21:52:22 +0100
snd (21.0-2) unstable; urgency=medium
* Fix FTBFS due to broken notcurses version-comparision
(Closes: #980605)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 29 Jan 2021 09:52:35 +0100
snd (21.0-1) unstable; urgency=medium
* New upstream version 21.0
* Add patch to fix FTBFS with notcurses>=2.1.4
* Backport fix for FTBFS when using notcurses
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 12 Jan 2021 00:00:03 +0100
snd (20.9-1) unstable; urgency=medium
* New upstream version 20.9
* Update upstream changelog
* Drop patches applied upstream
* Fix FTBFS for notcurses>=2.0.5 (Closes: #975082)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 23 Nov 2020 12:34:38 +0100
snd (20.8-3) unstable; urgency=medium
* Patch to fix FTBFS with notcurses2 (Closes: #975082)
* since notcurses2, the API is supposed to be stable.
* Bump standards version to 4.5.1
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 19 Nov 2020 13:16:52 +0100
snd (20.8-2) unstable; urgency=medium
* Enabled 'notcurses' for nox flavour
* Add patch to fix compilation with recent notcurses
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 21 Oct 2020 13:48:19 +0200
snd (20.8-1) unstable; urgency=medium
* Upload to unstable.
* Build 'snd-gui-jack' with JACK support on all platforms.
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 20 Oct 2020 23:05:02 +0200
snd (20.8-1~exp1) experimental; urgency=medium
* New upstream version 20.8
- Update upstream-changelog
- Refresh patches
* Drop GTK in favour of Motif
- B-D on motif (instead of gtk) and notcurses
- B-D on libgl-dev & libglu-dev
- Drop gtk-patch
* Restructured packages
- snd -> snd-common
- snd-gtk-* -> snd-gui-*
- new package snd (for a fully functional Snd installation)
- transitional snd-gtk-* packages
* Install the generated upstream Changelog
* Update lintian-overrides for the "Lisp Lesser GPL"
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 20 Oct 2020 10:28:22 +0200
snd (20.7-1) unstable; urgency=medium
[ Dennis Braun ]
* New upstream version 20.7
* Update upstream-changelog
[ IOhannes m zmölnig ]
* Refresh patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 14 Sep 2020 21:35:31 +0200
snd (20.6-1) unstable; urgency=medium
* New upstream version 20.6
* Update upstream-changelog
* Remove -Wl,--as-needed ldflags
-- Dennis Braun <d_braun@kabelmail.de> Wed, 05 Aug 2020 17:03:51 +0200
snd (20.5-2) unstable; urgency=medium
* Switched from CDBS to debhelper (compat=13)
* Use declarative alternatives handling from debhelper-13.1
* Regenerate d/changelog_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 06 Jul 2020 14:29:25 +0200
snd (20.5-1) unstable; urgency=medium
* New upstream version 20.5
[ Dennis Braun ]
* Update upstream-changelog
* Refresh spelling patch
[ IOhannes m zmölnig (Debian/GNU) ]
* Build with support for vorbis, mpeg, flac, midi & wavpack
* Patch to allow non-absolute paths to helper-programs
* 'Recommend' the relevant packages
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 06 Jul 2020 12:29:53 +0200
snd (20.4-1) unstable; urgency=medium
[ Dennis Braun ]
* New upstream version 20.4
* Update upstream-changelog
[ IOhannes m zmölnig ]
* Refresh patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 14 Jun 2020 23:45:29 +0200
snd (20.3-1) unstable; urgency=medium
* New upstream version 20.3
[ Dennis Braun ]
* Update upstream-changelog
* Update spelling fixes
* Add hardening
* Add me as uploader
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 23 Apr 2020 16:09:35 +0200
snd (20.2-1) unstable; urgency=medium
* New upstream version 20.2
* Update upstream changelog
* Update spelling fixes
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 25 Mar 2020 15:52:21 +0100
snd (20.1-1) unstable; urgency=medium
* New upstream version 20.1
* Update upstream changelog
* Refresh patches
* Add salsa-ci configuration
* Bump standards version to 4.5.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 12 Feb 2020 11:56:44 +0100
snd (20.0-1) unstable; urgency=medium
* New upstream version 20.0
* Update upstream changelog
* Refresh d/patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 08 Jan 2020 09:50:01 +0100
snd (19.9-1) unstable; urgency=medium
* New upstream version 19.9
* Refresh patches
* Update d/watch to use https:// rather than ftp://
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sat, 07 Dec 2019 20:54:07 +0100
snd (19.8-1) unstable; urgency=medium
* New upstream version 19.8
* Update upstream changelog
* Refresh patches
* Drop backported patches
* Versioned B-D on debhelper
* Bump standards version to 4.4.1
* Upload to unstable.
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 18 Oct 2019 13:41:15 +0200
snd (19.7-1~exp1) experimental; urgency=medium
* New upstream version 19.7
* Update upstream changelog
* Refresh patches
* Backport patch to prevent FTBFS
* Upload to experimental to check how sane the backported patch is.
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 11 Sep 2019 14:34:19 +0200
snd (19.6-1) unstable; urgency=medium
* New upstream version 19.6
* Update upstream changelog
* Refresh patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 19 Aug 2019 21:21:35 +0200
snd (19.5-1) unstable; urgency=medium
* New upstream version 19.5
* Update upstream changelog
* Refresh patches
* Drop obsolete d/source/local-options
* Bump dh-compat to 10
* Bump standards-version to 4.4.0
* No changes required (but we still use CDBS for packaging)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 15 Jul 2019 09:58:56 +0200
snd (19.1-1) unstable; urgency=medium
* New upstream version 19.1
* Refresh patches
* Update upstream changelog
* Update d/copyright(_hints)
* Switch URLs in d/copyright to https://
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 10 Feb 2019 22:15:39 +0100
snd (19.0-1) unstable; urgency=medium
* New upstream version 19.0
* Updated upstream changelog
* Refreshed patches
* Bumped standards version to 4.3.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 07 Jan 2019 20:48:50 +0100
snd (19-1) unstable; urgency=medium
* New upstream version 19
* Updated upstream changelog
* Refreshed patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 26 Nov 2018 10:12:32 +0100
snd (18.8-1) unstable; urgency=medium
* New upstream version 18.8
* Updated upstream changelog
* Converted upstream changelog to UTF-8
* Automatically convert to UTF-8 when generating upstream changelog
* Refreshed patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 19 Oct 2018 11:53:06 +0200
snd (18.7-1) unstable; urgency=medium
* New upstream version 18.7
* Regenerated upstream changelog
* Refreshed patches
* More spelling fixes
* Updated d/copyright_hints
* d/rules don't require root for building
* Bumped standards version to 4.2.1
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 05 Sep 2018 14:13:01 +0200
snd (18.6-1) unstable; urgency=medium
* New upstream version 18.6
* Regenerate upstream changelog
* Refresh patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 13 Aug 2018 15:43:33 +0200
snd (18.5-1) unstable; urgency=medium
* New upstream version 18.5
* Refreshed patches
* Updated upstream changelog
* Switched to GTK3
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 02 Jul 2018 12:46:23 +0200
snd (18.4-1) unstable; urgency=medium
* New upstream version 18.4
* Refreshed patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Sun, 03 Jun 2018 22:18:07 +0200
snd (18.3-1) unstable; urgency=medium
* New upstream version 18.3
* Refreshed patches
* More spelling fixes
* Bumped standards version to 4.1.4
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 01 May 2018 21:10:10 +0200
snd (18.2-1) unstable; urgency=medium
* New upstream version 18.2
* Refreshed patches
* Updated maintainer email address
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 20 Mar 2018 21:27:54 +0100
snd (18.1-1) unstable; urgency=medium
* New upstream version 18.1
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
* d/control: Set Vcs-* to salsa.debian.org
[ IOhannes m zmölnig ]
* Refreshed patches
* Added patch to use pkg-config ready for cross-building
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 23 Feb 2018 16:38:26 +0100
snd (18.0-1) unstable; urgency=medium
* New upstream version 18.0
* Refreshed patches
* Fix FTCBFS: Use the right pkg-config.
Thanks to Helmut Grohne <helmut@subdivi.de> (Closes: #883885)
* Updated d/copyright(_hints)
* Switched homepage field to https://
* Bumped standards version to 4.1.3
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 10 Jan 2018 11:56:02 +0100
snd (17.9-1) unstable; urgency=medium
* New upstream version 17.9
* Refreshed patches
* Removed trailing whitespace from d/changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 05 Dec 2017 16:35:50 +0100
snd (17.8-1) unstable; urgency=medium
* New upstream version 17.8
* Refreshed patches
* Dropped lintian-override for d/copyright_hints
* Use https:// in d/watch
* Bumped standards version to 4.1.1
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 23 Oct 2017 13:28:01 +0200
snd (17.7-1) unstable; urgency=medium
* New upstream version 17.7
* Refreshed patches
* Bumped standards version to 4.1.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 19 Sep 2017 14:18:12 +0200
snd (17.6-1) unstable; urgency=medium
* New upstream version 17.6
* Refreshed patches
* Added lintian-override for copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 16 Aug 2017 20:49:35 +0200
snd (17.4-1) unstable; urgency=medium
* New upstream version 17.4
* Updated upstream-changelog
* Refreshed patches
* Bumped standards version to 4.0.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 19 Jun 2017 11:06:11 +0200
snd (17.1-1) unstable; urgency=medium
* New upstream version 17.1
* Updated upstream-changelog
* Fixed spelling mistakes
* Dropped some versioned dependencies
* Updated d/copyright(_hints)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 24 Jan 2017 09:38:39 +0100
snd (17.0-1) unstable; urgency=medium
* New upstream version 17.0
* Updated upstream-changelog
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 12 Dec 2016 14:22:03 +0100
snd (17-1) unstable; urgency=medium
* New upstream version 17.
* Patch to fix builds with unavailable macros.
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 31 Oct 2016 10:52:36 +0100
snd (16.9-1) unstable; urgency=medium
* New upstream version 16.9
* Updated upstream-changelog
* Removed patches applied upstream.
* Added Multi-Arch fields
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 24 Oct 2016 14:00:09 +0200
snd (16.8-1) unstable; urgency=medium
* New upstream version 16.8
* Updated upstream changelog.
* Undefined GLib's g_abort() macro (Closes: #836537)
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 09 Sep 2016 00:20:53 +0200
snd (16.7-1) unstable; urgency=medium
* Imported Upstream version 16.7
* Ship generated upstream/changelog
* Added postimport-hook that updates the upstream-changelog
* Generated upstream-changelog
* Updated copyright info
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 08 Aug 2016 14:45:16 +0200
snd (16.6-1) unstable; urgency=medium
* Imported Upstream version 16.6
* Added dversionmangle to d/watch
* Added missing source for s7webserver/jqconsole.min.js
* Dropped no-longer-needed Files-Excluded stanza from d/copyright
* Added lintian override for (not) missing sources
* Provided a way to fetch missing sources
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 27 Jun 2016 21:45:08 +0200
snd (16.5~dfsg-1) unstable; urgency=medium
* Imported Upstream version 16.5~dfsg
* Excluded minified-javascript from source tarball
* Removed patches applied upstream.
* Updated d/copyright_hints
* Updated to standards-version 3.9.8
* snd-doc now installs documentation into /usr/share/doc/snd/
* Replaced .menu with .desktop entries
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 17 May 2016 12:56:33 +0200
snd (16.1-5) unstable; urgency=medium
* Breaks/Replaces against actual (non-virtual) packages (Closes: #813069)
* Fixed spelling error in debian/changelog.
* Forwarded patches to upstream.
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 01 Feb 2016 21:30:01 +0100
snd (16.1-4) unstable; urgency=medium
* Really fixed FTBFS on kFreeBSD/Hurd
* Dropped unused patch 'gcc-warnings.diff'
* Added long descriptions to patches
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 27 Jan 2016 11:55:06 +0100
snd (16.1-3) unstable; urgency=medium
* Fixed FTBFS on kFreeBSD & Hurd
* Build-Depend on libjack-dev for x32 architecture
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 26 Jan 2016 22:57:10 +0100
snd (16.1-2) unstable; urgency=medium
* Made snd-git-jack provide an ALSA backend (Closes: #773176)
* Mentioned this in the package description
* Made snd-nox use both ALSA/OSS and JACK.
* Mentioned this in the package description
* Made snd frontends co-installable
* Added flavour suffix to the binaries
* Use update-alternatives to handle 'snd'
* Fixed conflicts to allow co-installation
* Dropped dependencies on anything pre-old-old-stable
* Prevent creating of unused /etc/X11 directory
* Regenerated debian/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 26 Jan 2016 21:31:13 +0100
snd (16.1-1) unstable; urgency=medium
* Imported Upstream version 16.1
[ Reinhard Tartler ]
* Easy building with source format 3.0
[ IOhannes m zmölnig ]
* Adopting the package (Closes: #673203)
* Rebuild (Closes: #810861)
* Refreshed debian/patches
* Patch to fix typos
* Don't delete sndlib.h
* Switched build-system to CDBS
* Enable CDBS license-check
* B-D on cdbs
* Explicitly pass libs for building with pulse-simple
* Upstream has removed tutorial
* Made 'snd' Recommend one of the frontends
* Prevent frontends from being installed in parallel
* Updated debian/copyright to copyright-format/1.0
* Resolved non-dfsg issue of 'dlocsig.scm'
* Moved all shared data to 'snd' package
* lintian-override of false-positives for typos
* Bumped standards-version to 3.9.6
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 25 Jan 2016 22:25:00 +0100
snd (11.7-5) unstable; urgency=medium
* QA upload.
* Switch Build-Depends to unversioned libgsl-dev. (Closes: #804500)
* Update 06-hurd.diff to fix FTBFS on hurd, thanks to Svante Signell.
(Closes: #801604)
* Switch to debhelper compat level 9.
* 01-hardening.diff: New, honor CPPFLAGS which contain hardening flags.
-- Andreas Beckmann <anbe@debian.org> Mon, 09 Nov 2015 01:57:12 +0100
snd (11.7-4) unstable; urgency=medium
* QA upload.
* debian/control: Drop transitional packages snd-nox-alsa and snd-gtk
after a stable release has happened.
* Add debian/patches/09-do-not-show-the-build-date.diff to make the
build reproducible.
-- Santiago Vila <sanvila@debian.org> Fri, 04 Sep 2015 19:13:22 +0200
snd (11.7-3) unstable; urgency=low
* QA upload.
* Convert to dh-autoreconf.
* Pass -ldl in LIBS, not LDFLAGS (closes: #641442).
* Link with -ldl in some more cases.
-- Colin Watson <cjwatson@debian.org> Wed, 08 May 2013 11:38:08 +0100
snd (11.7-2) unstable; urgency=low
* QA upload.
* Orphaning this.
-- Alessio Treglia <alessio@debian.org> Wed, 13 Jun 2012 10:01:26 +0200
snd (11.7-1) unstable; urgency=low
* Team upload.
[ Alessio Treglia ]
* Provide a dummy transitional package to ease transition from the old
snd-gtk to snd-gtk-{jack,pulse}.
* Drop 01.german.diff patch, now unnecessary.
* Add debian/gbp.conf file.
* Switch to dpkg source 3.0 (quilt) format.
* Add .gitignore file.
* Refresh patches.
* Bump Standards.
* Imported Upstream version 11.7
- builds fine with debian toolchain, Closes: #615776
* Refresh patches.
* debian/control: Move earlier-than version dependencies from Conflicts
to Breaks field.
[ Reinhard Tartler ]
* Don't hardcode list of non-Linux Architectures, Closes: #634762
* easy building with source format 3.0
* enable parallel builds
* Bump standards version, no changes.
-- Reinhard Tartler <siretart@tauware.de> Tue, 30 Aug 2011 20:46:09 +0200
snd (11.6-1) unstable; urgency=low
* Change my email address, drop DMUA.
* Build xg module (Closes: #584795).
* New upstream release.
* Add autotools_dev DH helper support.
-- Alessio Treglia <alessio@debian.org> Sun, 06 Jun 2010 19:31:41 +0200
snd (11.5-1) unstable; urgency=low
* New upstream release.
* Try to solve build failure on hurd.
-- Alessio Treglia <quadrispro@ubuntu.com> Mon, 03 May 2010 17:44:57 +0200
snd (11.4-1) unstable; urgency=low
* New upstream release.
* Refresh patches.
-- Alessio Treglia <quadrispro@ubuntu.com> Sun, 21 Mar 2010 20:29:23 +0100
snd (11.3-1) unstable; urgency=low
* New upstream release.
* Bump Standards.
* debian/control:
- Adjust debhelper,quilt build-dependencies to ease the life of
backporters.
- Add ${misc:Depends} macro to snd-nox-alsa runtime's Depends field.
* Refresh patches.
* Disable 01-german.diff, the NLS support has been removed.
* Add comment to 05-kfreebsd.diff (according to DEP-3).
* debian/snd-nox.menu:
- Replace snd-nox-alsa with snd-nox in package field value.
-- Alessio Treglia <quadrispro@ubuntu.com> Thu, 11 Feb 2010 17:48:23 +0100
snd (11.2-2) unstable; urgency=low
* Replace snd-nox-alsa with snd-nox, which will have ALSA support on linux
architectures and OSS support on kfreebsd and hurd architectures.
* Add 05-kfreebsd.diff,99-autoconf.diff patches to fix build failure on
kfreebsd-{i386,amd64} (Closes: #566779), thanks to Petr Salinger for the
patch.
* Small transition snd-nox-alsa -> snd-nox:
- Add Conflicts/Replaces on snd-nox-alsa << 11.2-2.
- snd-nox-alsa is now a dummy transitional package.
-- Alessio Treglia <quadrispro@ubuntu.com> Wed, 27 Jan 2010 14:36:30 +0100
snd (11.2-1) unstable; urgency=low
* New upstream release.
* Allow uploads by Debian maintainers.
* Drop Guile support (as already done by upstream).
* Enable multiprecision arithmetic by adding libmpc support.
* debian/patches/04-gcc_warnings:
- Add missing function prototypes in s7.c to avoid compiler warnings.
-- Alessio Treglia <quadrispro@ubuntu.com> Fri, 08 Jan 2010 18:23:24 +0100
snd (11.1-1) unstable; urgency=low
* New upstream release:
- colormaps are objects now. integer->colormap, colormap->integer.
- transforms are also objects. integer->transform, transform->integer.
- play is generic now, "old-play" is the previous form.
- removed all support for gtkglext.
- selection function/object. selection->mix.
- add pretty-print.scm.
* Remove gtkglext support.
-- Alessio Treglia <quadrispro@ubuntu.com> Thu, 03 Dec 2009 12:31:17 +0100
snd (11-5) unstable; urgency=low
* debian/{control,rules,snd-nox-alsa.*}:
- Add snd-nox-alsa runtime package, built without any GUI support;
this would be ideal for scripting snd (Closes: #325443).
* debian/control: Build-depend on libasound2-dev.
-- Alessio Treglia <quadrispro@ubuntu.com> Wed, 25 Nov 2009 18:50:53 +0100
snd (11-4) unstable; urgency=low
* Remove arch-restrictions on libpulse-dev build-dependency.
* Split snd-gtk in snd-gtk-{pulse,jack}.
* debian/rules: Build snd-gtk-{pulse,jack} separately.
* Replace snd-gtk.install with snd-gtk-{pulse,jack}.install.
* Remove debian/snd-gtk.{install,manpages}, unnecessary.
* Remove debian/snd-gtk.menu
* Add new menu files.
-- Alessio Treglia <quadrispro@ubuntu.com> Fri, 13 Nov 2009 09:55:00 +0100
snd (11-3) unstable; urgency=low
* debian/{control,rules}:
- Build with JACK on i386, amd64 and powerpc architectures, build with
PulseAudio on the other ones (Closes: #555538).
- Drop ALSA support at all.
* debian/control:
- One build-dep per line allows me to make smaller patches.
* debian/rules:
- s/--enable-debug/--enable-snd-debug/
-- Alessio Treglia <quadrispro@ubuntu.com> Tue, 10 Nov 2009 19:10:19 +0100
snd (11-2) unstable; urgency=low
* Add debian/snd.xpm, update debian/snd-gtk.install to install it.
* debian/menu:
- Set the icon field to /usr/share/pixmaps/snd.xpm, thanks to Tim Hall
for the patch (Closes: #299369).
- Add a short description.
-- Alessio Treglia <quadrispro@ubuntu.com> Mon, 19 Oct 2009 20:52:48 +0200
snd (11-1) unstable; urgency=low
* New maintainer (Closes: #547072).
* New upstream release.
* debian/{rules,control,compat}:
- Switch to debhelper 7:
+ Bump build-dependency to >= 7.0.50 cause of the use of override
statements.
+ Remove unnecessary files: snd-7.18.tar.gz.cdbs-config_list,
debian/rules.precdbs
* Drop all dependencies on snd-dmotif* packages, remove all the dmotif
related files under debian directory; also remove debian/snd-gtk-alsa.*;
Closes: #315545.
* debian/control:
- Bump Standards.
+ Add ${misc:Depends} to runtimes Depends field.
- Move upstream's URL to the source stanza's Homepage field.
- Update Build-Depends:
+ Remove cdbs.
+ guile-1.6-dev -> guile-1.8-dev
+ xutils -> xutils-dev
- Remove circular dependency between snd and snd-gtk runtimes.
- Set Debian Multimedia Maintainers as Maintainer, add myself to the
Uploaders field.
- Add Vcs-Git and Vcs-Browser fields.
* debian/{rules,control,README.source}: Add quilt support.
* Update debian/copyright.
* debian/patches/:
- Replace 00_makefile.patch with 00-makefile.diff to prevent FTBFS.
- Replace 01_german.patch with 01-german.diff, refreshed and converted to
the quilt format.
- 03-manpage_warnings.diff: Fix manpage's warnings, make lintian happy.
* debian/snd-doc.doc-base.{tutorial,manual}: Change section to Sound.
* debian/snd-gtk.menu (formerly debian/snd.menu):
- Set section to Applications/Sound (as per Debian Menu System's manual,
http://www.debian.org/doc/packaging-manuals/menu.html/ch3.html#s3.5).
- /usr/bin/snd is provided by the snd-gtk runtime.
* Update debian/*.{install,manpages} files.
* debian/snd.docs: Don't install HISTORY.Snd, TODO.Snd.
* Update debian/watch.
* It doesn't depend on gamin anymore (Closes: #522214).
-- Alessio Treglia <quadrispro@ubuntu.com> Tue, 29 Sep 2009 00:53:29 +0200
snd (7.18-2.2) unstable; urgency=low
* Non-maintainer upload to permit building of snd to unblock GNU GSL transition
* debian/control: Set Build-Depends for fftw to 'libfftw3-dev' (Closes: #445794)
-- Dirk Eddelbuettel <edd@debian.org> Thu, 18 Oct 2007 21:43:27 -0500
snd (7.18-2.1) unstable; urgency=low
* Non-maintainer upload to fix problems with binNMUs and porting.
* Fix debian/control to make it binNMU safe, replacing
"(= ${Source-Version})" with "(>= ${source:Version})".
Thanks to Lior Kaplan for the patch. (Closes: #435957)
* Added restrictions to not depend on libasound2-dev for non-Linux ports.
Thanks to Petr Salinger for the patch (Closes: #375399).
-- Margarita Manterola <marga@debian.org> Tue, 11 Sep 2007 15:14:26 -0300
snd (7.18-2) unstable; urgency=low
* Fixed documentation installation (closes: 353333)
* Fixed the german translation (closes: 313897)
* New upstream version (closes: 305915)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Sun, 19 Feb 2006 22:56:56 +0100
snd (7.18-1) unstable; urgency=low
* New upstream version
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Fri, 10 Feb 2006 19:52:37 +0100
snd (7.12-1) unstable; urgency=low
* New upstream version
* Moved to cdbs
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Thu, 28 Apr 2005 17:49:11 +0200
snd (7.8-1) unstable; urgency=low
* New upstream version (closes: 284668)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Tue, 4 Jan 2005 11:26:19 +0100
snd (7.7-1) unstable; urgency=low
* New upstream version
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Tue, 12 Oct 2004 12:52:32 +0200
snd (7.6-1) unstable; urgency=low
* New upstream version
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Mon, 30 Aug 2004 17:42:41 +0200
snd (7.4-1) unstable; urgency=low
* New upstream version
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Fri, 25 Jun 2004 15:43:29 +0200
snd (7.2-3) unstable; urgency=low
* Added build dependency on libxmu-dev (closes: 249739)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Wed, 19 May 2004 10:57:51 +0200
snd (7.2-2) unstable; urgency=low
* Compiled with JACK support
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Mon, 19 Apr 2004 20:08:27 +0200
snd (7.2-1) unstable; urgency=low
* New upstream version
* use pkg-config to detect gtkgl libraries in configure.ac
* Added quotes to menu entries section: and needs:
* moved jack support to snd-gtk package (instead of snd-gtk-alsa, jack and
alsa don't work together in sndlib .. although README.Snd file says so)
* bumped standards version to 3.8.0
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Wed, 10 Mar 2004 16:43:16 +0100
snd (7.0-1) unstable; urgency=low
* New upstream release
* debian/control: I set myself as the new maintainer, as
Stefan Schwandter does not maintain snd anymore
* debian/rules: enabled JACK support (set the --with-jack flag)
-- Free Ekanayaka <free@agnula.org> Fri, 12 Dec 2003 09:00:34 +0600
snd (6.10-4) unstable; urgency=low
* Debian QA upload.
* *-motif-*: Change priority to extra to fix override disparity.
-- Peter Palfrader <weasel@debian.org> Wed, 19 Nov 2003 03:02:59 +0100
snd (6.10-3) unstable; urgency=low
* Debian QA upload.
* Sync rules with rules.motif:
- remove po/*.gmo in clean target.
- sync handling of xg module.
* Remove tutorial/files/misc.scm.txt~ in clean target.
* Sync build-depends from control with control.motif.
-motif now build depends on guile-1.6-dev rather than
libguile-dev (closes: #221007).
- Also use fftw3 in the motif package.
* Sync maintainer from control with control.motif: QA it is.
* Sync Standards-Version from control with control.motif.
* Make scripts /usr/share/snd/{bess,bess1,finder,makegl,makexg}.scm
executeable.
* Fix interpreter location for scripts makegl.scm and makexg.scm.
* Fix long lines in long description of snd.
* Make rules +x after motifize.
-- Peter Palfrader <weasel@debian.org> Tue, 18 Nov 2003 23:05:09 +0100
snd (6.10-2) unstable; urgency=low
* Orphaning
* Disable build of xg module for now (closes: #215495)
-- Stefan Schwandter <swan@debian.org> Tue, 28 Oct 2003 18:58:26 +0000
snd (6.10-1) unstable; urgency=low
* New upstream release (closes: #199291)
* segfault doesn't occur with latest guile (closes: #195328, #198454)
* Included dlp extensions again (closes: #195328)
* snd.README.Debian: corrected paths
* Use fftw3
-- Stefan Schwandter <swan@debian.org> Fri, 4 Jul 2003 00:50:08 +0200
snd (6.7-1) unstable; urgency=low
* New upstream release
* Built against latest gtkglext (closes: #183959, #186623, #186628)
* Built against guile 1.6
* Try building xg module on all architectures again
-- Stefan Schwandter <swan@debian.org> Sat, 29 Mar 2003 21:21:05 +0100
snd (6.5-1) unstable; urgency=low
* New upstream release
* snd-motif: Changed priority to optional, to get in sync with the
override file.
-- Stefan Schwandter <swan@debian.org> Tue, 14 Jan 2003 16:21:32 +0100
snd (6.4-2) unstable; urgency=low
* Added OpenGL support for the GTK+ version
-> new build-dep libgtkgl1-dev
-- Stefan Schwandter <swan@debian.org> Sat, 28 Dec 2002 10:16:54 +0100
snd (6.4-1) unstable; urgency=low
* New upstream release
-- Stefan Schwandter <swan@debian.org> Sat, 21 Dec 2002 15:08:53 +0100
snd (6.3-1) unstable; urgency=low
* New upstream release
-- Stefan Schwandter <swan@debian.org> Thu, 14 Nov 2002 23:57:32 +0100
snd (6.2-1) unstable; urgency=low
* New upstream version
-- Stefan Schwandter <swan@debian.org> Tue, 22 Oct 2002 21:39:14 +0200
snd (6.1-3) unstable; urgency=low
* snd-doc: Finally removed override disparity...
* removed trailing space in rules that caused a build failure on alpha
again
-- Stefan Schwandter <swan@debian.org> Sat, 21 Sep 2002 11:48:49 +0200
snd (6.1-2) unstable; urgency=low
* snd: Build xg module again on architectures != alpha, hppa
* snd-motif: Don't try to build xm module on alpha and hppa
-- Stefan Schwandter <swan@debian.org> Sat, 21 Sep 2002 00:24:33 +0200
snd (6.1-1) unstable; urgency=low
* New upstream release
-- Stefan Schwandter <swan@debian.org> Mon, 16 Sep 2002 16:11:27 +0200
snd (6.0-2) unstable; urgency=low
* snd: Don't build xm module for now, doesn't build everywhere.
-- Stefan Schwandter <swan@debian.org> Sat, 14 Sep 2002 14:12:34 +0200
snd (6.0-1) unstable; urgency=low
* New upstream release
* Changed maintainer e-mail address
* snd-gtk: built against gtk+2.0
-- Stefan Schwandter <swan@debian.org> Sat, 24 Aug 2002 00:20:13 +0200
snd (5.12-1) unstable; urgency=low
* New upstream release
* Should build on ia64 again (closes: #148456) (closes: #147957)
* snd-motif: Built against latest motif (closes: #150535)
* snd-motif: built with OpenGL support, build dep on xlibmesa-dev
* snd-doc: Added snd tutorial in /usr/share/doc/snd-doc/HTML/tutorial
* Added Build-Dep: fftw-dev
* Build OSS as well as ALSA versions: snd-gtk-alsa, snd-dmotif-alsa
* Added Build-Dep: libasound2-dev
* Added URL to description
* Removed maintainer rules from debian/rules
* Removed autogen.sh and .cvsignore from debian diff
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Sat, 20 Jul 2002 20:28:29 +0200
snd (5.10-1) unstable; urgency=low
* New upstream release
* debian/control{,.motif}:
- Split package into snd, snd-gtk and snd-doc
- Bumped up Standards-Version
- Small changes in descriptions
* debian/rules{,.motif}:
- Many changes for the package split
- Added target "motifize" to build a snd-motif source package from the snd source
package ("inspired" by the fetchmail/-ssl packages)
* Switched to debhelper V4
* Changed priority of snd-motif to extra, because it depends on libmotif
which has priority extra.
* Unified changelog for snd and snd-motif, old changelog for snd-motif is in
debian/changelog.motif.old
* Build system improvement from README.Debian in autotools-dev
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Thu, 16 May 2002 10:06:08 +0200
snd (5.9-2) unstable; urgency=high
* debian/README.Debian:
- Changed wording
* debian/control:
- Remove unnessecary Conflicts:
- "Officially" link with libgsl0 (closes: #144358)
- Build-Dep: libgtkextra17-dev
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Thu, 18 Apr 2002 13:32:57 +0200
snd (5.9-1) unstable; urgency=high
* New upstream release.
* Build-Conflicts on libgtk2.0-dev.
* Corrected guile path in makexg.scm (lintian error).
* Small change in README.Debian.
* Some build system cleanups.
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Mon, 15 Apr 2002 15:52:11 +0200
snd (5.8-1) unstable; urgency=low
* New upstream release.
* Added Conflicts: with snd-dmotif and snd-smotif.
* Added build-dep on xutils (seems to be necessary for the configure-script
to locate X headers).
* Removed unused watch-file for now.
* Build-Conflicts on libgtk1.3-dev to avoid building with this version of
the library.
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Wed, 13 Mar 2002 14:43:41 +0100
snd (5.6+20020115-3) unstable; urgency=low
* Fix in snd.c to (hopefully) enable build on all archs now.
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Fri, 8 Feb 2002 13:20:44 +0100
snd (5.6+20020115-2) unstable; urgency=low
* Fixes in debian/copyright.
* Previous version reintroduced FPU_IEEE issue. Fixed (closes: #130646).
* Fix line length in description (closes: #130986).
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Thu, 24 Jan 2002 10:34:54 +0100
snd (5.6+20020115-1) unstable; urgency=low
* new upstream version (closes: #126553).
* added scheme-files.
* fixed spelling in description (closes: #125370).
* use improved file selection widget provided by libgtk-extra.
-- Stefan Schwandter <e9925373@student.tuwien.ac.at> Tue, 15 Jan 2002 23:49:22 +0100
snd (4.10-5) unstable; urgency=low
* migrate from dh_help to doc-base (closes: #115001) (closes: #115032)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Wed, 10 Oct 2001 10:05:25 +0200
snd (4.10-4) unstable; urgency=low
* trying to remove the FPU_IEEE issue, (I don't know how to deal with it
in the suggested way, so I just added a ifdef) (closes: #114710).
The other bugs have already been dealt with in the last version.
(closes: #88509) (closes: #113492) (closes: #55306) (closes: #56070)
(closes: #57513) (closes: #85410)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Mon, 8 Oct 2001 10:41:55 +0200
snd (4.10-3) unstable; urgency=low
* added the build depends (closes: #113493 #113492 #55306 #56070 #57513 #85410 #88509)
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Mon, 12 Mar 2001 00:23:05 +0100
snd (4.10-2) unstable; urgency=low
* recompile because of changes in libguile (closes: #85945)
-- Guenter Geiger <geiger@debian.org> Mon, 12 Mar 2001 00:23:05 +0100
snd (4.10-1) unstable; urgency=low
* new upstream (closes: #81864)
-- Guenter Geiger <geiger@debian.org> Mon, 22 Jan 2001 11:23:05 +0100
snd (4.7-1) unstable; urgency=low
* new upstream version
-- Guenter Geiger <geiger@debian.org> Thu, 16 Mar 2000 12:23:01 +0100
snd (3.4-2) unstable; urgency=low
* fixed /usr/doc references in docbase file
-- Guenter Geiger <geiger@debian.org> Sun, 14 Nov 1999 21:14:23 +0100
snd (3.4-1) unstable; urgency=low
* Initial Release.
-- Guenter Geiger <geiger@debian.org> Mon, 08 Nov 1999 14:00:00 +0200
|