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
|
csound (1:6.18.1+dfsg-4) unstable; urgency=medium
[ наб ]
* Remove dh-buildinfo (Closes: #1090775)
[ IOhannes m zmölnig (Debian/GNU) ]
* Ship manpages for binaries (Closes: #1068969)
* python-csound: Mark docstring as raw string (Closes: #1085532)
* For now, disable autopkgtests on s390x (Closes: #1094135)
* Apply 'wrap-and-sort -ast'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 31 Jan 2025 17:55:02 +0100
csound (1:6.18.1+dfsg-3) unstable; urgency=medium
* Fix function signatures and types for liblo API (Closes: #1074894)
* Cherry-pick upstream to initialize K-opcodes at init-time (Closes: #1035387)
* Refresh patches with 'gbp pq'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 21 Aug 2024 10:32:24 +0200
csound (1:6.18.1+dfsg-2) unstable; urgency=medium
* Add patch to fix autopkgtest with Python3.12 (Closes: #1061795)
* Allow stderr for autopkgtests
* Bump standards version to 4.7.0
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 01 Jul 2024 15:20:47 +0200
csound (1:6.18.1+dfsg-1) unstable; urgency=medium
* New upstream version 6.18.1+dfsg
+ Fixes BigEndian issues
+ Fixes ABI compatibility (Closes: #1024169)
+ Drop patches applied (or obsoleted) upstream
* Drop "Recommends:stk" (this belongs to csound-plugins)
* Drop obsolete Cmake configvars
* Modernize 'licensecheck' target
+ Regenerate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 24 Nov 2022 17:00:05 +0100
csound (1:6.18.0+dfsg-2) unstable; urgency=medium
* Forward "Skip BigEndian tests" patch to upstream
* Add lintian-override for uncommon spelling
* Modernize lintian overrides
* Update d/copyright
+ Regenerate d/copyright_hints
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 02 Nov 2022 09:25:14 +0100
csound (1:6.18.0+dfsg-1) unstable; urgency=medium
* New upstream version 6.18.0+dfsg
+ Refresh patches
* Add patch to honour CFLAGS
* d/watch: Use github/tags rather than releases
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Tue, 01 Nov 2022 22:17:50 +0100
csound (1:6.17.0~dfsg-4) unstable; urgency=medium
[ Dennis Braun ]
* Bump Standards Version to 4.6.1
[ IOhannes m zmölnig (Debian/GNU) ]
* Simplify building with python (Closes: #1015994)
+ Use dh-sequence-python3 instead of '--with=python3'
+ Drop useless variables from python3-csound's Depends/Provides
* Skip some tests on big-endian.
Thanks to Graham Inggs <ginggs@debian.org> (Closes: #1009185)
* autopkgtests: Run Python3 tests on all supported py3 versions
* Disable java packages on hurd and hppa (Closes: #827929)
* Mark transitional package 'liblua5.1-luacsnd' as "Multi-Arch:same"
* d/rules:
+ Use execute_after_dh_* rather than override_dh_*
+ Remove config-leftovers on clean
+ Declare that libcsound64-dev is the target package for libcsound64-doc
* List files that are renamed for arch:any as 'not-installed'
* Update and modernize lintian-overrides
* Update d/copyright
+ Add 'Expat' license to d/copyright
+ Add myself to copyright-holders
* Apply 'wrap-and-sort -ast'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 04 Aug 2022 13:58:11 +0200
csound (1:6.17.0~dfsg-3) unstable; urgency=medium
* Upload to unstable.
* autopkgtest
- add functional test for Python3 bindings
- add functional test for Java bindings
- add functional test for Lua bindings
* Drop d/README.source
* Update d/copyright
+ Strip down Files-Excluded to a single CPOL-1.02 licensed file
+ Regenerate d/copyright_hints
* Add "+dfsg" suffix when repacking
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 25 Feb 2022 20:30:50 +0100
csound (1:6.17.0~dfsg-3~exp1) experimental; urgency=medium
* lua-luacsnd6
+ Rename "liblua5.1-luacsnd" to "lua-luacsnd6"
+ Install lua bindings into multiarch locations
* Mark java and lua bindings as "Multi-Arch: same"
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 24 Feb 2022 12:23:29 +0100
csound (1:6.17.0~dfsg-2) unstable; urgency=medium
* libcsnd6-java
+ Install JNI files into multiarch locations
+ Additionally provide a versioned JAR file
* B-D on default-jdk:native to allow for cross-building
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 24 Feb 2022 11:47:49 +0100
csound (1:6.17.0~dfsg-1) unstable; urgency=medium
* Upload to unstable.
* Recommend 'csound-plugins'
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Mon, 21 Feb 2022 15:43:43 +0100
csound (1:6.17.0~dfsg-1~exp1) experimental; urgency=medium
* New upstream version 6.17.0~dfsg
[ IOhannes m zmölnig (Debian/GNU) ]
* Refresh patchset, drop patches applied by upstream
* Update libcsound.symbols
* Set CMAKE_BUILD_RPATH_USE_ORIGIN=ON for reproducible builds
* Drop B-D for plugins that are now in csound-plugins
* Run (parts of) upstream's testsuite as autopkgtest
* Declare static files as being not-installed
* Apply 'wrap-and-sort -ast'
[ Debian Janitor ]
* Remove constraints unnecessary since buster
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Fri, 11 Feb 2022 08:47:58 +0100
csound (1:6.16.2~dfsg-1) unstable; urgency=medium
* Upload to unstable
* Fix search-path for plugins
* Add an autopkgtest for a real segfaulting bug (see #888627)
* Add autopkgtest for 'undefined macro' (see #888630)
* Add yet another autopkgtest for segfault (see: #880010)
* Add patch to make documentation reproducible
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Wed, 15 Sep 2021 12:10:54 +0200
csound (1:6.16.2~dfsg-1~exp1) experimental; urgency=medium
* New upstream version 6.16.2~dfsg
[ Dennis Braun ]
* Refresh patchset, drop patches applied by upstream
* Fix build with lame header
* Fix spelling errors
* Provide the new package csound-soundfont with the sf2 soundbank
* Update d/libcsound64-6.0.symbols
* Build with libfltk1.3-dev (Closes: #974627)
* Add libmp3lame-dev to B-Ds
* Sort B-Ds
* Mark libcsound64-doc as M-A: foreign
* d/copyright: Add myself to the d/section
* Use d/csound-data.install to install *.dat files and not d/rules
* Update *.lintian-overrides
* Remove trailing whitespaces from debian files
* Mark python3-csound test as superficial (Closes: #974448)
* Add me as uploader
* Bump dh-compat to 13
+ d/rules: Remove obsolete override_dh_missing
[ IOhannes m zmölnig (Debian/GNU) ]
* Refresh patchset, drop patches applied by upstream
* Update d/copyright
+ Add licensecheck target to d/rules
+ Generate d/copyright_hints
+ Update d/copyright
* Fix capitalisation of "Lua"
* Update d/libcsound64-6.0.symbols
* Package: python3-csound
+ Remove 'csnd6' python module (dropped upstream) (see NEWS)
+ Explicitly Depend on libcsnd6, libcsound6 and python3-numpy
+ autopkgtests: drop testing for 'csnd6' python module
* Package: libcsnd6-java
+ Drop DEB_VERSION_UPSTREAM from generated jar filename (see NEWS)
* Drop B-D on libpng-dev (image Opcodes have been removed upstream)
* Drop duplicate invocation of dh_installdocs
* Update *.lintian-overrides
* Remove trailing whitespaces from debian files
* Ignore "C++ analysis..." from the blhc check
* Add salsa-ci configuration
* Add myself to uploaders
* Bump standards version to 4.6.0
[ Felipe Sateler ]
* Remove myself from uploaders
-- IOhannes m zmölnig (Debian/GNU) <umlaeute@debian.org> Thu, 26 Aug 2021 14:24:56 +0200
csound (1:6.14.0~dfsg-6) unstable; urgency=high
* Team upload.
* debian/control: Replace removed dependency package ttf-dejavu
with real patch fonts-dejavu. (Closes: #962606)
-- Boyuan Yang <byang@debian.org> Thu, 11 Jun 2020 19:55:19 -0400
csound (1:6.14.0~dfsg-5) unstable; urgency=medium
* Only call dh_doxygen for builds includin arch:all.
Otherwise we might not have doxygen installed (Closes: #960259)
-- Felipe Sateler <fsateler@debian.org> Mon, 11 May 2020 19:49:07 -0400
csound (1:6.14.0~dfsg-4) unstable; urgency=medium
* Restore patch to ctcsound to import the SOVERSIONed library.
It was dropped by mistake when updating csound to 6.14
(Closes: #960128)
* Don't try to link to system jquery.
The jquery file provided by doxygen is in fact a collection of
jquery plus several plugins.
Therefore, we can't replace it with the system version
* Use dh_doxygen to remove build-time doxygen output.
Instead of using our hand-rolled version
-- Felipe Sateler <fsateler@debian.org> Sun, 10 May 2020 12:49:31 -0400
csound (1:6.14.0~dfsg-2) unstable; urgency=medium
* Pick upstream patch fixing duplicate yyin definition.
Fixes a FTBFS with gcc 10. (Closes: #957111)
-- Felipe Sateler <fsateler@debian.org> Sat, 25 Apr 2020 11:56:23 -0400
csound (1:6.14.0~dfsg-1) unstable; urgency=medium
[ Sebastian Ramacher ]
* B-D on libstk-dev
[ Felipe Sateler ]
* New upstream version 6.14.0~dfsg
- Drop patches applied upstream and refresh the rest
- Add new symbols of csound64 library
- Correctly install ctcsound.
Upstream installs both in python2 and python3 path. As it is the same
file, just install them both to the same place
* Wrap long lines in changelog entries: 1:6.13.0~dfsg-2.
* Add override for binaries without dependencies
Small plugins that only call into the host
[ Laurent Bigonville ]
* Make the library packages multiarch-installable.
We need to install the libraries in multiarch-aware directories.
Additionally we can make csound-data multiarch-foreign
-- Felipe Sateler <fsateler@debian.org> Fri, 10 Apr 2020 16:01:10 -0400
csound (1:6.13.0~dfsg-3) unstable; urgency=medium
* Source only upload for testing migration
-- Felipe Sateler <fsateler@debian.org> Thu, 16 Jan 2020 17:05:17 -0300
csound (1:6.13.0~dfsg-2) unstable; urgency=medium
* Port python opcodes and interfaces to python3. Pick changes from upstream,
and point everything at python3 instead of python2. (Closes: #942972)
* Set upstream metadata fields: Bug-Submit.
* Remove obsolete fields Contact, Name from debian/upstream/metadata
(already present in machine-readable debian/copyright).
* Drop unused debian/NEWS.Debian file.
NEWS.Debian is not picked up by debhelper. Since the news documented
there were very old and not installed since forever, let's just drop the
file.
-- Felipe Sateler <fsateler@debian.org> Sat, 28 Dec 2019 18:28:55 -0300
csound (1:6.13.0~dfsg-1) unstable; urgency=medium
* New upstream version 6.13.0~dfsg
- Drop patches applied upstream, refresh remaining patches
- Add new symbols
* Trim trailing whitespace.
* Bump debhelper from old 10 to 12.
* Add upstream metadata.
-- Felipe Sateler <fsateler@debian.org> Sat, 27 Jul 2019 09:29:39 -0400
csound (1:6.12.2~dfsg-3.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix diskgrain, syncgrain and syncloop when sample rate of sample
differs from orchestra, Closes: #924260
-- Sam Hartman <hartmans@debian.org> Thu, 21 Mar 2019 10:31:29 -0400
csound (1:6.12.2~dfsg-3) unstable; urgency=medium
* Fix FTBFS on mips by avoiding a deadlock
-- Felipe Sateler <fsateler@debian.org> Tue, 22 Jan 2019 20:17:37 -0300
csound (1:6.12.2~dfsg-2) unstable; urgency=medium
* Backport fix for broken ZIR opcode (Closes: #916066)
* Backport fix for broken string handling in scores (Closes: #916047)
-- Felipe Sateler <fsateler@debian.org> Tue, 11 Dec 2018 20:11:13 -0300
csound (1:6.12.2~dfsg-1) unstable; urgency=medium
* New upstream version 6.12.2~dfsg
* Refresh patches
- Drop patches applied upstream
* Update copyright file
- Remove sections for files no longer present in source
- Update debian/* years
* Bump Standards-Version
-- Felipe Sateler <fsateler@debian.org> Wed, 21 Nov 2018 22:49:39 -0300
csound (1:6.11.0~dfsg-3) unstable; urgency=medium
* Pick upstream patch to convert update to new-style atomic builtins.
Usage of __atomic_* builtins can be done even on platforms (like mipsel)
without sufficient hardware instructions by linking in libatomic.
Fixes a FTBFS on several archs.
(Closes: #903612)
-- Felipe Sateler <fsateler@debian.org> Fri, 07 Sep 2018 10:07:09 -0300
csound (1:6.11.0~dfsg-2) unstable; urgency=medium
* Unconditionally enable atomic builtins.
It was disabled in !x86 a long time ago for unclear reasons.
The lack of atomics causes a test exercising the async features to hang
(Closes: #903612)
-- Felipe Sateler <fsateler@debian.org> Thu, 23 Aug 2018 09:37:43 -0300
csound (1:6.11.0~dfsg-1) unstable; urgency=medium
* New upstream version 6.11.0~dfsg
-Refresh patches
- Drop patches applied upstream, or applying to components that are
not shipped anymore
- Add new symbols
* Drop components dropped upstream.
The following components were dropped upstream, split into separate
upstream projects:
1. CsoundAC
2. Csladspa
3. The icsound python interface
4. csound~ pd object
They should be packaged separately in order to reintroduce them.
Drop build-dependencies used by these components
* Update cmake options in debian/rules
* Backport upstream patch to not use -Werror -Wall for release builds
* Add Rules-Requires-Root: no, since we don't need (fake)root to build
* Add editorconfig rule for the debian/rules makefile.
Otherwise we get 4-spaces
* Drop --parallel flag to dh, implied by compat level
-- Felipe Sateler <fsateler@debian.org> Sat, 07 Jul 2018 12:08:19 -0400
csound (1:6.10.0~dfsg-2) unstable; urgency=medium
* Change Vcs-* to point to salsa
* Change maintainer address to debian-multimedia@lists.debian.org
* Use debhelper cmake+ninja buildsystem instead of using half meson, half
cmake.
This requires debhelper 11.2.1 so bump the dependency accordingly
* Fix patch message encoding
* Pick upstream patch to fix crash in the orc parser (Closes: #896872)
* ctcsound: import the SOVERSIONed library.
Otherwise we need the dev packages installed (Closes: #896872)
* Add some basic autopkgtests to the python modules
* Make python destroy the created global csound object.
Otherwise we get a crash. (Closes: #896326)
-- Felipe Sateler <fsateler@debian.org> Wed, 25 Apr 2018 16:32:13 -0300
csound (1:6.10.0~dfsg-1) unstable; urgency=medium
* Use SOURCE_DATE_EPOCH envvar instead of parsing the changelog
* Use the ninja cmake backend for some build speed
* Bump debhelper compat level to 10
* New upstream version
- Refresh patches
- Add new symbols
* Force loading of plugins in build dir and not system ones
* Pass DEFAULT_STK_RAWWAVE_PATH via cmake flags instead of custom.cmake.
Fixes some quoting issues
* Use add_compile_options instead of add_compiler_flags.
The latter no longer exists
* Backport patches from upstream to enable -Werror=format-security
-- Felipe Sateler <fsateler@debian.org> Fri, 26 Jan 2018 21:25:56 -0300
csound (1:6.09.1~dfsg-2) unstable; urgency=medium
* Fix build failure with GMM 5.2+ (Closes: #872860)
-- Felipe Sateler <fsateler@debian.org> Wed, 23 Aug 2017 13:12:48 -0300
csound (1:6.09.1~dfsg-1) unstable; urgency=medium
* New upstream version 6.09.1~dfsg
- Fixes build failure on 32bit. Closes: #865439
- Remove unused cmake options from build script
- Refresh patches
* Override *_MODULE_INSTALL_DIR to set it to global install dir
* Add new functions to symbols file
* Bump standards version
* Fix symbols file version for csoundA4.
Remove debian revision
-- Felipe Sateler <fsateler@debian.org> Wed, 09 Aug 2017 21:27:24 -0400
csound (1:6.09.0~dfsg-1) unstable; urgency=medium
* New upstream version
- Refresh patches
- Install new header file csound_threaded.hpp
- Add new symbols introduced in this version
- Update cmake options for new version
* Build and run tests.
But don't install the static library
* Remove boost dependencies, no longer needed.
They were replaced with eigen
* Fix cleanup of doxygen autogenerated files
* Enable hardening features
* Use dh_missing instead of --fail-missing flag to dh_install
-- Felipe Sateler <fsateler@debian.org> Tue, 20 Jun 2017 21:15:25 -0400
csound (1:6.08.0~dfsg-1) unstable; urgency=medium
* New upstream release
- Do not include git commit in version information
- Enable the new score parser
- Add new symbols to symbols file
-- Felipe Sateler <fsateler@debian.org> Thu, 01 Dec 2016 19:51:10 -0300
csound (1:6.07.0~dfsg-4) unstable; urgency=medium
* Fix missing files in arch: all packages (Closes: #837273)
-- Felipe Sateler <fsateler@debian.org> Sat, 10 Sep 2016 12:32:47 -0300
csound (1:6.07.0~dfsg-3) unstable; urgency=medium
* Drop Jonas from uploaders. Thanks for all the work!
* Switch from CDBS to short-form dh
* Bump debhelper compat level to 9
* Drop fltk_gui references in copyright file.
* Fix typo in debian/copyright
-- Felipe Sateler <fsateler@debian.org> Sat, 03 Sep 2016 13:21:27 -0300
csound (1:6.07.0~dfsg-2) unstable; urgency=medium
* pffft: Only use simd instructions on amd64
-- Felipe Sateler <fsateler@debian.org> Sun, 03 Jul 2016 21:23:24 -0400
csound (1:6.07.0~dfsg-1) unstable; urgency=medium
* Imported Upstream version 6.07.0~dfsg
- Add html examples to Files-Excluded
- Remove debian-specific .gitignore
* Update patches for new upstream version.
Dropped:
- Disable-html-timestamps.patch
- Do-not-pass-a-null-pointer-to-strdup.-Fixes-466.patch
- Introduce-CS_PACKAGE_DATE-macro.patch
Dropped because better fix applied upstream:
- debian-specific/apidoc-dotpath.patch
- debian-specific/avoid-nonfree-scansyn-plugin.diff
Refreshed:
- debian-specific/lua-link.diff
* Drop cdbs upstream tarball handling in favor of using uscan
* Update upstream urls to github
* Add libsamplerate build-depend for src_conv
* Update copyright check usage
* Fix USE_ATOMIC_BUILTIN typo
* Drop BUILD_NEW_PARSER option, no longer exists
* Specify python version
* Install icsound and ctcsound python modules
* Add build-depends on dh-python
* fail-missing: do not skip python files
* Add new symbols introduced in the new upstream version
* Disable finite-math-only gcc flag (introduces weird symbols in public lib)
-- Felipe Sateler <fsateler@debian.org> Sun, 03 Jul 2016 14:45:28 -0400
csound (1:6.05~dfsg1-7) unstable; urgency=medium
* Sanitize environment when setting package date
* Disable html timestamps
-- Felipe Sateler <fsateler@debian.org> Fri, 04 Dec 2015 16:27:20 -0300
csound (1:6.05~dfsg1-6) unstable; urgency=medium
* debian/copyright: Updates to machine-readable format
* Package cleanup:
- Switch to gbp-pq
- Remove stale scons directives
- Drop conditions for old python versions.
- Drop break/replaces on versions older than stable (jessie)
- Sync debian/rules with debian/control
* Pass last changelog date as date to csound so it can build reproducibly
- Introduce CS_PACKAGE_DATE macro (from upstream)
-- Felipe Sateler <fsateler@debian.org> Mon, 30 Nov 2015 10:45:54 -0300
csound (1:6.05~dfsg1-5) unstable; urgency=medium
* Add versioned build-dependency on gcc5-transitioned gmm++
* Upload to unstable
-- Felipe Sateler <fsateler@debian.org> Thu, 03 Sep 2015 21:20:00 -0300
csound (1:6.05~dfsg1-4) unstable; urgency=medium
* Upload to unstable
-- Felipe Sateler <fsateler@debian.org> Thu, 03 Sep 2015 20:48:12 -0300
csound (1:6.05~dfsg1-3) experimental; urgency=medium
* Bump standards version in control.in
* Prepare for g++5 ABI transition: rename library packages
Closes: #791014
* Regenerate debian/control
-- Felipe Sateler <fsateler@debian.org> Fri, 31 Jul 2015 20:11:24 -0300
csound (1:6.05~dfsg1-2) unstable; urgency=medium
* Pick patch from upstream preventing a csladspa crash. (Closes: #785186)
-- Felipe Sateler <fsateler@debian.org> Wed, 13 May 2015 23:08:52 -0300
csound (1:6.05~dfsg1-1) unstable; urgency=medium
* New upstream release
- Exclude nacl dir
- Refresh patches
- scope binary has been dropped
* Add new options
- Do not build hdf5 opcode
* Remove old unused 2006-apidocs-font.patch
* Remove old unused custom.py
* Udpate copyright hints
* Add new symbols
* Add default license block
* Bump standards version. No changes needed
-- Felipe Sateler <fsateler@debian.org> Sat, 02 May 2015 21:28:17 -0300
csound (1:6.03.2~dfsg-1) unstable; urgency=medium
* New upstream release
-- Felipe Sateler <fsateler@debian.org> Fri, 06 Jun 2014 19:46:48 -0400
csound (1:6.03.1~dfsg-1) unstable; urgency=medium
* New upstream bugfix release
- Remove unused emscripten and installer on repack
- Fix doc build path
-- Felipe Sateler <fsateler@debian.org> Wed, 07 May 2014 10:54:49 -0400
csound (1:6.03.0~dfsg-1) experimental; urgency=medium
* New upstream release
- Refresh patches
- Fix documentation location
- Install new binary csdebugger
- Install new README.md
- Update copyright hints
- csoundFindVariable was an experimental function, it is now gone
-- Felipe Sateler <fsateler@debian.org> Tue, 06 May 2014 12:09:35 -0400
csound (1:6.02~dfsg-2) unstable; urgency=medium
* Drop Recommends on manpages, upstream no longer produce them
* Add missing Depends of libcsnd-dev on libcsound64-dev (Closes: #742001)
* Bump Standards-Version
-- Felipe Sateler <fsateler@debian.org> Tue, 18 Mar 2014 12:02:12 -0300
csound (1:6.02~dfsg-1) unstable; urgency=medium
* New upstream version
-- Felipe Sateler <fsateler@debian.org> Wed, 22 Jan 2014 10:08:39 -0300
csound (1:6.01~dfsg-2) unstable; urgency=low
* Upload to unstable
* Fix csoundac description
* link to packaged jquery in doc
* Build documentation in the build-indep target
* Backport fix to the java interface from upstream
* Improve clean rule
* No error on format security. Avoids FTBFS in Ubuntu
-- Felipe Sateler <fsateler@debian.org> Tue, 19 Nov 2013 00:01:30 -0300
csound (1:6.01~dfsg-1) experimental; urgency=low
* New upstream version
- Drop patches applied upstream
- Refresh patches
- Do not build max opcode
- Add max msp frontend copyright
- Update copyright hints
- Update symbols file
- csoundapi~ -> csound6~
- libcsnd library renamed to libcsnd6
* Remove csound-gui package
- There are no frontends anymore, the split makes no sense
* Enable openmp
* Use system portsmf
* Ensure doc build dir exists
* Regenerate debian/control
-- Felipe Sateler <fsateler@debian.org> Sat, 19 Oct 2013 19:40:55 -0300
csound (1:6.00.1~dfsg-2) unstable; urgency=low
* Enable lua opcodes
- Use lua instead of luajit
* Get several patches from upstream git.
- Only enable atomic builtins in amd64 and i386. Fixes FTBFS in some archs
- Fix FTBFS on big endian archs
-- Felipe Sateler <fsateler@debian.org> Sun, 01 Sep 2013 23:41:52 -0400
csound (1:6.00.1~dfsg-1) unstable; urgency=low
* New upstream release
- Remove patch applied upstream
- Remove patch to refman_header, no longer in source
- Refresh patches
* Backport several cmake fixes
* Disable default optimizations. Closes: #718969
-- Felipe Sateler <fsateler@debian.org> Wed, 14 Aug 2013 19:04:18 -0400
csound (1:6.00~dfsg-1) unstable; urgency=low
* New upstream release
- Rename packages for csound 6, ABI break
- Enable multicore, is now required
- Disable the p5 glove opcodes
- Refresh patches, drop patch 1000, applied upstream
- Update copyright file
- Add patch from upstream hiding some unwanted symbols
- Fix crash in sdif2ad. Closes: #716233
* Do not build tests yet
* Drop tclcsound, upstream no longer builds it
* Install new csanalyze and scope tools
* python module is now csnd6
* Drop SO versioning of lua interfaces, they are not versioned
* Fixes FTBFS: Closes: #713667
*
-- Felipe Sateler <fsateler@debian.org> Sat, 03 Aug 2013 18:47:12 -0400
csound (1:5.17.11~dfsg-4) unstable; urgency=low
* Team upload.
[ Jonas Smedegaard ]
* Update README.source to emphasize control.in file as *not* a
show-stopper for contributions, referring to wiki page for details.
[ Sebastian Ramacher ]
* debian/patches/2015-bison-2.6.patch: Apply patch from upstream to fix
compilation with bison 2.6. (Closes: #710619)
* debian/{control,rules}: Bump bison to (>= 2.6) to be on the safe side.
* debian/control{,.in}: Change section of libcsoundac5.2 and libcsnd5.2 to
libs.
-- Sebastian Ramacher <sramacher@debian.org> Wed, 05 Jun 2013 01:18:00 +0200
csound (1:5.17.11~dfsg-3) unstable; urgency=low
* Install missing interlocks.h file
-- Felipe Sateler <fsateler@debian.org> Fri, 12 Apr 2013 17:59:48 -0300
csound (1:5.17.11~dfsg-2) unstable; urgency=low
* Backport fix from upstream to build the java interface correctly
-- Felipe Sateler <fsateler@debian.org> Fri, 28 Sep 2012 18:56:24 -0300
csound (1:5.17.11~dfsg-1) unstable; urgency=low
[ Forrest Cahoon ]
* Imported Upstream version 5.17.11~dfsg
- refresh patches for new upstream sources
* Add patch for CsoundAC CMake bugfix
* Build with new parser, old one is now unsupported upstream
* Debian-specific hack for CMake to set an appropriate libsndfile version.
Closes: #676145
[ Felipe Sateler ]
* Add build-dependency on libeigen3-dev, necessary for CsoundAC
* Add Forrest to Uploaders
-- Felipe Sateler <fsateler@debian.org> Sat, 16 Jun 2012 10:01:58 -0400
csound (1:5.17.6~dfsg-3) unstable; urgency=high
* Fix segfault in csladspa. Closes: #672204
-- Felipe Sateler <fsateler@debian.org> Wed, 09 May 2012 14:29:26 -0400
csound (1:5.17.6~dfsg-2) unstable; urgency=low
* Build-Depends on libpng-dev. Closes: #662292
* Document portsmf copyright
* Update copyright hints
* Tighten dependency on CDBS 0.4.111. Closes: #669429.
-- Felipe Sateler <fsateler@debian.org> Wed, 25 Apr 2012 11:10:45 -0300
csound (1:5.17.6~dfsg-1) unstable; urgency=low
* New upstream release
- Do not build the wiimote opcodes (we need wiiuse).
* Add new API function to symbols file
* Disable lua opcodes, they were broken. Requires OpenMP to be enabled.
* Backport fixes from upstream:
- Link dssi4cs with dl. Backport
- Fix building of CsoundAC
-- Felipe Sateler <fsateler@debian.org> Thu, 19 Apr 2012 09:26:46 -0300
csound (1:5.16.6~dfsg-1) UNRELEASED; urgency=low
* New upstream release
+ Update patches
+ Fix for CVE-2012-0270 included upstream. Closes: #661197
* Finalize switch to cmake build system.
+ Backport upstream fixes to the cmake build system
-- Felipe Sateler <fsateler@debian.org> Sat, 03 Mar 2012 12:54:43 -0300
csound (1:5.15.0~dfsg-1) UNRELEASED; urgency=low
[ Felipe Sateler ]
* New upstream release
+ Remove patch applied upstream
+ Remove stale option buildLoris
+ Refresh patches
+ Remove stale options for other frontends
+ Document libmpadec copyright
+ Remove plugins that were folded into the main library
+ No GUI clients anymore
* Recommend stk so that the stk rawwaves can be used. Closes: #656034
* Preliminary cmake support
+ Remove patch for abi versioned plugin install dir, adopted upstream
+ Remove 1004-fix-csoundac-csnd-linkage.diff, does not apply with cmake
+ Remove 1005-fix-ftbfs-gcc-4.6.diff, does not apply to cmake build system
+ Port patches to cmake build system
+ Drop patches not needed in cmake build system
+ Backport changes from upstream git repository
- 0000-updated-CMake-build-for-mp3in-changes.patch for mp3in ugen
- 0001-CMake-BuildSystem-Updates.diff: Lots of Cmake fixes
+ Add Custom.cmake to add the stk include dir
+ Drop debian/rules cleaning not necessary on out-of-tree builds
+ Add patch to enable hidden visibility of most symbols
+ Add patch to link the pd class to libcsound
* Use CDBS parallel build support
* Do not install public lua library. It is probably never used
directly. Just provide the lua module.
* Add missing opcodes to install list
* Use CDBS pd class to handle pd lib stripping and shlibs
[ Jonas Smedegaard ]
* Unfuzz patches.
* Update copyright file:
+ Extend copyright years for main Files section.
+ Add a copyright holder.
* Drop dpkg-source local-options: Defaults since dpkg-source 1.16.1.
* Bump debhelper compat level to 7.
* Shorten Vcs-Browser field in control file.
* Avoid copyright-checking some known-good data files.
-- Felipe Sateler <fsateler@debian.org> Sat, 24 Dec 2011 17:04:46 -0300
csound (1:5.14.2~dfsg-2) unstable; urgency=low
* Fix broken lua module symlink (symlink did not get updated when the lua
module changed names).
* Fix FTBFS with -Werror=format-security. Closes: #649462
-- Felipe Sateler <fsateler@debian.org> Wed, 23 Nov 2011 22:06:19 -0300
csound (1:5.14.2~dfsg-1) unstable; urgency=low
[ Felipe Sateler ]
* New upstream release
- Update copyright file
- Remove patch applied upstream
- Refresh patches
- Beats has been renamed to csbeats
* Delete custom.py on clean
* Install new plugins
* Enable the new Lua opcodes
* Enable new parser
[ Jonas Smedegaard ]
* Update copyright file:
+ Rewrite to DEP5 rev. 174 format.
+ Fix update more entries.
-- Felipe Sateler <fsateler@debian.org> Wed, 02 Nov 2011 19:56:26 -0300
csound (1:5.13.0~dfsg-5) unstable; urgency=low
* Use linux-any wildcard for libasound dependency. Closes: #634489
* Build only for the current python version.
Closes: #642708
-- Felipe Sateler <fsateler@debian.org> Sun, 25 Sep 2011 16:19:59 -0300
csound (1:5.13.0~dfsg-4) unstable; urgency=low
[ Alessio Treglia ]
* Switch to dh_python2
- Update fail-missing rule to ignore files installed in /usr/lib/pyshared.
* debian/custom.py: Small fix to set -Wl,--as-needed properly.
* libcsound64-doc provides documentation in HTML format,
fix package description.
* Register documentation with doc-base.
[ Felipe Sateler ]
* Create new package csound-data for common data files.
- Put the HRTF data files there (LP: #225639)
* Drop the dependency on a JRE for libcsnd-java, the policy no longer
requires it.
* Merge Jakub Wilk's NMU changes.
* Build only for the default python version
* Delete doxygen stamp on clean. Closes: #632256.
* Bump standards-version (No changes needed).
-- Felipe Sateler <fsateler@debian.org> Wed, 13 Jul 2011 23:31:22 -0400
csound (1:5.13.0~dfsg-3.1) unstable; urgency=low
* Non-maintainer upload.
* In order to fix FTBFS with GCC, don't append --no-export-all-symbols to
SHLINKFLAGS 4.6 (closes: #624982). Thanks to Lucas Nussbaum for the bug
report.
-- Jakub Wilk <jwilk@debian.org> Sun, 26 Jun 2011 20:41:04 +0200
csound (1:5.13.0~dfsg-3) unstable; urgency=low
* Beats needs bison and flex in order to build (Closes: #613933)
* Install the beats executable in the csound package
-- Felipe Sateler <fsateler@debian.org> Mon, 21 Feb 2011 17:42:50 -0300
csound (1:5.13.0~dfsg-2) unstable; urgency=low
* Upload to unstable.
-- Felipe Sateler <fsateler@debian.org> Thu, 10 Feb 2011 11:54:10 -0300
csound (1:5.13.0~dfsg-1) experimental; urgency=low
[ Jonas Smedegaard ]
* Let CDBS resolve if parallel build is enabled.
* Ease building with git-buildpackage:
+ Git-ignore quilt .pc dir.
+ Add dpkg-source local-options.
[ Felipe Sateler ]
* New Upstream release
- Update symbols file
- Drop patches grabbed from upstream development
- Add patch to fix linkage of csoundac to csnd
- Refresh other patches
- Enable the new Beats score language
-- Felipe Sateler <fsateler@debian.org> Mon, 17 Jan 2011 22:56:00 -0300
csound (1:5.12.1~dfsg-6) unstable; urgency=low
* Acquire lock before using it on chnclear opcode (Closes: #603321)
-- Felipe Sateler <fsateler@debian.org> Thu, 16 Dec 2010 20:06:28 -0300
csound (1:5.12.1~dfsg-5) unstable; urgency=medium
* Do not print error message when RAWwAVE_PATH is undefined
* Build documentation at install stage to avoid building in buildds.
Really Closes: #590948
* Urgency medium to speed up jackd transition.
-- Felipe Sateler <fsateler@debian.org> Thu, 05 Aug 2010 12:04:49 -0400
csound (1:5.12.1~dfsg-4) unstable; urgency=medium
* Build documentation in -doc specific build target, to avoid
supoerfluous rebuilds in arch-only rebuilds. Closes: bug#590948,
thanks to Julin Cristau and others.
* Set urgency=medium to help speed up jackd transition.
-- Jonas Smedegaard <dr@jones.dk> Wed, 04 Aug 2010 16:14:22 -0400
csound (1:5.12.1~dfsg-3) unstable; urgency=low
[ Felipe Sateler ]
* Disable csound5gui and cseditor
* Update my e-mail address
* Remove the DM-Upload-Allowed field
* Build depend against default-jdk, not default-jdk-builddep, which
was wrong
* Do not specify list for java, as it is available on all archs now.
[ Jonas Smedegaard ]
* Use Breaks (not Conflicts).
* Bump Policy compliance to Standards-Version 3.9.1.
* Comment out cseditor and csound5gui in menu file.
-- Jonas Smedegaard <dr@jones.dk> Sun, 01 Aug 2010 16:20:08 -0400
csound (1:5.12.1~dfsg-2) unstable; urgency=low
* Revert unpatch hack: upsets build daemons.
-- Jonas Smedegaard <dr@jones.dk> Wed, 14 Apr 2010 22:36:10 +0200
csound (1:5.12.1~dfsg-1) unstable; urgency=low
[ Jonas Smedegaard ]
* Fix Mac-encoded apostrophe in copyright, thanks to lintian.
* Bump Standards-Version to 3.8.4.
* Wrap long descriptions at 72 characters.
* Fix capitalization of PureData in a long description.
* Packaging moved to Debian Multimedia Maintainers: Update Maintainer
and Vcs-* stanzas in control file.
* Drop implementing DEB_MAINTAINER_MODE in rules file: handled in cdbs
now. Drop related lintian override as well.
* Drop package-relations.mk (last remaining local CDBS snippet):
included in cdbs itself now.
* Use CDBS class python-module.mk, and simplify local Python hacks in
rules file.
* Refresh patches, using shortening quilt options --no-timestamps
--no-index -pab.
* Update copyright file (new author, no new licenses).
* Fix use DEB_UPSTREAM_REPACKAGE_EXCLUDES (not abandoned
DEB_UPSTREAM_REPACKAGE_EXCLUDE) in rules file.
* Tighten repackaging hints to match current (slightly cleaner)
upstream release, in rules and copyright files.
[ Felipe Sateler ]
* New upstream release
- Update patches for new upstream release
- Install crossfm opcode
- Update symbols file
* Drop local CDBS snippets that have been integrated in the main CDBS
package
* Reorder scons options
* Reorder build-dependencies
* Make every build option explicit
* Fix a segfault when an ending \ is used to split a line in the
orchestra
* Do not set buildSDFT option, it was dropped upstream
* Detect default tcl version and enforce it
* Enable STK opcodes
* Invoke the java archs resolution script in debian/rules
* Update debian/control
-- Jonas Smedegaard <dr@jones.dk> Wed, 14 Apr 2010 14:52:43 +0200
csound (1:5.11.1~dfsg-4) unstable; urgency=low
[ Felipe Sateler ]
* Change luacsnd package name in control files (this caused -3 luacsnd to be
empty).
* Make the lua package provide the old name.
* Install to /usr/lib/dist-packages with python 2.6 or higher.
Closes: #571270
* Add DM-Upload-Allowed field.
[ Jonas Smedegaard ]
* Stop mentioning quilt in README.source.
* Update local CDBS snippets:
+ package-relations.mk:
- Merge mixture of versioned and unversioned dependencies
- Use unversioned dependencies when satisfied in oldstable
- Improve whitespace cleanup
- Rewrite and silence applying dependencies
- Handle cdbs 0.4.53 dependency (needed when using debhelper v7)
+ upstream-tarball.mk:
- Depend unversioned on cdbs (the needed 0.4.39 is in oldstable)
- Preserve bzip2 tarballs with source format '3.0 (quilt)'.
+ copyright-check.mk:
- More aggressive scanning (check top 99999 lines, not just 60)
- Simplify more licensing notices and preserve non-ASCII chars
- Group hints by sorted owner list (ignoring years)
- Limit console output both horisontally and vertically
- Use rev123 of draft DEP5 for hints file
* Refer to FSF website (not postal address) in debian/rules header.
* Rewrite copyright file using in DEP5 rev. 135 format.
* Add DM-Upload-Allowed field to control.in.
* Refresh patches with quilt option --no-timestamp.
* Add rudimentary DEP3 patch headers.
* Build-depend unversioned on cdbs.
-- Jonas Smedegaard <dr@jones.dk> Mon, 01 Mar 2010 01:31:25 +0100
csound (1:5.11.1~dfsg-3) unstable; urgency=low
[ Felipe Sateler ]
* Be more verbose on mv-inside-for-loops
* Rename the lua module (Closes: #561131)
* Do not link against the lua library (Closes: #561128)
* Rename the lua module as per the lua policy
* Correct SONAME and package name of the lua bindings
* Regenerate control file
-- Jonas Smedegaard <dr@jones.dk> Wed, 23 Dec 2009 18:51:51 +0100
csound (1:5.11.1~dfsg-2) unstable; urgency=low
* Fix extend local scons config.py to Include
/usr/lib/jvm/default-java/include/linux. Thanks to
Carlos O'Donell for thorough investigations.
* Switch to source format 3.0 (quilt):
+ Unfuzz patches, and apply them to packaging source.
+ Stop including cdbs snippet patchsys-quilt.mk.
+ Stop build-depending on quilt or patchutils.
+ Add source format hint to packaging source.
* Drop backportability for Etch:
+ Drop fallback build-dependencies on java-gcj-compat-dev and
versioned tcl and tk libraries,
+ Cleanup local scons config.py to not include
/usr/lib/jvm/java-gcj/include or /usr/include/tcl8.4.
-- Jonas Smedegaard <dr@jones.dk> Mon, 16 Nov 2009 20:17:30 +0100
csound (1:5.11.1~dfsg-1) unstable; urgency=low
[ Felipe Sateler ]
* New upstream release
- Large build-system changes
- Update patches:
- Fix csPerfThread.hpp path for installation
- Fix python interface build failure.
- Fix build failure in wrappers
- Make scons install the interfaces library
- Install ScoreModel.hpp
- Install new opcodes
* Add more -Wl,--as-needed
* Change lua package to arch: any now that it is a proper library
* Rely on dh_lintian for the lintian overrides
* Use a symbols file for libcsound64
* Bump Standards-Version, no changes needed
[ Jonas Smedegaard ]
* Tighten -dev packages dependency on their lib package as per Debian
Policy §8.5, thanks to lintian.
-- Jonas Smedegaard <dr@jones.dk> Fri, 16 Oct 2009 21:15:40 +0200
csound (1:5.10.1~dfsg1-4) unstable; urgency=low
[ Jonas Smedegaard ]
* Strip old notes from watch file.
* Simplify debian/copyright (based on newest DEP5 draft).
* Fix typo in README.source: new new.
* Update local CDBS snippets:
+ Update package-relations.mk: Cleanup unversioned+versioned
dependency mix. Improve whitespace cleanup. Rewrite and silence
applying dependencies.
+ Implement fail-source-not-repackaged rule in upstream-tarball.mk.
+ Update URL to draft DEP5 format in copyright-check.mk output.
* Extend java-related (build-)dependencies to include architecures
hppa, kfreebsd-amd64 and kfreebsd-i386.
[ Felipe Sateler ]
* At build, import the whole environment (Closes: #522414)
-- Jonas Smedegaard <dr@jones.dk> Mon, 10 Aug 2009 14:04:40 +0200
csound (1:5.10.1~dfsg1-3) unstable; urgency=low
[ Jonas Smedegaard ]
* Improve patch headers.
[ Felipe Sateler ]
* Relax version mangling in watch file
* Build-depend on libboost-dev (not libboost1.35-dev)
* Build-depend on libboost-serialization-dev
* Drop spinlocks in SPARC (Closes: #526025)
* Use DejaVu instead of Vera fonts (Closes: #528153)
-- Jonas Smedegaard <dr@jones.dk> Mon, 18 May 2009 11:05:12 +0200
csound (1:5.10.1~dfsg1-2) unstable; urgency=low
[ Felipe Sateler ]
* Replace bogus Sugar URLs in debian/copyright with proper CSound
ones.
[ Jonas Smedegaard ]
* Install libcsnd-java in section java, thanks to lintian.
-- Jonas Smedegaard <dr@jones.dk> Sun, 05 Apr 2009 12:04:56 +0200
csound (1:5.10.1~dfsg1-1) unstable; urgency=low
[ Felipe Sateler ]
* New upstream release.
- SONAME bump from 5.1 to 5.2.
- Drop 0000-fix-build.diff, 1000-instdir.diff,
1001-fix-csoundac-amd64.diff, 1002-type-punning.diff,
1004-sanitize-sys.path.diff, 1005-fix-ftbfs-alpha.diff,
accepted upstream.
- Drop 2005-html-apidocs.diff, upstream builds html by default.
- Add 2009-csoundac-fltk-link.patch, csoundac doesn't work with
-Wl,-as-needed.
- Refresh the rest.
* Clear lintian warnings:
- Avoid installing executable examples.
- Override binary-without-manpage: the manpages are generated from another
source package
- Override non-dev-pkg-with-shlib-symlink for libcsnd5.1, it is just too
small to justify a -dev package.
* Add a README.source describing how to get the patched sources.
* Make python-csoundac depend on python-csound. (Closes: #503633)
* Sanitize Python path to avoid arbitrary code execution. Thanks James Vega.
Closes: #504359.
* Fix FTBFS in alpha due to typo.
* Install csPerfThread.hpp.
* Add -dev packages and a lua package from libcsnd and libcsoundac.
* Use DEB_HOST_ARCH_OS instead of DEB_BUILD_ARCH_OS.
* Simplify libjack-dev build-dependency.
[ Jonas Smedegaard ]
* Repackage upstream tarball:
+ Strip embedded tarball: Contains possibly source-less python
binary
+ Strip soundfont: improperly licensed
+ Strip MIDI script: improperly licensed
* Update debian/copyright and related copyright and licensing info:
+ document above additional stripped files.
+ Properly license debian/{pkgarchs.sh,rules}.
+ Update copyright hints (no new authors or licenses)
+ partly rewrite to use proposed new format (preserving all old info
but lacking lots of details revealed from closer looking at the
source)
* Fix watch file:
+ mangle trailing dfsg + optional single digit (not only dfsg2)
+ mangle trailing .0 both in debian and upstream version strings
* Minor updates to cdbs snippets copyright-check.mk and
package-relations.mk.
* Fix unreliable documentation build:
+ Completely replace doxygen-generated Makefile with custom one
ignoring pdflatex errors initially and emits errors at additional
runs to stderr
+ Build-depend on ttf-bitstream-vera and patch Doxyfile to use it
+ Patch Doxyfile to use default dot path
+ Patch refman_header.tex to include needed listings package
* Build-depend on libjack-dev.
* Explicitly add java-gjc include path, to not FTBFS when fallback
java build-dependency is used.
* Build using generic tcl path preferred over versioned one.
* Build-depend on dssi-dev, libgmm++-dev and libboost1.35-dev (and not
libboost-dev).
* Install new plugin libraries:
+ ambicode1 (Furse/Wiggins decoders)
+ Chua (Chua's Oscillator)
+ pulse (PulseAudio client RT IO module)
+ VOSIM (VOice SIMulation)
+ Linear Algebra (not new, but depends on newly linked GMM++)
* Avoid installing empty NEWS file.
* Use CDBS-resolved (not explicit) version number in debian/rules.
* Extend README.source with info Git, upstream tarballs and CDBS.
* Bump standards-version to 3.8.1. Drop README.cdbs-tweaks and
CDBS-specific hints in other source files.
* Extend java-related (build-)dependencies to include dalpha arch.
* Add git-buildpackage configfile, enabling signed tags.
* Add new local CDBS snippet buildinfo.mk to install info on build
environment into binary packages (as debugging aid).
-- Jonas Smedegaard <dr@jones.dk> Fri, 03 Apr 2009 14:52:29 +0200
csound (1:5.08.2~dfsg-1) unstable; urgency=low
[ Jonas Smedegaard ]
* Rerelease same upstream tarball by more accurate name: Upstream
changelog and other upstream packages indicate that
microversion is stripped from upstream tarballs.
This is also an excuse to adjust dfsg extension to be below upstream
(in case they should decide to rerelease without non-DFSG source).
* Update CDBS snippets:
+ Update copyright-check.mk to closer match new proposed copyright
format, optionally break on changes, and cleaup properly. Update
copyright-hints.
+ Use new local package-relations.mk to resolve, cleanup and apply
CDBS-declared (build-)dependencies.
+ Use new local upstream-tarball.mk to implement get-orig-source and
more.
+ Update README.cdbs-tweaks.
* Add DEB_MAINTAINER_MODE in debian/rules (thanks to Romain Beauxis).
* Semi-auto-update debian/control to update dependencies:
DEB_MAINTAINER_MODE=1 fakeroot debian/rules clean
* Rewrite watch file.
[ Felipe Sateler ]
* Install examples in csound, pd-csound, python-csoundac, libcsnd-java and
tclcsound.
* Make the csound library package policy compliant:
- Make the plugins versioned (they are tied to the library anyway).
- Split the translations to the csound package.
This should make transitions easier if/when csound changes ABI.
* Specify useGettext at install time so gettext isn't disabled.
* Make pd-csound depend on pd as fallback for puredata, to allow using
the alternative pd-extended (Closes: #491966).
-- Jonas Smedegaard <dr@jones.dk> Thu, 31 Jul 2008 01:17:52 +0200
csound (1:5.08.0.dfsg2-8) unstable; urgency=low
* Only warn about copyright-check.mk discoveries. Closes: bug#487052.
-- Jonas Smedegaard <dr@jones.dk> Sat, 21 Jun 2008 23:12:05 +0200
csound (1:5.08.0.dfsg2-7) unstable; urgency=low
[ Jonas Smedegaard ]
* Have default-jdk-builddep build-dependency fallback to
java-gcj-compat-dev to ease backporting to Etch.
* Avoid failing too early in fail-missing target, and emit diff when
it does.
* Semi-auto-update debian/control to update dependencies:
DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
[ Felipe Sateler ]
* Add Build-Dependency on graphviz. Doxygen needs it for the html
docs.
* Ship all needed files for the csnd library.
* Fix local scons cdbs tweak to print the actual command it executes at
install time.
* Remove doxygen cruft from the html manual.
* Fix emptyness test in fail-missing target.
* Rename liblua5.1-csnd to libcsnd5.1, since there is a shared library in
/usr/lib. The new package Provides: liblua5.1-csnd.
* Fix override disparity: -doc and -dev are priority extra.
* Enable some optimizations.
-- Jonas Smedegaard <dr@jones.dk> Fri, 23 May 2008 13:54:06 +0200
csound (1:5.08.0.dfsg2-6) unstable; urgency=low
[ Felipe Sateler ]
* Rename patches according to debian/patches/README. While we are at
it, add a small description to each of them.
[ Jonas Smedegaard ]
* Use dpkg-parsechangelog (not head -1 + sed) to resolve suite in
pkgarchs.sh.
-- Jonas Smedegaard <dr@jones.dk> Sun, 11 May 2008 10:36:36 +0200
csound (1:5.08.0.dfsg2-5) unstable; urgency=low
[ Jonas Smedegaard ]
* Rename comment X-Build-Depends-Comment -> XS-Comment in
debian/control (defacto standard limited to XS- and XB-).
* Depend on default-jre (not java-gcj-compat) and build-depend on
default-jdk-builddep (not java-gcj-compat-dev). Build libcsnd-java
only on supported architectures, dynamically resolved using cdbs.
* Update cdbs tweaks:
+ Add local scons.mk and scons-vars.mk to handle SConstruct
buildsystem, and drop custom SConstruct build targets.
* Semi-auto-update debian/control to update dependencies:
DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
* Fix capitalization of Csound in descriptions in debian/control.
* Fix gettext localisation install dir, thanks to lintian.
[ Felipe Sateler ]
* Move the common documentation to the DEB_INSTALL_ALL_DOCS variable from
the several *.docs files.
* Remove csnd.py on clean.
* Enable gettext localisation.
* Build the html API documentation.
* Drop unneeded patch release-flags.diff
-- Jonas Smedegaard <dr@jones.dk> Wed, 07 May 2008 15:15:23 +0200
csound (1:5.08.0.dfsg2-4) unstable; urgency=low
* Update cdbs tweaks:
+ Strip any non-printable characters in copyright-check.mk. Update
copyright-hints.
* Bump debhelper compatibility to version 6.
* Semi-auto-update debian/control to update build-dependencies:
DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
-- Jonas Smedegaard <dr@jones.dk> Wed, 23 Apr 2008 11:27:25 +0200
csound (1:5.08.0.dfsg2-3) unstable; urgency=low
[ Felipe Sateler ]
* Fix override disparity: priority optional, not extra.
* Don't build depend on ALSA on non-linux archs, and don't build the ALSA
plugin.
* The atsa binary was missing from csound-utils.
* Add a check to avoid installing missing programs/plugins.
* Move all GUI opcodes to the csound-gui package. Thus, csound no longer
requires X (Closes: #319362).
* Make the library documentation recommend the -dev package.
* The -dev package doesn't include anything arch-specific, so make it arch:
all.
[ Jonas Smedegaard ]
* Replace unsupported hash comment with "X-Build-Depends-Comment:" tag
in debian/control.
* Fix typo in python-csound long description, thanks to Loïc Minier.
* Minor improvements to missing install check.
* Use per-package install targets (to ease building single binary packages).
-- Jonas Smedegaard <dr@jones.dk> Sat, 19 Apr 2008 03:25:08 +0200
csound (1:5.08.0.dfsg2-2) unstable; urgency=low
[ Felipe Sateler ]
* Create a package for the API reference.
* Remove autogenerated stuff on clean (instead of attempt to preserve
which upsets either git-buildpackage or copyright-check).
* Recommend the manpages package.
* Fix FTBFS on several archs, thanks to Rodney Lorrimar.
(Closes: #474240, #474424)
[ Jonas Smedegaard ]
* Get only default Python version in debian/rules (do not rely on
XS-Python-Version in debian/control).
* Fix section: doc for binary package libcsound64-doc.
-- Jonas Smedegaard <dr@jones.dk> Fri, 11 Apr 2008 20:10:00 +0200
csound (1:5.08.0.dfsg2-1) unstable; urgency=low
[ Felipe Sateler ]
* Separate the csound program and the manual, since they are distributed
separately, and source packages are available for both now.
[ Jonas Smedegaard ]
* Avoid stripped non-free scansyn plugin by applying a patch at build time
(only strip the non-free code itself from the tarball).
* Bump "upstream" version, since we are repackaging again.
* Have Felipe as Maintainer and myself as uploader in debian/control, and
update Vcs-* fields to point to new Git collab-maint location at Alioth.
* Fix get-orig-source to no longer patch scansyn usage out, and not include
manual in main source tarball.
* Preserve (not remove) original custom.py at clean, to not upset
git-buildpackage.
* Preserve autogenerated files provided upstream but regenerated, to not
upset git-buildpackage or copyright-check routine.
* Repackage to use CDBS:
+ Add local cdbs snippet copyright-check.mk.
+ Add cdbs snippet patchsys-quilt.mk (and drop manual quilt rules).
+ Add cdbs snippet langcore.mk (and drop manual setting common buildvars).
+ Add cdbs snippet debhelper.mk (and drop manual debhelper commands).
+ Add debian/README.cdbs-tweaks to source and advertise it in debian/rules.
+ Resolve all build-dependencies in debian/rules and advertise it in
debian/control.
* Build-depend on tk-dev and tcl-dev (and only fallback on 8.4 flavors).
* Semi-auto-update debian/control to update build-dependencies:
DEB_AUTO_UPDATE_DEBIAN_CONTROL=yes fakeroot debian/rules clean
-- Jonas Smedegaard <dr@jones.dk> Thu, 27 Mar 2008 17:05:16 +0100
csound (1:5.08.0.dfsg-1) unstable; urgency=low
* New upstream release.
- Update the get-orig-source target.
- Update patches.
- Drop hidden-symbols.diff, applied upstream.
- Drop fix-csladspa.diff, applied upstream.
* Build-Depend on libpng to build the new image opcodes.
* Upstream now releases a source tarball for the manual, use it.
* Support parallel building via DEB_BUILD_OPTIONS.
* Copy Build-Depends-Indep to Build-Depends until dpkg-buildpackage calls
build-arch when specified -B.
-- Felipe Sateler <fsateler@gmail.com> Wed, 19 Mar 2008 23:57:48 -0300
csound (1:5.07.0.dfsg-5) UNRELEASED; urgency=low
* Include menu file for the GUI csound frontends/editors.
* Bump standards-version (no changes needed).
* Fix FTBFS in amd64 (and maybe other archs) by not SWIG-ing a function
not really supported by SWIG (va_list arguments).
* Work around type punning in swig generated code.
* Delete unnecesary debian/dirs
* Build documentation (manual and api reference). Also make the appropriate
split of arch and arch-indep sections.
* Fix copyright notice.
* Move from dpatch to quilt.
* Override 2 lintian warnings.
-- Felipe Sateler <fsateler@gmail.com> Fri, 18 Jan 2008 14:11:46 -0300
csound (1:5.07.0.dfsg-4) unstable; urgency=low
* Add missing libboost-dev build-dependendy.
* Adjust some of the build flags (optimize a little less).
* Fix segfault in csladspa.
* Clean up dependencies a bit by using -Wl,-as-needed.
-- Felipe Sateler <fsateler@gmail.com> Sun, 02 Dec 2007 16:37:19 -0300
csound (1:5.07.0.dfsg-3) unstable; urgency=low
* Fix include dir of java via custom.py.
* Build for the right architecture.
-- Felipe Sateler <fsateler@gmail.com> Wed, 14 Nov 2007 19:49:04 -0300
csound (1:5.07.0.dfsg-2) unstable; urgency=low
* Fix _csnd.so SONAME breakage.
-- Felipe Sateler <fsateler@gmail.com> Tue, 13 Nov 2007 00:12:17 -0300
csound (1:5.07.0.dfsg-1) unstable; urgency=low
* New upstream release.
- Drop 04cseditor-shared-link.dpatch, accepted upstream.
- Update all other patches.
* Drop 01no-java-recompile.dpatch, since it is not absolutely necessary.
-- Felipe Sateler <fsateler@gmail.com> Mon, 22 Oct 2007 14:02:40 -0300
csound (1:5.06.0.dfsg-1) UNRELEASED; urgency=low
* New maintainer for csound. Revamped the packaging (ie, start from
scratch).
* New upstream version.
(Closes: #415655, #365840)
* Repackaged source because on non-free code.
(Closes: #379648)
* Build shared library.
(Closes: #390235)
* Include a watch file.
(Closes: #415392)
* Build with system OSC-kit.
(Closes: #297018)
-- Felipe Sateler <fsateler@gmail.com> Tue, 02 Oct 2007 00:36:14 -0400
csound (1:4.23f13-1.1) unstable; urgency=high
* Non-maintainer upload.
* High-urgency upload for RC bugfix.
* Drop alpha, ia64, and amd64 from the package architecture list, because
this version of csound makes many 32-bit assumptions that render the
package unusable. Closes: #414660.
* Also fix the clean target to use make distclean, not just make
clean, and remove csound/csound.xmg by hand since nothing seems to
take care of this on clean.
-- Steve Langasek <vorlon@debian.org> Tue, 20 Mar 2007 15:55:27 -0700
csound (1:4.23f13-1) unstable; urgency=low
[ Hans Fugal ]
* New upstream release
* Renamed csound-extract to csound_extract due to automake limitations
* Added NEWS.Debian
* Install more upstream documentation (in /usr/share/doc/csound)
* Removed -P128 from defaults list in manpage. (closes: #300622)
* Built with g++ 4.0. (closes: #318915)
* Upstream removed OSC-Kit. (closes: #297018)
[ Guenter Geiger (Debian/GNU) ]
* Added texinfo build depends
-- Guenter Geiger (Debian/GNU) <geiger@debian.org> Thu, 15 Sep 2005 11:06:56 +0200
csound (4.23f12-2) unstable; urgency=low
* Updated to policy 3.6.1 (no changes)
-- Hans Fugal <hans@fugal.net> Tue, 03 Aug 2004 09:29:32 -0600
csound (4.23f12-1) unstable; urgency=low
* New upstream release
-- Hans Fugal <hans@fugal.net> Wed, 28 Jul 2004 07:54:35 -0600
csound (4.23f08-1) unstable; urgency=low
* New upstream release
-- Hans Fugal <hans@fugal.net> Fri, 02 Jan 2004 10:29:36 -0700
csound (4.23f07-1) unstable; urgency=low
* New upstream release
* Renamed extract to csound-extract. (closes: #205918)
* No longer build plugin .so's, which weren't being installed anyway.
(closes: #207574)
-- Hans Fugal <hans@fugal.net> Fri, 12 Sep 2003 08:33:46 -0600
csound (4.23f06-1) unstable; urgency=low
* New upstream release
-- Hans Fugal <hans@fugal.net> Sun, 17 Aug 2003 15:40:15 -0600
csound (4.23f04-1) unstable; urgency=low
* Initial Release. (closes: #200355)
* Omitted scansyn and scansynx opcodes because of license
* Omitted some OSC-Kit files because of license
* Various Makefile adjustments
* widget.cpp/gcc compile errors fixed
* Wrote manpages for all binaries (closes: #130373 indirectly)
-- Hans Fugal <hans@fugal.net> Tue, 12 Aug 2003 08:09:20 -0600
|