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
|
lirc (0.8.6~cvs1-0ubuntu1) UNRELEASED; urgency=low
[ Jeremy Yoder ]
* New upstream version:
- merged 1st-gen mceusb device support into lirc_mceusb2,
renamed lirc_mceusb2 to lirc_mceusb
- added support for putting iMON receviers into MCE/RC6 mode
- added input subsystem mouse device support to iMON driver
- improved iMON driver to handle dual-interface iMON devices
via a single lirc device, reducing configuration complexity
- added support for more iMON devices, including proper support
for touchscreen iMON devices (Rene Harder)
- improved iMON driver including touchscreen support
- Linux input support added to lircmd
- added support for IT8720 CIR port
- added support for XMP protocol
* Update debian/lircd.init.d to reflect new default
PID location in /var/run/lirc
* Update debian/lircd.init.d to force socket to /dev/lircd
rather than the new default of /var/run/lirc/lircd
* Add support for new lirc-extras package to
debian/lirc.postinst
* Remove /etc/lircd.conf link to /etc/lirc since
0.8.6 defaults to /etc/lirc/lircd.conf now
* Drop 04_man_pages patch, included in upstream
* Drop 16_lirc-gpio in favor of a sed line in debian/rules
* Drop 28_irrecord_resume_support - Doesn't work
according to upstream
* Drop 36_remove_extra_tekram in favor of a minor
tweak to debian/lirc.postinst to ignore duplicates
* Drop extra remote control/transmitter patches, move to lirc-extras:
- 21_atiusb
- 22_hauppauge_novat_500
- 23_remove_md8800
- 24_freecom_dvbt
- 26_transmitter_lircd.conf
- 30_medion_md1_remote
- 31_hauppauge_hvr_1100
- 32_radioshack_15_2116_remote
- 33_asus_mycinema_remote
- 34_nebula_digitaltv_remote
- 35_general_deviniput
- 37_msi_tv_anywhere
- 38_encore_enltv
* Cleaned up a few lintian warnings
[ Mario Limonciello ]
* lirc.init.d:
- Merge a bunch of whitespace cleanup from debian.
* control:
- Merge whitespace cleanup from debian.
- Drop breaks on udev. We don't have any older version of udev in karmic.
* copyright:
- Sync from debian.
* watch:
- Sync from debian.
* links:
- Don't link to a transmitterdb, this should be provided by lirc-extras.
* rules:
- Install extra changelog, as mentioned in debian's debian/rules.
-- Mario Limonciello <superm1@ubuntu.com> Sun, 16 Aug 2009 16:43:34 -0500
lirc (0.8.5-0ubuntu3) karmic; urgency=low
* Fix bug in init script. Thanks Olaf! (LP: #391726)
-- Mario Limonciello <superm1@ubuntu.com> Wed, 24 Jun 2009 19:42:45 -0500
lirc (0.8.5-0ubuntu2) karmic; urgency=low
* Drop patch that upstream won't be accepting:
- 20_serial_igor
* Drop patches included upstream:
- 23_pad2keys (see http://brakemeier.de/electronics/vdr/lirc-imon.html
2009-04-10 entry for more information)
* debian/lirc.postinst:
- Drop serial igor references.
* Refresh following patches:
- 32_radioshack_15_2116_remote
-- Mario Limonciello <superm1@ubuntu.com> Tue, 23 Jun 2009 00:40:09 -0500
lirc (0.8.5-0ubuntu1) karmic; urgency=low
* New upstream version. (LP: #383446)
- Fixes imon support (LP: #283317)
* Refresh the following patches for new version:
- debian/patches/04_man_pages
- debian/patches/13-warning-cleanup
- debian/patches/21_atiusb
- debian/patches/23_pad2keys
- debian/patches/28_irrecord_resume_support
- debian/patches/35_general_deviniput
* debian/control:
- Add build-depends on libftdi-dev to prevent FTBFS.
* debian/copyright:
- Update to what debian is shipping.
* debian/modules-source/{lirc-modules-source.conf, Makefile}
- Don't build cmdir anymore. It's now a userspace module
* debian/rules:
- Generate dkms.conf using sed instead.
* debian/patches/12_pvr150_transmit_support:
- Drop. Upstream didn't like this patch due to questionable
copyright, and we aren't properly supporting it anyway.
- Refresh 20_serial_igor
- Refresh 26_transmitter_lircd
* debian/lirc-modules-source.README.Debian:
- Drop, inaccurate now.
* debian/lirc.init.d:
- Cleanup a useless for loop.
-- Mario Limonciello <superm1@ubuntu.com> Thu, 18 Jun 2009 01:48:20 -0500
lirc (0.8.4a-0ubuntu5) jaunty; urgency=low
* When in noninteractive mode, don't set the old and new remotes
or transmitters identically. Causes out of sync issues when changing
remotes. (LP: #281575)
-- Mario Limonciello <superm1@ubuntu.com> Fri, 17 Apr 2009 01:32:01 -0500
lirc (0.8.4a-0ubuntu4) jaunty; urgency=low
[ Mario Limonciello ]
* debian/lirc.fdi:
- Add Budget-CI dvb ir receiver. (LP: #329793)
* debian/control:
- Add setserial to depends. (LP: #341213)
* debian/lirc.init.d:
- Remove erroneous -k from modprobe call. (LP: #344781)
* debian/lirc-modules-source.postrm:
- Remove extra purge call removing lirc-modules-source.conf (LP: #350152)
* debian/lirc.postinst:
- Rename etc/modprobe.d/lirc-serial to append a .conf (LP: #350949)
[ Kenny Millington ]
* debian/patches/12_pvr150_transmit_support:
- Fix compilation for latest kernels (LP: #306346)
[ Gregory Lardiere ]
* Add support for ite8709 and ttusbir for lirc-modules-source. (LP: #323923)
- debian/rules
- debian/modules-source/Makefile
- debian/modules-source/lirc-modules-source.conf
-- Mario Limonciello <superm1@ubuntu.com> Mon, 30 Mar 2009 23:49:41 -0500
lirc (0.8.4a-0ubuntu3) jaunty; urgency=low
* debian/udev.rules: Rename to debian/lirc.udev
* debian/rules: Use dh_installudev rules to install
* debian/lirc.install: Remove install line for udev rules
* debian/control: Bump dep on debhelper to install to new path, add Breaks
on udev to ensure we get the correct version
-- Scott James Remnant <scott@ubuntu.com> Mon, 12 Jan 2009 20:39:34 +0000
lirc (0.8.4a-0ubuntu2) jaunty; urgency=low
* debian/lirc.postinst:
- Properly quote includes. The syntax of the include patch unfortunately
changed as it landed upstream.
- Migrate people from earlier LIRC versions to new include syntax if
it is detected in their LIRC configuration.
-- Mario Limonciello <superm1@ubuntu.com> Wed, 12 Nov 2008 09:51:29 -0600
lirc (0.8.4a-0ubuntu1) jaunty; urgency=low
* New upstream version.
* Drop no longer necessary patches:
- 03_extra_files
- 25_upstream_2.6.27
- 27_multiple_include
* Update patches for new version:
- 12_pvr150_transmit_support
- 16_lirc_gpio
- 26_transmitter_lircd.conf
- 28_irrecord_resume_support
* New patches:
- 38_encore_enltv.dpatch (LP: #274087)
* debian/lirc.fdi:
- Update FDI file to match a few more remotes reported
on bugs that work when keyed. (LP: #164627, #204960, #279472)
* debian/control:
- Update Recommends for lirc-modules-source
* debian/lirc.preinst:
- Remove old calls that will no longer be encountered in package
upgrades.
* Merge some packaging changes from Debian. They hadn't done a
release in a long time, so this will at least get us closer to their
packaging for an overarching goal of being in sync.
- Sync'ed changes:
+ debian/compat
+ README.Debian
+ debian/copyright
+ debian/doc-base.lirc
+ debian/liblircclient-dev.install
+ debian/lirc-modules-source.postrm
+ debian/lirc.postrm
+ debian/po
+ debian/lirc-svga.install
+ debian/lirc-svga.links
+ drop debian/lirc.config.in
+ drop debian/lirc.config.md5sum
+ drop debian/lirc.modules
- Merge debian/control, remaining changes:
+ We don't share same VCS
+ We recommend udev
+ Our lirc-modules-source uses DKMS
- Merge debian/rules, remaining changes:
+ DKMS support
- Merge debian/liblircclient0.pc, remaining changes:
+ Version number we have is higher
- Merge debian/lirc.install, remaining changes:
+ We install udev rules
+ We install an FDI file
- Merge debian/lirc.templates, remaining changes:
+ Some of our keys are named differently because we differentiate
between a remote and a transmitter device.
+ We've got some extra keys for details of devices.
- Merge debian/lirc.init.d, remaining changes:
+ We've pretty much entirely revamped the file. Our deltas will
need to be submitted incrementally to Debian.
- Merge debian/lirc.postinst, remaining changes:
+ We've pretty much entirely revamped the file. Our deltas will
need to be submitted incrementally to Debian.
- Merge debian/rules, remaining changes:
+ We install a udev rule
+ We install an FDI file
+ We install DKMS support
+ We install transmitter lircd.conf's
+ We Install the remote and transmitter hwdb explicitly
- Merge patches that we took from debian for 0.8.4 support:
+ debian/patches/02_Makefile.in
+ debian/patches/04_man_pages
-- Mario Limonciello <superm1@ubuntu.com> Sat, 08 Nov 2008 19:10:50 -0600
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.3-0ubuntu2) intrepid; urgency=low
* debian/patches/25_upstream_2.6.26.patch:
- Fix lirc-modules-source compilation on 2.6.26 by pulling some
patches from CVS (LP: #247233)
* debian/rules:
- Install original modules back into proper location for
intrepid kernel (LP: #242216)
* debian/patches/37_msi_tv_anywhere.dpatch:
- Create patch for supporting MSI TV @anywhere remote. (LP: #241830)
* debian/lirc.postinst:
- Correct path to look for module in Intrepid.
- Ask for a path when using dvico remotes. (LP: #238032)
- Don't accidentally overwrite lircd.conf and hardware.conf
when things haven't really changed at all. (LP: #206609)
* debian/lirc.init.d:
- Don't allow udev to put us into endless spinning loops. Instead
pray that module hotplugging worked for all things USB. (LP: #269743)
* debian/lirc.fdi:
- Include this FDI file to prevent in kernel support for the
saa7134 when LIRC is installed. (LP: #204960, #164627)
* debian/rules:
- Install FDI file.
* debian/lirc.install:
- List FDI file.
* debian/patches/22_hauppauge_novat_500.dpatch:
- Adapt to include alternative numeric keys. (LP: #224080)
* debian/patches/25_upstream_2.6.27.dpatch:
- Update to content that is currently sitting in Ubuntu GIT
tree.
-- Mario Limonciello <mario_limonciello@dell.com> Wed, 24 Sep 2008 12:02:17 -0500
lirc (0.8.3-0ubuntu1) intrepid; urgency=low
* New upstream version.
* Drop 05_fix_cmdir as it's now included in CVS.
* Update 12_pvr150_transmit_support for configure
script changes.
* Update 13-warning-cleanup to change from whitespace
changes from CVS.
* Update 16_lirc-gpio for changes from CVS.
* Update 23_pad2keys for changes from CVS.
* Update 24_freecom_dvbt for changes from CVS.
* Drop 25_upstream_2_6_24 as it's now included from CVS.
* Drop 29_macmini_repeat as it's now included from CVS.
* Update 30_medion_md1_remote for changes from CVS.
* Update 33_asus_mycinema_remote for changes from CVS.
* Update 23_pad2keys patch to properly work (LP: #153184)
* Update 21_atiusb.dpatch because it's half upstream now (LP: #213549)
* Add 23_remove_md8800 as the MD8800 remote is causing problems. (LP: #213549)
* debian/modules-source/lirc-modules-source.conf:
- Default the mode to be w/ soft carrier. (LP: #182530)
* Update 31_hauppauge_hvr_1100 to use the right devinput driver instead. (LP: #206495)
* Add 34_nebula_digitv.dpatch for supporting the Nebula Digitv remote (LP: #164867)
* Add 35_general_devinput.dpatch for generic devinput devices. (LP: #235811)
* Add 36_remove_extra_tekram.dpatch for removing extra option in lirc.hwdb.
This option was causing lots of failures (LP: #211566)
* debian/{modules-source/Makefile,rules}:
- Allow the kernel version to be passed as an argument.
prevents broken upgrades when the kernel ABI revs (LP: #218955)
* debian/lirc-modules-source.prerm:
- Check for both remove and upgrade.
-- Mario Limonciello <superm1@ubuntu.com> Sat, 10 May 2008 16:07:40 -0500
lirc (0.8.3~pre1-0ubuntu7) hardy; urgency=low
[ Mario Limonciello ]
* Fix a logical error in the init script related
to udev preventing it from working. (LP: #176616)
* Fix race conditions with udev (LP: #204672)
* Backup hardware.conf before changing. (LP: #198903)
* Add support for the Medion MD1-NBC remote. (LP: #192392)
- Thanks Florian Fahr
* Add support for the Hauppauge HVR-1100 remote (LP: #203493)
- Thanks Lucas
* Flag repeat events on apple mac mini (LP: #179608)
- Thanks Don Mahurin
* Add support for Radioshack 15-2116 remote (LP: #193568)
- Thanks Scott D
* Add support for ASUS MyCinema P7131 remote (LP: #190018)
- Thanks Gianfranco Liporace
[ Mathias Hasselmann ]
* Add 28_irrecord_resume_support for resume support to
irrecord. (LP: #197493)
[ Andrew Barbaccia ]
* Fix typo in lirc init script preventing transmitter
arguments from properly being built. (LP: #204664)
* Update Scientific Atlanta config in 26_transmitter_lircd.conf.dpatch
to better naming convention. (LP: #204342)
-- Mario Limonciello <superm1@ubuntu.com> Sun, 23 Mar 2008 23:25:36 -0500
lirc (0.8.3~pre1-0ubuntu6) hardy; urgency=low
* "Include" proper URL for transmitters in lircd.conf.
* debian/control:
- lirc-modules-source depends on dkms.
- Update standards version to 3.7.3
- Drop ucf, debianutils, debhelper from lirc-modules-source depends.
- Update lirc-modules-source description.
* Update lirc-modules-source behavior to automatically build
modules using dkms as necessary. (LP: #181871)
* Drop old lirc-svga stuff.
* Update 12_pvr150_transmit_support.dpatch with patch from author.
-- Mario Limonciello <superm1@ubuntu.com> Sun, 10 Feb 2008 15:04:13 -0600
lirc (0.8.3~pre1-0ubuntu5) hardy; urgency=low
* debian/hardware.conf:
- Add a variable to only force noninteracive reconfiguration
when requested by user.
* debian/lirc.postinst:
- Add support for "Custom" remote type which will not overwrite
chosen options when reconfiguring (even noninteractively).
* debian/templates:
- Add "Custom" remote and transmitter.
* Update 13_warning_cleanup, 16-lirc-gpio, and 24_freecom_dvbt
to update lirc.hwdb from extraneous equals signs and information.
-- Mario Limonciello <superm1@ubuntu.com> Thu, 03 Jan 2008 11:47:14 -0600
lirc (0.8.3~pre1-0ubuntu4) hardy; urgency=low
* Add 25_upstream_2_6_24 to fix lirc_dev,lirc_serial,lirc_sir
on 2.6.24.
* Add 26_transmitter_lircd.conf for pre-shipped cable/satellite
receiver lircd.conf's as well as a transmitter.hwdb
* Add 27_multiple_include for allowing lircd.conf's via
an 'include' directive.
* Update 16_lirc-gpio, 22_hauppauge_novat_500, 24_freecom_dvbt
for upstream driver name change from dev/input to devinput.
* Drop 17_devinput since it is no longer necessary due to
upstream driver name change.
* Update 12_lirc_pvr150 for 2.6.24.
* Update 20_lirc_serial_igor for 2.6.24.
* Update 13-warning-cleanup for more cleanup on sir
* Update 03_extra_files, 04_manpages, 12_pvr150_transmit_support,
13-warning-cleanup, 16_lirc-gpio, 20_serial-igor, 21_atiusb,
22_hauppauge_novat_500, 23_pad2keys, 24_freecom_dvbt
to give a description of the patches.
* debian/control:
- Have lirc depend on setserial, so that lirc.postinst can
customize things. (LP: #152871)
* debian/lirc.links:
- Add symlink from /etc/lirc/lircd.conf -> /etc/lircd.conf
to prevent confusion for users coming from different distros.
- Add symlink for transmitter.hwdb to different share directories.
* debian/hardware.conf
- Change top level remotes, drivers, etc to be remote specific.
- Add support for transmitters.
- Default to having lircd off until the maintainer scripts have
updated things.
* debian/lirc.init.d:
- Reorder checking for hardware.conf, to make sure it occurs earlier.
- Update init script to use LSB output.
- Update init script to have the ability to spawn multiple lirc
processes.
* Drop devfs.conf and devfs.devices since devfs is no longer used
in Ubuntu.
* debian/rules:
- No longer install devfs.conf and devfs.devices.
- Install transmitter.hwdb
- Install usr/share/lirc/transmitters
* debian/lirc.templates:
- Add extra templates for our chosen transmitter, device, driver,
modules, and lircd_conf
- Update all old device, driver, modules, and lircd_conf templates
to be for remote only.
- Remove extra space from remote template.
- Add template for whether to enable/disable lircd.
- Add a template for serial port selection (LP: 152871)
* debian/lirc.postinst:
- Unload all modules when issuing a reconfigure command.
- In check_hardware_conf, don't write UNCONFIGURED, just write
empty quotes to make sure we don't throw things off.
- In check_hardware_conf, write out all our new modules as
necessary.
- In Save & DebconfLoad, read and store all new transmitter
variables.
- In ChooseRemote, read old values from hardware.conf rather than
debconf, since debconf is not designed to be used as a database,
but rather an intermediatary storage method.
- In ChooseRemote, add transmitter support.
- In ChooseRemote, define what lirc device we are using for
dev/input as described in:
https://blueprints.launchpad.net/mythbuntu/+spec/lirc-gpio-alternative
- Remove clause to mv /etc/lircd.conf to /etc/lirc
- Write out START_LIRCD, depending on whether we have remotes/transmitters
enabled or disabled.
- Check for REMOTE_DRIVER entitled 'none' and set it to ''.
- Write out a lircd.conf with include directives and a description of how
to update rather than copying the single file over.
- Add support to customize serial port (LP: #152871)
- No longer setup modutils (only applicable for kernel 2.4)
* debian/lirc.preinst:
- Migrate old hardware.conf over to new syntax in case user does not
replace it upon package installation.
-- Mario Limonciello <superm1@ubuntu.com> Thu, 27 Dec 2007 23:16:40 -0600
lirc (0.8.3~pre1-0ubuntu3) hardy; urgency=low
* Fix -x call.
-- Scott James Remnant <scott@ubuntu.com> Fri, 14 Dec 2007 16:53:50 +0000
lirc (0.8.3~pre1-0ubuntu2) hardy; urgency=low
* debian/lirc.init.d: call udevadm instead of udevsettle
-- Scott James Remnant <scott@ubuntu.com> Fri, 14 Dec 2007 16:30:11 +0000
lirc (0.8.3~pre1-0ubuntu1) hardy; urgency=low
* New upstream version.
- Includes Iguanaworks IR Support (LP: #153457)
* Update 03_extrafiles patch for gpio changes.
* Update 05_fix_cmdir patch for command IR lirc.hwdb update.
* Update 12_lirc_pvr150 patch for transmitting support under
kernel 2.6.22.
* Update 13-warning-cleanup patch for items that were already
cleaned up upstream.
* Drop 14_mceusb2 patch since now included upstream.
* Drop 14_lirc-i2c patch since now included upstream.
* Drop 15_macmini patch since now included upstream.
* Update 16_lirc-gpio patch for added changes upstream.
* Update 17_devinput patch for added changes upstream.
* Drop 18_irman-fix patch since now included upstream.
* Drop 19_serial_support patch since now included upstream.
* Update 20_serial_igor patch for new serial support upstream.
* Update 22_hauppauge_novat_500 patch for new support upstream.
* Add 23_pad2keys patch for pad2keys imon support (LP: #153184).
* Add 24_freecom_dvbt patch for NovaT 500 Remote (LP: #152539).
* Clean up lintian warning for -$(MAKE).
* Clean up lintian warning for ${source:Version}.
-- Mario Limonciello <superm1@ubuntu.com> Tue, 30 Oct 2007 09:44:55 -0400
lirc (0.8.2-0ubuntu8) gutsy; urgency=low
* Add 22_hauppauge_novat_500.dpatch for more complete
novat-500 support. (LP: #145847)
* Update 16_lirc-gpio.dpatch to make all lirc_gpio remotes
use the dev/input interface instead. (LP: #148756)
* Update 21_atiusb.dpatch to make Snapstream remotes
have their own item. (LP: #140060)
* Update 12_pvr150_transmit_support.dpatch to fix a
m-a related FTBFS. (LP: #147440)
-- Mario Limonciello <superm1@ubuntu.com> Mon, 08 Oct 2007 02:35:50 -0500
lirc (0.8.2-0ubuntu7) gutsy; urgency=low
* Be sure to rmmod ati_remote.ko if necessary (LP: #140940)
-- Mario Limonciello <superm1@ubuntu.com> Thu, 20 Sep 2007 10:06:20 -0500
lirc (0.8.2-0ubuntu6) gutsy; urgency=low
* Add 20_serial_igor.dpatch for additional serial kernel module
that is built with Igor Cesko support. (LP: #138247)
* debian/patches/21_atiusb.dpatch:
- for support of first generation ATI RF remote. (LP: #139238)
- snapstream firefly support. (LP: #140060)
* debian/lirc.postinst, debian/lirc.postrm, debian/lirc.templates:
- Blacklist lirc_atiusb.ko when necessary (LP: #139961)
* debian/rules, debian/lirc.preinst:
- Update the service to start after alsa-utils (LP: #123557)
-- Mario Limonciello <superm1@ubuntu.com> Mon, 17 Sep 2007 01:56:54 -0500
lirc (0.8.2-0ubuntu5) gutsy; urgency=low
[ Mario Limonciello ]
* Add a udev script to automatically reload or stop lirc
if /dev/lirc[0-9] devices are added/removed.
* Modify lirc init script to work with udev script.
* Update 14_lircmceusb2.dpatch to add support for
HP MCEUSB2 remotes. (LP: #134949)
* Add 19_serial_support.dpatch from lirc CVS
to fix broken serial support.
* debian/control:
- Add udev to Recommends.
* debian/lirc.postinst:
- Add udev reloading.
[ Tristan Hill ]
* Fix irman support with dpatch from lirc CVS. (LP: #132011)
-- Mario Limonciello <superm1@ubuntu.com> Mon, 27 Aug 2007 21:11:49 -0500
lirc (0.8.2-0ubuntu4) gutsy; urgency=low
* Clarify the intentions of choosing a remote (LP: #129038)
* Add 17_devinput.dpatch to show correct DEVICE
in doc/lirc.hwdb. (LP: #129689)
* Write out REMOTE="" to lircd.conf as well to allow
external apps to parse this information.
-- Mario Limonciello <superm1@ubuntu.com> Sun, 29 Jul 2007 13:39:17 -0500
lirc (0.8.2-0ubuntu3) gutsy; urgency=low
* Add 14_lirc_i2c.dpatch to fix lirc-i2c on 2.6.22 kernel
for PVR-150 and HVR-1300. (LP: #128650)
* Add 15_macmini.dpatch to fix macmini support. (LP: #126955)
* Add 16_lirc-gpio.dpatch to fix GPIO by backporting deprecated
functions, until sysfs support is added to GPIO module.
* debian/lirc.postinst & debian/lirc.templates:
Add functionality to choose your remote. Automatically load this
information into /etc/lirc/hardware.conf and choose a /etc/lirc/lircd.conf
for your remote. (LP: #65174)
-- Mario Limonciello <superm1@ubuntu.com> Thu, 26 Jul 2007 19:47:03 -0700
lirc (0.8.2-0ubuntu2) gutsy; urgency=low
* Make sure lirc_gpio is buildable by adding extra_2.6.22
to 03_extra_files.dpatch. (LP: #125384)
* Add 05_fix_cmdir.dpatch from lirc CVS to fix cmdir linking
issues.
* Add a symbolic link in case /usr/share/doc/lirc/lirc.hwdb
is being used.
* Add 13_warning_cleanup.dpatch to cleanup all compilation warnings
encountered before submitting to the ubuntu kernel team.
-- Mario Limonciello <superm1@ubuntu.com> Wed, 11 Jul 2007 21:18:46 -0500
lirc (0.8.2-0ubuntu1) gutsy; urgency=low
* New upstream version. (LP: #124842)
* Drop 01_irxevent.dpatch. Most of it is included upstream now.
* Update 12_pvr150_transmit_support.dpatch for new configure script.
* debian/rules:
- Add lirc.hwdb to lirc binary package.
* debian/lirc.postinst.
- Remove all mknods. This is handled when modprobing.
* debian/lirc.init.d
- Add LSB block.
-- Mario Limonciello <superm1@ubuntu.com> Sun, 8 Jul 2007 20:55:36 -0500
lirc (0.8.1+cvs20070310-0ubuntu2) feisty; urgency=low
[ Mario Limonciello ]
* Add 12_pvr150_transmit_support.dpatch for pvr-150 ir transmitter
support (Closes: #95768)
* debian/lirc-modules-source.templates: add pvr150 module option here.
* debian/modules-source/Makefile: add pvr150 build options.
[ Kees Cook ]
* debian/modules-source/Makefile: don't limit cleaning action, this causes
rebuilds to fail when a kernel version gets bumped.
* debian/patches: clean up unused patches.
-- Kees Cook <kees@ubuntu.com> Wed, 4 Apr 2007 11:27:06 -0700
lirc (0.8.1+cvs20070310-0ubuntu1) feisty; urgency=low
* New upstream release -- required for 2.6.20 kernels.
* Dropping unneeded patches.
-- Kees Cook <kees@ubuntu.com> Sat, 10 Mar 2007 12:25:58 -0800
lirc (0.8.0-9ubuntu2) feisty; urgency=low
* Rebuild for changes in the amd64 toolchain.
* Set Ubuntu maintainer address.
-- Matthias Klose <doko@ubuntu.com> Mon, 5 Mar 2007 01:22:16 +0000
lirc (0.8.0-9ubuntu1) feisty; urgency=low
* Merge from debian unstable, remaining changes:
- drop svgalib support
-- Scott James Remnant <scott@ubuntu.com> Tue, 28 Nov 2006 15:10:00 +0000
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-5ubuntu1) edgy; urgency=low
* Merge from debian unstable, remaining changes:
- drop dependency on svgalib.
-- Scott James Remnant <scott@ubuntu.com> Mon, 10 Jul 2006 15:45:44 +0100
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-11ubuntu1) dapper; urgency=low
* Resynchronise with Debian.
-- Michael Vogt <michael.vogt@ubuntu.com> Fri, 11 Nov 2005 00:15:47 +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-1ubuntu3) breezy; urgency=low
* Build-Depends: libusb-dev (Bugzilla #14513)
* GNU config automated update: config.sub (20041130 to 20050422),
config.guess (20041112 to 20050422)
-- root <mdz@ubuntu.com> Tue, 20 Sep 2005 11:01:35 -0700
lirc (0.7.0.1-1ubuntu2) breezy; urgency=low
* md5sum from coreutils doesn't have -v, so drop that for now.
-- LaMont Jones <lamont@ubuntu.com> Sat, 23 Jul 2005 13:33:16 -0600
lirc (0.7.0.1-1ubuntu1) hoary; urgency=low
* remove svgalib1 Dependency completely.
-- LaMont Jones <lamont@ubuntu.com> Mon, 17 Jan 2005 14:05:26 -0700
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
Local variables:
mode: debian-changelog
End:
|