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
|
lirc (0.10.2-0.10) unstable; urgency=medium
* Non-maintainer upload.
* Install python module into dist-packages and drop site-packages symlink
juggling. (Closes: #1088265)
-- Andreas Beckmann <anbe@debian.org> Wed, 27 Nov 2024 02:31:50 +0100
lirc (0.10.2-0.9) unstable; urgency=medium
* Non-maintainer upload.
* Re-import packaging history into GIT and move to salsa.debian.org.
* Do not omit ${misc:Pre-Depends}.
* liblirc-dev: Perform symlink to directory conversion. (Closes: #1070438)
-- Andreas Beckmann <anbe@debian.org> Wed, 22 May 2024 14:37:28 +0200
lirc (0.10.2-0.8) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches/fix-ftbfs-32bit-arches-64bit-time_t.patch: Add
upstream patch to fix FTBFS on 32-bit arches with 64-bit time_t.
(Closes: #1066905)
-- Amin Bandali <bandali@debian.org> Fri, 15 Mar 2024 06:21:53 -0400
lirc (0.10.2-0.7) unstable; urgency=medium
* Non-maintainer upload.
* Rename libraries for 64-bit time_t transition. Closes: #1062754
-- Graham Inggs <ginggs@debian.org> Wed, 28 Feb 2024 21:15:12 +0000
lirc (0.10.2-0.6) unstable; urgency=medium
* Add back libsystemd-dev (Closes: #1062699)
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 12 Feb 2024 11:47:28 +0100
lirc (0.10.2-0.5) unstable; urgency=medium
* Non-maintainer upload.
[ Michael Biebl ]
* Update dependency to systemd-dev (Closes: #1060557)
[ Svante Signell, Samuel Thibault ]
* Fix build on hurd (Closes: #1060093)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 17 Jan 2024 14:21:20 +0100
lirc (0.10.2-0.4) unstable; urgency=medium
* Non-maintainer upload.
* Finally drop liblircclient-dev provided library.
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 08 Jan 2024 16:30:19 +0100
lirc (0.10.2-0.3) unstable; urgency=medium
* Non-maintainer upload.
* Add back libusb-dev, some plugins are not libusb-1.0 compatible
yet (Closes: #1060039)
* Update doc-file location
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 08 Jan 2024 13:57:04 +0100
lirc (0.10.2-0.2) unstable; urgency=medium
* Non-maintainer upload.
* Add symlink during tests helping test
code find _client.so library
-- Gianfranco Costamagna <locutusofborg@debian.org> Tue, 02 Jan 2024 18:18:12 +0100
lirc (0.10.2-0.1) unstable; urgency=medium
* Non-maintainer upload.
* New upstream release
(Closes: #1056311, Closes: #1025002, Closes: #1022021).
* Switch everywhere to libusb-1.0 (Closes: #810445)
* Drop patches now part of upstream codebase:
- 0003-logging-Don-t-use-broken-LOG_CONS-syslog-flag.patch
- 0004-lircd-Fix-connect-option-parsing-error-343.patch
- 0005-systemd-support-Notify-systemd-on-successful-startup.patch
- 0007-lirc-gpio-ir-0.10.patch
- 0008-python3.8.diff
- 0009-Replace-the-obsolete-get_event_loop-with-get_running.patch
- 0011-yaml.load.diff
* Refresh patches:
- 0001-lirc.org-Remove-non-free-advertising.patch
- 0002-lirc-setup-Fix-crash-on-start-on-missing-lirc.config.patch
- 0010-Patch-configure.ac-to-support-passing-MODINFO.patch
- check-for-devinput-using-ac_check_file.patch
- drop-ubuntu-hack.patch
* Add new binaries to lirc
- lirc-data2table
- lirc-postinstall
* Drop Break/Replaces, and transitional packages
* Drop old debian/lirc.maintscript script
* Mark -doc package as multiarch: foreign
* Rename patches
* Add proposed patch to fix zotac poll (Closes: #1014760)
-- Gianfranco Costamagna <locutusofborg@debian.org> Sun, 17 Dec 2023 08:47:03 +0100
lirc (0.10.1-7.4) unstable; urgency=medium
* Drop lsb-base dependency, useless now
* Drop Ubuntu systemd hack, now the systemd pkgconf in Ubuntu is
fixed
* Drop wl-asneeded, now default
* Bump compat level to 13 and std-version to 4.6.2
* Add R^3: no
* Make sure dh_install is run with -a (Fixes FTBFS on arch:all)
* Drop --fail-missing
-- Gianfranco Costamagna <locutusofborg@debian.org> Sat, 16 Dec 2023 18:35:11 +0100
lirc (0.10.1-7.3) unstable; urgency=medium
[ Vagrant Cascadian ]
* Non-maintainer upload.
* tools: Do not embed build date and kernel version in various files.
(Closes: #979019)
* debian/rules: Run build in the C.UTF-8 locale. (Closes: #979023)
[ Helmut Grohne ]
* Build verbosely by default. (Closes: #988907)
[ Vagrant Cascadian ]
* debian/rules: Normalize shipped tarball of python source code.
(Closes: #979024)
[ Helmut Grohne ]
* Fix FTBFS when systemdsystemunitdir changes in systemd.pc.
(Closes: #1052309)
* Fix build vs host confusion. (Closes: #1052309)
* Check for /dev/input using AC_CHECK_FILE. (Closes: #989304)
* Multiarchify python Build-Depends. (Closes: #989304)
* Export _PYTHON_SYSCONFIGDATA_NAME for setup.py. (Closes: #989304)
-- Vagrant Cascadian <vagrant@reproducible-builds.org> Tue, 05 Dec 2023 15:52:45 -0800
lirc (0.10.1-7.2) unstable; urgency=medium
* Non-maintainer upload.
* Add patch to fix FTBFS with new yaml (Closes: #1026505)
-- Nilesh Patra <nilesh@debian.org> Wed, 28 Dec 2022 16:55:42 +0530
lirc (0.10.1-7.1) unstable; urgency=medium
* Non-maintainer upload.
* debian/patches: Add patch to support passing MODINFO to configure.
* debian/rules: Pass MODINFO and SH_PATH to configure. The paths to "modinfo"
and "sh" may vary as either located in /bin and /sbin or in /usr/bin and
/usr/sbin if the system is configured as a usrmerge system. Use the
non-usrmerge paths for the most compatible location (closes: #979021).
-- Micha Lenk <micha@debian.org> Sun, 16 Oct 2022 13:31:28 +0200
lirc (0.10.1-7) unstable; urgency=medium
* Add patch from Fedora for failing tests. Closes: #1009389
* Add patch avoiding build path in docs. Closes: #961954
-- Alec Leamas <leamas.alec@gmail.com> Thu, 12 May 2022 21:29:00 +0200
lirc (0.10.1-6.3) unstable; urgency=medium
* Non-maintainer upload.
* d/lirc.preinst: Normalize embedded ${DEB_HOST_MULTIARCH} value in
/etc/lirc/lirc_options.conf to find unmodified configuration files on all
architectures.
* Recommend gir1.2-vte-2.91 instead of non-existant gir1.2-vte.
(Closes: #983581)
-- Andreas Beckmann <anbe@debian.org> Thu, 18 Mar 2021 22:21:31 +0100
lirc (0.10.1-6.2) unstable; urgency=medium
* Non-maintainer upload.
* Revert "Revert "Do not install conffiles in a dummy location""
(0.10.1-5.2). (Closes: #932779, #851618)
* d/lirc.maintscript: rm_conffile /etc/lirc/*.dist because they are most
likely unmodified, don't mv_conffile them to =~ s/\.dist// to avoid
clashes with existing and possibly modified configuration files.
* d/lirc.preinst: Remove unmodified configuration files that are unknown to
dpkg to avoid prompting when replacing them with conffiles.
-- Andreas Beckmann <anbe@debian.org> Thu, 14 May 2020 11:46:53 +0200
lirc (0.10.1-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix time.clock usage. Closes: #949835.
-- Matthias Klose <doko@debian.org> Fri, 13 Mar 2020 08:55:53 +0100
lirc (0.10.1-6) unstable; urgency=medium
* Team upload
* debian/patches/lirc-gpio-ir-0.10.patch:
- fix for kernel 4.19 (Closes: #931078, 930485).
-- Gianfranco Costamagna <locutusofborg@debian.org> Thu, 04 Jul 2019 16:43:06 +0200
lirc (0.10.1-5.2) unstable; urgency=medium
* Non-maintainer upload.
* Revert removal of liblircclient{0,-dev} (Closes: #925477)
* Revert "Do not install conffiles in a dummy location" (Closes: #925066)
-- Tobias Frost <tobi@debian.org> Sat, 06 Apr 2019 15:12:52 +0200
lirc (0.10.1-5.1) unstable; urgency=medium
* Non-maintainer upload
* debian/rules
+ Remove rdfind-based dedup (Closes: #919843)
Using dh_installdocs --link-docs was investigated, and rejected due to
- limited benefits;
- interactions between lirc-docs shipping files under /usr/share/doc/lirc,
but liblirc0 being the obvious candidate due to dependencies.
+ Do not install conffiles in a dummy location
dpkg will, by default, not overwrite users' conffiles,
so shipping them in a different location is superfluous.
* Removed liblircclient{0,-dev}
They were obsolete transitional packages that predated the stretch release.
* Rename debian/post{inst,rm} to lirc.post{inst,rm}
* debian/lirc.{postinst,prerm}: Recompile and remove Python bytecode as needed
Closes: #924158
* debian/control: Fix relationships on liblirc{,client}-dev.
This should be Breaks+Replaces, not Conflict+Replaces.
Using the former should ensure that upgrading from stretch works smoothly.
* debian/changelog: Fix spelling in v0.10.1-4
-- Nicolas Braud-Santoni <nicoo@debian.org> Tue, 12 Mar 2019 01:33:40 +0100
lirc (0.10.1-5) unstable; urgency=medium
* Fix upstream #343, --connect parsing error.
* Add systemd-notify call -> lircd won't start with invalid config files.
* Move VCS repository (now separate from upstream).
* Fix lintian command-with-path-in-maintainer-script warning.
* Fix lintian warning for duplicate files; new rdfind(1) build dep.
-- Alec Leamas <leamas.alec@gmail.com> Tue, 01 Jan 2019 09:19:01 -0500
lirc (0.10.1-4) unstable; urgency=medium
[ Alec Leamas ]
* Don't use broken LOG_CONS syslog flag, closes: #872749.
[ Pino Toscano ]
* Fix build on !linux OS, restrict systemd only to linux OS. closes: #912400
[ Gianfranco Costamagna ]
* Team upload
* Restrict postinst systemd calls only if systemd is installed
[ Helmut Grohne ]
* Remove multiarch-annotation fom liblirc-dev (Closes: #874246)
-- Alec Leamas <leamas.alec@gmail.com> Fri, 23 Nov 2018 23:41:01 -0500
lirc (0.10.1-3) unstable; urgency=medium
* Remove links created in postinst, closes: #911548.
* Add missing Recommends: systemd.
* Fix insecure URIs in d/control vcs-git: and d/copyright Format:.
* Add rudimentary upstream/metadata.
-- Alec Leamas <leamas.alec@gmail.com> Thu, 25 Oct 2018 13:05:49 -0400
lirc (0.10.1-2) unstable; urgency=medium
* Team upload.
* Update maintainer email address (Closes: #899981)
-- Gianfranco Costamagna <locutusofborg@debian.org> Mon, 15 Oct 2018 18:01:50 +0200
lirc (0.10.1-1) unstable; urgency=medium
* New minor upstream release.
* Add fix for lirc-setup(1) crash on startup.
* Services besides lircd.socket disabled after install.
* Bump standards-version to 4.2.1 without changes.
* Drop 0001-build... patch now upstreamed.
* Obsolete priority: extra => optional.
-- Alec Leamas <leamas.alec@gmail.com> Fri, 12 Oct 2018 16:51:50 -0400
lirc (0.10.0-2) unstable; urgency=medium
* Fixed missing media/lirc.h, closes: #872074
* Fixed VCS browser path
* Fixed upstream bug #294 (VPATH build issues, in -1).
* Fixed upstream bug #295 - lircmd non-existing socket writes, in -1.
-- Alec Leamas <leamas.alec@gmail.com> Sun, 13 Aug 2017 09:45:34 +0200
lirc (0.10.0-1) unstable; urgency=medium
* New upstream release
* Upload to unstable
* Bump std-version to 4.0.1
* Drop dh-autoreconf, useless with compat level 10
-- Alec Leamas <leamas.alec@gmail.com> Sat, 12 Aug 2017 06:34:57 +0200
lirc (0.10.0~rc3-1) experimental; urgency=medium
* New upstream release.
* kfreebsd build fixes.
* Remove lingering /etc/init.d/lirc, closes: #865376.
* Fix absolute path config files, closes: #860065 (rc1).
* Suggest stopping lircd in devinput "No device available" message,
closes: #860551 (rc1).
-- Alec Leamas <leamas.alec@gmail.com> Thu, 22 Jun 2017 12:22:52 +0200
lirc (0.10.0~rc2-3) experimental; urgency=medium
* Fix broken dh_python3 invocation.
* Don't build plugins with runtime linkage errors on kfreebsd.
* Disable failing python unit tests on kfreebsd and hurd.
-- Alec Leamas <leamas.alec@gmail.com> Wed, 14 Jun 2017 16:35:02 +0200
lirc (0.10.0~rc2-2) experimental; urgency=medium
* Don't hardcode paths to socat and expect (test tools).
* Don't require socat for hurd builds.
* Don't run tests if socat is missing (e. g., hurd).
* Limit plugin load tests to look for errors.
-- Alec Leamas <leamas.alec@gmail.com> Tue, 13 Jun 2017 23:24:50 +0200
lirc (0.10.0~rc2-1) experimental; urgency=medium
* New upstream release
* Fixes upstream #290, lirc-setup does not start.
* Copyright changes reflecting excluded files in attic/
* Minimal testsuite.
-- Alec Leamas <leamas.alec@gmail.com> Tue, 13 Jun 2017 11:51:06 +0200
lirc (0.10.0~rc1-1) experimental; urgency=medium
* New upstream release.
* Most 0.9.4 patches upstreamed
* debian/rules update and debian/copyright
-- Alec Leamas <leamas.alec@gmail.com> Fri, 19 May 2017 16:57:42 +0200
lirc (0.9.4c-9) unstable; urgency=medium
* Fix missing systemd socket activation (Closes: #859491).
* Fix package purge (Closes: #852118).
-- Alec Leamas <leamas.alec@gmail.com> Thu, 06 Apr 2017 05:23:20 +0200
lirc (0.9.4c-8) unstable; urgency=medium
* Fix missing deps for lirc-setup (Closes: #858144).
-- Alec Leamas <leamas.alec@gmail.com> Tue, 21 Mar 2017 17:50:54 +0100
lirc (0.9.4c-7) unstable; urgency=medium
* Fix lirc_options.conf upgrade regression in 0.9.4c-6
* Actually add the hurd build patch missing in 0.9.4c-6
* Fix segfault on SET_INPUTLOG socket command (upstream #252).
* Fix bad handling of ircat --config options (upstream #251).
-- Alec Leamas <leamas.alec@gmail.com> Thu, 05 Jan 2017 00:05:35 +0100
lirc (0.9.4c-6) unstable; urgency=medium
* Fix unsecure permissions for /run/lirc. Closes: #848135
* Fix missing config.h header (Upstream #250).
* Fix HURD build (Closes: #845499)
- Fix from Samuel Thibault
* Add missing Suggests: for lirc-compat-remotes.
* Fix --listen option parsing bug (upstream #249).
* Fix bad update handling of lirc_options.conf (see: #849266).
-- Alec Leamas <leamas.alec@gmail.com> Tue, 20 Dec 2016 12:36:19 +0100
lirc (0.9.4c-5) unstable; urgency=medium
* Team upload.
* Updated README.debian, new package lirc-compat-remotes info.
* Added patch for missing lircd-setup.service file.
* Removed work-around for nowadays fixed #801719.
* Added fix for remove --purge not purging all files.
* lirc-old2new fixes for default device.
* Fixed to build on freebsd platforms.
-- Alec Leamas <leamas.alec@gmail.com> Wed, 02 Nov 2016 19:36:19 +0100
lirc (0.9.4c-4) unstable; urgency=low
* Team upload.
* Upload to unstable.
* Resolves (new bugs) LP: #1636355, LP: #1636353
* Resolves (old bugs) LP: #1497266, LP: #1565070, LP: #1395570,
LP: #1393056, LP: #1310508, LP: #1203483, LP: #1438381,
-- Alec Leamas <leamas.alec@gmail.com> Fri, 28 Oct 2016 15:46:34 +0200
lirc (0.9.4c-3) experimental; urgency=medium
* debian/control: Fix bad upgrade paths.
* Fix bad library specification in lirc.pc (#236)
-- Alec Leamas <leamas.alec@gmail.com> Tue, 25 Oct 2016 21:46:06 +0200
lirc (0.9.4c-2) experimental; urgency=medium
* Fix unconfigured clients build errors.
-- Alec Leamas <leamas.alec@gmail.com> Tue, 25 Oct 2016 10:32:39 +0200
lirc (0.9.4c-1) experimental; urgency=medium
* New upstream release.
* New tool irtext2udp.
* Resolves build errors on kernels > 4.8.0A.
* Most of patches upstreamed.
-- Alec Leamas <leamas.alec@gmail.com> Sat, 22 Oct 2016 14:52:05 +0200
lirc (0.9.4b-0.3) experimental; urgency=medium
* Non-maintainer upload.
[ Gianfranco Costamagna ]
* fix arch:all build.
[ Alec Leamas ]
* Fix build errors on non-linux kernels.
(conditionalize udev dependency)
-- Gianfranco Costamagna <locutusofborg@debian.org> Wed, 05 Oct 2016 19:30:47 +0200
lirc (0.9.4b-0.2) experimental; urgency=medium
* Non-maintainer upload.
* Fix build errors on non-linux kernels.
* Declare liblirc0 as multi-arch; Closes: #812947.
-- Alec Leamas <leamas.alec@gmail.com> Wed, 05 Oct 2016 06:07:40 +0200
lirc (0.9.4b-0.1) experimental; urgency=medium
* Non-maintainer upload.
* First shot on major upstream updates.
- Re-packaged from scratch based on new dh primitives.
- Thanks for help on debian-mentors!
* New upstream release 0.9.4
- Release 0.9.1 .. 0.9.3 was never packaged.
- Old 'lirc' service split into separate systemd services:
lircd.service, lircmd.service and irexec.service.
- Remote definitions moved out of lirc to new project
lirc-remotes; affects large number of LP issues.
- Builds also on FreeBSD 10.3.
- Fixes "Not updated to last version" (Closes: #777199),
LP: #1443590.
- Fixes "Default device for mode2 is /dev/lirc" (Closes: #702140).
- Fixes "/var/run/lirc contents disappear..." (Closes: #676343).
- Fixes "lircrcd segfaults" (Closes: #780062).
- Fixes "'/etc/init.d/lirc restart' is broken" (Closes: #782091).
- Fixes "Prompting due to modified conffiles..." (Closes: #655969).
- Fixes "LIRC installs bad udev rule" (Closes: #804397),
users depending on this rule will need to explicitly start lircd.
- Fixes "lirc init script can create circular symlinks", LP: #698007.
- Fixes "Update Uploaders List (Closes: #762554).
- Fixes "Please switch to libftdi1" (Closes: #810370).
- Fixes LP: #153457 "iguanaIR support not functional".
- Fixes LP: #460027 "using lirc init script restart function fails
sometimes".
- Fixes LP: #499588 "lirc udev rule causes unreliable startup".
- Fixes LP: #567519 "lircd(8) mentions non-existent
/dev/input/uinput".
- Fixes LP: #1029604 "mce remote doesn't work due to out of date
lircd.conf.devinput".
- Fixes LP: #1312287 "lircd start problem".
* The built-in irman support is moved to the lirc-drv-irman package.
* Revised package structure: keep old liblircclient0 (renamed to
liblirc-client0). Adding new packages liblirc0, liblirc-dev and
lirc-doc. Former liblircclient-dev merged into new liblirc-dev.
* Don't overwrite existing lircd.conf file.
* Ship sysV scripts from the svn tree [Stefan Lippers-Hollmann]
* Add handling of obsolete 0.9.0 udev rule restarting lircd
* Old lircd output socket link /dev/lirc dropped. Use
/var/run/lirc/lircd.
* Updated copyright
* Update compiler flags: -Wl,as-needed + hardening
[Stefan Lippers-Hollmann]
* Avoid negative architecture deps like [!hurd] (Closes: #634807)
[Stefan Lippers-Hollmann]
* Add patch 0007-tools-remove-configs-symlink.patch + explicit link
to walk around #801719 (dh_python3 shortcomings).
* Last parts of libirman dependencies removed.
* Changing Vcs-* headers to point to upstream packaging branch.
* Fixes existing large number of upgrade bugs.
* Enhance hardening flags.
* Add a lintian pbuilder test, this requires --hookdir and B92-test-pkg
therein.
* Tested (build-wise) on stretch and sid.
-- Alec Leamas <leamas.alec@gmail.com> Thu, 26 May 2016 11:14:25 +0100
lirc (0.9.0~pre1-1.2) unstable; urgency=medium
* Non-maintainer upload.
* Fix "unhandled symlink to directory conversion: /usr/share/doc/PACKAGE":
- add "Pre-Depends: ${misc:Pre-Depends}" to lirc-x stanza in
debian/control
- add debian/lirc-x.maintscript with symlink_to_dir instruction
(Closes: #774867)
-- gregor herrmann <gregoa@debian.org> Sat, 17 Jan 2015 19:51:55 +0100
lirc (0.9.0~pre1-1.1) unstable; urgency=low
* Non-maintainer upload with maintainers permission.
* Add dh-autoreconf to fix FTBFS on ppc64el. Closes: #746505
-- Andreas Barth <aba@ayous.org> Thu, 11 Sep 2014 09:18:17 +0000
lirc (0.9.0~pre1-1) unstable; urgency=low
[ Sven Mueller ]
* remove myself from uploaders
[ Stefan Lippers-Hollmann ]
* new upstream version 0.9.0~pre1:
- rediff patches against 0.8.6:
+ drop 20_kcompat-2.6.26.patch, applied upstream.
+ drop 21_silence-LIRC_MODE_LIRCCODE-logmessage.patch, it's no longer
necessary due to udev & hal acting upon hotplug events.
+ drop 22_kcompat-2.6.27.patch, applied upstream.
+ drop 23_man_pages_style_fixes.patch, mostly applied upstream.
+ drop 24_kcompat-2.6.29.patch, applied upstream.
+ drop 25_kcompat-2.6.31.patch, applied upstream.
- fixed by the new upstream version:
+ lirc: Please update to version 0.8.4a (Closes: #517507).
+ lirc: The version upstream is now at 0.8.6. Please upgrade this
package as it's a show stopper for me (Closes: #548826).
+ lirc-modules-source: lirc_imon doesnt find hardware (Closes: #500714).
+ lirc: Please add support for blaster of Hauppauge PVR150
(Closes: 505049).
- rediff patches against 0.8.7:
+ drop 23_kcompat-2.6.32.patch, merged upstream
+ drop kcompat-2.6.33.patch, merged upstream
+ drop kcompat-2.6.35.patch, merged upstream
+ add fix-kfreebsd-ftbs.patch
- fixes FTBS on Debian/ kFreeBSD, introduced in 0.8.6
- rediff patches against 0.9.0~pre1:
+ import upstream changes (lirc-0.8.7-63-g77c9429):
~ Remove-a-few-more-CVS-relics
~ add-release-process-notes-for-my-own-sanity
~ add-lirc-encoder-decoder-regression-test
~ make-all-remote-names-unique
~ updated-firefly-remote-definition-from-Bastien-Nocer
~ try-to-standardize-remote-key-names-a-fair-bit
~ lirc_serial-fill-in-dev-pointer
~ Attempt-to-make-lirc_sir-behave-a-bit-better
~ lirc_serial-resync-with-in-kernel-bits
~ commandir-send_status-vs.-packetCounter-bug-fix
~ lirc_serial-fix-tx-support-and-a-memory-leak
+ drop 99_linux-input-layer_config, it should be obsolete now.
+ drop lirc-in-kernel-ioctls, merged upstream.
+ drop 18_pinsys-keycodes.
+ update fix-kfreebsd-ftbs.patch to fix newly introduced __u32/ __u64
breakage on kFreeBSD; extend this change to all non-linux
architectures, given that it fails on hurd as well. Use stdint.h and
ISO C99 uint32_t/ uint64_t.
+ drop 11_cheklib_fix.patch; while it is technically correct, it doesn't
actually have a real effect and is not upstreamable.
+ drop 90_make-module-defines-unique.patch and warning-cleanup.patch,
lirc-modules-source doesn't get built anymore.
+ avoid patching generated Makefiles by ensuring identical dates to avoid
autofoo/ libtool; this allows dropping 02_Makefiles.patch.
+ drop 12_enodev_on_read.patch, it doesn't appear to be required anymore.
* suggest setserial (Closes: #546247).
* drop the udevadm settle call from the init script, it can lead to a
deadlock in combination with hotpluggable/ udev aware devices.
* fix conditional branches for 22_kcompat-2.6.27.patch (Closes: #547359).
* switch to Debian source format 3.0 (quilt).
* adapt watch file for bzip2 tarballs.
* drop debian/TODO, most entries are obsolete.
* create /var/run/lirc/ as needed.
* use --oknodo for start-stop-daemon.
* lirc 0.8.6 moves the lircd socket from /dev/ to /var/run/lirc/, create a
symlink to retain compatibility with old clients.
* partial sync with Ubuntu's lirc 0.8.6-0ubuntu2:
[ Mario Limonciello ]
- debian/control: add build-depends on libftdi-dev to prevent FTBFS.
- [PATCH 8/8] Add udev support to lirc and init script
- remove build time debug messages for kernel drivers
* add compatibility for kernel 2.6.32 (Closes: #562512, #588027).
* add compatibility for kernel 2.6.33/ 2.6.34.
* add maintainerclean target to debian/rules, to ease dealing with the
current way of maintaining the lirc package with svn-buildpackage's
mergeWithUpstream mode.
* document the kernel/ userspace ABI breakage between lirc 0.8.6 and earlier
versions in NEWS.
* debian/rules: fix stanza dependencies for parallel building (FTBS on
buildds with activated build concurrency).
* fix lintian complaint about "lirc: conflicts-with-version makedev
(<< 2.3.1-88)", a recent enough makedev (or none at all, if using udev) is
only required by postinst, not at unpack time.
* debian/NEWS: fix cosmetic formatting issues as pointed out by lintian:
- lirc: debian-news-entry-uses-asterisk
- lirc: debian-news-entry-without-blank-line line 13
* add compatibility for kernel 2.6.35.
* bump compat level to 8, supported by debhelper >=7.9.3 in squeeze.
- replace dh_clean -k by dh_prep.
* drop silent clobbering of the lirc configuration with misplaced files.
* make syntax check for hardware.conf more robust.
* drop obsolete lirc-svga package, its functionality is also provided by
lirc-x and has only been built for x86.
* drop and conflict with (using breaks) lirc-modules-source, starting with
kernel 2.6.36 lirc has been merged mainline and this package targets
post-squeeze anyways - this indirectly fixes:
- Failed to attach i2c client PV951 IR at 0x4b (-17) (Closes: #500429)
- lirc 0.8.3-5 breaks mceusb2 remote (Closes: #551706), replaced by new
in-kernel RC_CORE module "mceusb".
- lirc_sir: device fails to resume after suspend (Closes: #414014)
- sysfs: duplicate filename '0-0018' can not be created (Closes: #496681)
* rename patches for upstream submission:
- 04_man_pages_syntax_fixes.patch --> man-pages_syntax-fixes.patch
- 05_non_linux.patch --> lirc_fix-build-on-non-Linux-architectures.patch
- 22_fix-spelling-errors.patch --> lirc_fix-spelling-errors.patch
- 13_hurd_define_iotbase_u32.patch --> hurd_define-iotbase_u32.patch
* external ABI between kernel modules broke between 0.8.3 --> 0.8.4 and
0.8.7 --> 0.9.0, break lirc-modules-source (<<0.9.0~).
* drop obsolete debconf configuration:
- lirc should use debconf more fully (Closes: #162933)
- [INTL:nl] Updated Dutch po-debconf translation (Closes: #605610).
- [INTL:da] Danish translation of the debconf templates (Closes: #607575)
* drop pre-woody compatibility.
* don't try to install the upstream "ChangeLog", it's empty since upstream
moved to git.
* don't symlink /usr/share/doc/<package>/ anymore.
* declare a build-conflicts with libsvga1-dev.
* suggest "ir-keytable", it is required to configure scancodes for in-kernel
modules using the new RC_CORE subsystem.
* bump standards version to 3.9.1, now that the major roadblocks are finally
fixed.
* document that lirc uses syslog for all logging functionality since 0.6.5-1,
(Closes: #580666).
* use current maintainer script syntax.
* drop pre-squeeze versioned depends.
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Sun, 20 Feb 2011 22:32:56 +0100
lirc (0.8.3-5) unstable; urgency=low
* fix override disparity by moving lirc-modules-source to section kernel.
* update 05_non_linux.patch to fix an FTBS on kFreeBSD, thanks to Petr
Salinger <Petr.Salinger@seznam.cz> and Aurelien Jarno
<aurelien@aurel32.net> (Closes: #540742). This allows dropping
06_libtool_kfreebsd, thanks to Aurelien Jarno.
* use *.patch suffix consistently for all patches, no patch changes.
* clarify patch names for manpages.
* refresh patch series.
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Mon, 10 Aug 2009 16:00:21 +0200
lirc (0.8.3-4) unstable; urgency=medium
[ Stefan Lippers-Hollmann ]
* add kernel 2.6.27 compatibility (Closes: #506693).
* update italian debconf translation, thanks to Vincenzo Campanella
<vinz65@gmail.com> (Closes: #502602).
* add kernel 2.6.29 compatibility (Closes: #537197).
* s/(C)/©/ in copyright information.
* add kernel 2.6.31 compatibility.
* updating Basque debconf translation update, thanks to Piarres Beobide
<pi+debian@beobide.net> (Closes: #513433).
* sync with Ubuntu, where possible - thanks to Mario Limonciello
<superm1@ubuntu.com> (Closes: #500384):
- [PATCH 2/8] Cleanup whitespace in lirc.postinst
- [PATCH 7/8] Source lsb init functions in init script
- apply this patch first, we can't use any LSB function without
sourcing it first.
- depend on lsb-base.
- [PATCH 3/8] Update load_modules to use LSB functions
- keep the udevadm settle call, we need it for now.
- local var=foo is neither allowed by SUSv3, nor by Debian's special
excemptions; fix this bashism/ dashism.
- continue to use tab to indent.
- [PATCH 4/8] Update build_args to only check a single device
- local var=foo is neither allowed by SUSv3, nor by Debian's special
excemptions; fix this bashism/ dashism.
- continue to use tab to indent.
- [PATCH 5/8] Use LSB functions to show errors when conf files are missing
- continue to use tab to indent.
- remove commented out tests.
- [PATCH 6/8] Cleanup case statement to use LSB functions and whitespace
cleanup
- continue to use tab to indent.
- fix newly introduced syntax errors.
* employ standard line wrapping in debian/control stanzas.
* refer to GPL-2 explicitly in debian/copyright.
* make lintian happy and don't call ucf with its full path (policy 6.1).
* install upstream changelog also into arch-indep packages.
* severity medium, as this fixes lirc-modules-source FTBS against
kernel >= 2.6.27.
[ Matthew Johnson ]
* update some manpage patches (04_man_pages/22_man_pages2). Patches thanks
to Philipp Matthias Hahn <pmhahn@debian.org>. (Closes: #513675)
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Fri, 07 Aug 2009 00:38:08 +0200
lirc (0.8.3-3) unstable; urgency=low
* update swedish translation, thanks to Martin Bagge <brother@bsnet.se>
(Closes: #491772).
* add italian debconf translation, thanks to Vincenzo Campanella
<vinz65@gmail.com>.
* silence LIRC_MODE_LIRCCODE log message, as it is not rate limited and
tends to overflow syslog in case IR receivers get removed without
stopping lirc or removing the configuration; this is a temporary
band-aid for lenny and no long term solution (Closes: #500421).
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Tue, 30 Sep 2008 01:28:27 +0200
lirc (0.8.3-2) unstable; urgency=medium
* remove dead code (modutils has only been used for kernel 2.4 and the
affected code blocks weren't reachable since 0.8.3-1 anyways, as the
conffile wasn't shipped in the first place).
* conflict with makedev << 2.3.1-88, lirc either needs a fixed version or
none at all (Closes: #477063).
* 0.8.3-1 hasn't transitioned to testing yet, so keep the urgency at medium
as it fixes several serious bugs (oops in lirc_i2c on kernel 2.6.25, FTBS
against 2.6.26, missing module versions rejected by kernel >= 2.6.26,
custom mknod replaced by proper makedev calls, if installed).
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Wed, 16 Jul 2008 13:35:32 +0200
lirc (0.8.3-1) unstable; urgency=medium
[ Stefan Lippers-Hollmann ]
* new upstream release 0.8.3 (Closes: #481649).
* rediff patches:
- 02_Makefile.in
- 04_man_pages
- 05_non_linux
- 06_libtool_kfreebsd
* drop patches merged upstream:
- 16_kcompat-2.6.23
- 17_kcompat-2.6.24
- 20_kcompat-2.6.25
- 19_enable-macmini-as-userspace-driver
* remove local scope definition for variables in lirc.init.d following
SUSv3, its current use for MODULES_MISSING and ARGS doesn't justify
making use of the exceptions specified in Debian policy 10.4
(Closes: #471422).
* fix copy and paste error in lirc-modules-source.README.Debian.
* lirc_i2c: fix kernel oops on 2.6.25, patch taken from upstream CVS.
* change debconf defaults for lirc-modules-source:
- drop lirc_gpio, it is affected by API changes in bttv and FTBS since
2.6.23.
- enable atiusb.
- enable bt829.
- enable cmdir.
- enable igorplugusb.
- enable imon.
- enable it87.
- enable mceusb/ mceusb2.
- keep lirc_parallel disabled, it is not SMP safe.
- enable sasem.
- enable streamzap.
- enable sir, keep the defaults at generic sir controller (other) port
0x2f8 and irq 3, which seems to be supported by a short poll among
notebook owners.
- enable serial, keep defaulting to generic (home-brewed) IR receivers,
change to ttyS0 (port 0x3f8, irq 4) as most concurrently sold systems
only ship one serial port.
* replace custom mknod usage by using makdev's newly added lirc support and
add a versioned dependency on a fixed makedev version instead. This
dependency can be relaxed to udev | makedev, once makedev (>= 2.3.1-88)
has been shipped in a stable release. Given that Breaks support isn't
usable until lenny+1, this conservative approach is the safer variant for
etch --> lenny upgrades (Closes: #393575, #477063).
* drop debian/lirc.config.in, which was added as a bandaid for #329897
alltogether, neither it nor setup-driver.sh are used anywhere on the end
user's system; this allows dropping the pre-dependency on dialog and
lirc.config.md5sum as well.
* add a sanity check to debian/rules' clean target to ensure that
liblirclient0's pkg-config file is up to date.
* add compatibility code for udev >= 0.117, avoid flag day changes or a hard
dependency on udev; inspired by Scott James Remnant <scott@ubuntu.com>
(Closes: #456325).
* restructure lirc-modules-source package to dump all module sources
directly into the toplevel directory (omit upstream's Makefiles from
module subdirectories) and replace custom toplevel Makefile with a simple
in-kernel style buildsystem. This fixes symbol versioning for the kernel
modules and, as a side effect, the clean target of the top-level Makefile
and doesn't allow empty port/ IRQ settings.
(Closes: #450521, #483089, #369076)
* add compatibility patch for kernels >= 2.6.26, based on upstream CVS.
* drop debian/lirc.modules, modutils is obsolete (kernel 2.4).
* make lirc-modules-source compatible with linux-modules-extra-2.6:
- use bzip2 to compress the source tarball.
- change path names to correspond with the package name.
* fix LIRC_IRQ redefinition.
[ Matthew Johnson ]
* Add pkg-config file (Closes: #421881)
[ Sven Mueller ]
* Add swedish translation (Closes: #483766)
[ Matthew Johnson ]
* Raise priority to medium since it fixes kernel-related bugs
-- Matthew Johnson <mjj29@debian.org> Tue, 15 Jul 2008 18:56:26 +0100
lirc (0.8.2-2) unstable; urgency=low
[ Sven Mueller ]
* Add some additional checks to the init script (Closes: #394663)
* Update lirc-modules-source README.Debian to refer to module-assistant
(Closes: #429249)
* New upstream closes: #409394,#432801,434569,#350318,#399135,#400494,#368075
* dpkg-reconfigure lirc-modules-source will now make
/etc/lirc/lirc-modules-source.conf world-readable. This should not be a
security risk, but allows building modules as a user via fakeroot. This
closes: #445324
[ Matthew Johnson ]
* New translations (Closes: #443470)
- cs (Closes: #451793)
- fr (Closes: #445587)
- fi (Closes: #445650)
- pt_BR (Closes: #445736)
- es (Closes: #459267,#463737)
- nb (Closes: #443470,#470104)
- ru (Closes: #445426)
- de (Closes: #445556,#446378)
- pt (Closes: #445653)
- cs (Closes: #451793)
* Add slh to uploaders, remove old developers.
* Refactor patches to use quilt and update dependencies
* Add Linux Input Layer remote config (Closes: #297290)
[ Stefan Lippers-Hollmann ]
* remove devfs support, it got removed in mainline linux for 2.6.18 so
neither etch nor lenny are affected.
* add LSB header to lirc initscript as suggested by Petter Reinholdtsen
<pere@hungry.com> (Closes: #460212).
* add LSB Description and Short-Description to initscript LSB stanza,
borrowed from Ubuntu's lirc packages by Mario Limonciello
<superm1@ubuntu.com>.
* apply patch from Václav Ovsík <vaclav.ovsik@i.cz> to fix Makefile
mangling for lirc-source, evaluating utsrelease.h instead of the no longer
existing version.h and recommend linux-image-$KVERS instead of the
obsolete kernel-image-$KVERS (Closes: #447172).
* drop no longer existing dpatch suffix from patch series and refresh
existing patches.
* add compatibility patch for kernels >= 2.6.24, based on upstream CVS
(Closes: #399135, #434569, #457858, #463388, #464777).
* fix lirc.conf template for pinsys remotes, shortly before lirc 0.8.2 the
keymapping got broken.
* remove versioned download location from debian/copyright, it's always
outdated and the base path will point to the download location just as
well.
* apply useful indention from Ubuntu to debian/rules.
* Recommend module-assistant | kernel-package for lirc-modules-source.
* add watch file pointing to lirc.org, not sourceforge.
* restore author information and short descriptions for debian/patches/*.
* add Basque translation "eu", thanks to Christian Perrier
<bubulle@debian.org> and Piarres Beobide <pi@beobide.net>
(Closes: #470363).
* fix debian/copyright to refer to "GPL v2 or later", not a single source
file seems to be licensed under the GPL v1.
* rewrite debian/modules-source/debian/rules from scratch and rely on common
kernel module handling based in module-assistant, this allows bumping the
standards version to 3.7.3 (Closes: #372815, #440514).
* add Homepage, Vcs-Svn and Vcs-Browser tags.
* modules-source/README.make is obsolete, as it only talks about kernel 2.2
and 2.4 specifics, while kernel 2.6 is covered by the other READMEs.
* drop bogus Recommends from lirc-modules-source, build-essentials are an
implicit requirement by definition.
* drop no longer valid statements from the module READMEs.
* no longer try to install etc/modutils/*, lenny will not support kernel
2.4.
* bump compat level to 5, which is supported by etch (backports), but lets
dh_install error out if wildcards expand to nothing.
* drop 03_extra_files, shipping private copies of bttv headers for random
kernels doesn't work.
* run debconf-updatepo, confirm that no strings get lost.
* remove informal_module_building(), while it may look convenient to the
user, the results were unpackaged modules of questionable quality that
cannot be removed on purge. module-assistant or make-kpkg are the
preferred way of module building (Closes: #404505).
* Update and partly rewrite the module source documentation to the new
packaging and explicitly mention the full source requirement for gio
(Closes: #429249).
* add patch based on upstream CVS to include the macmini driver in the
hw_list used for calculating the userspace daemon config options
(Closes: #448637).
* set doc-base section to "Help", which seems to be suited best for a
collection of pointers about how to work with the LIRC package.
* fix broken whatis headers in shipped manpages.
-- Stefan Lippers-Hollmann <s.l-h@gmx.de> Sat, 15 Mar 2008 02:18:01 +0100
lirc (0.8.2-1) experimental; urgency=low
* Initial release of new upstream
-- Sven Mueller <sven@debian.org> Tue, 16 Oct 2007 18:28:57 +0200
lirc (0.8.0-14) unstable; urgency=low
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #443270, #443470
(the latter bug is about outdated translations)
[Debconf translation updates]
* Japanese. Closes: #444091
* Vietnamese. Closes: #444436
* Galician. Closes: #444752
* Russian. Closes: #445426
* German. Closes: #445556, #446378
* French. Closes: #445587
* Finnish. Closes: #445650
* Portuguese. Closes: #445653
* Brazilian Portuguese. Closes: #445736
* Czech. Closes: #445655
[ Sven Mueller ]
* Add compatibility patch for kernels >= 2.6.23 (closes: #446650)
-- Sven Mueller <sven@debian.org> Tue, 16 Oct 2007 17:02:54 +0200
lirc (0.8.0-13) unstable; urgency=low
[ Loic Minier ]
* Update 14_no_linux_config_h patch to also drop <linux/config.h> include
from lirc_atiusb/lirc_atiusb.c, lirc_bt829/lirc_bt829.c,
lirc_cmdir/lirc_cmdir.c, lirc_igorplugusb/lirc_igorplugusb.c,
lirc_imon/lirc_imon.c, lirc_it87/lirc_it87.c, lirc_mceusb/lirc_mceusb.c,
lirc_mceusb2/lirc_mceusb2.c, lirc_parallel/lirc_parallel.c,
lirc_sasem/lirc_sasem.c, lirc_serial/lirc_serial.c, lirc_sir/lirc_sir.c,
lirc_streamzap/lirc_streamzap.c; thanks Florent Rougon; see #400494 and
#436166.
[ Sven Mueller ]
* add patch to replace SLAB_ATOMIC usage with the more current equivalent
GFP_ATOMIC.
* incorporate update to debconf templates, thanks to Christian Perrier and
the english l10n team. (Closes: #443270)
* Update german translation
* Add option to start irexec in daemon mode from /etc/init.d/lirc (Closes:
#184245)
* Add myself to the Uploaders field
* Update galician (Closes: #444752), vietnamese (Closes: #444436) and
japanese (Closes: #444091) debconf translations.
-- Sven Mueller <sven@debian.org> Wed, 3 Oct 2007 15:04:58 +0200
lirc (0.8.0-12) unstable; urgency=medium
* Fix bashism in rules; thanks Martin F Krafft; closes: #437530.
-- Loic Minier <lool@dooz.org> Mon, 13 Aug 2007 09:55:28 +0200
lirc (0.8.0-11) unstable; urgency=low
* Update config.guess and .sub with autotools-dev's versions before running
configure.
-- Loic Minier <lool@dooz.org> Sun, 12 Aug 2007 11:04:48 +0200
lirc (0.8.0-10) unstable; urgency=low
* Add myself to uploaders for some QA work.
* Cleanup changelog.
* Wrap build-deps, deps, and uploaders.
* Use ${binary:Version} instead of ${Source-Version}.
* Cleanup rules.
* Merge diff from 0.8.0-9.3 NMU; thanks Steffen Joeris.
* Merge diff from 0.8.0-9.2 (and 0.8.0-9.1?!) NMUs; thanks
Christian Perrier.
* Merge 0.8.0-9.1 changelog entry into 0.8.0-9.2 as it seems there never was
a 0.8.0-9.1 upload.
* Update Vietnamese Debconf translation; thanks Clytie Siddall;
closes: #427007.
* Drop funny "set -e" from rules.
* Only pass --host to configure if DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
differ.
* Honor make clean errors.
* Add Russian Debconf translation; thanks Yuri Kozlov; closes: #432743.
* Check whether $START_LIRCMD and $START_LIRCD equals true instead of
checking whether it's non-empty as the init script sets these to "false"
in some cases; thanks Achim Lobbert; closes: #424912.
* New dpatch, 12_enodev_on_read, close device if read() returns ENODEV;
fixes infinite loop; thanks Alexander V. Inyukhin; closes: #430898.
* Drop -k flag to modprobe in init scripts; is undocumented and seems to be
a noop.
* New dpatch, 13_hurd_define_iotbase_u32, define _IOT__IOTBASE___u32 if
missing; fixes build failure on hurd; thanks Samuel Thibault;
closes: #436570.
* Do not build-dep on libusb-dev on hurd-i386; thanks Samuel Thibault;
closes: #436570.
* New dpatch, 14_no_linux_config_h, drops linux/config.h include which isn't
available anymore, but doesn't seem necessary either; parly fixes #436166,
it seems to also require bttv.h which went missing from linux-headers-*.
-- Loic Minier <lool@dooz.org> Fri, 10 Aug 2007 15:11:20 +0200
lirc (0.8.0-9.3) unstable; urgency=high
* Non-maintainer upload during BSP
* Fix unconditional use of debconf in postrm (Closes: #416930)
-- Steffen Joeris <white@debian.org> Sat, 19 May 2007 22:24:22 +1000
lirc (0.8.0-9.2) unstable; urgency=low
* Non-maintainer upload to fix pending l10n issues.
* Debconf translations:
- German. Closes: #399304
- Galician. Closes: #407277
- Swedish. Closes: #408289
- Spanish. Closes: #393864
-- Christian Perrier <bubulle@debian.org> Sat, 17 Feb 2007 18:05:06 +0100
lirc (0.8.0-9) unstable; urgency=low
* Rebuilding to fix and erroneous depend. (Closes: #393316, #393297, #393351)
-- Hector Garcia <hector@debian.org> Mon, 16 Oct 2006 11:18:21 +0200
lirc (0.8.0-8) unstable; urgency=low
[ Hector Garcia ]
* Added 09_lirc_drivers_2.6.18_compatibility patch by Thomas Creutz
(Closes: #387715)
* Fixed 03_extra_files to support 2.6.17 and 2.6.18. By Thomas Creutz
(Closes: #387715, #378395)
* Updated cs.po by Miroslav Jezbera. (Closes: #389248)
* Added patch to lirc_i2c from upstream CVS. By Jim Heck
* Added patch 11_cheklib_fix to remove extra depends.
* Updated po/es.po
[ Amaya Rodrigo Sastre ]
* Use debian/compat instead of DH_COMPAT=4 in debian/rules. Thanks Guillem
Jover for pointing this out.
-- Amaya Rodrigo Sastre <amaya@debian.org> Tue, 10 Oct 2006 10:31:48 +0200
lirc (0.8.0-7) unstable; urgency=low
* Update french debconf template (Closes: #384619)
* Update logcheck file (Closes: #385025)
-- Julien Danjou <acid@debian.org> Mon, 18 Sep 2006 14:00:57 +0200
lirc (0.8.0-6) unstable; urgency=low
[ Amaya Rodrigo Sastre ]
* Added debconf templates translation update:
- French (Closes: #370479).
- Portuguese (Closes: #373129).
- Dutch (Closes: #373828).
- Japanese (Closes: #379937).
* Use DH_COMPAT=4 in debian/rules. Got rid of debian/compat.
* Added debconf-updatepo to de debian/rules clean target (Closes: 372911).
[ Hector Garcia ]
* Updated debian/patches/04_man_pages.dpatch
-- Hector Garcia <hector@debian.org> Fri, 18 Aug 2006 22:23:46 +0200
lirc (0.8.0-5) unstable; urgency=low
[ Aurelien Jarno ]
* debian/modules-source/debian/rules: simplify the call to
dpkg-architecture.
* debian/modules-source/debian/rules: take account of old dpkg-architecture
output. (Closes: #371050).
* debian/control: Recommends dpkg-dev (>= 1.13). Drop the recommends on
dpkg (>= 1.13).
[ Julien Danjou ]
* Don't create udev queue in init script (Closes: #370745)
-- Julien Danjou <acid@debian.org> Sun, 11 Jun 2006 14:18:07 +0200
lirc (0.8.0-4) unstable; urgency=low
* Wait for devices to be up using udevsettle (Closes: #362217)
* Updated dutch po-debconf translation (Closes: #370218)
* Fix lintian warning about lirc and lirc-modules-source templates
-- Julien Danjou <acid@debian.org> Sun, 4 Jun 2006 16:44:13 +0200
lirc (0.8.0-3) unstable; urgency=low
[ Cyril Lacoux ]
* Added 08_min_code_repeat.dpatch, to allow proper interpretation of repeat
signals for Creative RM-900 (Closes: #367521).
[ Aurelien Jarno ]
* Updated German debconf templates translation. Thanks to Franz Pletz
(Closes: #367874).
-- Julien Danjou <acid@debian.org> Tue, 23 May 2006 11:01:08 +0200
lirc (0.8.0-2) unstable; urgency=low
[ Julien Danjou ]
* Include etc/lirc in lirc-modules-source.dirs (Closes: #342568)
* Fix compilation for non-root users (Closes: #297170)
[ Aurelien Jarno ]
* Updated German debconf templates translation. Thanks to Franz Pletz
(Closes: #367274).
* Fixed typos in debconf templates (Closes: #312498).
-- Julien Danjou <acid@debian.org> Tue, 16 May 2006 12:45:59 +0200
lirc (0.8.0-1) experimental; urgency=low
[ Hector Garcia ]
* New upstream release. (Closes: #349641, #352573)
- Added support up to for 2.6.15 kernels.
- dvico driver is enabled by default (Closes: #348753)
* Removed 02_aclocal.dpatch, not needed anymore.
* Ported 04_man_pages to this release.
* Ported 01_irxevent.dpatch to this release.
* Changed with-drivers to userspace to build only the userspace drivers
and keep only the kernel-space on the modules package.
* Added 02_Makefile.in.dpatch, to prevent autotools from getting run on
every build.
* Recompile with driver=userspace (Closes: #352767, #351723, #348390)
[ Julien Danjou ]
* Add lirc_dev dependency to it87
* Fix build-depends on libsvga1-dev rather than svgalibg1-dev
(Closes: #350791)
* Add lircrcd
* Add a patch to allow some drivers to compile with linux 2.6.16
* Add patches from Cyril Lacoux <clacoux@easter-eggs.com>
- Compile all modules
- Support 2 flavors for it87 (standard/digimatrix)
- Improve debconf template
- module-assistant works fine
- Add missing files for gpio
[ Aurelien Jarno ]
* Added Swedish debconf templates translation. Thanks to Daniel Nylander
(Closes: #339544)
* Added Dutch debconf templates translation. Thanks to Kurt De Bree
(Closes: #364033)
* Enable lirc-svga on amd64.
* Added support for non-Linux architectures:
- Don't build-depends on libasound2-dev on hurd-i386, kfreebsd-i386 and
kfreebsd-amd64.
- Added 05_non_linux.dpatch, to make lirc buildable on non-Linux
architectures.
- Added 06_libtool_kfreebsd.dpatch, to update libtool for GNU/kFreeBSD.
* Changed lirc-modules-source from Arch: any to Arch: all.
-- Julien Danjou <acid@debian.org> Wed, 10 May 2006 13:40:57 +0200
lirc (0.7.2-2) unstable; urgency=low
* Ready for unstable.
-- Hector Garcia <hector@debian.org> Sun, 15 Jan 2006 03:58:59 +0100
lirc (0.7.2-1) experimental; urgency=low
* New upstream release. (Closes: #310133)
- support for KeySym and KeyCode in key definition
- updated udev support for 2.6.13 kernels
- added support for new version of Windows Media Center Remotes
- Use all 8 bytes of IR code
- Rewritten Sasem driver
- added support for Asus Digimatrix
- added support for Remotec Multimedia PC Remote BW6130
- Added support for iMON-PAD and iMON-RSC
- Man page for lircd doesn't talk about the wrond -D flag
(Closes: #301688)
* Change build-depend to kernel-source.
* Change configure option --with-drivers to none on debian/rules.
* Separated build and configure stages.
* Deleted useless patch 01_configure-duplicates.dpatch
* Deleted obsolete patch 02_forgotten-files.dpatch
* Rewrite of 03_irxevent.dpatch to new version and renamed to 01_...
* Rename 04_aclocal.dpatch to 02_aclocal.dpatch
* Changed mv to cp on modules-source/Makefile
* Updated po/es.po
* Runned debconf-updatepo. (Closes: #329200)
* Updated cs.po, da.po, es.po, de.po (not all, only fuzzy), fr.po, ja.po and
vi.po
* Created 03_extra_files.dpatch so module compilation only depends on
kernel-headers. (Only 2.6.12 currently since is the only one for 2.6.x in
debian that is supported upstream. Custom kernels should still use
kernel-source).
* Deleted build-depend on kernel-source.
* Added depend on ucf.
* Added myself to uploaders and cleaned control file a bit.
* Make dpkg-reconfigure work even when no /etc/lirc/lirc-modules.conf found
(Closes: #342027)
* Added support for udev. Applied patch from dann frazier. (Closes: #303494)
* Added patch 04_man_pages.dpatch to fix hyphen-used-as-minus-sign problem.
I should send this upstream soon.
* Cleaned a few lintian warnings on maintainer scripts.
-- Hector Garcia <hector@debian.org> Thu, 5 Jan 2006 11:13:54 +0100
lirc (0.7.1pre2-11) unstable; urgency=low
* This upload sponsored by The Spanish Public Administration Department.
* Debian Policy 10.7.3. ("[Conffiles] must not be modified by the maintainer
scripts during installation (or at any other time). Apply wonderful patch
from Nicolas Boullis . (Closes #334170).
-- Amaya Rodrigo Sastre <amaya@debian.org> Mon, 17 Oct 2005 16:30:37 +0200
lirc (0.7.1pre2-10) unstable; urgency=low
* The "Follow the white rabbit" Release.
* Temporarily include upstream's complete setup-driver.sh into
debian/lirc.config.in so as to temporarily fix this issue. Another
temporary workaround is to install lirc-modules-source. See #329897.
I suck.
-- Amaya Rodrigo Sastre <amaya@debian.org> Mon, 10 Oct 2005 17:39:02 +0200
lirc (0.7.1pre2-9) unstable; urgency=low
* Changed priority from optional to extra, learn to read, now change
liblircclient's priority to optional. Hopefully end this absurd loop.
-- Amaya Rodrigo Sastre <amaya@debian.org> Mon, 19 Sep 2005 18:19:06 +0200
lirc (0.7.1pre2-8) unstable; urgency=low
* Changed priority from extra to optional, to get rid of override
disparities.
* Apply patch from zapdvb to irxevent, that also contains patch from
#326703, making lirc more stable when used with cpu intensive applications
like mplayer (Closes: #328697).
* Apply japanese debconf translation (Closes: #302487).
* Fixed fuzzy string in debconf .po files (Closes: #302430). Also updated
es.po.
* Corrected lirc-modules-source.conf so that it documents the right way to
separate the list of drivers (should be space separated, not comma
separated). (Closes: #312102).
* libusb-dev is already listed in Build-Depends, so this bug should have
been already fixed (Closes: #317158).
* Find the kernel source by testing for $KSRC/include/linux/version.h.
(Closes: #301590).
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 18 Sep 2005 11:55:30 +0200
lirc (0.7.1pre2-7) unstable; urgency=low
* The "Kicked out from the MIA Team, by Debconf5 and RL meetings" Release.
* Acknowledge bugs closed by previous NMU. Thanks Blars!
(Closes: #315579, #318268, #312497, #301639, #302141).
* Applied patch from Agustin Martin <agustin.martin@hispalinux.es>, fixing:
- Get rid of unknown symbols when inserting lirc_sir.ko
- Build when two drivers requiring lirc_dev are selected
- Build the atiusb driver properly
(Closes: #303663, #304609, #300989).
* Apply patch supplied by Juergen Pfennig, making irxevent send keys to the
right application. (Closes: #326703).
* Apply patch from Robert Bihlmeyer <robbe@orcus.priv.at> to partially take
care of #303078, while a more elegant solution is found.
* Apply patch from Alban <browaeys.alban@wanadoo.fr> to correct spurious
warning with aclocal >= 1.8. (Closes: #305291).
* And last, but not least, make litian happy:
- Get rid of some bashisms with help from Guillem Jover
- Avoid deprecated use of chown (ie. s/root.root/root:root/).
* Special thanks to J. Carlos Garcia Sogo for the quick tutorial on dpatch.
-- Amaya Rodrigo Sastre <amaya@debian.org> Sat, 17 Sep 2005 20:47:15 +0200
lirc (0.7.1pre2-6.1) unstable; urgency=low
* 0 day NMU for RC bug durring bug squishing party
* remove unportable -v option from md5sum command in debian/rules
(only one of the two md5sum programs in debian has it)
(closes: #315579)
* standards version 3.6.2 (no changes)
* fix lirc-modules-source for dpkg 1.13, add versioned dpkg dependancy
(closes: #318268)
* Vietnamese debconf translation (closes: #312497)
* add build-dependency on libxt-dev (closes: #301639, #302141)
-- Blars Blarson <blarson@blars.org> Sat, 3 Sep 2005 00:12:27 +0000
lirc (0.7.1pre2-6) unstable; urgency=low
* back to priority optional. I am really confused now :)
-- Amaya Rodrigo Sastre <amaya@debian.org> Mon, 28 Mar 2005 23:10:45 +0200
lirc (0.7.1pre2-5) unstable; urgency=low
* Now really close (Closes: #301570), instead of closing 301589 twice, now
instead of looking for Rules.make or Makefile, we test for
$KSRC/include/linux/version.h. Also (Closes: #199869).
* Leave debian/liblircclient-dev.install alone (Closes: #301723).
* Add french debconf template (Closes: #301825).
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 27 Mar 2005 23:12:16 +0200
lirc (0.7.1pre2-4) unstable; urgency=low
* Remove liblirc_client.so.0.0.0 from debian/liblircclient-dev.install
(Closes: #301589).
* Do not look for Rules.make while building lirc-modules, as it is no longer
shipped with kernels above 2.6.1x (Closes: #301589).
* Changed priority optional from extra.
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 27 Mar 2005 01:45:14 +0100
lirc (0.7.1pre2-3) unstable; urgency=low
* The "I love to do some lirc housekeeping now that we're really going to
release Sarge" Release.
* Make /etc/init.d/lirc point to more useful doc regarding howto configure
lircd (Closes: #239196).
* Fix makefile for lirc-modules-source so that ati_usb is properly built.
Thanks to James Stark for the patch (Closes: #300989).
* lirc 0.7.1 is now in testing and does build with 2.6 (Closes: #300587).
* Fixed installatation tutorial typo mistake (Closes: #299647).
* Lirc has been logging to syslog properly identifying itself probably for
some time now (Closes: #164536).
* Build depend on libusb-dev so that the userspace driver for ATI USB
remotes (amongst others) is supported (Closes: #294248).
* If DEVICE is set to /dev/lirc and devfs is in use /dev/lirc/0 will be
automatically used instead (Closes: #197306).
* s/auido/audio/g in debian/lirc.config, ChangeLog, setup.data and setup.sh.
* Maybe (Closes: #290903) in debian/lirc.config.
* Fixed manpage-section-mismatch in doc/man/lircd.8 and doc/man/lircmd.8.
-- Amaya Rodrigo Sastre <amaya@debian.org> Fri, 25 Mar 2005 23:48:33 +0100
lirc (0.7.1pre2-2) unstable; urgency=low
* Applied patch from Thomas Schmidt, thanks!. (Closes: #294720).
-- Amaya Rodrigo Sastre <amaya@debian.org> Sat, 12 Mar 2005 00:01:46 +0100
lirc (0.7.1pre2-1) unstable; urgency=low
* New upstream release (Closes: #294174).
* s/serial_CFLAGS/SERIAL_CFLAGS/a in Makefile (Closes: #294689).
* Added support for ati_usb modules (Closes: #297243).
* GNU config automated update: config.sub (20020307 to 20041130),
config.guess (20020320 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Thu, 10 Mar 2005 00:27:20 +0100
lirc (0.7.1pre1-2) unstable; urgency=low
* The "And when it rains, it poures" Release.
* Fixed the nasty "setup-driver.sh not found" bug, again. This fix also
should fix the debconf freeze (Closes: #269833, #292637, #293091)
Thanks to Chris Boyle <cmb@debian.org> for spotting the fix.
* Included patch from "Eloy A. Paris" <peloy@debian.org> (Closes: #292043)
so that lirc_dev gets shipped.
* Partially included patch for Makefile from Yann Rouillard
<yann@pleiades.fr.eu.org> (Closes: #246112, #287328, ) so that correct
modules and symbols get installed for 2.6.x kernels.
* Improved paths in README.Debian (Closes: #218888).
* Suggest just kernel-source and not headers (Closes: #250570).
* It now builds with 2.6 kernels (Closes: #221023). I'm terrible with lirc
bugs housekeeping :)
* Newewst upstream versions fix i2c build problems (Closes: #256986). More
housekeeping here.
* GNU config automated update: config.sub (20020307 to 20041130),
config.guess (20020320 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Tue, 25 Jan 2005 22:29:15 +0100
lirc (0.7.1pre1-1) unstable; urgency=low
* New upstream release.
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 23 Jan 2005 02:51:59 +0100
lirc (0.7.0.1-2) unstable; urgency=low
* The "I can't believe nobody reported a RC bug yet!" release.
* Changed section from optional to extra to make installer@ftp-master happy.
* Change short decriptions in order to comply with new lintian check.
* GNU config automated update: config.sub (20020307 to 20041130),
config.guess (20020320 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 23 Jan 2005 02:51:48 +0100
lirc (0.7.0.1-1) unstable; urgency=low
* The "let's try to fix the versioning mistake" release. I mistakenly took
0.7.0pre8 as later than 0.7.0, so this is actually upstream latest
tarball, 0.7.0, with a made up version number.
* Not try to build /dev/lirc during build (Closes: #287559). Thanks to Lars
Wirzenius <liw@iki.fi>.
* Include setup-driver.sh (Closes: #287370). Thanks to Lars Wirzenius
<liw@iki.fi>.
* This upstream version really closes (Closes: #236573, #255383, #280548).
* The Danish debconf po is included! (Closes: #276699).
* GNU config automated update: config.sub (20020307 to 20041130),
config.guess (20020320 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Sat, 15 Jan 2005 14:41:42 +0100
lirc (0.7.0pre8-1) unstable; urgency=low
* New upstream release.
* GNU config automated update: config.sub (20020307 to 20041130),
config.guess (20020320 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Sun, 26 Dec 2004 07:48:16 +0100
lirc (0.7.0-1) unstable; urgency=low
* New upstream release (Closes: #236573, #280548, #236573).
* Now builds with 2.6.x (Closes: #255383, #221023).
* GNU config automated update: config.sub (20020307 to 20040624),
config.guess (20020320 to 20040813)
* Added Danish po-debconf translation for lirc (Closes: #276699).
* Removed Ian Murdock from Uploaders.
* GNU config automated update: config.sub (20040624 to 20041130),
config.guess (20040813 to 20041112)
-- Amaya Rodrigo Sastre <amaya@debian.org> Tue, 28 Dec 2004 04:44:30 +0100
lirc (0.6.6-13) unstable; urgency=low
* The "Happy birthday Ranty" release (Sept 24th).
* The "Happy birthday Amaya" release (Sept 25th).
* The "Pierre, we are so glad you are back home and feeling better" release.
* Fixed path in README.Debian (Closes: #218888)
* Fix debconf prompt freeze (Closes: #269833)
* debian/modules-source/README: s/WARMING/WARNING/
-- Amaya Rodrigo Sastre <amaya@debian.org> Sat, 25 Sep 2004 19:57:49 +0200
lirc (0.6.6-12) unstable; urgency=low
* The "Ranty is missed everyday" release.
Happy hacking in Heaven, our friend+brother (Closes: #252156).
* 4 new maintainers (Closes: #248767).
* Added Pierre Machard, Riku Voipio and Ian Murdock to the Uploaders field.
* GNU config automated update: config.sub (20040312 to 20040624),
config.guess (20040312 to 20040813)
* Get rid of config.log and config.status in the clean target.
* Included French Debconf Translation (Closes: #262379).
* Included Czech Debconf Translation (Closes: #261285).
* Added support for CFLAGS in the build target.
-- Amaya Rodrigo Sastre <amaya@debian.org> Fri, 27 Aug 2004 20:21:00 +0200
lirc (0.6.6-11) unstable; urgency=low
* Apply patch from : Goswin von Brederlow (closes: #259978)
- lirc-svga is only build for i386
-- Pierre Machard <pmachard@debian.org> Sun, 18 Jul 2004 01:06:08 +0200
lirc (0.6.6-10) unstable; urgency=low
* Add a test to know if smode2 is available for the target arch
(thanks to mrvn)
* Change priority to optional (closes: #236481)
* Swith to po-debconf format (closes: #232283)
-- Pierre Machard <pmachard@debian.org> Sat, 17 Jul 2004 19:10:45 +0200
lirc (0.6.6-9) unstable; urgency=low
* QA Upload
* Add depends on svgalib only for i386 to fix building on arch !i386
-- Pierre Machard <pmachard@debian.org> Sat, 17 Jul 2004 16:53:55 +0200
lirc (0.6.6-8) unstable; urgency=low
* QA Upload
* Set Maintainer to packages@qa.debian.org
* Fix svgalib Build-Deps. (Closes: #243195)
* GNU config automated update: config.sub (20031007 to 20040312),
config.guess (20031007 to 20040312)
-- Pierre Machard <pmachard@debian.org> Sat, 17 Jul 2004 14:52:28 +0200
lirc (0.6.6-7) unstable; urgency=low
* Set Architecture: properly for lirc-modules-KVERS packages. (Closes:#218881)
courtesy of Helge Kreutzmann <kreutzm@itp.uni-hannover.de>
* GNU config automated update: config.sub (20030717 to 20031007),
config.guess (20030702 to 20031007)
* Build-Depend on debhelper >= 4.0.18 for dh_install's --list-missing.
(Closes:#187712)
* Fix "quick walkthrough" instructions it is "debian/rules" not "make".
(Closes:#202622)
* Recommend xfonts-75dpi and copy from the gimp's package description the
explanation on why it is only recommended. (Closes:#215168)
* Use ACTISYS_ACT200L instead of ACTISYS_200L to match driver sources.
(Closes:#204724)
* Remove "Depends: ${shlibs:Depends}, ${misc:Depends}" from binary module
packages as it may cause an empty Depends: line which then confuses apt.
(Closes:#210477)
* Fix spelling in hardware.conf. (Closes:#218887)
* Add a comment about /dev/lirc/0 to hardware.conf. (Improves:#197306)
* Make sure this changelog is UTF-8.
-- Manuel Estrada Sainz <ranty@debian.org> Sat, 22 Nov 2003 22:07:51 +0100
lirc (0.6.6-6) unstable; urgency=low
* Changed liblircclient-dev section to libdevel.
* Added "Source: lirc" to modules-source's debian/control. (Closes: #213819)
* GNU config automated update: config.sub (20030103 to 20030717),
config.guess (20030110 to 20030702)
-- Manuel Estrada <root@ranty.pantax.net> Thu, 2 Oct 2003 23:45:36 +0200
lirc (0.6.6-5) unstable; urgency=low
* Use dpatch.
* Use ACTISYS_200L instead of ACT200L to properly configure SIR kernel
module. (closes: Bug#182647)
-- Manuel Estrada Sainz <ranty@debian.org> Sat, 8 Mar 2003 20:15:56 +0100
lirc (0.6.6-4) unstable; urgency=low
* Add kdist_configure target to lirc-modules-source. (closes: Bug#169364)
* GNU config automated update: config.sub (20020905 to 20021130),
config.guess (20020903 to 20021130)
* use DH_COMPAT 4
* GNU config automated update: config.sub (20021130 to 20030103),
config.guess (20021130 to 20030110)
* Load kernel modules modules with autoclean (closes: Bug#176421)
* Move configuration files for the different remotes from share/doc/lirc/ to
share/lirc/.
-- Manuel Estrada Sainz <ranty@debian.org> Wed, 22 Jan 2003 21:20:32 +0100
lirc (0.6.6-3) unstable; urgency=low
* Include logcheck support as suggested by Blars Blarson <blarson@blars.org>
(closes: Bug#164510)
* GNU config automated update: config.sub (20020703 to 20020905),
config.guess (20020709 to 20020903)
* 'sed' was segfaulting on 'configure', use 'sort -u' instead
(closes: Bug#166264).
-- Manuel Estrada Sainz <ranty@debian.org> Fri, 25 Oct 2002 21:44:45 +0200
lirc (0.6.6-2) unstable; urgency=low
* Fixed modutils file setup on postinst (closes: Bug#164200).
Thanks to "Aaron M. Ucko" <ucko@debian.org> for diagnostic and fix.
* Temporarly renamed 'rc' into 'irsend' to prevent name clash with 'rc'
package, if upstream uses something different, I'll follow.
(closes: Bug#164196).
-- Manuel Estrada Sainz <ranty@debian.org> Fri, 11 Oct 2002 11:16:50 +0200
lirc (0.6.6-1) unstable; urgency=low
* New upstream release.
* added rc tool for sending IR commands (previously included in xrc package)
* bugfix for Winfast TV2000 card
* added SIR support for Actisys Act200L dongle (Karl Bongers)
* added UDP network driver for use with the IPC@Chip (Jim Paris)
* added support for hardware connected to soundcard input (Pavel Machek)
* added support for Tekram M230 Mach64 (Froenchenko Leonid)
* add debhelper dependency to lirc-modules-source (closes: Bug#163974).
* GNU config automated update: config.sub (20020621 to 20020703),
config.guess (20020529 to 20020709)
* Improved sanity checking when building kernel modules (closes: Bug#153491).
* Fixed a typo that prevented "automatic" configuration of lirc_parallel
driver.
* Use /etc/modutils/lirc to set kernel module parameters (closes: Bug#154476).
* Add a note about the need of 'setserial /dev/ttySX uart none' when using
lirc_serial or lirc_sir to README.Debian.
* lirc.config is now "POSIX Shell" compatible, use /bin/sh instead of
/bin/bash.
-- Manuel Estrada Sainz <ranty@debian.org> Thu, 10 Oct 2002 18:53:57 +0200
lirc (0.6.5-6) unstable; urgency=low
* Took the upstream fix for the compilation problem with 2.4.19-rc1 kernels.
(closes: Bug#152982)
-- Manuel Estrada Sainz <ranty@debian.org> Thu, 8 Aug 2002 13:58:48 +0200
lirc (0.6.5-5) unstable; urgency=low
* Patch by Andy Mortimer <andy.mortimer@zetnet.co.uk> to include network
only support. (closes: Bug#151414)
-- Manuel Estrada Sainz <ranty@debian.org> Tue, 9 Jul 2002 17:03:47 +0200
lirc (0.6.5-4) unstable; urgency=low
* Applied a patch from CVS to remove the restricted licence on files
generated with irrecord. (closes: Bug#152074)
-- Manuel Estrada Sainz <ranty@debian.org> Sun, 7 Jul 2002 02:12:57 +0200
lirc (0.6.5-3) unstable; urgency=low
* Hacked around a problem with kernel 2.4.19-rc1.
-- Manuel Estrada Sainz <ranty@debian.org> Thu, 4 Jul 2002 23:36:10 +0200
lirc (0.6.5-2) unstable; urgency=low
* Fixed a typo in README.Debian
* Tell how to get a list of supported drivers in /etc/lirc/hardware.conf
(closes: Bug#141318).
* Changed section to "utils". (closes: Bug#145100)
* GNU config automated update: config.sub (20020102 to 20020307),
config.guess (20020102 to 20020320)
* GNU config automated update: config.sub (20020307 to 20020621),
config.guess (20020320 to 20020529)
-- Manuel Estrada <root@ranty.ddts.net> Thu, 4 Jul 2002 21:50:25 +0200
lirc (0.6.5-1) unstable; urgency=low
* New upstream release.
* Updated debian/rules based on /usr/share/doc/autotools-dev/README.Debian.gz
+ Use DEB_HOST_GNU_TYPE and DEB_BUILD_GNU_TYPE
+ Update config.{sub,guess} automatically
+ touch every single file in 'clean' to prevent timestamp skews
* GNU config automated update: config.sub (20011130 to 20020102),
config.guess (20011126 to 20020102)
* Use syslog and offer to remove /var/log/lircd (closes: Bug#131774)
* Integrate it87 kernel driver with the packing.
+ updated debian/modules-source/{Makefile,README.make},
lirc-modules-source.templates and lirc-modules-source.config
-- Manuel Estrada Sainz <ranty@debian.org> Fri, 1 Feb 2002 21:04:49 +0100
lirc (0.6.4-10) unstable; urgency=high
* The urgency is because:
+ 0.6.4-9: may be uninstalable.
+ reduces user frustration on module building by giving a verbose
error message.
+ Complies with policy by not restoring deleted conffiles on the users
back.
+ Secures device permisions.
+ There is no new feature.
* /etc/lirc/lircmd.conf may not be there (closes: Bug#126279).
* Don't create /etc/lirc/* files unless they are there, they should be moved
from /etc/ or the user chooses to reconfigure the package.
* Add MODULE_LICENSE to kernel modules, patch by Ingo Saitz <ingo@debian.org>
This was already fixed upstream, but oh well, lets not wait to the next
release. (closes: Bug#128074)
* Cry out if IRQ, PORT or TIMER are not set when compiling kernel modules.
(closes: Bug#108131)
* Tell devfsd to create /dev/lirc/0 unconditionaly. (works around: #128072)
The proper fix should come soon from upstream.
* Changed permisions of kernel devices from "root.video 660" to
"root.root 660" since only lircd should use them and it runs as root.
By writting to this devices you may confuse kernel code and that kind
of thing should be reserved to root. If someone feels that read-only
access should be allowed to to other users or groups go ahead and file
a bug.
-- Manuel Estrada Sainz <ranty@debian.org> Sun, 13 Jan 2002 20:27:00 +0100
lirc (0.6.4-9) unstable; urgency=low
* Added IntelliMouse support to lircmd. (closes: Bug#122300)
* Fixed html comments on the documentation which prevented some text from
showing up in a browser, so if you were looking for something and it
wasn't there go back and make sure it is still not there.
-- Manuel Estrada Sainz <ranty@debian.org> Sat, 15 Dec 2001 20:04:48 +0100
lirc (0.6.4-8) unstable; urgency=low
* Took X dependent parts and svgalib parts to their own packages, and have
lirc Suggest them. (closes: Bug#121543)
* ispelled README.Debian.
* Applied patch to handle epochs properly on lirc-modules-source by
Dwayne C. Litzenberger" <dlitz@dlitz.net> (closes: Bug#123019).
* Enabled Irman support (closes: Bug#103951).
I don't have an Irman and don't realy know how the hell it works, so
if there is any problem please report and I will try to fix it.
* Updated config.sub and config.guess from ftp://ftp.gnu.org/pub/gnu/config/
-- Manuel Estrada Sainz <ranty@debian.org> Mon, 10 Dec 2001 23:46:29 +0100
lirc (0.6.4-7) unstable; urgency=low
* I forgot to protect a couple of db_input's with "|| true".
(closes: Bug#121006)
* Make sure lirc-modules-source/kernel-source-not-found gets shown when
needed.
-- Manuel Estrada Sainz <ranty@debian.org> Sun, 25 Nov 2001 03:32:58 +0100
lirc (0.6.4-6) unstable; urgency=low
* Build-dep on svgalib-dummyg1[!i386] and svgalibg1-dev [i386] so it can
build on architectures where svgalib is not available.
-- Manuel Estrada Sainz <ranty@debian.org> Wed, 21 Nov 2001 13:17:22 +0100
lirc (0.6.4-5) unstable; urgency=low
* call db_stop in lirc.postrm.
* modified lirc-modules-source.postinst a bit hopefully to make it
more portable, infact it now works with zsh.
* Updated README.Debian on regards to irman2lirc.
* Updated manpages and added manpages for all binaries (closes: Bug#85217).
* Build smode2 which makes lirc depend on svgalibg1. Please file a wishlist
bug suggesting an alternative if that is inconvenient.
-- Manuel Estrada Sainz <ranty@debian.org> Sun, 4 Nov 2001 20:39:50 +0100
lirc (0.6.4-4) unstable; urgency=low
* lirc was not building on powerpc because of the time difference with
voltaire.debian.org. I was 'touch'ing configure.in to prevent rebuilding
too much stuff and the time difference broke that. Now I am a bit more
aggressive with the time change.
* Use forkpty from libc, so I don't have to worry about devfs or devpts.
closes: #115870 or at least makes it a libc problem :)
-- Manuel Estrada Sainz <ranty@debian.org> Mon, 29 Oct 2001 15:40:23 +0100
lirc (0.6.4-3) unstable; urgency=low
* Updated config.sub and config.guess from ftp://ftp.gnu.org/pub/gnu/config/
so lirc may build on more architectures (closes: #115964).
-- Manuel Estrada Sainz <ranty@debian.org> Wed, 17 Oct 2001 16:19:56 +0200
lirc (0.6.4-2) unstable; urgency=low
* Fixed problem with not existing configure.in.stamp (closes: #114494)
* Put lirc-modules-source debs in $(KSRC)/.. as suggested by
Christian Ohm <chr.ohm@gmx.net>
* Depend on debconf (>= 0.5.00) to use seen flag.
-- Manuel Estrada Sainz <ranty@debian.org> Mon, 15 Oct 2001 19:29:53 +0200
lirc (0.6.4-1) unstable; urgency=low
* Sorry for those 2 months of inactivity, I just came back from Colombia
where I didn't have a SID system to work on.
* New upstream release (closes: #112549)
* Call update-devfsd on postrm when purging. (closes: #104446)
* Change daemons/Makefile.in insted of daemons/Makefile.am to prevent
creating of devices nodes. This way we don't have to run automake and we
don't need to Build-depend on automake and libtool.
* Properly use MOD_DIR on lirc-modules-source (closes: #105784).
* Check for devfs device nodes after loading modules to make sure that they
are there (closes: #114284)
* Updated lirc-modules-source/do-build description, it should be more
readable now (closes: #107765)
* Added kdist_clean target to lirc-modules-source debian/rules.
-- Manuel Estrada Sainz <ranty@debian.org> Thu, 4 Oct 2001 14:35:33 +0200
lirc (0.6.3-3) unstable; urgency=low
* include doc/irxevent.keys as it is referenced from within the
documentation.
* Mising variables will be restored in /etc/lirc/hardware.conf.
* Installation won't fail if a conffile is missing (closes: #103326)
* Maintainer script cleanups, removed bashisms but some shell script
extracted from upstream needs bash :(
* Don't manually call ldconfig on liblircclient0 postinst, debhelper does it
already.
* Make sure that debian/rules is executable on lirc-modules-source package.
(closes: #103607)
* Build lirc-modules-x.x.x.deb in MODDIR as set by make-kpkg and by default
on ".." (closes: #103797)
-- Manuel Estrada Sainz <ranty@debian.org> Wed, 4 Jul 2001 13:10:14 +0200
lirc (0.6.3-2) unstable; urgency=low
* Kernel module building cleanups: it now works for 2.2 kernels, but
keep in mind that not all modules support all kernels.
* Debconf German translation thanks to Sebastian Feltel <sebastian@feltel.de>
(closes: #101171)
* Parallel port kernel module now compiles on 2.4 kernels thanks to
Santiago Garcia Mantinan <manty@debian.org>
* Don't unpack the source into /usr/src/modules directly; instead,
build a tarball in /usr/src/lirc-modules.tar.gz
* lirc-modules-source is now a kernel-package compliant modules package.
* Kernel modules configuration is automated with debconf.
* lirc-modules-source:Recommends: make, dpkg-dev, c-compiler, kernel-package
* lirc-modules-source:Suggests: kernel-source | kernel-headers
* Extracted upstream configuration scripts and integrated them with debconf.
* If there is not a valid configuration try to get it from the previous
location or from upstream sample files. (closes: #102258)
* Added support for devfsd.
* Debconf Spanish translation thanks to
Carlos Valdivia Yagüe <valyag@teleline.es> (closes: #102158)
* init.d script tries to load appropriate kernel modules.
* lirc-modules-source: Added descriptions of ANIMAX, IRDEO and TEKRAM.
* Loading kernel modules from init.d script is now optional
(See /etc/lirc/hardware.conf )
* init.d script cryes out loud and refuses to launch daemons if it tries to
load kernel modules and they are not there.
* Resurrected automatic informal module building.
* Register html documentation with doc-base.
* Updated README.Debian, lirc-modules-source.README.Debian
modules-source/README and modules-source/README.make to reflect latest
changes.
-- Manuel Estrada Sainz <ranty@debian.org> Wed, 27 Jun 2001 05:43:29 +0200
lirc (0.6.3-1) unstable; urgency=low
* New Maintainer.
* New upstream release. (closes: #71643, #90129, #90130, #99405, #94686,
#97373, #73023, #85214, #90258)
* /etc/rc?.d/S??lirc priority is now 19 so it starts before gpm
and creates /dev/lircm for devfs users. (closes: #76958)
* Pass the kernel version correctly to configure. (closes: #85215)
* Moved kernel modules source to it's own package.
* lirc: Suggests lirc-modules-source
* Adjusted de descriptions for the package.
* moved irman2lirc to /usr/bin
* Moved config files to /etc/lirc/ and added hardware.conf so editing
/etc/init.d/lirc is not needed
* Explained a bit more how to make all this work in README.Debian
* Added some manpages.
-- Manuel Estrada Sainz <ranty@debian.org> Thu, 7 Jun 2001 00:45:11 +0200
lirc (0.6.1-1.2) unstable; urgency=low
* Added libtool build-dependency. Should fix 90258
* Non-maintainer upload
-- Gopal Narayanan <gopal@debian.org> Fri, 13 Apr 2001 17:09:21 +0000
lirc (0.6.1-1.1) unstable; urgency=low
* Non-maintainer Upload
* Took out the install-exec-local target from daemons/Makefile.am and
added automake before configure in rules
* mknod stuff commented out in init.d
* Moved mknod to postinst
* above fixes are for bug 85214
-- Gopal Narayanan <gopal@debian.org> Fri, 16 Mar 2001 23:02:39 -0500
lirc (0.6.1-1) unstable; urgency=low
* New upstream version.
* New makefile system for the kernel modules (Closes: #69028).
-- Tom Lees <tom@debian.org> Sun, 27 Aug 2000 12:30:57 +0100
lirc (0.6.0.final-2) unstable; urgency=low
* Build the Makefile for /usr/src/lirc/lirc_aver.
* Remove the /usr/src/lirc/Makefile* files, they're useless.
* Add a README to /usr/src/lirc about building the drivers.
-- Tom Lees <tom@debian.org> Tue, 2 May 2000 09:33:14 +0100
lirc (0.6.0.final-1) unstable; urgency=low
* New upstream release.
* Fix a small bug which caused lircd to crash.
* Make the drivers buildable.
* Add AverMedia driver, thanks to Santiago Garcia Mantinan <manty@i.am>.
* Remove the device nodes on purge.
-- Tom Lees <tom@debian.org> Thu, 20 Apr 2000 00:18:24 +0100
lirc (0.6.0pre6-1) unstable; urgency=low
* Initial Release.
-- Tom Lees <tom@debian.org> Thu, 30 Mar 2000 19:30:57 +0100
|