1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978
|
mumble (1.5.735-5) unstable; urgency=medium
* debian/patches:
- Add 50-fix-segfault-missing-pipewire-config.diff to fix Mumble Segfault
when the PipeWire configuration is missing
(Closes: #1091358, #1107868)
- Update 90-debianize-systemd-unit.diff for Forwarding: not-needed
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 30 Jun 2025 20:19:46 -0400
mumble (1.5.735-4) unstable; urgency=medium
* debian/control:
- Update Standards-Version to 4.7.2 (no changes needed)
* debian/mumble.README.Debian:
- Update to add guidance for Mumble client concerning notification settings
(Closes: #1088608)
* debian/patches:
- Remove 35-add-dpkg-buildflags.diff as it can no longer be applied after
build system switched to CMake
- Add 15-update-mumble-manpage.diff to add two new RPC commands
Forwarded upstream https://github.com/mumble-voip/mumble/issues/6802
(Closes: #1103838)
Thanks to Kevin Otte <nivex@nivex.net> for reporting the bug
- Update 45-add-pid-location-hint.diff to for Forwarding: not-needed
* debian/po:
- Update pt.po (Closes: #1103466)
Thanks to Américo Monteiro <a_monteiro@gmx.com> for the translation
- Update pt_BR.po (Closes: 1103449)
Thanks to Adriano Rafael Gomes <adrianorg@debian.org> for the translation
- Update ro.po (Closes: #1101822)
Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org> for the
translation
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 03 May 2025 17:07:10 -0400
mumble (1.5.735-3) unstable; urgency=medium
* debian/control:
- Update Standards-Version to 4.7.1 (no changes needed)
* debian/extras:
- Update TODO concerning compiler flags
* debian/patches:
- Merge patches for avoiding building link plugin on armel into
06-export-architecture-cmake.diff
* debian/mumble.install:
- Update usr/lib/* entry with ${DEB_HOST_MULTIARCH} subdirectories to avoid
including mumble-server config files unintentionally included
(Closes: #1093661, #1093661)
Thanks to Daniel Lange <DLange@debian.org> for the bug report and fix
* debian/patches:
- Update 06-export-architecture-cmake.diff to mark Forwarded tag as
not-needed to avoid Lintian warning
* debian/po:
- Update Spanish traslation file, thanks to Jathan <jathan@debian.org>
(Closes: #1093718)
- Update no.po Dutch translation file
Thanks to Frans Spiesschaert <Frans.Spiesschaert@yucom.be>
(Closes: #1094156)
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 24 Feb 2025 12:20:32 -0500
mumble (1.5.735-2) unstable; urgency=medium
[ Helge Kreutzmann ]
* debian/po/de.po: Update German debconf translation
(Closes: #1092740)
[ Christopher Knadle ]
* debian/control:
- Add build-depends on systemd-dev for better fix for #1068504
* debian/extras:
- Rename sysv-init.README -> sysvinit.README
- Update TODO to complete/remove items related to #1068504,
Upate concerning planned build hardening to cmake/compiler.cmake
* debian/mumble-server.examples:
- Update for sysv-init.README -> sysvinit.README
* debian/mumble-server.install:
- Update to allow pkgconfig to auto-find source files related to systemd
* debian/patches:
- Add 06-export-architecture-cmake.diff to export the build architecture
- Add 08-avoid-link-plugin-armel.diff to avoid link plugin on armel
- Update 45-add-pid-location-hint.diff to add patch author email address
- Update 90-debianize-systemd-unit.diff to remove invalid header line
* debian/rules:
- Add CMake option for bundled renamenoise
- Add CMake option for use-pkgconf-install-paths to allow pkgconf to find
source files related to systemd, improved fix #1068504
- Add variable to get mumble BUILD_NUMBER from Debian changelog
- Add CMake Debian hardening variables
-- Christopher Knadle <Chris.Knadle@coredump.us> Sun, 19 Jan 2025 14:11:21 -0500
mumble (1.5.735-1) unstable; urgency=medium
[ Diederik de Haas ]
* New upstream release: https://www.mumble.info/blog/mumble-1.5.735/
* New upstream release 1.5.735
- debian/patches: Drop patches applied upstream
- debian/rules: Update build number
(Closes: #1089246)
* debian/rules: Stop parsing d/changelog
* debian/rules: Remove unused MAKEFILE and SOURCE_DIR variables
* debian/rules: Sort configure params alphabetically
* debian/rules: Switch to system libraries
* debian/po/templates.pot: Several style fixes
* debian/control: Update package description for Mumble server
* debian/control: Drop debhelper Build-Depends
* debian/upstream/signing-key.asc: update to upstream's 2024 key
* debian/watch: Reformat watch file
* debian/mumble-server.install: Update file locations
* debian: Add systemd-tmpfiles support for Mumble Server
* debian/copyright: Update for rnnoise-src -> renamenoise change
[ Christopher Knadle ]
* debian/extras:
- Add mumble-server.postinst which references /etc/default/mumble-server
for use with the non-default init script
- Add sysv-init.README to document that these files are for running
mumble-server with a non-default init system
- Update TODO file on attempted sysuers file location work
* debian/patches:
- Update 90-debianize-systemd-unit.diff for line offset fuzz
* debian/mumble-server.examples:
- Add mumble-server.postinst that references /etc/default/mumble-server
- Add sysv-init.README for information on files to use with alternate init
* debian/mumble-server.install:
- Update build file move from etc/sysconfig.d to etc/sysusers.d
* debian/mumble-server.postinst:
- Remove /etc/default/mumble-server references that systemd does not use
* debian/mumble-server.README.Debian:
- Summarize use of example files for starting mumble-server with an
alternate init system
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 08 Jan 2025 17:09:49 -0500
mumble (1.5.517-3) unstable; urgency=medium
* debian/control:
- Update Standards-Version to 4.7.0 (no changes needed)
* debian/mumble-server.install:
- Move mumble-server.conf etc/sysconfig.d/ file to /usr/lib/sysuers.d/
(Closes: #1068504)
* debian/mumble-server.preinst:
- Remove file, mv_conffile in mumble-server.mainscript replaces this task
(Closes: #1091798)
* debian/patches:
- Update 90-debianize-systemd-unit.diff to remove dupe name in email
- Update 95-fix-reproducibility.diff to fix email address
- Add 96-wrapper-fix-bin-path.diff to fix mumble-server binary location
(Closes: #1082641)
* debian/po:
- Add ro.po Romanian translation file
(Closes: #1032807)
Thanks to Remus-Gabriel Chelu <remusgabriel.chelu@disroot.org> for the
translation
* debian/rules:
- Remove commented init script section
* debian/tests/control:
- Add comments for what the 'smoke' test is for
- Remove 'superficial' tag on 'smoke' test
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 01 Jan 2025 17:42:42 -0500
mumble (1.5.517-2.1) unstable; urgency=medium
* Non-maintainer upload.
* Install mumble-server.service into /usr (DEP17). (Closes: #1073741)
* Update Build-Depends: pkg-config => pkgconf.
[ Christopher Knadle ]
* debian/mumble-server.maintscript: move /etc/mumble-server.ini conffile.
(Closes: #1071058)
-- Chris Hofstaedtler <zeha@debian.org> Sat, 16 Nov 2024 16:11:40 +0100
mumble (1.5.517-2) unstable; urgency=medium
[ Diederik de Haas ]
* debian/tests/control:
- Add xauth as a binary dependency
(Closes: #1063711)
* debian/tests/smoke:
- Add missing closing ')' to SERVER_VERSION
- Create Mumble dir in $HOME for 'mumble --version' to remove extra output
[ Chris Lamb ]
* debian/patches:
- Add 95-fix-reproducibility.diff: set a timezone, otherwise the date
could vary based on the timezone of the build server
(Closes: #1060254)
[ Christopher Knadle ]
* debian/patches:
- Fix email typo in 90-debianize-systemd-unit.diff
* debian/tests/control:
- Add "superficial" restriction as the 'smoke' test doesn't test mumble
to a great extent.
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 06 Apr 2024 00:56:38 -0400
mumble (1.5.517-1) unstable; urgency=medium
[ Sven Hartge ]
* debian/patches:
- Add 90-debianize-systemd-unit.diff to get systemd service file working
(Closes: #1039271)
* Update files under debian/ for renaming murmurd -> mumble-server:
- mumble-server.README.Debian
- mumble-server.postinst
- mumble-server.templates
- po/cs.po
- po/da.po
- po/de.po
- po/es.po
- po/eu.po
- po/fi.po
- po/fr.po
- po/gl.po
- po/hu.po
- po/it.po
- po/ja.po
- po/nb.po
- po/nl.po
- po/pt.po
- po/pt_BR.po
- po/ru.po
- po/sv.po
- po/templates.pot
- po/vi.po
* Fix permissions for /etc/mumble on upgrade and new installation; updates:
- mumble-server.postinst
- mumble-server.preinst
[ Christopher Knadle ]
* New upstream release candidate snapshot from 2023-01-21
https://www.mumble.info/blog/mumble-1.5.517-rc/
(Several attempts to release 1.4.x were made but did not work out)
(Closes: #1017780)
* debian/compat:
- File removed; debhelper compatibility set via debhelper-compat
* debian/control:
- Update dependencies for 1.5.x release
- Set debhelper compatibility via debhelper-compat
- Change Maintainer field to the Debian VoIP Team
- Add Rules-Requires-Root: no to allow building as non-root
- Update Standards-Version to 4.6.2 (no changes needed)
* debian/copyright:
- Update for 3rdparty license changes in 1.5.x
* debian/mumble.docs:
- Update for files available in release
* debian/mumble.lintian-overrides:
- Remove all overrides, none seem to apply
* debian/mumble-server.docs:
- Update for new file locations
* debian/mumble-server.doc-base:
- Update for new file locations
* debian/mumble.install:
- Update for file location changes and removal of .protocol file
* debian/mumble-server.install:
- Update for new file locations
* debian/mumble.manpages:
- Update for new build file locations
* debian/mumble-server.manpages:
- Update for new build file locations
* debian/mumble-server.postinst:
- Update for configuration file move from /etc to /etc/mumble
* debian/mumble.README.Debian:
- Add new README to help introduce the Mumble client, hints for testing
setups,and to give some instructions on using Mumble over Tor
* debian/mumble-server.README.Debian:
- Update README for important new changes with 1.5.517
- Add new section describing how to set up a Tor Onion Service for
mumble-server to allow running a mumble service over Tor
* debian/NEWS:
- Add entry to warn users of dropping of all codecs other than OPUS and
links to a summary of changes and chat window scrolling issue on Linux
- Notify that README.Debian files now have documentation for using mumble
and mumble-server over Tor.
* debian/patches:
- Remove 06-lsb-lower-dbus-dependency.diff; patch incorporated into init
script shipped as examples for users using alternate init systems
- Remove 07-use-embedded-celt-baseline.diff: obsolete, CELT support removed
- Update 12-disable-ice-by-default.diff for new config file location
- Remove 25-make-logfiles-readable-by-adm.diff; patch incorporated into
shipped logrotate example in examples for users of alternate init systems
- Remove 44-add-speechd-header.diff; obsolete, file patch points to removed
- Add 45-add-pid-location-hint.diff patch to suggest a pidfile location
in mumble-server.ini for when using an alternate init system and an
init script
- Remove 46-var-run-to-run.diff: obsolete patch and incorporated into
shipped example files
- Remove 52-use-update-rc.d-for-disable.diff; obsolete patch, incorporated
into shipped example init script
- Remove 54-fix-mysql-start.diff; obsolete patch, incorporated into shipped
example init script
- Remove 55-openssl-3.0-compat.patch; obsolete patch
* debian/rules:
- Strip LDFLAGS for options that would break mumble_overlay
- Switch to building with cmake
- Added cmake options for building Mumble release on Debian
- Removed section installing CHANGES file (file removed from release)
- Build Ice HTML files based on MumbleServer.ice in new location
* debian/source/lintian-overrides:
- Remove override source-is-missing for removed html file
* debian/upstream/signing-key.asc:
- Update to Mumble 2023 build infrastructure key
* debian/tests:
- Add autopkgtest 'smoke' test to execute mumble and mumble-server and
get text output of version
* debian/watch:
- Update to upstream snapshot directory so uscan can find 1.5.517 tarball
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 02 Jan 2024 23:13:08 -0500
mumble (1.3.4-4) unstable; urgency=medium
* debian/copyright:
- Remove line 88 duplicate globbing pattern 3rdparty/speex-src/*
* debian/tests/control
- Explicitly list mumble and mumble-server packages to help understanding
* debian/tests/smoke
- Disable execution of mumble binary due to Qt error of
"could not find display" causing test to fail and package regression
(Closes: #1030813)
-- Christopher Knadle <Chris.Knadle@coredump.us> Fri, 10 Feb 2023 04:00:49 -0500
mumble (1.3.4-3) unstable; urgency=medium
* debian/tests/control:
- Fix autopkgtest control file to use "Tests:" instead of "Test-Command:"
- Use "@" shorthand to install binary packages instead of explict list
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 07 Feb 2023 15:00:27 -0500
mumble (1.3.4-2) unstable; urgency=medium
[ Diederik de Haas ]
* debian/changelog:
- Fix debian-changelog-line-too-long for 1.3.4-1.1
* debian/control:
- Add Rules-Requires-Root: no to allow building without root
- Alter Build-Depends to update from transitional package libgl1-mesa-dev
to libgl-dev
* debian/mumble.lintian-overrides:
- Remove postinst-has-useless-call-to-ldconfig override
* debian/source/lintian-overrides:
- Add override source-is-missing for html file
* debian/upstream/metadata:
- Remove Homepage: field since it is not defined i list of fields/tags
[ Gioele Barabucci ]
* debian/mumble-server.postinst:
- Replace Perl with Sed
[ Debian Janitor <janitor@jelmer.uk> ]
* debian/changelog:
- Fix day-of-week for changelog entry 1.1.3-2
* debian/compat:
- Remove file, set debhelper compat level in debian/control
* debian/control:
- Bump debhelper from 12 to 13
- Upgrade Standards-Version to 4.6.0, no changes needed
* debian/mumble.lintian-overrides:
- Remove overrides for lintian tags that are no longer supported
* debian/upstream/metadata:
- Add Bug-Submit upstream metadata field
- Remove Name: field since it is present in debian/copyright
[ Christopher Knadle ]
* debian/control:
- Update Standards-Version to 4.6.2 (no changes needed)
* debian/mumble-server.README.Debian:
- Document that mumble-server, murmur, murmurd all refer to the same
server binary /usr/sbin/murmurd (Closes: #964063)
* debian/tests:
- Add autopkgtest -control file and smoke test to insure mumble and
murmurd binaries are built an in-place
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 06 Feb 2023 19:57:40 -0500
mumble (1.3.4-1.1) unstable; urgency=medium
[ Steve Langasek ]
* Non-maintainer upload.
* debian/patches/openssl-3.0-compat.patch: port upstream patch for building
against openssl 3.0 (Closes: #1005719)
-- Judit Foglszinger <urbec@debian.org> Mon, 12 Sep 2022 00:37:43 +0700
mumble (1.3.4-1) unstable; urgency=medium
* New upstream bugfix release from 2021-02-10
- Fixes CVE-2021-27229 (Closes: #982904)
Mumble before 1.3.4 allows remote code execution if a victim navigates
to a crafted URL on a server list and clicks on the Open Webpage text
- Fixes packet loss & audio artifacts caused by OCB2 XEXStarAttack
mitigation (upstream issue #4720)
* debian/upstream/signing-key.asc:
- Update signing-key.asc for Mumble 2021 build infrastructure key
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 01 Mar 2021 09:29:33 +0000
mumble (1.3.3-1) unstable; urgency=medium
* New upstream bugfix and security release from 2020-10-04
* debian/changelog:
- Update Homepage to point to the nwer main page instead of the wiki
- Update Standards-Version to 4.5.1 (no changes needed)
- Update Build-Depends for debhelper >= 12
* debian/compat:
- Update debhelper compatibility level from 11 to 12
* debian/patches:
- Update 35-add-dpkg-buildflags.diff for line offset fuzz
- Update 46-var-run-to-run.diff for line offset fuzz
-- Christopher Knadle <Chris.Knadle@coredump.us> Fri, 08 Jan 2021 06:41:34 +0000
mumble (1.3.2-1) unstable; urgency=medium
* New upstream release from 2020-07-09
- Fixes 7-second startup delay due to jackd (Closes: #941455)
Thanks to Matthias Heinz <mh@familie-heinz.name> for reporting the bug
- Fixes sound lockups caused when jackd started by Mumble client
(Closes: #952742)
Thanks to lemmel <debian-bugreport-46@mouaip.info> for reporting the bug
Thanks to Sébastien Leblanc <seb@sebleblanc.net> for finding a fix
- Fixes getCurrentUrl return value (Closes: #956379)
- Fixes New upstream version available (Closes: #965002)
* debian/control:
- Update Standards-Version to 4.5.0 (no changes needed)
* debian/mumble.gconf-defaults:
- Remove file due to GConf being deprecated (Closes: #959108)
Note https://bugs.debian.org/908845 for reference concerning planned
dh_gconf removal
Thanks to Michael Biebl <biebl@debian.org> for reporting the bug and
explaining the fix
* debian/patches:
- Add 54-fix-mysql-start.diff to change $mysql -> mysql (Closes: #698715)
Thanks to Tim Besard <tim.besard@gmail.com> for reporting the bug and
finding the fix
* debian/upstream:
- Update signing-key.asc for Mumble 2020 build infrastructure key
* debian/watch:
- Update for upstream move of stable releases under stable/ subdirectory
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 11 Aug 2020 19:53:03 +0000
mumble (1.3.0+dfsg-1) unstable; urgency=medium
[ Melvin Vermeeren ]
- Supplied merge requests on salsa.debian.org to upgrade package to
1.3.0~rc2+dfsg-1, but 1.3.0 stable was released before package review
was completed, so 1.3.0 stable from upstream was imported instead
* debian/control:
- Add libjack-jackd2-dev to add jack support
* debian/README.source:
- Document how to import new sources
* debian/watch:
- Update to separate lines for clearer understanding, change repack
rename from +repack to +dsfg
[ Christopher Knadle ]
* New upstream release from 2019-09-07
(Closes: #925464)
Thanks to Antoine Beaupre <anarcat@debian.org> for reporting the bug
(Closes: #939901)
Thanks to Michael Evans <mjevans1983@gmail.com> for reporting the bug
and informing that 1.3.0 stable was available
* debian/control:
- Update Standards-Version to 4.4.0 (no changes needed)
* debian/copyright:
- Update Files-Excluded to remove one nonfree IETF text file
- Update 2 Files sections for file relocations
* debian/patches:
- Update 35-add-dpkg-buildflags.diff for line offset fuzz
- Update 44-add-speechd-header.diff for line fuzz
- Remove 60-crossbuild.diff (incorporated upstream)
- Remove 65-fix-sample-path.diff (incorporated upstream)
* debian/upstream:
- Add Mumble 2019 infrastructure GPG key as signing-key.asc
* debian/watch:
- Update to watch upstream releases, check PGP signature of release,
and repack tarball to remove non-free files
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 21 Sep 2019 19:16:56 +0000
mumble (1.3.0~git20190125.440b173+dfsg-2) unstable; urgency=medium
* debian/patches:
- Add 65-fix-sample-path.diff (Closes: #921268)
Thanks to Mikaela Suomalainen <mikaela@mikaela.info> for reporting
the bug.
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 28 Feb 2019 16:36:21 +0000
mumble (1.3.0~git20190125.440b173+dfsg-1) unstable; urgency=high
[ Helmut Grohne ]
* debian/patches:
- Add 60-crossbuild.diff to remove hard coded call to pkg-config
to allow Mumble to be cross buildable
Fixes "FTCBFS: builds for the wrong architecture" (Closes: #919453)
* debian/rules:
- Merge qmake call into dh_auto_configure so qmake gets called only once
[ Christopher Knadle ]
* New upstream git snapshot from 2019-01-25
- Fixes "security issue: DoS due to changing # of allowed users in root
channel" (Closes: #920476)
Thanks to "The Zom.bi Community" for finding the bug and fixing it
upstream.
- Fixes "lost list of server configurated" (Closes: #920237)
Thanks to petrohs <petrohs@gmail.com> for reporting the bug, and to
Antoine Beaupré <anarcat@debian.org> for discussing the bug upstream
more in issue #1702 to verify that the prior fix was insufficient
* debian/copyright:
- Update directory location for codecs to be under 3rdparty/ rather than
softlinks
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 26 Jan 2019 03:33:10 +0000
mumble (1.3.0~git20190114.9fcc588+dfsg-1) unstable; urgency=medium
* New upstream git snapshot from 2019-01-14
Fixes wishlist bug "mumble: please package a QT5 version of mumble"
(Closes: #874683)
Fixes "[mumble] Future Qt4 removal from Buster"
(Closes: #875058)
Thanks to Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org>
for reporting the bug
Fixes "mumble: sound glitches when starting mumble"
(Closes: #915273)
Thanks to Axel R. <at46n@t-online.de> for reporting the bug
Fixes security issue: instability and crash due to crafted message flooding
Thanks to "The Zom.bi Community" for reporting the bug and fixing the bug
upstream
(Closes: #919249)
* debian/control:
- Update Build-Depends to use Qt5 dependencies
- Remove Suggests: dbus package for mumble-server
- Add Suggests: libqt5sql5-sqlite for mumble-server
- Update Standards-Version to 4.3.0 (no changes needed)
* debian/copyright:
- Add Files-Excluded section to document files removed from the upstream
tarball for DFSG compliance. [The removals are for draft IETF documents
for CELT, Opus, Speex codecs that have a restrictive license.]
- Update Source link to https://dl.mumble.info
- Remove Files: macx/overlay/* section (code removed upstream)
- Update copyright year for files in debian/*
* debian/extras:
- Add make-mumble-git-tarball.sh and murmur.ini.system.diff for
creating a tarball from the git repository to allow verifying the
tarball used in the package
* debian/mumble-server.examples:
- Update for file move in new version
* debian/NEWS:
- Add entry to describe new Perfect Forward Secrecy SSL support,
tarball repack, and tarball PGP check removal
* debian/patches:
- Remove 05-lsb-description.diff (incorporated upstream)
- Update 07-use-embedded-celt-baseline.diff for Mumble 1.3
- Remove 12-mumble-server-disable-dbus-and-ice.diff,
Add 12-disable-ice-by-default.diff to disable Ice by default
- Remove 17-change-pulseaudio-role.diff (incorporated upstream)
- Remove 19-move-xlib-initializtion-earlier.diff (incorporated upstream)
- Remove 27-prevent-flooding-.xsession-errors.diff (different fix
incorporated upstream)
- Remove 30-Remove-flawed-MX-host-existence-check.diff
(incorporated upstream)
- Update 35-add-dpkg-buildflags.diff for new upstream snapshot
- Remove 38-fix-spelling-error.diff (incorporated upstream)
- Remove 40-make-build-reproducible.diff (incorporated upstream)
- Remove 43-initialize-SSL.diff (similar fix incorporated upstream)
- Update 44-add-speechd-header.diff for new upstream snapshot
- Update 46-var-run-to-run.diff for new upstream snapshot
- Remove 48-systemd-workaround.diff (incorporated upstream)
- Remove 50-zeroc-ice-lib-move.diff (similar fix incorporated upstream)
- Remove 54-fix-boost-ftbfs.diff (incorporated upstream)
* debian/rules:
- Enable QT_SELECT=qt5 to force use of Qt5's qmake rather than Qt4's
- Switch qmake-qt4 to qmake in override_dh_auto_configure section
- Add CONFIG*=dpkg-buildflags in override_dh_auto_configure section
* debian/upstream:
- Remove signing-key.asc due to having to repack upstream tarball
which will cause the PGP signature check to fail
* debian/watch:
- Comment out all lines for now, as the source of the tarball is
via git export of 'master' with submodules via a script
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 15 Jan 2019 05:53:33 +0000
mumble (1.2.19-3) unstable; urgency=medium
* debian/control:
- Add Vcs-Browser and Vcs-Git links pointing to repository on Salsa
- Remove Suggests: mumble-django package from mumble-server (deprecated)
- Remove Build-Depends: libg15daemon-client-dev due to g15daemon package
removal (see #914888) (Closes: #915777)
Thanks to Andreas Beckmann <anbe@debian.org> for reporting the bug.
- Upgrade Standards-Version to 4.2.1
Changes:
- Update debian/rules to enable DH_VERBOSE=1 to increase build
verbosity as requested in Debian Policy § 4.9
* debian/patches:
- Add 54-fix-boost-ftbfs.diff to fix FTBFS bug with boost1.67
(Closes: #912779)
Thanks to Giovanni Mascellani <gio@debian.org> for reporting the bug and
providing a patch. Thanks to Adrian Bunk <bunk@debian.org> for finding
and reporting the upstream commit used to fix this.
- Re-enable 07-use-embedded-celt-baseline.diff in series file. Without the
patch celt 0.11.0 was built but then not shipped.
* debian/rules:
- Enable DH_VERBOSE=1 to increase build verbosity
- Add CONFIG*=no-g15 to remove G15 keyboard features due to g15daemon
package removal
* debian/upstream/metadata:
- Add metadata file to appease Lintian
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 11 Dec 2018 15:58:57 +0000
mumble (1.3.0~2868~g44b9004+dfsg-1) experimental; urgency=medium
* New upstream snapshot from 2018-08-30
Fixes wishlist bug "mumble: please package a QT5 version of mumble"
(Closes: #874683)
Thanks to Daniel Kahn Gillmor <dkg@fifthhorseman.net> for reporting
the bug and informing me about the pending Qt4 removal (also reported
in #875058); sorry it took me so long to package this.
* debian/control:
- Update Build-Depends to use Qt5 dependencies
- Remove Suggests: dbus, mumble-django packages for mumble-server
- Add Suggests: libqt5sql5-sqlite for mumble-server
- Update Standards-Version to 4.2.1
Changes:
- Update debian/rules to enable DH_VERBOSE=1 to increase build
verbosity as requested in Debian Policy § 4.9
* debian/copyright:
- Add Files-Excluded section to document files removed from the upstream
tarball for DFSG compliance. [The removals are for draft IETF documents
for CELT, Opus, Speex codecs that have a restrictive license.]
- Update Source link to https://dl.mumble.info
- Remove Files: macx/overlay/* section (code removed upstream)
- Update copyright year for files in debian/*
* debian/mumble-server.examples:
- Update for file move in new upstream snapshot
* debian/NEWS:
- Add entry to describe new Perfect Forward Secrecy SSL support, slowed
upstream development, tarball repack, and tarball PGP check removal
* debian/patches:
- Remove 05-lsb-description.diff (incorporated upstream)
- Remove 12-mumble-server-disable-dbus-and-ice.diff,
Add 12-disable-ice-by-default.diff to disable Ice by default
- Remove 17-change-pulseaudio-role.diff (incorporated upstream)
- Remove 19-move-xlib-initializtion-earlier.diff (incorporated upstream)
- Remove 27-prevent-flooding-.xsession-errors.diff (different fix
incorporated upstream)
- Remove 30-Remove-flawed-MX-host-existence-check.diff
(incorporated upstream)
- Update 35-add-dpkg-buildflags.diff for new upstream snapshot
- Remove 38-fix-spelling-error.diff (incorporated upstream)
- Remove 40-make-build-reproducible.diff (incorporated upstream)
- Remove 43-initialize-SSL.diff (similar fix incorporated upstream)
- Update 44-add-speechd-header.diff for new upstream snapshot
- Update 46-var-run-to-run.diff for new upstream snapshot
- Remove 48-systemd-workaround.diff (incorporated upstream)
- Remove 50-zeroc-ice-lib-move.diff (similar fix incorporated upstream)
* debian/rules:
- Enable DH_VERBOSE=1 to increase build verbosity
- Enable DEB_BUILD_HARDENING=1 to add build hardening
- Enable QT_SELECT=qt5 to force use of Qt5's qmake rather than Qt4's
- Switch qmake-qt4 to qmake in override_dh_auto_configure section
- Add CONFIG*=dpkg-buildflags in override_dh_auto_configure section
* debian/upstream:
- Remove signing-key.asc due to having to repack upstream tarball
which will cause the PGP signature check to fail
* debian/watch:
- Comment out PGP signature check due to upstream tarball repack
- Add repack option to remove unreleasable files specified by
Files-Excluded in debian/copyright file
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 20 Sep 2018 05:50:27 +0000
mumble (1.2.19-2) unstable; urgency=medium
* debian/compat:
- Update from debhelper compatibility 9 to 11
* debian/control:
- Remove VCS links that are currently invalid
(VCS links will return later after a transition is completed)
- Update Build-Depends on debhelper version >= 11
- Update Standards-Version to 4.1.4
Changes:
- Added 52-use-update-rc.d-for-disable.diff patch for init script
to remove /etc/default check for daemon enable/disable
- Update mumble-server.config to remove /etc/default check for
daemon enable/disable
- Update mumble-server.postinst to remove checks and modifications to
/etc/default for daemon enable/disable
- Update mumble-server.default to remove environment variable for
daemon enable/disable
- Update mumble-server.README.Debian for explanation of daemon
enable/disable in /etc/default file and how to use update-rc.d
for sysvinit and systemctl commands for enable/disable with systemd
* debian/rules:
- Update for new zeroc-ice library location
* debian/patches:
- Update 35-add-dpkg-buildflags.diff for line offset fuzz
- Update 43-initialize-SSL.diff for line offset fuzz
- Update 48-systemd-workaround.diff for "netowrk" typo
- Add 50-zeroc-ice-lib-move.diff for zeroc-ice 3.7 library location move
and IceUtil library removal
- Add 52-use-update-rc.d-for-disable.diff to switch from enable/disable
in init script to using update-rc.d as required by Debian Policy
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 06 Jun 2018 11:55:12 +0100
mumble (1.2.19-1) unstable; urgency=medium
* New bugfix release from 2017-01-27
http://blog.mumble.info/mumble-1-2-19/
(Closes: #869723)
* debian/control:
- Update Standards-Version to 4.1.2 (no changes needed)
- Remove mumble-dbg package to switch to automatic dbgsym packaging
* debian/copyright
- Update copyright-format link to use https
* debian/mumble-server.postinst
- Update to replace /var/run with /run
* debian/mumble-server.postrm
- Update to replace /var/run with /run
* debian/NEWS
- Update to explain pending removal of Mumble 1.2.x due to pending
removal of Qt 4 and trouble with pending OpenSSL 1.0 removal
* debian/patches
- Add 46-var-run-to-run.diff to replace /var/run with /run
(Closes: #693348)
Thanks to Florent Angebault <florent.angebault@free.fr> for reporting
the bug
- Add 48-systemd-workaround.diff systemd workaround for mumble-server
(Closes: #780300)
Thanks to Tuxicoman <debian@jesuislibre.net> for reporting the bug and
pointing to the corresponding Ubuntu launchpad bug. (#1346431)
Thanks to Mikkel Krautz <mikkel@krautz.dk> for finding the fix
* debian/rules
- Remove dh_strip call to switch to automatic dbgsym packaging
* debian/upstream
- Update signing-key.asc with upstream 2017 key
https://github.com/mumble-voip/mumble-gpg-signatures/blob/master/mumble-auto-build-2017.asc
pub rsa4096/0x88048D0D625297A0 2017-01-08 [SC] [expires: 2017-12-31]
Key fingerprint = C466 6C67 67A2 6017 CE68 4069 8804 8D0D 6252 97A0
uid Mumble Automatic Build Infrastructure 2017
<mumble-auto-build-2017@mumble.info>
sub rsa4096/0x0E416EE9C603B213 2017-01-08 [E] [expires: 2017-12-31]
* debian/watch
- Update to use available https download link
-- Christopher Knadle <Chris.Knadle@coredump.us> Sun, 10 Dec 2017 02:51:45 +0000
mumble (1.2.18-1) unstable; urgency=medium
* New bugfix release from 2016-12-12
http://blog.mumble.info/mumble-1-2-18/
(Closes: #850433)
* debian/backports:
- Remove outdated backports scripts for lenny, lucid, maverick, natty
Thanks to Emmanuel Bourg <ebourg@apache.org> for feedback on this
and other suggested changes
* debian/control:
- Update to depend on debhelper 10
- Add lsb-base dependency for mumble-server to fix lintian error
- Add Vcs-Git and Vcs-Browser links
* debian/gbp.conf:
- Add config file to help others work with git-buildpackage
* debian/mumble-server.README.Debian:
- Remove suggestion of mumble-server-web package; package was removed
(Closes: #843072)
Thanks to Leonardo Boselli <leo@dicea.unifi.it> for reporting the bug
* debian/patches:
- Remove 48-c++11-or-c++03.diff: incorporated upstream into cplusplus.pri
* debian/rules:
- Add CONFIG to use c++11; needed for cplusplus.pri to find the c++11
libraries for ZeroC-Ice in Debian
-- Christopher Knadle <Chris.Knadle@coredump.us> Sun, 08 Jan 2017 05:01:19 +0000
mumble (1.2.17-1) unstable; urgency=medium
* New bugfix release from 2016-09-24
http://blog.mumble.info/mumble-1-2-17/
* debian/patches:
- Add 48-c++11-or-c++03.diff to allow for config option to choose
c++11 or c++03 (defaults to c++03)
- Remove 47-fix-build-c++03-ice.diff (obsolete)
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 26 Oct 2016 14:48:05 +0000
mumble (1.2.16-2) unstable; urgency=medium
* debian/patches:
- Add 47-fix-build-c++03-ice.diff to fix FTBFS bug with GCC 6
Closes: #831184
Thanks to Lucas Nussbaum <lucas@debian.org> for reporting the bug and
to Mikkel Krautz <mikkel@krautz.dk> for finding the fix.
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 13 Aug 2016 23:06:50 +0000
mumble (1.2.16-1) unstable; urgency=medium
* New bugfix release from 2015-05-05
* debian/control:
- Update Homepage link to use https
- Update Build-Depends for changes to zeroc-ice packaging
(Closes: #827020)
* debian/changelog:
- Fix "under" word duplication
* debian/upstream:
- Update signing-key.asc
https://github.com/mumble-voip/mumble-gpg-signatures/blob/master/gpg.txt
pub 4096R/5A2BE0C1 2016-01-01 [expires: 2017-01-01]
Key fingerprint = 3BD0 ECA5 9253 19AF 89C2 5865 B585 609C 5A2B E0C1
uid Mumble Automatic Build Infrastructure 2016
<mumble-auto-build-2016@mumble.info>
* debian/rules:
- Update slice2html includes for zeroc-ice softlink location change
-- Christopher Knadle <Chris.Knadle@coredump.us> Fri, 24 Jun 2016 21:50:49 +0000
mumble (1.2.15-1) unstable; urgency=medium
* New bugfix release from 2016-03-05
* debian/control:
- Update Standards-Version to 3.9.8 (no changes needed)
- Homepage updated to http://mumble.info
* debian/patches:
- Add 44-add-speechd-header.diff to include speechd header path for Ubuntu
* debian/rules:
- Remove unused BUILD_DATE variable
-- Christopher Knadle <Chris.Knadle@coredump.us> Fri, 29 Apr 2016 23:38:04 -0400
mumble (1.2.12-1) unstable; urgency=medium
* New bugfix release from 2015-12-20
* debian/patches:
- Update 35-add-dpkg-buildflags.diff to remove version # context to
avoid having to update the patch with every release
- Rename 40-change-build-timestamp.diff -> 40-make-build-reproducible.diff
Update to remove the timestamps as the upstream commit does, and remove
version # context line to avoid having to update the patch with every
release
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 23 Dec 2015 18:56:29 -0500
mumble (1.2.11-1) unstable; urgency=medium
* New upstream security/bugfix release from 2015-12-06
* debian/copyright:
- Convert to machine readable copyright-1.0 format
* debian/patches:
- Remove 02-reject-with-ip-in-log.diff; integrated upstream
- Remove 15-add-mumble.desktop-keywords.diff; integrated upstream
- Update 35-add-dpkg-buildflags.diff for version number
- Update 40-change-build-timestamp.diff for version number
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 14 Dec 2015 16:39:45 -0500
mumble (1.2.10-3) unstable; urgency=high
* debian/patches:
- Add 43-initialize-SSL.diff to fix SSL breakage on startup
Closes: #804363
Thanks very much to Colomban Wendling <lists.ban@herbesfolles.org>
for reporting the bug and offering a fix.
-- Christopher Knadle <Chris.Knadle@coredump.us> Tue, 10 Nov 2015 13:06:43 -0500
mumble (1.2.10-2) unstable; urgency=high
* debian/mumble.lintian-overrides:
- Add override for useless ldconfig call in postinst added by debhelper
* debian/patches:
- Add 38-fix-spelling-error.diff .. "nonexistant" to "nonexistent"
- Add 40-change-build-timestamp.diff .. use debian changelog date/time
instead of current date/time for the build. (Needed for
Reproducible Builds)
* debian/rules:
- Comment out DH_VERBOSE=1
- Add BUILD_DATE shell variable for use with 40-change-build-timestamp
patch (used in src/Version.h)
- Use $(CURDIR) instead of '.' in override_dh_installinit section
- Re-order dh_installinit call in override_dh_installinit to be after
copying init script to $(CURDIR)/debian Closes: #802390
Thanks to Daniel Gnoutcheff <gnoutchd@softwarefreedom.org> for
reporting the bug (missing init script).
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 26 Oct 2015 15:05:02 -0400
mumble (1.2.10-1) unstable; urgency=medium
* New stable maintenance release from 2015-07-15 Closes: #797788
* debian/compat:
- Update from 7 to 9
Update to debhelper 9 changes the filenames contained in mumble-dbg
because dh_strip uses build-id in /usr/lib/debug (see #642158)
* debian/control:
- Update debhelper build dependency from 7.0.8 to 9
- Standards-Version updated to 3.9.6 (no changes needed)
- Remove hardening-wrapper build dependency
(now using dpkg-buildflags instead)
* debian/copyright:
- Tweak from "GPU Public License" to "GNU General Public License" to
appease lintian
* debian/mumble.menu:
- Remove menu file to conform with [CTTE #741573]
* debian/patches:
- Update 19-move-xlib-initializtion-earlier.diff for line offset fuzz
- Remove 21-fix-compile-with-gcc-4.9.diff as it's been incorporated
- Add 27-prevent-flooding-.xsession-errors.diff to stop .xsession
being flooded with errors after waking from hibernation.
Closes: #779836
Thanks to François Gannaz <francois.gannaz@free.fr> for reporting the
bug and pointing to the bug report filed upstream that had a patch.
- Add 30-Remove-flawed-MX-host-existence-check.diff to stop checking
certificate email addresses via checking for a DNS 'A' record
Closes: #787384
Thanks to Brian M. Carlson <sandals@crustytoothpaste.net> for
reporting the bug and pointing to upstream issue #1178
- Add 35-add-dpkg-buildflags.diff to add hardening flags to compiler.pri
and overlay_gl.pro
* debian/po/pt_BR.po: Add Brazilian Portuguese support (Closes: #799422)
Thanks to Adriano Rafael Gomes <adrianorg@arg.eti.br> for the
translation
* debian/rules:
- Update to switch from individual debhelper calls to dh with overrides.
- Remove unused DEB_BUILD hardening-wrapper environment variables
* debian/upstream/signing-key.asc
- Update for new Mumble upstream signing key from 2015-01-01
http://mumble.info/gpg/mumble-auto-build-2015.asc
* debian/watch:
- Update to watch only the "stable" upstream releases
-- Christopher Knadle <Chris.Knadle@coredump.us> Mon, 12 Oct 2015 18:24:32 -0400
mumble (1.2.8-2) unstable; urgency=medium
* debian/mumble-server.init
- Remove file as it was included accidentily
-- Christopher Knadle <Chris.Knadle@coredump.us> Sun, 09 Nov 2014 09:54:55 -0500
mumble (1.2.8-1) unstable; urgency=medium
* New upstream stable release from 2014-08-09
* debian/control:
- Remove uploader Thorvald Natvig <thorvald@debian.org> due to
inactivity; thanks very much for your prior contributions.
* debian/patches:
- Remove 23-fix-pulseaudio-segfault-pt1.diff
24-fix-pulseaudio-segfault-pt2.diff
Both patches incorporated upstream in 1.2.8
- Add 25-make-logfiles-readable-by-adm.diff to make mumble-server log
files readable by group adm. Closes: #759287
Thanks to Jan Braun <janbraun@gmx.net> for reporting the bug and
submitting a patch.
* debian/mumble-server.postinst:
- Add check for existance of mumble-server group entry before creation
of group and user. Closes: #758833
Thanks to William Martin <william.martin@power-lan.com> for reporting
the bug and discussing a fix.
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 28 Aug 2014 16:23:17 -0400
mumble (1.2.8~7~g76f6870-2) unstable; urgency=medium
* debian/patches:
- Add 23-fix-pulseaudio-segfault-pt1.diff
24-fix-pulseaudio-segfault-pt2.diff
Fixes an uncommon segfault issue with PulseAudio
-- Christopher Knadle <Chris.Knadle@coredump.us> Wed, 23 Jul 2014 22:01:19 -0400
mumble (1.2.8~7~g76f6870-1) unstable; urgency=medium
* New upstream snapshot from 2014-07-04
* The mumble 1.2.8 source incorporates changes needed to compile with Clang.
Thanks to Alexander <sanek23994@gmail.com> for reporting the bug.
Closes: #753273
* debian/source/lintian-overrides:
- Add override for new lintian error concerning hardening-wrapper being
obsolete, isn't so based on #711193 despite lintian reporting such.
Attempts to convert debian/rules to 'dh' and using dpkg build flags
did not work as expected (both failed at least two of the
hardening-check checks), so continuing build-depending on
hardening-wrapper for now as it seems a better solution in this case.
-- Christopher Knadle <Chris.Knadle@coredump.us> Sun, 13 Jul 2014 07:24:18 -0400
mumble (1.2.6-1) unstable; urgency=high
* New upstream snapshot from 2014-05-15
* This version contains two new security fixes. Closes: #748189
- Mumble-SA-2014-005 CVE-2014-3755
http://mumble.info/security/Mumble-SA-2014-005.txt
SVG images with local file references could trigger client DoS
- Mumble-SA-2014-006 CVE-2014-3756
http://mumble.info/security/Mumble-SA-2014-006.txt
The Mumble client did not properly HTML-escape some external strings
before using them in a rich-text (HTML) context.
- Thanks to Mikkel Krautz <mikkel@krautz.dk> for reporting the bug,
thanks to Salvatore Bonaccorso <carnil@debian.org> for reporting
the bug in Debian.
* debian/rules:
- Update to remove libmumble.so.1.2.6 via rm of libmumble.so.1.*
* debian/patches
- Add 17-change-pulseaudio-role.diff
Change role from "phone" to "game" to stop PulseAudio muting
applications in the "music" and "video" roles
(reported in #mumble in IRC on irc.freenode.net)
- Add 19-move-xlib-initializtion-earlier.diff
Move Xlib initialization earlier to fix crashing when setting a
push-to-talk key. Closes: #744733
Thanks to RedOmen <redomen@nwi.net> for reporting the bug, and
Bas Wijnen <wijnen@debian.org> for finding a fix and creating a patch.
- Add 21-fix-compile-with-gcc-4.9.diff
Fixes FTBFS with gcc-4.9. Closes: 746882
Thanks to Matthias Klose <doko@debian.org> for reporting the bug
and to Dimitri John Ledkov <dimitri.ledkov@canonical.com> for
submitting the patch from Christian Krause <chkr@plauener.de>
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 15 May 2014 19:20:55 -0400
mumble (1.2.5-245-g221a5d7-1) unstable; urgency=medium
* New upstream snapshot from 2014-02-18
* Adopt the package. Closes: #739997
* speech-dispatcher header file move incorporated upstream. Closes: #740605
Test is done in mumble.pro for local speech-dispatcher version, so
specifying version >= 0.8 in debian/control is not necessary.
Thanks to Paul Gevers for the bug report and patch.
* debian/upstream/signing-key.asc
- Add upstream signing key 4096R/0xADD011045FEF3A9A
Mumble Automatic Build Infrastructure 2014
<mumble-auto-build-2014@mumbleapp.com>
[expires: 2015-01-01]
* debian/watch:
- Add pgpsigurlmangle option to have uscan check tarball signature
* debian/rules:
- Remove debug file libmumble.so.1.2.5 which has no debug symbols
* debian/control:
- Standards-Version updated to 3.9.5 (no changes needed)
- Move speech-dispatcher from Recommends to Suggests. Closes: #676880
Thanks to Eugene Lyubimkin for the bug report.
- Remove Suggests on deprecated mumble-server-web package
- Lower mumble-server dependency on dbus to Suggests. Closes: #731003
Thanks to Klaus Ethgen for the bug report.
- mumble-server: update description to remove deprecated D-Bus
and mumble-server-web sections.
- Add "encrypted" to package descriptions
- Remove references to Ron Lee's Vcs, as all versions contained are
obsolete and now also contain CVE-2014-0044, CVE-2014-0045.
* debian/patches:
- Remove deprecated (upstream incorporated) patches:
06-connect-dialog-hang-dee463ef.diff
09-register-mumble-URL-handler.diff
12-Mumble-SA-2014-001.patch
14-Mumble-SA-2014-002.patch
- Add 06-lsb-lower-dbus-dependency.diff
Modify mumble-server.init to allow installing mumble-server
without dbus (Part of #731003)
- Add 12-mumble-server-disable-dbus.diff
Modify mumble-server.ini to disable dbus and ice by default
(Part of #731003)
* debian/mumble-server.README.Debian:
- Udpate to explain init script console output (and lack thereof)
-- Christopher Knadle <Chris.Knadle@coredump.us> Sat, 15 Mar 2014 20:14:55 -0400
mumble (1.2.4-0.2) unstable; urgency=high
* Non-maintainer upload.
* debian/patches
- Add 12-Mumble-SA-2014-001.patch, 14-Mumble-SA-2014-002.patch
to fix CVE-2014-0044, CVE-2014-0045. Closes: #737739
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 06 Feb 2014 12:07:05 -0500
mumble (1.2.4-0.1) unstable; urgency=low
* Non-maintainer upload.
* New (stable upstream) version from 2013-06-01 Closes: #728545
* Standards-Version: update to 3.9.4 (no changes needed)
* debian/control:
- Switch from zeroc-ice34 to zeroc-ice35
Closes: #726860
- Remove g++-4.6 dependency
* debian/patches:
- Remove deprecated quilt patches:
10-use-celt-guard
15-fix-noise-in-opus-mode
20-add-opus-threshold-option
25-add-codec-warnings
30-opengl
- Refresh patch 02-reject-with-ip-in-log.diff, add DEP3 headers
- Update 05-lsb-description.diff to add DEP3 headers
- Add 06-connect-dialog-hang-dee463ef.diff patch from Ubuntu PPA
- Refresh patch 07-use-embedded-celt-baseline, rename with .diff,
add DEP3 headers
- Add 09-register-mumble-URL-handler.diff Closes: #706053
* debian/rules:
- Remove g++-4.6 hardcoding
- Add DEB_BUILD_HARDENING_BINDNOW=0, upstream's suggested fix
for #691535. Closes: #712156
- Update 'clean' target, 'rm -rf Ice' to allow rebuilding
* debian/mumble.install:
- Update to ship libcelt0.so.0.7.0 only
* Add debian/mumble-server.init script
* Add debian/watch file to monitor
http://mumble.info/snapshot/mumble-(*.)\.tar\.gz
-- Christopher Knadle <Chris.Knadle@coredump.us> Thu, 19 Sep 2013 14:54:31 -0400
mumble (1.2.3-349-g315b5f5-2.2) unstable; urgency=low
* Non-maintainer upload with maintainer's approval.
* Fix "Plugins: Failed to load libmumble.so: Cannot load library
/usr/lib/mumble/libmumble.so: (/usr/lib/mumble/libmumble.so:
undefined symbol: glPopClientAttrib)":
new patch 30-opengl: link libmumble against libGL to make mumble-overlay /
pre-loading libmumble work.
Thanks to Daniel Kahn Gillmor for the bug report, Ron Lee for the
suggested fix, and Chris Knadle for testing the patch.
(Closes: #691535)
-- gregor herrmann <gregoa@debian.org> Sun, 11 Nov 2012 21:21:43 +0100
mumble (1.2.3-349-g315b5f5-2.1) unstable; urgency=low
* Non-maintainer upload.
* Fix "Cannot communicate with the vast majority of Mumble servers due
to lack of required baseline codec":
re-enable using the bundled celt library:
debian/patches/series:
- add 07-use-embedded-celt-baseline patch
debian/patches/07-use-embedded-celt-baseline:
- build Celt 0.7.1 and not 0.11.0
debian/mumble.install:
- ship Celt 0.7.1 library from the embedded source
debian/rules:
- re-enable Celt using the bundled 0.7.1 version
debian/patches/20-add-opus-threshold-option:
- fix src/murmur/Meta.cpp to set default iOpusThreshold=100 to only
switch from Celt to Opus if 100% of connected clients support Opus
(instead of 1%)
- fix murmur.ini example for opusthreshold option to =100
(instead of =1)
- add #opusthreshold=100 comments to murmur.ini.system (shipped as
etc/mumble-server.ini) to match murmur.ini example
Closes: #675971.
This implements the TC decision in #682010.
[Thanks to Gregor Herrmann for his help and guidance.]
-- Christopher Knadle <chris.knadle@coredump.us> Thu, 04 Oct 2012 11:45:05 -0400
mumble (1.2.3-349-g315b5f5-2) unstable; urgency=low
* Drop the hard dep on boost-1.46, that's been removed now. Closes: #678759
Drop the | dep on alternative boost, since that's what got this package
overlooked when people were removing boost-1.46.
* Drop the | dep on libgl-dev, that's been gone a long time now too and
leaves us vulnerable to a similar problem.
* Drop the mumble-server-web package altogether. Upstream reports that it
is unmaintained and "pretty useless anyway", which seems to be well backed
up by the fact that a call to Ice_intversion() was added in March 2010,
and that function has never existed in any version of zeroc-ice ever.
A function named Ice_intVersion was added to -ice 3.2.1 though ...
Since it's taken this long for anyone to notice, we can be pretty sure that
there aren't any actual users of it. Closes: #676815, #676816
* Build-Depend on the unfycked version of zeroc-ice, so the ABI broken one
doesn't accidentally get used by an out of date buildd. Closes: #675955
Force building with gcc-4.6, since that's required for zeroc-ice deps now,
until they get their act together and write some actually legal code.
* Cherry-pick the upstream patches to fix the "audio glitches", and provide
codec thresholds and warnings. Closes: #675971 since it fixes the only
actual bug reported there.
* Drop the watch file, since this has been building snapshots from git now
since 1.2.3-3 (and before).
-- Ron Lee <ron@debian.org> Sun, 08 Jul 2012 06:18:50 +0930
mumble (1.2.3-349-g315b5f5-1) unstable; urgency=low
* Adopt the package. Closes: #674719
* Drop the dependency on the celt package. Closes: #674650
* Add the upstream patch to enable opus support.
* Explicitly disable the bundled libs, don't rely on system lib detection
doing that as a side-effect.
-- Ron Lee <ron@debian.org> Mon, 04 Jun 2012 03:56:35 +0930
mumble (1.2.3-348-g317f5a0-1) unstable; urgency=low
* New upstream snapshot from 20.05.2012.
* Build with now available libpulse on hurd-i386.
* Overwrite false positive hardening-no-stackprotector lintian warnings.
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 24 May 2012 20:32:56 +0200
mumble (1.2.3-313-ge5c4657-1) unstable; urgency=high
* New upstream snapshot from 21.03.2012.
* Remove /usr/lib32 building.
Closes: #667882
* Remove comments from debian/rules.
* Move slice2html call from build-indep-stamp to build-arch-stamp. The build
documentation is required in an arch:any package.
Closes: #667883
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 08 Apr 2012 12:31:42 +0200
mumble (1.2.3-309-g7176ff4-1) unstable; urgency=low
* New upstream snapshot from 16.03.2012.
* Uploading to unstable.
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 16 Mar 2012 16:07:56 +0100
mumble (1.2.3-304-g88e9e6a-1) experimental; urgency=low
* New upstream snapshot from 26.02.2012.
- Drop patch 01-fix-spelling-error, merged upstream.
- Drop patch 03-fix-cert-validation, merged upstream.
* Merge changelog from 1.2.2-6+squeeze1 and 1.2.3-3.
* Bump Standards-Version to 3.9.3 (no changes needed).
* Correct Vcs-Browser control field.
* Wrap all debian/control fields.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 26 Feb 2012 14:24:32 +0100
mumble (1.2.3-277-g98f4ac1-1) experimental; urgency=low
* New upstream snapshot from 12.02.2012.
- Refresh patch 01-fix-spelling-error.
- Word readable file permissions on mumble database are fixed in this
snapshot.
Closes: #659039
* Add Dutch debconf translation.
Closes: #657632
* Add patch 02-reject-with-ip-in-log to show up the IP address of a rejected
connection in the mumble-server log.
Closes: #627139
* Add patch 03-fix-cert-validation from Marc Deslauriers, which fixes the
certificate validation with Qt 4.8.
Closes: #659035
* Add patch 05-lsb-description which fixes the lintian warning
init.d-script-missing-lsb-description.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 12 Feb 2012 16:43:52 +0100
mumble (1.2.3-192-g683d39b-1) experimental; urgency=low
[ Thorvald Natvig ]
* Allow build with boost 1.38 to make backports a bit easier.
* Reduce build verbosity a bit.
* Support parallel builds.
[ Patrick Matthäi ]
* New upstream snapshot from 06.10.2011.
- Audio statistics do not need glx extension anymore.
Closes: #612030
* Qt and mumble should use the same OpenSSL version now.
Closes: #627871
* Bump debhelper to compat version 7.
- Replace dh_clean -k with dh_prep.
* Bump Standards-Version to 3.9.2 (no changes needed).
* Build with enabled hardening-wrapper.
* Wrap debian/control fields.
* Add patch 01-fix-spelling-error.diff to fix an minor spelling error in
the source code.
* Clean up debian/rules a bit.
* libGL-dev libs already have been added as build dependencies.
Closes: #627430
* Use linux-any instead of hardcoded list for libcap-dev build dependency.
Closes: #634777
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 06 Oct 2011 12:52:02 +0200
mumble (1.2.3-91-g05d91c1-1) experimental; urgency=low
* Experimental upstream release.
* Remove 11x package, as source no longer contains it.
-- Thorvald Natvig <thorvald@debian.org> Fri, 15 Apr 2011 06:35:05 +0200
mumble (1.2.3-3) unstable; urgency=high
* Add Dutch debconf translation.
Closes: #657632
* Add patch 01-fix-spelling-error.diff to fix an minor spelling error in
the source code.
* Add patch 05-lsb-description which fixes the lintian warning
init.d-script-missing-lsb-description.
* Add patch 02-reject-with-ip-in-log to show up the IP address of a rejected
connection in the mumble-server log.
Closes: #627139
* Add patch 04-set-file-permissions from Marc Deslauriers, which fixes the
file permissions of the Mumble database.
Closes: #659039
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 12 Feb 2012 17:09:07 +0100
mumble (1.2.3-2) unstable; urgency=low
* Prefer libboost1.46-dev to libboost-dev.
Closes: #618092
* Add patch from Conor Curran to fix PulseAudio role.
Closes: #615994
* Add patch from Benjamin Jemlich to remove OpenGL for AudioStats dialog.
-- Thorvald Natvig <thorvald@debian.org> Fri, 25 Mar 2011 07:45:13 +0100
mumble (1.2.3-1) unstable; urgency=low
[ Patrick Matthäi ]
* Do not build with non existant libpulse-dev on hurd-i386.
[ Thorvald Natvig ]
* New upstream release.
-- Thorvald Natvig <thorvald@debian.org> Sat, 19 Feb 2011 22:58:58 +0100
mumble (1.2.3~rc3-2) unstable; urgency=low
* Add Ice 3.4 as valid option.
-- Thorvald Natvig <thorvald@debian.org> Mon, 14 Feb 2011 04:17:23 +0100
mumble (1.2.3~rc3-1) unstable; urgency=low
[ Thorvald Natvig ]
* New upstream release.
* Add dependency on Ice slice files when building.
* Add fix from Felix Geyer to work around non-existant mumble-server.ini
on upgrades.
Closes: #610608
[ Patrick Matthäi ]
* Merge 1.1.4-4+lenny2 and 1.2.2-6 changelog.
-- Thorvald Natvig <thorvald@debian.org> Mon, 14 Feb 2011 03:36:18 +0100
mumble (1.2.2-6+squeeze1) stable-security; urgency=high
* Add patch 0005-set-file-permissions from Marc Deslauriers, which fixes the
word readable file permissions of the Mumble SQLite database, as described
in CVE-2012-0863.
Closes: #659039
-- Patrick Matthäi <pmatthaei@debian.org> Fri, 17 Feb 2012 14:13:34 +0100
mumble (1.2.2-6) unstable; urgency=high
* Delete /var/lib/mumble-server on purge.
* Do not make /etc/mumble-server.ini world readable.
Closes: #609919
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 13 Jan 2011 21:29:40 +0100
mumble (1.2.2-5) unstable; urgency=low
* Update fuzzy spanish debconf translation. Thanks to Omar Campagne Polaino.
Closes: #590442
* Downgrade mumble-11x from recommends to suggests.
Closes: #599661
* Update Basque translation from Dooteo.
Closes: #600203
* Add Norwegian translation from Bjørn Steensrud.
Closes: #600277
* Add Italian translation from Vincenzo Campanella.
Closes: #600440
* Bump Standards-Version to 3.9.1 (no changes needed).
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 17 Oct 2010 14:41:34 +0200
mumble (1.2.2-4) unstable; urgency=high
* Fix failure with SQLite with very long 'like' matches.
Closes: #587713
-- Thorvald Natvig <thorvald@debian.org> Mon, 12 Jul 2010 15:11:24 +0200
mumble (1.2.2-3) unstable; urgency=high
* Remove trailing slash from the mumble-server-web alias.
* Fix README.Debian from mumble-server-web.
* Add ExecCGI and a cgi-script handler to the mumble-server-web config.
Without it, the weblist.cgi code is not executed and directly shown to the
client. Raising urgency to medium.
* Include every mumble plugin from release/plugins.
* Add danish translation from Joe Dalton.
Closes: #587798
* Bump Standards-Version to 3.9.0 (no changes needed).
-- Patrick Matthäi <pmatthaei@debian.org> Thu, 08 Jul 2010 18:06:23 +0200
mumble (1.2.2-2) unstable; urgency=low
[ Thorvald Natvig ]
* Add patch to compile on kfreebsd
* Remove path to Router.ice as the path is not stable.
Closes: #573699
* Remove README.source ("we use quilt"), as patches are included in
format 3.0 (quilt).
[ Patrick Matthäi ]
* Update vietnamese translation from Clytie Siddall.
Closes: #569281
* Do not build depend on quilt.
* Add 0002-spelling-error.patch, which fixes a spelling error.
* Add missing blank line to debian/NEWS.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 13 Mar 2010 11:47:09 +0100
mumble (1.2.2-1) unstable; urgency=low
* New upstream release.
* Remove DM-Upload-Allowed, all uploaders are now DD. (Yay!)
* Fix my email address in Uploaders:
* Move mumble-server's Recommends: of mumble-server-web to Suggests: and
remove the Suggests: of mumble.
* Remove cgi config in mumble-server-web.conf as we no longer ship cgi
files.
-- Thorvald Natvig <thorvald@debian.org> Tue, 09 Feb 2010 17:55:13 +0100
mumble (1.2.2~201002071401-4ab478-1) experimental; urgency=low
[ Patrick Matthäi ]
* Bump Standards-Version to 3.8.4 (no changes needed).
[ Debian l10n ]
* Updated french translation from Steve Petruzzello.
Closes: #567913
[ Launchpad Translation ]
* Hungarian translation from SPeck.
[ Thorvald Natvig ]
* Updated po files.
* New upstream release.
-- Thorvald Natvig <thorvald@debian.org> Sun, 07 Feb 2010 15:02:19 +0100
mumble (1.2.1-3) unstable; urgency=low
[ Thorvald Natvig ]
* Remove 'ulimit -r' support from defaults and initscript; it's bash-only.
* Remove debconf for emailfrom, it's been deprecated in the 1.2.x series.
* Add debconf for use_capabilities; it is needed on servers with load.
* Add support for upcoming libcelt0-0.
[ Patrick Matthäi ]
* Change my odd email address in po/de.po.
* Build depend on libcap-dev instead of libcap2-dev.
[ Debian l10n ]
* Updated swedish translation from Martin Bagge.
Closes: #564780
* Updated finnish translation from Esko Arajärvi.
Closes: #564744
* Updated russian translation from Yuri Kozlov.
Closes: #564737
* Updated german translation from Thomas Mueller.
Closes: #564932
* Updated Japanese translation from Masayuki Hamasaki.
* Updated portuguese translation from Américo Monteiro.
Closes: #565612
* Updated czech translation from Miroslav Kure.
Closes: #565880
-- Thorvald Natvig <slicer@users.sourceforge.net> Tue, 19 Jan 2010 19:10:04 +0100
mumble (1.2.1-2) unstable; urgency=low
* Fix upgrade failure when upgrading mumble-server directly from 1.1.x
to 1.2.1
-- Thorvald Natvig <slicer@users.sourceforge.net> Sat, 09 Jan 2010 19:28:50 +0100
mumble (1.2.1-1) unstable; urgency=low
* New upstream release.
* Now detects ipv6only properly.
Closes: #563365
-- Thorvald Natvig <slicer@users.sourceforge.net> Thu, 07 Jan 2010 23:57:54 +0100
mumble (1.2.0-1) unstable; urgency=low
* New upstream release.
-- Thorvald Natvig <slicer@users.sourceforge.net> Thu, 10 Dec 2009 20:29:29 +0100
mumble (1.2.0~beta2-1) unstable; urgency=low
[ Thorvald Natvig ]
* New upstream release.
* Add celt dependency to binary package; celt is dynamically loaded,
so isn't picked up by dh_shlibdeps.
* Add patch to include all directly used libraries.
Closes: #555758
* Update mumble-server.postinst to ignore dbus restart errors.
(Thanks, Leo!)
[ Patrick Matthäi ]
* Convert package to the 3.0 (quilt) format.
* Rebuild against the new protobuf version.
Closes: #556561
-- Thorvald Natvig <slicer@users.sourceforge.net> Tue, 01 Dec 2009 22:23:56 +0100
mumble (1.2.0~beta1-1) unstable; urgency=low
[ Patrick Matthäi ]
* Do not build with missing libcap2-dev on kfreebsd-*.
* Merge 1.1.8-3 and 1.1.8-4 changelog.
* Merge remaining changes from the 1.1.8 branch.
* Also install the menu icon for the mumble-11x package.
* Extend the long description of the mumble-11x package. Thanks lintian.
[ Thorvald Natvig ]
* New upstream beta release.
* Update get-orig-source.
* Update dependencies.
* Let the qmake script find the celt/speex libraries on its own.
-- Thorvald Natvig <slicer@users.sourceforge.net> Wed, 11 Nov 2009 23:33:38 +0100
mumble (1.2.0~200910141302-8af721-1) experimental; urgency=low
[ Thorvald Natvig ]
* New upstream release.
* Add a NEWS; this version is incompatible with 1.1.8.
* Use bundled CELT version for now.
[ Patrick Matthäi ]
* Suggest mumble-django at the mumble-server package.
-- Thorvald Natvig <slicer@users.sourceforge.net> Wed, 14 Oct 2009 16:27:29 +0200
mumble (1.2.0~200909111826-402695-1) experimental; urgency=low
[ Patrick Matthäi ]
* Drop quilt, we do not have any patches applied.
* Bump Standards-Version to 3.8.3 (no changes needed).
[ Michael Ziegler ]
* Change Alias for mumble-server-web from /mumble/ to /mumble-server/.
[ Thorvald Natvig ]
* New upstream tarball.
* Update section in menu entries.
* Install new, upstream .svg icon and remove deprecated .pngs.
* Update mumble-server postrm and postinst to remove /var/lib/mumble-server
even if deluser isn't found. Fixes piuparts uninstall failure.
* Multiline depends, build-depends.
* Update PHP settings to depend on ice33-slice and include the Glacier2
slice files.
-- Thorvald Natvig <slicer@users.sourceforge.net> Fri, 11 Sep 2009 20:27:03 +0200
mumble (1.2.0~200908081144-c7cffd-1) experimental; urgency=low
[ Thorvald Natvig ]
* Remove dh_desktop
* Upstream fixes for positional audio in server.
* Update various dependencies.
* Update mumble-server-web to not include deprecated web registration.
* New mumble-11x package with the compatibility client.
[ Patrick Matthäi ]
* New upstream git snapshot of the upcoming 1.2.0 release.
* Merge 1.1.8-2~bpo50+1 changelog.
* Replace my old email address in debian/copyright.
-- Patrick Matthäi <pmatthaei@debian.org> Sat, 08 Aug 2009 10:32:11 +0200
mumble (1.2.0~200907301646-b5b94c-1) experimental; urgency=low
[ Patrick Matthäi ]
* Merge 1.1.8-1~bpo50+1 changelog.
* Bump Standards-Version to 3.8.2 (no changes needed).
[ Thorvald Natvig ]
* Update for upcoming release 1.2.0
-- Thorvald Natvig <slicer@users.sourceforge.net> Thu, 30 Jul 2009 17:23:30 +0200
mumble (1.1.8-4) unstable; urgency=low
* Do not build with missing libcap2-dev on kfreebsd-*.
* Add debian/README.source.
* Add mumble-server doc-base.
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 01 Nov 2009 14:13:56 +0100
mumble (1.1.8-3) unstable; urgency=low
* Backport ALSA and PulseAudio modules from 1.2.0 git, makes them work with
modern releases of these sound systems.
* Standards-version 3.8.3
* Remove dh_desktop
-- Thorvald Natvig <slicer@users.sourceforge.net> Sun, 16 Aug 2009 17:52:43 +0200
mumble (1.1.8-2~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
- Adjust build dependencies: We need the libzeroc-ice32 packages to avoid
a FTBFS.
-- Patrick Matthäi <pmatthaei@debian.org> Tue, 04 Aug 2009 18:29:39 +0200
mumble (1.1.8-2) unstable; urgency=low
[ Thorvald Natvig ]
* Add --oknodo to logrotate script. (Closes: #520639)
[ Patrick Matthäi ]
* Change my email address.
-- Patrick Matthäi <pmatthaei@debian.org> Wed, 22 Apr 2009 15:02:08 +0200
mumble (1.1.8-1~bpo50+1) lenny-backports; urgency=low
* Rebuild for lenny-backports.
-- Patrick Matthäi <patrick.matthaei@web.de> Mon, 6 Apr 2009 18:35:50 +0200
mumble (1.1.8-1) unstable; urgency=low
[ Patrick Matthäi ]
* Fix override disparity. Set section of mumble-dbg to devel.
* Drop all patches (merged upstream).
* Bump Standards-Version to 3.8.1 (no changes needed).
[ Thorvald Natvig ]
* New upstream release.
* New overlay library doesn't use private ELF symbols anymore.
* Update defaults file to match new init-script options.
* Move mumble-dbg to section debug.
-- Patrick Matthäi <patrick.matthaei@web.de> Sun, 22 Mar 2009 16:21:58 +0100
mumble (1.1.7-3) unstable; urgency=low
[ Patrick Matthäi ]
* Fix basque translation: Do not translate the username.
Closes: #515031
[ Thorvald Natvig ]
* Run qmake recursively, to be forward compatible with qmake from Qt 4.5.0.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 18 Feb 2009 18:12:09 +0200
mumble (1.1.7-2) unstable; urgency=low
[ Thorvald Natvig ]
* Add workaround for threading bug in ALSA.
* Add 32-bit overlay library on amd64.
* Add documentation for the Ice interface to mumble-server.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 18 Feb 2009 17:56:28 +0200
mumble (1.1.7-1) unstable; urgency=low
[ Patrick Matthäi ]
* Add a mumble-dbg package, which contains the debugging symbols of mumble
and mumble-server.
* Move swedish translation debian/sv.po to debian/po/sv.po.
This was a bad error of mine.
* Remove debian/patches and dpatch, everything has been merged by upstream.
[ Thorvald Natvig ]
* New upstream release.
Closes: #513119
* Added Spanish translation from Álvaro M. Recio
* Synchronized copyright
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 4 Feb 2009 10:32:16 +0200
mumble (1.1.6-5) unstable; urgency=low
* Correct old webscript URL paths in mumble-server-web.README.Debian.
* Fix copyright-with-old-dh-make-debian-copyright.
Thanks lintian.
* Pass -xglibc-private to dpkg-shlibdeps. This avoids an unsatisfied
dependency on glibc-private with glibc >= 2.8, because mumble uses private
symbols of glibc for the overlay feature.
-- Patrick Matthäi <patrick.matthaei@web.de> Thu, 8 Jan 2009 19:45:09 +0200
mumble (1.1.6-4) unstable; urgency=low
[ Patrick Matthäi ]
* Do not use the "X$FOO" != "X" notation in mumble-server.{postinst,config}.
This notation is just in the unquoted version needed.
* Merged changelog from the 1.1.4-4+lenny1 release.
* Add missing ${misc:Depends}. Thanks lintian.
[ Debian l10n ]
* Swedish translation from Martin Bagge <brother@bsnet.se>.
Closes: #506594
-- Patrick Matthäi <patrick.matthaei@web.de> Sat, 13 Dec 2008 12:59:18 +0200
mumble (1.1.6-3) unstable; urgency=low
* Added 01-ftbfs_arm_qreal.dpatch. This patch fixes a FTBFS on arm{el} where
qreal is not double.
- Include dpatch.
* Added needed ice33-translators | ice32-translators | ice-translators
dependencies to mumble-server-web.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 3 Oct 2008 18:45:33 +0200
mumble (1.1.6-2) unstable; urgency=low
* Added DEFINES+=HAVE_LIMITS_H DEFINES+=HAVE_ENDIAN_H to debian/rules. Now
it should build on s390 and ia64.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 19 Sep 2008 21:35:35 +0200
mumble (1.1.6-1) unstable; urgency=low
[ Thorvald Natvig ]
* New upstream release.
- Includes various minor bugfixes.
-- Patrick Matthäi <patrick.matthaei@web.de> Sat, 13 Sep 2008 13:06:36 +0200
mumble (1.1.5-1) unstable; urgency=low
[ Thorvald Natvig ]
* New upstream release.
* Added ZeroC ICE dependencies.
* mumble-server-web now includes PHP setup, which necessitates setting
the global ice.slice PHP variable. This will have to persist until
the zeroc-ice-php package adds support for profiles.
* Japanese translation from
Masayuki Hamasaki <ikasamah@users.sourceforge.net>.
* Create a apache config file and put the web files under
/usr/share/mumble-server-web
* Remove the restart of hald, as we no longer use it.
* Default to starting mumble-server.
[ Patrick Matthäi ]
* Do not install var/www/mumble-server/index.php with executable rights.
Thanks lintian.
* Changed preferred postfix depend to exim4 at the mumble-server-web package.
Closes: #495852
-- Patrick Matthäi <patrick.matthaei@web.de> Sat, 6 Sep 2008 15:27:57 +0200
mumble (1.1.4-4+lenny2) stable-proposed-updates; urgency=high
* Change my email address from the deprecated web.de to the debian.de one.
* Delete /var/lib/mumble-server on purge.
* Do not make /etc/mumble-server.ini world readable.
Closes: #609919
-- Patrick Matthäi <pmatthaei@debian.org> Sun, 16 Jan 2011 19:30:19 +0100
mumble (1.1.4-4+lenny1) testing-proposed-updates; urgency=low
* Add missing dependency on hal to the mumble package and failover to "true"
if invoke-rc.d should fail.
Closes: #502748
-- Patrick Matthäi <patrick.matthaei@web.de> Sun, 19 Oct 2008 17:15:56 +0200
mumble (1.1.4-4) unstable; urgency=low
[ Thorvald Natvig ]
* Add README and README.Linux to mumble.docs
* Revert to asking for server password, as you currently can't change
the password once it's set.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 15 Aug 2008 14:53:19 +0200
mumble (1.1.4-3) unstable; urgency=low
[ Thorvald Natvig ]
* Fix ownership of /var/run/mumble-server so the pid file can be written.
[ Patrick Matthäi ]
* Add my forgotten signature in the 1.1.4-1 changelog, it was confusing.
* Only ask for the serverpassword if no previous one has been set.
* Set priority of the mumble-server/password question to medium instead of
high.
* Ordered the parameters of install in debian/rules, it looks now more
clean.
-- Patrick Matthäi <patrick.matthaei@web.de> Tue, 22 Jul 2008 21:51:43 +0200
mumble (1.1.4-2) unstable; urgency=medium
[ Patrick Matthäi ]
* Added missing Language-Team field in the german debconf translation.
* Replaced initial template values in french debconf translation.
* Replaced inline perl in mumble-server.config with shell scripting.
* Removed libcgi-perl depend at mumble-server-web, it is not needed.
Closes: #485010
* Bumped Standards-Version to 3.8.0 (no changes needed).
[ Thorvald Natvig ]
* Add mumble-server-web.README.Debian and move the information on the
web scripts there.
-- Patrick Matthäi <patrick.matthaei@web.de> Mon, 19 May 2008 17:38:05 +0100
mumble (1.1.4-1) unstable; urgency=low
[ Patrick Matthäi ]
* New upstream release.
- Removed dpatch and all patches. They are merged in upstream.
- Define the Plugin Path and added liblink plugin for mumble.
- Renamed murmur-wrapper to murmur-user-wrapper and use murmur.ini now as
example file.
- Use the new -readsupw option instead of -supw for mumble-server.
- Adjusted debian/copyright.
* Changed destination of /etc/mumble-server/mumble-server.ini to
/etc/mumble-server.ini. So on it is in sync now with the Ubuntu packaging
and we can use mumble-server.{init,logrotate} from the upstream source.
* Moved mumble-server from Recommends to Suggests at the mumble package.
* Added libspeechd-dev build depend and speech-dispatcher recommend.
* Added libqt4-opengl-dev build dependency.
* Removed suggesting of festival.
* The packaging itself is now BSD licensed.
* Removed debconf depend. It will be added with ${misc:Depends}.
* Handle /etc/mumble-server.ini and /etc/dbus-1/system.d/mumble-server.conf
about conffile instead of ucf.
* Changed priority of mumble-server/password from medium to high. It is
highly recommend to set a password for the SuperUser account.
[ Debian l10n ]
* Czech translation from Miroslav Kure <kurem@debian.cz>.
Closes: #480302
* Russian translation from Yuri Kozlov <kozlov.y@gmail.com>.
Closes: #480623
[ Thorvald Natvig ]
* Add libqt4-sql-sqlite dependency for mumble-server.
* Rename murmur-wrapper to murmur-user-wrapper in README.Debian
* Adjusted '-readsupw'.
* Don't manually remove files under /etc in postrm as that's handled by
conffiles.
* Add myself as Co-Maintainer.
* Remove all unneeded dependencies from Build-Depends.
-- Patrick Matthäi <patrick.matthaei@web.de> Tue, 13 May 2008 10:32:13 +0100
mumble (1.1.4-0ubuntu1~slicer) hardy; urgency=low
* New upstream version.
* murmur-wrapper renamed to murmur-user-wrapper.
* Build-Depends and Recommends for Speech Dispatcher added, festival
removed.
* Link plugin added for positional audio.
* Audio-system detection is handled at runtime, so no need to suggest
PulseAudio/ALSA anymore.
* Synced translations from debian's pkg-voip team.
-- Thorvald Natvig <slicer@users.sourceforge.net> Fri, 09 May 2008 01:30:00 +0200
mumble (1.1.3-4) unstable; urgency=low
[ Patrick Matthäi ]
* Added DM-Upload-Allowed control field.
* Added build depend libglu1-mesa-dev.
* Clean up on purge /var/lib/mumble-server/.config complete.
* Removed the sed hack from debian/rules. It is fixed in qmake now.
* Removed some whitespaces at EOL and newlines at EOF.
* Some clean target fixes.
[ Debian l10n ]
* French translation from Steve Petruzzello <dlist@bluewin.ch>.
Closes: #477777
* Galician translation from Jacobo Tarrio <jtarrio@debian.org>.
Closes: #478061
* Finnish translation from Esko Arajärvi <edu@iki.fi>.
Closes: #478182
* Vietnamese translation from Clytie Siddall <clytie@riverland.net.au>.
Closes: #478222
* Euskara translation from Piarres Beobide <pi@beobide.net>.
Closes: #478678
-- Patrick Matthäi <patrick.matthaei@web.de> Mon, 5 May 2008 09:40:02 +0100
mumble (1.1.3-3) unstable; urgency=low
* Call do_configuration() in mumble-server.postinst after the function has
been declared. Shame on me, I did not test it with bash and dash.
Thanks for reporting Jan Hauke Rahm.
Closes: #476554
* Added portuguese debconf translation. Thanks to Américo Monteiro.
Closes: #476472
* Delete the mumble-server group and system account only, if it is available
on the system on purge time.
* Remove on purge time also /etc/dbus-1/system.d/murmur.conf and
/etc/mumble-server/mumble-server.ini if they exist.
-- Patrick Matthäi <patrick.matthaei@web.de> Fri, 18 Apr 2008 18:00:00 +0100
mumble (1.1.3-2) unstable; urgency=low
* Added dirty workaround which removes some extra slashes generated from the
newest Qt4.4-rc1 framework.
Closes: #476307
* Added missing depend on libqt4-sql-sqlite for mumble. It will not be added
through ${shlibs:Depends} since Qt4.4-rc1.
Closes: #476308
* Added missing build-depends.
-- Patrick Matthäi <patrick.matthaei@web.de> Wed, 16 Apr 2008 18:31:07 +0100
mumble (1.1.3-0ubuntu2) hardy; urgency=low
* Make mumble-server depend on dbus. (LP: #202672)
* Avoid crash when renaming tree objects (patch from upstream SVN).
* Remove a warning when installing (missing --no-create-home).
-- Thorvald Natvig <slicer@users.sourceforge.net> Sat, 22 Mar 2008 01:25:00 +0200
mumble (1.1.3-1) unstable; urgency=low
* Initial release.
Closes: #429988
-- Patrick Matthäi <patrick.matthaei@web.de> Sun, 16 Mar 2008 11:09:08 +0100
mumble (1.1.3-0ubuntu1) hardy; urgency=low
* New upstream version, which fixes a few crashbugs.
* Licensing issues worked out, package is now BSD licensed (same as
source).
* Mumble-specific changes to Speex are now in upstream Speex, and
this version includes all changes necessary to mumble to unbundle
Speex. Once Speex 1.2beta4 or 1.2 final is out, unbundling can be
completed.
* Changed to use PulseAudio as default audio device, as it's the
new default in Hardy.
* Moved the perl cgi scripts for mumble-server into a separate package,
which means mumble-server doesn't depend on httpd and
mail-transport-agent. Those dependencies were also missing from
mumble-server.
* Updated packaging to adhere to "Debian Developer's Reference -
Best Packaging Practices."
* Closes the request to update to 1.1.3 (LP: #194836)
-- Thorvald Natvig <slicer@users.sourceforge.net> Sat, 23 Feb 2008 19:00:00 +0200
mumble (1.1.2-0ubuntu1) hardy; urgency=low
* Packaging for inclusion in ubuntu universe (LP: #129081)
-- Thorvald Natvig <slicer@users.sourceforge.net> Mon, 03 Dec 2007 10:40:00 +0200
|