1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
|
pkg-kde-tools (0.15.20~ubuntu4) xenial; urgency=medium
* Add eo to the locale list
-- Philip Muškovac <yofel@kubuntu.org> Thu, 07 Jan 2016 21:37:10 +0100
pkg-kde-tools (0.15.20~ubuntu3) xenial; urgency=medium
* In ubuntu, the cavalencia l10n package is called ca-valencia
-- Philip Muškovac <yofel@kubuntu.org> Wed, 06 Jan 2016 22:39:25 +0100
pkg-kde-tools (0.15.20~ubuntu2) xenial; urgency=medium
* Drop the ECM_MKSPECS_INSTALL_DIR override in kf5.pm, it's obsolete and
uses an inexistent function call
-- Philip Muškovac <yofel@kubuntu.org> Tue, 08 Dec 2015 22:41:11 +0100
pkg-kde-tools (0.15.20~ubuntu1) xenial; urgency=medium
* Merge from Debian unstable. Remaining changes:
- qt-kde-team/1/debian-qt-kde.mk:
+ Distribution text = "Kubuntu packages".
- debian/rules:
+ Add rules to sync l10n.
- perllib/Debian/Debhelper/Sequence/kubuntu_l10n.pm:
+ Add sequence for Debhelper.
- perllib/Debian/Debhelper/Sequence/{kf5,kde}.pm:
+ Require kubuntu_l10n sequence.
- debian/pkg-kde-tools.install, kubuntu/*:
+ Install kubuntu/ files and l10n scripts.
- qt-kde-team/{1,2,3}/policy.mk:
+ Remove maintainer checking.
- qt-kde-team/{2,3}/lintian.mk:
+ Call it after the binary target in
qt-kde-team/{2,3}/debian-qt-kde.mk.
- perllib/Debian/Debhelper/Sequence/kf5.pm:
+ Disable dh_auto_test for armhf PPA builds.
* Add missing file from Debian qt-kde-team/2/l10n-packages.mk
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 08 Dec 2015 11:33:48 +0000
pkg-kde-tools (0.15.20) UNRELEASED; urgency=medium
[ Dmitry Shachnev ]
* Minor fixes to pkgkde-mark-private-symbols.1 manpage.
[ Maximiliano Curia ]
* Drop stale copy of Dpkg/Shlibs (2010-02-21), and use the ones from
libdpkg-perl instead.
- Drop the find_datalibdir and setup_datalibdir functions and the
DATALIBDIR global variable.
- Adapt pkgkde-gensymbols and pkgkde-symbolshelper accordingly.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 15 Aug 2015 14:29:11 +0300
pkg-kde-tools (0.15.19ubuntu1) wily; urgency=low
* Merge from Debian unstable. Remaining changes:
- qt-kde-team/1/debian-qt-kde.mk:
+ Distribution text = "Kubuntu packages".
- debian/rules:
+ Add rules to sync l10n.
- perllib/Debian/Debhelper/Sequence/kubuntu_l10n.pm:
+ Add sequence for Debhelper.
- perllib/Debian/Debhelper/Sequence/{kf5,kde}.pm:
+ Require kubuntu_l10n sequence.
- debian/pkg-kde-tools.install, kubuntu/*:
+ Install kubuntu/ files and l10n scripts.
- qt-kde-team/{1,2,3}/policy.mk:
+ Remove maintainer checking.
- qt-kde-team/{2,3}/lintian.mk:
+ Call it after the binary target in
qt-kde-team/{2,3}/debian-qt-kde.mk.
- perllib/Debian/Debhelper/Sequence/kf5.pm:
+ Disable dh_auto_test for armhf PPA builds.
-- Artur Rona <ari-tczew@ubuntu.com> Sun, 16 Aug 2015 22:38:44 +0200
pkg-kde-tools (0.15.19) unstable; urgency=medium
* Team upload.
* Improve error handling in pkgkde-gensymbols.
Previously it ignored exceptions from dpkg-gensymbols.
-- Felix Geyer <fgeyer@debian.org> Fri, 14 Aug 2015 19:10:10 +0200
pkg-kde-tools (0.15.18ubuntu2) wily; urgency=medium
* Restore adjustment to linitan.mk such that it doesn't fail on binary only
builds on account of not finding a dsc
-- Harald Sitter <sitter@kde.org> Tue, 01 Sep 2015 13:20:08 +0200
pkg-kde-tools (0.15.18ubuntu1) wily; urgency=low
* Merge from Debian unstable. (LP: #1475045) Remaining changes:
- qt-kde-team/1/debian-qt-kde.mk:
+ Distribution text = "Kubuntu packages".
- debian/rules:
+ Add rules to sync l10n.
- perllib/Debian/Debhelper/Sequence/kubuntu_l10n.pm:
+ Add sequence for Debhelper.
- perllib/Debian/Debhelper/Sequence/{kf5,kde}.pm:
+ Require kubuntu_l10n sequence.
- debian/pkg-kde-tools.install, kubuntu/*:
+ Install kubuntu/ files and l10n scripts.
- qt-kde-team/{1,2,3}/policy.mk:
+ Remove maintainer checking.
- qt-kde-team/{2,3}/lintian.mk:
+ Call it after the binary target in
qt-kde-team/{2,3}/debian-qt-kde.mk.
- perllib/Debian/Debhelper/Sequence/kf5.pm:
+ Disable dh_auto_test for armhf PPA builds.
-- Artur Rona <ari-tczew@ubuntu.com> Thu, 16 Jul 2015 00:22:40 +0200
pkg-kde-tools (0.15.18) unstable; urgency=medium
[ Dmitry Shachnev ]
* pkgkde-mark-private-symbols: Fix a typo in my surname.
[ Diane Trout ]
* Modify pkg-kde-tools.install to install pkgkde-gensymbols
and pkgkde-symbolshelper manpages, making them much more useful.
Hopefully Closes: #782866 again.
[ Didier Raboud ]
* Add a /2/l10n-packages.mk providing a convenient ${kde-l10n:all} substvar
to be added in Breaks/Replaces for packages that need it.
-- Didier Raboud <odyx@debian.org> Fri, 03 Jul 2015 00:08:19 +0200
pkg-kde-tools (0.15.17ubuntu2) wily; urgency=medium
* Disable dh_auto_test for armhf PPA builds
+ Since 99% of armhf PPA builds (that is excluding those from Canonical)
are run via qemu-arm and qemu-arm doesn't manage to run any of the
frameworks tests without segfaulting (either due to Qt or ctest, it's
not clear) almost all test runs would fail all the time because of qemu.
Since we cannot explicitly check if we are run through qemu-arm we'll
instead simply disable auto_test for this entire use case which should
be good enough for the time being anyway.
Reviewed by Jonathan...
-- Harald Sitter <sitter@kde.org> Mon, 01 Jun 2015 17:48:20 +0200
pkg-kde-tools (0.15.17ubuntu1) wily; urgency=medium
* Merge with Debian, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- Add l10n scripts in kubuntu/
- Add kubuntu_l10n.pm sequence for Debhelper
- Require kubuntu_l10n sequence in {kf5,kde}.pm sequence
- debian/pkg-kde-tools.install: install kubuntu/ files
- qt-kde-team/{1,2,3}/policy.mk: remove maintainer checking
- Add qt-kde-team/{2,3}/lintian.mk and call it after the binary target in
qt-kde-team/{2,3}/debian-qt-kde.mk
-- Harald Sitter <sitter@kde.org> Fri, 15 May 2015 17:04:16 +0200
pkg-kde-tools (0.15.17) unstable; urgency=medium
[ Diane Trout ]
* Add man pages for pkgkde-gensymbols and pkgkde-symbolshelper
(Closes: #782866).
[ Lisandro Damián Nicanor Pérez Meyer ]
* Add pkgkde-mark-private-symbols to avoid shipping the script on every
Qt5 package.
* Release to unstable.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 13 May 2015 09:40:11 -0300
pkg-kde-tools (0.15.16ubuntu2) vivid; urgency=medium
* Remove debian/KUBUNTU-BZR-WORKFLOW - we are moving to git.debian with
our delta
* Bring back kubuntu_l10n dh sequence.
- This sequence was lost in the kf5 port.
- It is by default pulled into the kf5 and kde sequence as well.
- The logic itself is noop unless previously established l10n
requirements are met.
* Apply 'remove maintainer checking' to qt-kde-team/3/policy.mk
* Update syncl10n target and settings for kf5, refresh.
+ preparetips is no longer being pulled in. As far as our uses go
it is an optional utility and since we do not use tips in our
applications it is useless for us. Supposedly it was a left over from
when all kde apps were imported into launchpad.
+ we are intentionally using the kf5 tools across both kde4libs and kf5
software because I am lazy. Potentially incomplete message extraction is
still better than no message extraction...
* New list of remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- Add l10n scripts in kubuntu/
- Add kubuntu_l10n.pm sequence for Debhelper
- Require kubuntu_l10n sequence in {kf5,kde}.pm sequence
- debian/pkg-kde-tools.install: install kubuntu/ files
- qt-kde-team/{1,2,3}/policy.mk: remove maintainer checking
- qt-kde-team/{2,3}/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/{2,3}/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/{2,3}/lintian.mk and call it in qt-kde-team/{2,3}/debian-qt-kde.mk
-- Harald Sitter <sitter@kde.org> Mon, 16 Feb 2015 10:12:07 +0100
pkg-kde-tools (0.15.16ubuntu1) vivid; urgency=medium
* Merge with Debian experimental, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/pkg-kde-tools.install: install kubuntu/ files
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/{2,3}/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/{2,3}/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/{2,3}/lintian.mk and call it in qt-kde-team/{2,3}/debian-qt-kde.mk
-- Dmitry Shachnev <mitya57@ubuntu.com> Tue, 27 Jan 2015 14:20:34 +0300
pkg-kde-tools (0.15.16) experimental; urgency=medium
[ Rohan Garg ]
* Add new sequence helpers for KDE Frameowrks 5
* Drop useless code from KDE Frameworks time
* Use the KF5 sequence helper
* Fix sillyness
* Fix sequence to use KF5 instead of KDE4
* More misc. fixes for the KF5 sequence
* meinproc4 is no more in KF5 land, all hail meinproc5
* Nuke auto_configure duplication, doesn't make sense since we source the KF5 sequence
* Remove useless pkg-kde-tools.kdev4 file
* Make sure we don't link to libkdeinit5_ explicitly
* Make sure ECM_MKSPECS_INSTALL_DIR is also passed
* Add proper marker while passing ECM_MKSPECS_INSTALL_DIR
* Use KDE_INSTALL_USE_QT_SYS_PATHS to do the right thing automatically. and drop useless calls.
* dpkg_architecture_value isn't used, remove
[ Maximiliano Curia ]
* Bump Standards-Version to 3.9.6, no changes needed
-- Maximiliano Curia <maxy@debian.org> Tue, 20 Jan 2015 13:24:21 +0100
pkg-kde-tools (0.15.15ubuntu1) utopic; urgency=medium
* Merge with debian, remaining changes:
- Add kf5 debhelper module for KDE Frameworks 5 (perllib/Debian/Debhelper/*/kf5.pm)
- Add scripts to build KDE Frameworks 5 & Plasma 5 (qt-kde-team/3/*)
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
- Depend on python and docbook-to-man, recommend lintian
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 02 Sep 2014 16:00:34 +0200
pkg-kde-tools (0.15.15) unstable; urgency=medium
* The fix for #744173 required to convert non-anchored regexps to anchored
ones. The problem with this is that kfreebsd-amd64 was no longer matched.
Fix it by adding kfreebsd-amd64 in the lists where amd64 appears, as
they both share the same sizes (Closes: #754765).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 13 Jul 2014 23:21:12 -0300
pkg-kde-tools (0.15.14ubuntu2) utopic; urgency=medium
* Drop xz.pm and lzma.pm, dpkg >= 1.17.0 has xz compression by default
-- Rohan Garg <rohangarg@kubuntu.org> Tue, 27 May 2014 12:36:58 +0200
pkg-kde-tools (0.15.14ubuntu1) utopic; urgency=medium
* Merge with Debian git, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perllib/Debian/Debhelper/Sequence/lzma.pm and xz.pm
- perllib/Debian/Debhelper/Sequence/kde.pm: include xz sequences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
- Depend on python and docbook-to-man, recommend lintian
-- Rohan Garg <rohangarg@kubuntu.org> Thu, 08 May 2014 12:29:28 +0200
pkg-kde-tools (0.15.14) unstable; urgency=medium
[ William Grant ]
* perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm:
- Anchor architecture matches to the ends of the string, to avoid
erroneously mapping qreal to float on arm64.
- Add arm64 and ppc64el to the 64-bit matches (Closes: #744173).
[ Helmut Grohne ]
* Mark binary pkg-kde-tools as M-A:foreign. (Closes: #751338).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sat, 12 Jul 2014 15:45:14 -03
pkg-kde-tools (0.15.13) unstable; urgency=medium
[ Maximiliano Curia ]
* Fix "Useless use of \E at" warning in dhmk.pl.
* Bump Standards-Version to 3.9.5, no further changes needed.
[ Pino Toscano ]
* debcontrol2cmake.pl: filter out binary packages not belonging to the build
architecture.
-- Maximiliano Curia <maxy@debian.org> Sun, 23 Feb 2014 12:02:28 +0100
pkg-kde-tools (0.15.12ubuntu1) trusty; urgency=low
* Merge from Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perllib/Debian/Debhelper/Sequence/lzma.pm and xz.pm
- perllib/Debian/Debhelper/Sequence/kde.pm: include xz sequences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
- Depend on python and docbook-to-man, recommend lintian
- TypeSubst.pm: Anchor architecture matches to the ends of the string, to
avoid erroneously mapping qreal to float on arm64.
- TypeSubst.pm: Add arm64 and ppc64el to the 64-bit matches.
-- Dmitry Shachnev <mitya57@ubuntu.com> Wed, 15 Jan 2014 20:36:23 +0400
pkg-kde-tools (0.15.12) unstable; urgency=low
[ Dmitry Shachnev ]
* pkgkde-symbolshelper: fix qptrdiff expansion for s390x.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 18 Dec 2013 11:23:46 -0300
pkg-kde-tools (0.15.11) unstable; urgency=low
* Add support for mips64 and mips64el. Thanks YunQiang Su for the patch.
(Closes: #723223).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 14 Nov 2013 09:23:17 -0300
pkg-kde-tools (0.15.10) unstable; urgency=low
* Actually s390 uses 'j' (unsigned int) for quintptr (Closes: #725300).
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Thu, 03 Oct 2013 19:02:46 -0300
pkg-kde-tools (0.15.9) unstable; urgency=low
* Add s390 and s390x to the list of archs that use 'y' (unsigned long long)
as replacement for quintptr (Closes: #725023).
* Add myself to Uploaders.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Wed, 02 Oct 2013 17:34:04 -0300
pkg-kde-tools (0.15.8ubuntu2) saucy; urgency=low
* perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm:
- Anchor architecture matches to the ends of the string, to avoid
erroneously mapping qreal to float on arm64.
- Add arm64 and ppc64el to the 64-bit matches.
-- William Grant <wgrant@ubuntu.com> Sun, 13 Oct 2013 10:14:05 +1100
pkg-kde-tools (0.15.8ubuntu1) saucy; urgency=low
* Merge from Debian unstable (LP: #1219695), remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perllib/Debian/Debhelper/Sequence/lzma.pm and xz.pm
- perllib/Debian/Debhelper/Sequence/kde.pm: include xz squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
- Depend on python and docbook-to-man, recommend lintian
-- Dmitry Shachnev <mitya57@ubuntu.com> Tue, 03 Sep 2013 10:48:47 +0400
pkg-kde-tools (0.15.8) unstable; urgency=low
* Team upload.
[ Felix Geyer ]
* pkgkde-symbolshelper: Add intptr_t type substitution.
[ Pino Toscano ]
* Fix Vcs-* headers.
-- Lisandro Damián Nicanor Pérez Meyer <lisandro@debian.org> Sun, 25 Aug 2013 20:01:30 -0300
pkg-kde-tools (0.15.7ubuntu4) saucy; urgency=low
* Re-enable lintian but only recommend it
-- Philip Muškovac <yofel@kubuntu.org> Tue, 16 Jul 2013 18:07:15 +0200
pkg-kde-tools (0.15.7ubuntu3) saucy; urgency=low
* Remove lintian dependency from pkg-kde-tools as it's too heavy and don't
run the lintian target in debian-qt-kde.mk
-- Philip Muškovac <yofel@kubuntu.org> Tue, 16 Jul 2013 18:04:45 +0200
pkg-kde-tools (0.15.7ubuntu2) saucy; urgency=low
* qt-kde-team/*/debian-qt-kde.mk uses docbook-to-man, so depend on it
-- Philip Muškovac <yofel@kubuntu.org> Mon, 17 Jun 2013 20:14:37 +0200
pkg-kde-tools (0.15.7ubuntu1) saucy; urgency=low
* Merge from Debian unstable. Remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perllib/Debian/Debhelper/Sequence/lzma.pm and xz.pm
- perllib/Debian/Debhelper/Sequence/kde.pm: include xz squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
-- Scott Kitterman <scott@kitterman.com> Wed, 22 May 2013 18:37:26 -0400
pkg-kde-tools (0.15.7) unstable; urgency=low
* pkgkde-vcs: replace support for lenny-backports with wheezy-backports.
-- Modestas Vainius <modax@debian.org> Mon, 20 May 2013 01:00:35 +0300
pkg-kde-tools (0.15.6) unstable; urgency=low
* pkgkde-git: Update sanity check, allow git clones inside gited homes.
* Add myself to Uploaders.
* Bump debhelper buil-dep and compat to 9.
* Bump Standards-Version to 3.9.4, no further changes needed.
-- Maximiliano Curia <maxy@debian.org> Fri, 10 May 2013 17:57:04 +0200
pkg-kde-tools (0.15.5-0ubuntu1) saucy; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- add debian/KUBUNTU-BZR-WORKFLOW
- Add l10n scripts in kubuntu/
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perllib/Debian/Debhelper/Sequence/lzma.pm and xz.pm
- perllib/Debian/Debhelper/Sequence/kde.pm: include xz squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
- Add qt-kde-team/2/lintian.mk and call it in qt-kde-team/2/debian-qt-kde.mk
* Remove incorrect Vcs lines in debian/control
-- Jonathan Riddell <jriddell@ubuntu.com> Sun, 05 May 2013 09:29:28 +0100
pkg-kde-tools (0.15.5) experimental; urgency=low
* dh_sameversiondep: do not fail on dependencies which have versions from
multiple architectures installed. Thanks to Cyril Brulebois for the initial
patch. (Closes: #676833)
-- Modestas Vainius <modax@debian.org> Sun, 14 Apr 2013 20:25:23 +0300
pkg-kde-tools (0.15.4) experimental; urgency=low
[ José Manuel Santamaría Lema ]
* Filter out -dbg packages from ${allLibraries} variables.
[ Sune Vuorela ]
* Update my email address
-- Sune Vuorela <sune@debian.org> Tue, 02 Apr 2013 21:58:46 +0000
pkg-kde-tools (0.15.3ubuntu8) raring; urgency=low
* In extract-messages.sh don't include .pc directories from quilt
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 28 Mar 2013 16:28:23 +0000
pkg-kde-tools (0.15.3ubuntu7) raring; urgency=low
* Add python as dep of pkg-kde-tools.
upstream's msgsplit script for l10n uses python
-- Harald Sitter <apachelogger@kubuntu.org> Mon, 18 Mar 2013 13:50:06 +0100
pkg-kde-tools (0.15.3ubuntu6) raring; urgency=low
* Add envrionment variables to dh_kubuntu_l10n_* for use in the package
kubuntu-patched-l10n which processes other packages so it needs to force
a check regardless of any preconditions the scripts would usually expect.
- KUBUNTU_L10N_FORCE_RUN - Forces a run of the pot creation.
- KUBUNTU_L10N_NO_DESKTOP - Skips desktop file portion.
Desktop file changes are not supported through kubuntu-patched-l10n so
processing them could lead to unintended results.
* If preconditions are met, create the sources on all architectures.
Otherwise we can run into funny results when a desktop file is in an
arch: any package and then ends up without ubuntu domain key on amd64.
-- Harald Sitter <apachelogger@kubuntu.org> Wed, 13 Mar 2013 14:49:03 +0100
pkg-kde-tools (0.15.3ubuntu5) raring; urgency=low
* dhmk related l10n fixes. dhmk expects sequence introduced binarys to be
a name rather than a path, in particular making it a path will make dhmk
fall over its on stupidity and fail to generate pseudo-targets thus causing
FTBFS
* Rename kubuntu-debhelper-*.sh to dh_kubuntu_l10n_*
* Restructure kubuntu/ dir to contain subdirectories bin/ and lib/
+ Change .install to install bin/* to usr/bin and lib/* to usr/lib/kubuntu-l10n
+ Scripts from upstream are now in lib/libexec (due to their rather random
names they ought not be in usr/bin)
+ dh_kubuntu scripts add libexec to their PATH to pick up the upstream
tooling
* Remove kubuntu.mk used in dhmk1 and cdbs. Those build systems are now
unsupported as far as l10n goes. All packages that want l10n need to use
either dhmk2 or the debhelper kde sequence or the debhelper kubuntu-l10n
sequence.
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 12 Mar 2013 13:22:15 +0100
pkg-kde-tools (0.15.3ubuntu4) raring; urgency=low
* Re-add createdesktopcontext.pl to sync (needed for Kubuntu specific stuff
to build a pot of desktop files).
* Include kubuntu/debhelper/finddesktopfiles.sh which is a simpler version
of the previously used findfiles from upstream. In particular it only
runs a find for all known desktopfile-like file endings and writes
those to a file to be picked bup createdesktopcontext.pl later.
* Convert kdesdk-script sync to use git (recently moved there)
* Make git based sync use proper git with a shallow single-branch clone of
the respective release tag (as fast as possible, also as reliable as
possible).
* Drop sync note about findfiles script which is no longer present
* Drop the SVNREV variable in rules as we either sync from a git tag or
SVN's stable branch now.
* Set path in i18n scripts to avoid having to define the absolute path
(resolving the absolute path of $script and using that would be even
neater).
* Abort langpack helper execution iff not building for archive or it was
not explicitly enabled. Previously it would not build when not building
for archive or not targetting main. As now most of Kubuntu is in universe
and we do not use launchpad for upstream software all packages that need
launchpad translations need to explicitly opt-in by adding
'X-Ubuntu-Use-Langpack: yes' to their control file. Since mangling for
Kubuntu only makes sense in an archive context this restriction remains.
* Drop auto-l10n from kde dh buildsystem and move it to the sequence instead.
* Sync l10n scripts from upstream.
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 11 Mar 2013 19:44:11 +0100
pkg-kde-tools (0.15.3ubuntu3) raring; urgency=low
* qt-kde-team/2/lintian.mk: Generate a temporary .changes file for the
lintian check as the final one is generated later.
-- Philip Muškovac <yofel@kubuntu.org> Thu, 28 Feb 2013 14:13:44 +0100
pkg-kde-tools (0.15.3ubuntu2) raring; urgency=low
* Add support to show lintian warnings during build:
- debian/control: Add dependency on lintian
- qt-kde-team/2/debian-qt-kde.mk: run lintian after the binary target
- qt-kde-team/2/lintian.mk: print lintian output with markers to make
script parsing easier.
-- Philip Muškovac <yofel@kubuntu.org> Sat, 02 Feb 2013 14:25:42 +0100
pkg-kde-tools (0.15.3ubuntu1) raring; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- add perlib/Debian/Debhelper/lzma.pm and xz.pm
- perlib/Debian/Debhelper/kde.pm: include xz squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
- qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
- qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output for script parsing
* Remove incorrect Vcs lines in debian/control
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 15 Nov 2012 15:57:25 +0000
pkg-kde-tools (0.15.3) unstable; urgency=low
* Reupload without cruft.
-- Modestas Vainius <modax@debian.org> Wed, 22 Aug 2012 22:52:24 +0300
pkg-kde-tools (0.15.2ubuntu1) quantal; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- add perlib/Debian/Debhelper/lzma.pm and xz.pm
- perlib/Debian/Debhelper/kde.pm: include xz squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
* qt-kde-team/2/debian-qt-kde.mk: don't pass -Zxz to dh_builddeb as we
already do that in the kde debhelper addon
* qt-kde-team/2/debian-qt-kde.mk: run list-missing after the binary target
* qt-kde-team/2/list-missing.mk: print marker before and after list-missing
output
-- Felix Geyer <debfx@ubuntu.com> Sat, 11 Aug 2012 17:52:53 +0200
pkg-kde-tools (0.15.2) unstable; urgency=low
* Enable xz compression for Debian Qt/KDE team packages by default.
(Closes: #657243) Thanks to Ansgar Burchardt for the patch.
-- Modestas Vainius <modax@debian.org> Mon, 06 Aug 2012 01:58:43 +0300
pkg-kde-tools (0.15.1) unstable; urgency=low
* Team upload.
[ Pino Toscano ]
* Extend the workaround for cmake bug #653916 also to CFLAGS.
[ Modestas Vainius ]
* pkgkde-getbuildlogs: support gzip Content-Encoding.
-- Modestas Vainius <modax@debian.org> Sat, 30 Jun 2012 13:56:16 +0300
pkg-kde-tools (0.15.0ubuntu1) quantal; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
* Add "xz" debhelper addons that compresses packages using the XZ algorithm.
* Make the kde debhelper addon use xz instad of lzma.
* Enable xz compression on all architectures.
-- Felix Geyer <debfx@ubuntu.com> Fri, 08 Jun 2012 12:49:58 +0200
pkg-kde-tools (0.15.0) unstable; urgency=low
* Team upload.
[ Modestas Vainius ]
* Bump Standards-Version to 3.9.3: no changes needed.
* Install pkgkde-git as an alias for pkgkde-vcs with VCS type forced to git.
* Implement pkgkde-git clone and update-config subcommands.
* Make variables.mk respect LDFLAGS from environment. Thanks to Simon
Ruderich for the patch. (Closes: #669183)
* pkgkde-symbolshelper: output covariant return trunks with c++ tag since the
symbol name contains an arch-specific offset. (Closes: #657806)
[ José Manuel Santamaría Lema ]
* Add a workaround for cmake bug #653916 (cmake ignores CPPFLAGS) in
qt-kde-team/2/dhmk.mk.
-- Modestas Vainius <modax@debian.org> Sat, 02 Jun 2012 21:45:25 +0300
pkg-kde-tools (0.14.4) unstable; urgency=low
* Team upload.
[ Pino Toscano ]
* pkgkde-symbolshelper: fix the size_t, ssize_t, int64_t, uint64_t,
qptrdiff, quintptr expansions on sparc64 and ppc64. (Closes: #656380)
-- Modestas Vainius <modax@debian.org> Mon, 21 May 2012 19:36:08 +0300
pkg-kde-tools (0.14.3ubuntu1) quantal; urgency=low
* Merge with Debian git snapshot, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
* debian/rules: add rules to sync l10n
* Run syncl10n.
* Drop code that sets KUBUNTU_DESKTOP_POT which isn't used anymore.
-- Felix Geyer <debfx@ubuntu.com> Mon, 30 Apr 2012 19:18:02 +0200
pkg-kde-tools (0.14.3) unstable; urgency=low
[ Modestas Vainius ]
* SymbolFileCollection.pm: import Dpkg::Arch::debarch_is into proper package.
[ José Manuel Santamaría Lema ]
* Add check-not-installed target.
[ Pino Toscano ]
* pkgkde-symbolshelper: fix the int64_t and uint64_t expansions on s390x.
-- Modestas Vainius <modax@debian.org> Mon, 26 Dec 2011 13:03:43 +0200
pkg-kde-tools (0.14.2ubuntu5) precise; urgency=low
* Update kubuntu-debhelper-langpack-generate.sh to not fail when no
.pot files are generated
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 12 Apr 2012 09:42:28 +0100
pkg-kde-tools (0.14.2ubuntu4) precise; urgency=low
* In kubuntu-debhelper-langpack-clean.sh fix syntax on variable name
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 11 Apr 2012 14:44:08 +0100
pkg-kde-tools (0.14.2ubuntu3) precise; urgency=low
* Add calls to kubuntu i18n scripts back to
perllib/Debian/Debhelper/Buildsystem/kde.pm, makefiles/1/cdbs/kde.mk and qt-kde-team/1/debian-qt-kde.mk,
needed for .pot generation
* Add back kubuntu.mk, debhelper/kubuntu.mk and debhelper/ scripts to to .pot generation
* Add to pkg-kde-tools.install
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 11 Apr 2012 13:50:01 +0100
pkg-kde-tools (0.14.2ubuntu2) precise; urgency=low
* Mark pkg-kde-tools Multi-Arch: foreign.
-- Steve Langasek <steve.langasek@ubuntu.com> Tue, 08 Nov 2011 10:27:37 -0800
pkg-kde-tools (0.14.2ubuntu1) precise; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/install: install kubuntu/ files
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
compress packages with LZMA
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm:
add ppc64 support
-- Felix Geyer <debfx-pkg@fobos.de> Sat, 15 Oct 2011 15:18:25 +0200
pkg-kde-tools (0.14.2) unstable; urgency=low
* Export buildflags in dhmk.mk.
-- Modestas Vainius <modax@debian.org> Mon, 18 Jul 2011 22:55:25 +0300
pkg-kde-tools (0.14.1ubuntu2) oneiric; urgency=low
* Stop stripping translations from desktop files as per discussion on
kubuntu-devel mailing list.
- Keep desktop-template-list for compatibility with current kde-l10n
packages.
- Keep /usr/bin scripts for now. We should look into moving them back to
kdesdk-scripts next cycle.
-- Felix Geyer <debfx-pkg@fobos.de> Wed, 14 Sep 2011 21:22:09 +0200
pkg-kde-tools (0.14.1ubuntu1) oneiric; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- debian/control: add python to build-dependencies
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perllib/Debian/PkgKde/SymbolsHelper/Substs/TypeSubst.pm:
add ppc64 support
* Run syncl10n and merge findfiles from KDE 4.7.
* Clean package after running syncl10n.
-- Felix Geyer <debfx-pkg@fobos.de> Wed, 13 Jul 2011 13:31:44 +0200
pkg-kde-tools (0.14.1) unstable; urgency=low
* pkgkde-symbolshelper: no longer replace substs in the symbol name unless
the symbol is tagged with a 'subst' tag. This was kept for compatibility
with << 0.6 symbol files.
* Drop overriden_command alias from dhmk.mk. Most packages should have
already been transitioned to correct spelling.
* pkgkde-symbolshelper: drop VirtTable subst which was deprecated long ago.
-- Modestas Vainius <modax@debian.org> Thu, 23 Jun 2011 11:17:39 +0300
pkg-kde-tools (0.14.0ubuntu2) oneiric; urgency=low
* When processing .desktop files add the X-Ubuntu-Gettext-Domain key to the
[Desktop Entry] group instead of always appending it to the end of the
file. (LP: #794320)
-- Felix Geyer <debfx-pkg@fobos.de> Sat, 11 Jun 2011 01:03:07 +0200
pkg-kde-tools (0.14.0ubuntu1) oneiric; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- debian/control: add python to build-dependencies
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma squences
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perllib/Debian/PkgKde/SymbolsHelper/Substs/{TypeSubst,VirtTable}.pm:
add ppc64 support
-- Felix Geyer <debfx-pkg@fobos.de> Fri, 27 May 2011 18:32:24 +0200
pkg-kde-tools (0.14.0) unstable; urgency=low
* Do not use Debian "branded" names in DLRestrictions (like e.g.
debian_dlrestrictions special symbol).
* pkgkde-symbolshelper: expand qreal subst to float on sh4. (Closes: #627486)
* DLRestrictions: hide dlr_are_symbol_objects_compatible() symbol.
* DLRestrictions: rework and cleanup error functions. Export new APIs.
* DLRestrictions: improve library compatibility checking APIs and export more
functions.
* Add symbol file for libdlrestrictions1.
* Version libdlrestrictions.so.1 symbols (--default-symver).
* Do a basic DLRestrictions test at build time.
* Improve DLRestrictions performance and fix a couple of bugs.
-- Modestas Vainius <modax@debian.org> Thu, 26 May 2011 00:25:41 +0300
pkg-kde-tools (0.13.1) experimental; urgency=low
* Fix sections libdlrestrictions1 and libdlrestrictions-dev (libs and
libdevel respectively).
* Bump Standards-Version to 3.9.2: no changes needed.
* Relicense DLRestrictions under less troublesome LGPLv2.1.
* While installing, preserve source permissions of files in cmake, makefiles,
qt-kde-team and some other directories. This solves unexecutable scripts
problem.
-- Modestas Vainius <modax@debian.org> Tue, 24 May 2011 12:28:48 +0300
pkg-kde-tools (0.13.0) experimental; urgency=low
* pkgkde-vcs tag: allow 'stable' in the changelog distribution field.
* Implement CMake based build system for the package.
* Add DLRestrictions library. Check descriptions of new binary packages
(namely libdlrestrictions1 and libdlrestrictions-dev) for more information.
* Beginings of unit test implementation for the DLRestrictions library. They
do not work yet though.
* Ship verbatim texts of the GPL-3 (COPYING.GPL-3), GPL-2 (COPYING.GPL-2) and
LGPL-3 (COPYING.LGPL-3) licenses in the source package.
* Bump packaging copyright years in debian/copyright.
-- Modestas Vainius <modax@debian.org> Tue, 24 May 2011 03:49:14 +0300
pkg-kde-tools (0.12.1ubuntu3) oneiric; urgency=low
* Drop scour as it has proven to cause bugs (see #786192).
Packages that are known to work fine can still directly use the scour
sequence.
-- Felix Geyer <debfx-pkg@fobos.de> Thu, 26 May 2011 19:05:40 +0200
pkg-kde-tools (0.12.1ubuntu2) oneiric; urgency=low
* Depend on python-rsvg and python-cairo so that dh_scour can do the
correctness test.
-- Felix Geyer <debfx-pkg@fobos.de> Sun, 08 May 2011 19:43:28 +0200
pkg-kde-tools (0.12.1ubuntu1) oneiric; urgency=low
* Merge with Debian unstable, remaining changes:
- qt-kde-team/1/debian-qt-kde.mk: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- debian/control: add python to build-dependencies
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm: include lzma and scour squences
+ add python and python-scour to Depends
- qt-kde-team/{1,2}/policy.mk: remove maintainer checking
- perllib/Debian/PkgKde/SymbolsHelper/Substs/{TypeSubst,VirtTable}.pm:
add ppc64 support
* lzma.pm: Use dpkg_architecture_value() instead of relying on the
DEB_HOST_ARCH env variable.
-- Felix Geyer <debfx-pkg@fobos.de> Thu, 05 May 2011 16:18:06 +0200
pkg-kde-tools (0.12.1) unstable; urgency=low
* pkgkde-getbuildlogs: fix fetching of last logs.
* pkgkde-getbuildlogs: assume logs are in UTF-8. Fixes perl warning.
-- Modestas Vainius <modax@debian.org> Mon, 02 May 2011 00:36:31 +0300
pkg-kde-tools (0.12.0) unstable; urgency=low
* Implement and add DebianABIManager. Refer to
/usr/share/doc/pkg-kde-tools/README.DebianABIManager for more information.
* Since kdelibs5-dev 4.6.1, ENABLE_LIBKDEINIT_RUNPATH defaults to ON whenever
CMAKE_BUILD_TYPE is Debian.
* Fix a typo in qt-kde-team/2/library-packages.mk: makes
libpkgs_addsubst_allLibraries work.
* qt-kde-team/2/debian-qt-kde.mk: attach debian/stamp-man-pages properly.
dh_auto_build is executed when build* targets are run, not binary*.
* Rename 'overriden_command' to 'overridden_command' (which is correct
spelling). But keep 'overriden_command' as an alias for now.
* Switch debian/rules engine to home-grown dhmk. This might help to
detect regressions and might ease testing and development process.
* qt-kde-team/2/library-packages.mk: libpkgs_gen_strict_local_shlibs no
longer depends on the presence of the respective DEBIAN/*/shlibs.
* Fix dh examples in README.Debian to be dh compat=8 compatible.
-- Modestas Vainius <modax@debian.org> Wed, 27 Apr 2011 11:58:46 +0300
pkg-kde-tools (0.11.4) unstable; urgency=low
* qt-kde-team/1: set old kde4 flags before including variables.mk hence some
hacks (like DEB_CONFIG_INSTALL_DIR stuff) will work as before.
(Closes: #618200)
-- Modestas Vainius <modax@debian.org> Fri, 25 Mar 2011 23:42:22 +0200
pkg-kde-tools (0.11.3) unstable; urgency=low
* "Innocent" backtick in the echo statement causes packages to FTBFS. Fix it.
* Some tweaks to qt-kde-team/2/list-missing.mk.
-- Modestas Vainius <modax@debian.org> Sun, 13 Mar 2011 21:40:03 +0200
pkg-kde-tools (0.11.2) unstable; urgency=low
* Add support for list-missing target to qt-kde-team/2/*.
* Minor language tweaks to the echos/comments in dhmk.mk.
-- Modestas Vainius <modax@debian.org> Sun, 13 Mar 2011 17:05:43 +0200
pkg-kde-tools (0.11.1) unstable; urgency=low
* Move most of kde4_flags to qt-kde-team/1/debian-qt-kde.mk as absolute
majority of them are kde4libs specific anyway. This is done in order to
avoid cmake 2.8.4 warnings about unused variables and unnecessary
duplication of configuration.
-- Modestas Vainius <modax@debian.org> Fri, 11 Mar 2011 20:25:23 +0200
pkg-kde-tools (0.11.0) unstable; urgency=low
* dhmk.mk: add a shortcut variable $(overriden_command) for getting full
original command line of the overriden command in the override targets.
* Some bug fixes and performance improvements for the whole qt-kde-team/2
debian/rules build engine.
* It's highly recommended for qt-kde-team/2/debian-qt-kde.mk based packages
to build-depend on pkg-kde-tools 0.11 now.
-- Modestas Vainius <modax@debian.org> Fri, 11 Mar 2011 03:18:56 +0200
pkg-kde-tools (0.10.0) unstable; urgency=low
* Implement a new build debian/rules build engine (dubbed dhmk) for Qt/KDE
team packages. See qt-kde-team/2/README for more information.
-- Modestas Vainius <modax@debian.org> Wed, 09 Mar 2011 15:44:39 +0200
pkg-kde-tools (0.9.5) unstable; urgency=low
* Make pkgkde-getbuildlogs work with new infrastructure on
https://buildd.debian.org.
-- Modestas Vainius <modax@debian.org> Sun, 20 Feb 2011 19:23:20 +0200
pkg-kde-tools (0.9.4) unstable; urgency=low
* Bump Standards-Verstion to 3.9.1: no changes needed.
* Fix "dpkg: * has bad syntax: invalid character in revision number" error
which debhelper kde buildsystem used to spit (it wasn't fatal though).
* Use perl API in place of dpkg --compare-versions (kde buildsystem).
* Add lintian override for "capitalization-error-in-description kde KDE".
-- Modestas Vainius <modax@debian.org> Sun, 20 Feb 2011 12:46:01 +0200
pkg-kde-tools (0.9.3ubuntu10) natty; urgency=low
* Re-enable Scour as python-scour has dropped the problematic dependencies.
-- Felix Geyer <debfx-pkg@fobos.de> Sun, 20 Mar 2011 19:13:09 +0100
pkg-kde-tools (0.9.3ubuntu9) natty; urgency=low
* Temporarily comment out Scour in perllib/Debian/Debhelper/Sequence/kde.pm
and drop python-scour from depends due to powerpc breakage
-- Scott Kitterman <scott@kitterman.com> Sat, 19 Mar 2011 17:32:23 -0400
pkg-kde-tools (0.9.3ubuntu8) natty; urgency=low
* Revert last upload now that gcc4.5 is fixed
-- Scott Kitterman <scott@kitterman.com> Sun, 13 Mar 2011 11:52:16 -0400
pkg-kde-tools (0.9.3ubuntu7) natty; urgency=low
* Force gcc-4.4 on ARM while we are waiting for a gcc-4.5 fix to segfault
in a Qt inline function, see #705689.
Respectively changed files:
- 1/debian-qt-kde.mk
- cdbs/kde.mk
- Sequence/lzma.pm
-- Harald Sitter <apachelogger@ubuntu.com> Thu, 03 Mar 2011 21:07:04 +0100
pkg-kde-tools (0.9.3ubuntu6) natty; urgency=low
* Add ppc64 support.
-- Colin Watson <cjwatson@ubuntu.com> Wed, 16 Feb 2011 21:40:31 +0000
pkg-kde-tools (0.9.3ubuntu5) natty; urgency=low
* Revert the last upload. -mimplicit-it=thumb on armel no longer works and
there will be a proper IT patch for qt4-x11 shortly
-- Scott Kitterman <scott@kitterman.com> Mon, 15 Nov 2010 09:12:55 -0500
pkg-kde-tools (0.9.3ubuntu4) natty; urgency=low
* Add CXXFLAGS += -Wa,-mimplicit-it=thumb on armel to work around
lack of native Thumb2 support in qt4-x11 to qt-kde-team/1/debian-qt-kde.mk
and makefiles/1/cdbs/kde.mk
-- Scott Kitterman <scott@kitterman.com> Sat, 13 Nov 2010 17:11:01 -0500
pkg-kde-tools (0.9.3ubuntu3) natty; urgency=low
* Add depends on python-scour
-- Jonathan Riddell <jriddell@ubuntu.com> Sat, 06 Nov 2010 13:42:46 +0000
pkg-kde-tools (0.9.3ubuntu2) natty; urgency=low
* In kde.pm run with scour Debhelper
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 05 Nov 2010 16:28:20 +0000
pkg-kde-tools (0.9.3ubuntu1) natty; urgency=low
* Merge with Debian unstable, remaining changes:
- datalib/kde4_flags: distribution text = "Kubuntu packages"
- debian/rules: add rules to sync l10n
- debian/install: install kubuntu/ files
- debian/control: add python to build-dependencies
- makefiles/1/cdbs, qt-kde-team/1/debian-qt-kde.mk:
add "include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk" and compress
packages with LZMA
- perlib/Debian/Debhelper/Buildsystem: add sub clean and sub install
for i18n
- add perlib/Debian/Debhelper/lzma.pm
- perlib/Debian/Debhelper/kde.pm:
add require Debian::Debhelper::Sequence::lzma
- qt-kde-team/1/policy.mk: remove maintainer checking
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Fri, 15 Oct 2010 01:51:17 +0200
pkg-kde-tools (0.9.3) unstable; urgency=low
* Use a new tag message style in `pkgkde-vcs tag`:
<version> <distribution>; urgency=<urgency>
-- Modestas Vainius <modax@debian.org> Sun, 25 Jul 2010 02:02:54 +0300
pkg-kde-tools (0.9.2ubuntu15) maverick; urgency=low
* qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Sun, 12 Sep 2010 21:58:12 +0200
pkg-kde-tools (0.9.2ubuntu14) maverick; urgency=low
* Revert -u to -- change from previous uploaded.
Caues issues with arguments to dpkg-deb somehow.
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 17 Aug 2010 01:02:50 +0200
pkg-kde-tools (0.9.2ubuntu13) maverick; urgency=low
* Prevent tests from failing by using require instead of use, since use
invokes require inside a block there is a bit of a scope mess it seems
* Update lzma.pm to attach -- -Zlzma rather than -u -Zlzma to dh_builddeb,
-u is considered deprecate
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 16 Aug 2010 20:20:37 +0200
pkg-kde-tools (0.9.2ubuntu12) maverick; urgency=low
* Add lzma sequence to debhelper
+ This enables Qt-only packages to simply build with "--with lzma" if
they use dh
* Use that new sequence in the KDE one
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 16 Aug 2010 17:02:58 +0200
pkg-kde-tools (0.9.2ubuntu11) maverick; urgency=low
* In both kubuntu.mk files set KUBUNTU_DESKTOP_POT at makefile scope to
avoid running into shell scope issues causing desktop_.pot files.
* Set DEB_BUILD_ARCH manually in the CDBS kubuntu.mk too to ensure that it
is set when the pot hook gets executed.
-- Harald Sitter <apachelogger@ubuntu.com> Wed, 04 Aug 2010 16:24:30 +0200
pkg-kde-tools (0.9.2ubuntu10) maverick; urgency=low
* Update the README.l10n with information about syncl10n and the fact that
there is a need to sync with KDE every once in a while.
* Add descriptions to the variables in debian/rules to make it more obvious
what to do.
* Syncl10n + merge findfiles (with a no-change for us but necessary to keep
the relation to KDE's file more obvious)
-- Harald Sitter <apachelogger@ubuntu.com> Sun, 01 Aug 2010 14:04:22 +0200
pkg-kde-tools (0.9.2ubuntu9) maverick; urgency=low
* Trying to repair the logic of the l10n restriction to i386.
The gettext domain does still needs to be added and removed, regardless
of the architecture, but the actual template creation only ought to
happen on i386.
Due to increasingly more complex code this is indeed likely to break things
OTOH the restriction as seen in ubuntu7&8 are breaking translations on
everything but i386.
-- Harald Sitter <apachelogger@ubuntu.com> Fri, 30 Jul 2010 22:03:10 +0200
pkg-kde-tools (0.9.2ubuntu8) maverick; urgency=low
* Slightly adjust the syntax for DEB_NO_COMPRESSION to avoid warnings.
-- Harald Sitter <apachelogger@ubuntu.com> Fri, 30 Jul 2010 11:53:49 +0200
pkg-kde-tools (0.9.2ubuntu7) maverick; urgency=low
* Restrict l10n to i386 - This is the final stage, l10n magic will only
happen for proper archive builds targetting main or restricted on i386.
* Add support for DEB_NO_COMPRESSION, in combiniation with DEB_NO_LZMA
this enables builds without any deb compression whatsoever.
(Note: former only works if latter is also set to 1!)
-- Harald Sitter <apachelogger@ubuntu.com> Fri, 30 Jul 2010 00:09:15 +0200
pkg-kde-tools (0.9.2ubuntu6) maverick; urgency=low
* Add kdevelop to kubuntu/desktop-template-list
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 26 Jul 2010 18:23:51 +0100
pkg-kde-tools (0.9.2ubuntu5) maverick; urgency=low
* Add choqok in desktop-template-list
* Add rekonq in desktop-template-list
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 26 Jul 2010 18:07:37 +0100
pkg-kde-tools (0.9.2ubuntu4) maverick; urgency=low
* Fix kubuntu-debhelper-langpack-clean.sh, remove excessive dollar
sign
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 26 Jul 2010 17:41:06 +0100
pkg-kde-tools (0.9.2ubuntu3) maverick; urgency=low
* Add kubuntu/README.l10n explaining when l10n is built and when not.
* Fix l10n for dh7 builds, as broken in the previous upload
* Enhance l10n restrictions to main|restricted builds
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 13 Jul 2010 20:49:54 +0200
pkg-kde-tools (0.9.2ubuntu2) maverick; urgency=low
* Only set the Ubuntu-Gettext when we do a build for the regular Ubuntu
archives. This is determined by looking for /CurrentlyBuilding as created
by the buildd's. Only if this file contains Purpose: Primary the domains
will be set appropriately. Please note that no POT creation will happen
if this check fails.
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 22 Jun 2010 20:42:24 +0200
pkg-kde-tools (0.9.2ubuntu1) maverick; urgency=low
* Merge with Debian unstable, remaining changes:
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- cdbs/kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
- Add kubuntu-debhelper-langpack-generate.sh and clean scripts and call
them in kde.pm for .pot generation in pure Debhelper 7 packages
- Add python in dependencies
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Sat, 19 Jun 2010 02:08:52 +0200
pkg-kde-tools (0.9.2) unstable; urgency=medium
* Add libdpkg-perl (>= 1.15.6~) to Build-Depends. Needed for symbolshelper
syntax checks.
* Add support for DEB_KDE_LINK_WITH_NO_UNDEFINED (defaults to
DEB_KDE_LINK_WITH_AS_NEEDED value) to variables.mk.
-- Modestas Vainius <modax@debian.org> Sat, 12 Jun 2010 11:30:50 +0300
pkg-kde-tools (0.9.1ubuntu1) maverick; urgency=low
* Merge with Debian unstable, remaining changes:
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- cdbs/kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
- Add kubuntu-debhelper-langpack-generate.sh and clean scripts and call
them in kde.pm for .pot generation in pure Debhelper 7 packages
- Add python in dependencies
- Add libdpkg-perl (>= 1.15.6~) in build-depends to pass tests
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Fri, 04 Jun 2010 04:40:14 +0200
pkg-kde-tools (0.9.1) unstable; urgency=low
* pkgkde-getbuildlogs: load HTTP::Request & friends in the INIT block in
order to pass syntax check without libwww-perl installed (Closes: #584375).
-- Modestas Vainius <modax@debian.org> Fri, 04 Jun 2010 01:04:28 +0300
pkg-kde-tools (0.9.0) unstable; urgency=low
* Drop deprecated `pkgkde-symbolshelper symbolfile` support from
cdbs/symbolshelper.mk.
* qt-kde-team/1/debian-qt-kde.mk: enable quilt patchsystem only if
quilt is in Build-Depends. This adds support for 3.0 (quilt) source format.
* Switch HTML_INSTALL_DIR from /usr/share/doc/kde4/HTML to
/usr/share/doc/kde/HTML, add NEWS entry about this important change which
may trigger FTBFSes in the third party packages.
* debian-qt-kde.mk: replace usr/share/doc/kde4 references with
usr/share/doc/kde.
-- Modestas Vainius <modax@debian.org> Tue, 01 Jun 2010 01:05:57 +0300
pkg-kde-tools (0.8.0ubuntu2) maverick; urgency=low
* Use the new dpkg-perl api in dh_sameversiondep as the required dpkg
version is in the archive.
* Add libwww-perl to build-deps and re-enable the tests.
* Add python to the dependencies as it is required by the msgsplit script.
* Add shebang line to kubuntu-debhelper-langpack-generate.sh and
kubuntu-debhelper-langpack-clean.sh.
* Remove executable flags from all files that don't need it.
-- Felix Geyer <debfx-pkg@fobos.de> Sat, 22 May 2010 17:06:39 +0200
pkg-kde-tools (0.8.0ubuntu1) maverick; urgency=low
* Merge with Debian unstable remaining changes:
- Use /usr/share/doc/kde/HTML for docs
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include quilt only if there are patches
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- cdbs/kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
- Change docs path to /usr/share/doc/kde/ not /usr/share/doc/kde4/ in
debian-qt-kde.mk rules
- Add kubuntu-debhelper-langpack-generate.sh and clean scripts and call
them in kde.pm for .pot generation in pure Debhelper 7 packages
- Disable tests as a temporary workaround against FTBFS
* Use old dpkg-perl api for dh_sameversiondep since we don't have a newer
dpkg yet. Once it's uploaded this delta should be instantly dropped.
* Bump down the dpkg build-depends and breaks versions fof the above.
-- Jonathan Thomas <echidnaman@kubuntu.org> Sat, 15 May 2010 15:05:32 -0400
pkg-kde-tools (0.8.0) unstable; urgency=low
* pkgkde-symbolshelper: disable symbol file backups by default.
* pkgkde-symbolshelper: do not bump symbol minimum version when the only
change made is detection of substs in the original symbol.
* Add run-local wrapper for easy execution of scripts directly from the
source package.
* Add support for perl tests under t/*.t subdirectory to Makefile.
* Add t/perl_syntax_check.t for checking syntax of the perl scripts in
the package.
* pkgkde-symbolshelper: drop symbolfile and postgensymbols subcommands
that were deprecated long ago.
* Bump major version number due to removal of deprecated options (and
possible introduction of FTBFSes for packages which still use them).
-- Modestas Vainius <modax@debian.org> Fri, 14 May 2010 23:13:52 +0300
pkg-kde-tools (0.7.3) unstable; urgency=low
* pkgkde-gensymbols: add vim modeline.
* pkgkde-gensymbols: no longer check dpkg version. It is 1) pointless now
as pkg-kde-tools depends on the appropriate libdpkg-perl version and 2)
the check is inaccurate for our needs as it checks the version of the dpkg
binary rather than dpkg-dev package.
-- Modestas Vainius <modax@debian.org> Thu, 29 Apr 2010 00:03:14 +0300
pkg-kde-tools (0.7.2) unstable; urgency=low
* pkgkde-gensymbols: exclude self when looking for dpkg-gensymbols in PATH.
This should fix endless loop when do()ing system dpkg-gensymbols.
-- Modestas Vainius <modax@debian.org> Fri, 23 Apr 2010 00:09:52 +0300
pkg-kde-tools (0.7.1) unstable; urgency=low
* Remove workaround introduced in 0.7.0.1: no longer needed.
* pkgkde-symbolshelper: allow to specify confirmed arches for *patch.
* Depend on libdpkg-perl (>= 1.15.6~), recommend dpkg-dev of the same
version and break earlier dpkg-dev versions.
* No longer ship a backported dpkg-gensymbols.pl script. The one from
dpkg-dev (>= 1.15.6) is enough now. As a result, make appropriate changes
to pkgkde-gensymbols.
* Drop dpkg-dev 1.15.4 compatibility code from dh_sameversiondep.
* Make dh_sameversiondep work with libdpkg-perl (>= 1.15.6) (Dpkg::Substvars
API changed). Thanks to Roderich Schupp for the patch (Closes: #577056).
* No longer ship stable (v1.0) libdpkg-perl interfaces in pkg-kde-tools.
Therefore, rm -rf datalib/Dpkg/Compression* datalib/Dpkg/Interface.
-- Modestas Vainius <modax@debian.org> Thu, 22 Apr 2010 10:57:29 +0300
pkg-kde-tools (0.7.0.1) experimental; urgency=low
* Remove perl from pkg-kde-tools Depends to workaround (and use to our own
advantage) brokeness in experimental buildds.
-- Modestas Vainius <modax@debian.org> Thu, 08 Apr 2010 13:41:29 +0300
pkg-kde-tools (0.7.0) unstable; urgency=low
* `pkgkde-symbolshelper *`: properly handle the case when some substs have
been detected but symbols differences still remain (rare variant of
"possible incomplete subst detection"). libakonadi-kde4 in kdepimlibs was
hit by this bug.
* Add a new tool `pkgkde-getbuildlogs` that can be used to get
build logs from https://buildd.debian.org for the specified package.
* Move kde4_flags to /usr/share/pkg-kde-tools/lib subdir.
* `pkgkde-symbolshelper *patch`: properly assign version that was chosen in
the prompt.
* Completely drop makefiles/1/debhelper/kde.mk. It was deprecated in 0.5.
* Improve pkg-kde-tools package description. Now it contains short
descriptions of all tools the package provides.
* Reword dh_sameversiondep manual page a bit.
* Recommend libwww-perl.
* Reorganize source package directory structure:
- get rid of symbolshelper, debhelper, vcs subdirectires. Move perl modules
to perllib subdirectory and the rest to the top of the source tree;
- unify how datalibdir is found and exported in the Debian::PkgKde module
({find,setup}_datalibdir()). Make pkgkde-gensymbols and
pkgkde-symbolshelper use these new subroutines;
- change datalib path in pkgkde-deb2symbols;
- rewrite Makefile for reorganized source tree.
* Update debian/copyright.
-- Modestas Vainius <modax@debian.org> Tue, 16 Mar 2010 02:58:34 +0200
pkg-kde-tools (0.6.8) unstable; urgency=low
* Add dh_sodeps helper program for autogenering dependencies for library
development packages based on the targets *.so symlinks point to.
* Add dh addon "sodeps" for dh_sodeps.
-- Modestas Vainius <modax@debian.org> Wed, 03 Mar 2010 04:27:52 +0200
pkg-kde-tools (0.6.7) unstable; urgency=low
* Instruct cdbs to handle DEB_BUILD_OPTIONS=parallel for team packages rather
than rely on dpkg-buildpackage -jN to mess with MAKEFLAGS. Team packages
are parallel safe.
-- Modestas Vainius <modax@debian.org> Tue, 02 Mar 2010 13:20:03 +0200
pkg-kde-tools (0.6.6) unstable; urgency=low
* pkgkde-{symbolshelper,gensymbols}: compatibility fix for dpkg-dev 1.15.6
retaining compatibility with 1.15.5 as well (Dpkg::IPC::spawn).
* Use new Dpkg::IPC::spawn() rather than Dpkg::IPC::fork_and_exec() in the
code.
* Update code stolen from dpkg-dev to current git master.
* pkgkde-deb2symbols: be quiet when dumping symbol file.
* `pkgkde-symbolshelper batchpatch`: improve error messages.
* Fix patch parsing when patches go one right after another.
* `pkgkde-symbolshelper rewrite`: understand -v again.
* Add pkgkde-override-sc-dev-latest command.
-- Modestas Vainius <modax@debian.org> Sun, 28 Feb 2010 20:56:33 +0200
pkg-kde-tools (0.6.5) unstable; urgency=low
* pkgkde-debs2symbols: remove 0 size patch files.
* `pkgkde-symbolshelper batchpatch`: if no packages explicitly specified,
select only those for which patches exist.
* Move RPATH "workaround" code for <= KDE 4.3.x from makefiles/1/cdbs/kde.mk
to makefiles/1/variables.mk hence debian-qt-kde.mk will also use it.
-- Modestas Vainius <modax@debian.org> Wed, 17 Feb 2010 21:51:40 +0200
pkg-kde-tools (0.6.4ubuntu5) lucid; urgency=low
* Make dh7 only do pot creation/cleanup on packages other than *-l10n-*
* Update SVNREV in debian/rules to that of KDE 4.4.2
+ Instead of using the tag date, use the precise revision!
* Sync l10n scripts with 4.4.2
-- Harald Sitter <apachelogger@ubuntu.com> Fri, 02 Apr 2010 08:30:17 +0200
pkg-kde-tools (0.6.4ubuntu4) lucid; urgency=low
* Add syncing of l10n scritps with KDE SVN to debian/rules (syncl10n)
+ this can be invoked via make -f debian/rules syncl10n
+ sync scripts, to fix POT creation (LP: #529483)
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 01 Mar 2010 15:21:23 +0100
pkg-kde-tools (0.6.4ubuntu3) lucid; urgency=low
* Manually merge kubuntu/findfiles + introduce merge history in the file
* Import current kubuntu/msgsplit from KDE SVN
* Import current kubuntu/extract-messages.sh from KDE SVN
-- Harald Sitter <apachelogger@ubuntu.com> Tue, 23 Feb 2010 15:14:33 +0100
pkg-kde-tools (0.6.4ubuntu2) lucid; urgency=low
* Also use LZMA compression for dh7 builds
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 22 Feb 2010 13:47:11 +0100
pkg-kde-tools (0.6.4ubuntu1) lucid; urgency=low
* Merge with Debian unstable remaining changes:
- Use /usr/share/doc/kde/HTML for docs
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include quilt only if there are patches
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- debhelper/kde.mk: include debhelper/kubuntu.mk
- kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
- Change docs path to /usr/share/doc/kde/ not /usr/share/doc/kde4/ in
debian-qt-kde.mk rules
- Add kubuntu-debhelper-langpack-generate.sh and clean scripts and call
them in kde.pm for .pot generation in pure Debhelper 7 packages
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Wed, 17 Feb 2010 01:21:28 +0100
pkg-kde-tools (0.6.4) unstable; urgency=low
* Add -q option to pkgkde-gensymbols. -c0 will never fail but still generate
a diff. Use -c0 -q to keep pkgkde-gensymbols completely quiet as before.
* `pkgkde-symbolshelper create`: make it work with a single input symbol
file.
* `pkgkde-symbolshelper rewrite`: avoid dupe c++ aliases after convert in
some cases.
-- Modestas Vainius <modax@debian.org> Tue, 16 Feb 2010 02:53:40 +0200
pkg-kde-tools (0.6.3) unstable; urgency=low
* pkgkde-debs2symbols: allow to specify deb directory (-d option) and
symbol file directory (-s option).
* pkgkde-symbolshelper: implement `batchpatch` subcommand which is capable of
patching multiple packages at once (provided current working directory is
the top of the debian source package tree with symbol files in standard
locations).
* `pkgkde-symbolshelper patch`: rename --base|b option to --file-to-patch|f.
* pkgkde-symbolshelper: implement --backup option (backs up outfile).
-- Modestas Vainius <modax@debian.org> Sun, 14 Feb 2010 21:47:06 +0200
pkg-kde-tools (0.6.2) unstable; urgency=low
* Implement dh_movelibkdeinit debhelper program which moves libkdeinit4_*.so
from public /usr/lib to private /usr/lib/kde4/libkdeinit if RUNPATHs are
set properly.
* Add dh_movelibkdeinit helper to debhelper kde addon sequence, CDBS kde.mk
and debian-qt-kde.mk.
* Pass new LIBKDEINIT_INSTALL_DIR and ENABLE_LIBKDEINIT_RUNPATH options to
cmake by default (CDBS kde.mk and debhelper kde buildsystem).
* No longer globally skip RPATH handling in cmake if kdelibs5-dev is 4:4.4.0
or higher. kde4libs build system has been properly fixed in 4:4.4.0-1.
* Omit usr/lib/kde4/ from dh_makeshlibs by default (debian-qt-kde.mk, kde.mk,
dh kde addon).
* dh kde addon: exclude kde documentation from dh_compress by default.
* Add qt-kde-team/1/library-packages.mk which is capable of:
- generating and handling ${allLibraries}, ${kde43Libraries} substs;
- generating strict local shlibs.
* Improve README.Debian information about dh kde addon.
* Make dh kde addon return truth value.
* Compress pkg-kde-tools tarball with bzip2 by default.
-- Modestas Vainius <modax@debian.org> Sat, 13 Feb 2010 19:36:56 +0200
pkg-kde-tools (0.6.1) unstable; urgency=low
* Rework detection of arch specific symbols. This should fix some bugs
with arch symbol tag processing and generation.
* Now `pkgkde-symbolshelper create` bases its template on the arch specific
symbol file (as specified with -a option). This alters arch tag generation
a bit (negative arches are used more frequently than before).
* Alter behaviour of -o option:
- if it is not specified, output is dumped to the same file as input was
read from;
- if it is specified without argument, dump to stdout;
- if it is specified with argument, dump to the file in argument.
* pkgkde-symbolshelper create/patch: arch specific files/patches are passed
via @ARGV now.
* pkgkde-symbolshelper create/patch: prompt for version if -v is not
specified on the command line. Good defaults are also suggested.
-- Modestas Vainius <modax@debian.org> Sat, 06 Feb 2010 23:43:07 +0200
pkg-kde-tools (0.6.0) unstable; urgency=low
* "SymbolsHelper Reloaded" release.
* Remove DMUA field from debian/control which was added for me.
* Provide newer dpkg-gensymbols as pkgkde-gensymbols.
* Make it possible to replace dpkg-gensymbols with pkgkde-gensymbols
(by adding /usr/share/pkg-kde-tools/bin to $PATH).
* Use my @debian.org address in the Uploaders field.
* Helpers for adding /usr/share/pkg-kde-tools/bin to $PATH:
- implement this in cdbs/symbolshelper.mk;
- new pkgkde_symbolshelper dh addon takes care of this for dh(1).
* Port pkgkde-symbolshelper to the latest dpkg-dev symbols API.
Most subcomands as of 0.4.0 are supported, some are no longer needed.
* Add support for substitutions directly to pkgkde-gensymbols
(dpkg-gensymbols wrapper). This renders `pkgkde-symbolshelper symbolfile`
obsolete.
* Switch to 3.0 (native) format: ignores VCS directories by default.
* Update my address in the code copyright notices.
* Update debian/copyright.
* Add pkgkde-debs2symbols utility which is capable of:
- auto-downloading library binary packages for all available architectures;
- creating raw arch-specific symbol files based on the contents of the
binary packages. Those symbol files can be later fed to
`pkgkde-symbolshelper create`;
- generating arch-specific dpkg-gensymbols diffs between the reference
symbol file template and actual contents of the (later) binary packages.
Like build logs, those patches can be later fed to `pkgkde-symbolshelper
patch`.
* Add multi-arch/multi-patch support to `pkgkde-symbolshelper patch`. Now, it
is capable of patching symbol file template for multiple arches (using
multiple patches) at the same time. All revelevant information is
kept/merged, arch tags are managed automatically whenever possible.
Incremental patching is also supported.
* Add support for detection/expansion of the qprtdiff and quintptr substs (Qt
types).
* Promote dpkg-dev to Recommends, bump needed version to 1.15.5~.
* Remove dpkg-dev from Breaks.
* Update Standards-Version to 3.8.4: no changes needed.
* Fix lintian "I: hyphen-used-as-minus-sign
usr/share/man/man1/pkgkde-vcs.1.gz:97"
-- Modestas Vainius <modax@debian.org> Mon, 01 Feb 2010 20:09:10 +0200
pkg-kde-tools (0.5.3ubuntu2) lucid; urgency=low
* When generating .desktop translation templates do not include
.pc directory made by Quilt
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 06 Jan 2010 17:29:26 +0000
pkg-kde-tools (0.5.3ubuntu1) lucid; urgency=low
* Merge with Debian testing, remaining changes:
- Use /usr/share/doc/kde/HTML for docs
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install (dh_sameversiondeps removed now, unused)
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include quilt only if there are patches
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- debhelper/kde.mk: include debhelper/kubuntu.mk
- kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
- Change docs path to /usr/share/doc/kde/ not /usr/share/doc/kde4/ in
debian-qt-kde.mk rules
* Add kubuntu-debhelper-langpack-generate.sh and clean scripts and call
them in kde.pm for .pot generation in pure Debhelper 7 packages
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 06 Jan 2010 17:10:58 +0000
pkg-kde-tools (0.5.3) unstable; urgency=low
* Add support for dpkg-dev 1.15.5 to dh_sameversiondep.
-- Modestas Vainius <modestas@vainius.eu> Wed, 18 Nov 2009 02:31:00 +0200
pkg-kde-tools (0.5.2ubuntu2) lucid; urgency=low
* Change docs path to /usr/share/doc/kde/ not /usr/share/doc/kde4/ in
debian-qt-kde.mk rules
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 12 Nov 2009 11:47:21 +0000
pkg-kde-tools (0.5.2ubuntu1) lucid; urgency=low
* Merge with Debian unstable, remaining changes:
- Use /usr/share/doc/kde/HTML for docs
- Set -DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- Add kubuntu/ files and edit debian/install (dh_sameversiondeps removed now, unused)
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include quilt only if there are patches
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
- cdbs/kde.mk: include kubuntu.mk
- debhelper/kde.mk: include debhelper/kubuntu.mk
* kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
* qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 04 Nov 2009 14:33:59 +0000
pkg-kde-tools (0.5.2) unstable; urgency=low
* Add pkgkde-vcs helper tool for performing various common tasks
when packaging with version control system repositories. As of this commit
the only VCS supported is Git which supports 'tag' subcommand for tagging
debian package releases when as they are uploaded Debian.
* Add ${misc:Depends} to shut up lintian.
-- Modestas Vainius <modestas@vainius.eu> Fri, 16 Oct 2009 23:25:33 +0300
pkg-kde-tools (0.5.1) unstable; urgency=low
+++ Changes by Modestas Vainius:
* dh_sameversiondep: really disable warnings about unknown substvars.
+++ Changes by Ana Beatriz Guerrero Lopez:
* Change the generation of the HTML documentation's path to
/usr/share/doc/kde4/ instead of /usr/share/doc/kde/. We are building with
-DHTML_INSTALL_DIR=/usr/share/doc/kde4/HTML .
* Bump Standards-Version to 3.8.3: no changes needed.
* Add © in copyright file instead of (C).
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Wed, 23 Sep 2009 10:14:30 +0200
pkg-kde-tools (0.5.0) unstable; urgency=low
* Split off KDE 4 cmake flags from variables.mk to the text file.
* Create debhelper subdir and move dh_sameversiondep to it.
* Add a kde build system for debhelper (>= 7.3).
* Add a kde sequence addon (template) for debhelper (>= 7.3.16).
* Deprecate debhelper/kde.mk snippet. Use kde build system/sequence addon
instead.
* Remove extra slashes from debian/install.
* Switch debian/rules to dh. Update build dependencies and compat
accordingly.
-- Modestas Vainius <modestas@vainius.eu> Thu, 27 Aug 2009 19:50:35 +0300
pkg-kde-tools (0.4.11ubuntu7) karmic; urgency=low
* Also add dh_clean to override
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Aug 2009 17:12:59 +0100
pkg-kde-tools (0.4.11ubuntu6) karmic; urgency=low
* Re-add dh_installdocs back to override rule
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 25 Aug 2009 17:06:11 +0100
pkg-kde-tools (0.4.11ubuntu5) karmic; urgency=low
* Improvements to kubuntu/debhelper/kubuntu.mk from Fathi Boudra
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 24 Aug 2009 18:14:39 +0100
pkg-kde-tools (0.4.11ubuntu4) karmic; urgency=low
* Add kubuntu/debhelper/kubuntu.mk
* Make makefiles/1/debhelper/kde.mk include it
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 24 Aug 2009 13:26:13 +0100
pkg-kde-tools (0.4.11ubuntu3) karmic; urgency=low
* Add include /usr/lib/kubuntu-desktop-i18n/kubuntu.mk to
makefiles/1/debhelper/kde.mk
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Tue, 18 Aug 2009 06:59:33 +0200
pkg-kde-tools (0.4.11ubuntu2) karmic; urgency=low
* qt-kde-team/1/policy.mk: remove maintainer checking to fix FTBS when
maintainer is not Debian qt-kde team
-- Alessandro Ghersi <alessandro-ghersi@kubuntu.org> Mon, 17 Aug 2009 00:25:43 +0200
pkg-kde-tools (0.4.11ubuntu1) karmic; urgency=low
* Test build in Karmic PPA
* Drop Kubuntu's disabled cdbs/symbolshelper.mk as dpkg 1.15 is in karmic
* Merge from debian unstable, remaining changes:
- Add scripts for i18n in kubuntu/ directory
- variables.mk: /usr/share/doc/kde/HTML for docs path, Kubuntu packages
- kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include kubuntu.mk
- debian-qt-kde.mk: include quilt only if there are patches
- debian-qt-kde.mk: use LZMA compression unless DEB_NO_LZMA=1 or armel
-- Luka Renko <lure@ubuntu.com> Fri, 14 Aug 2009 08:09:03 +0200
pkg-kde-tools (0.4.11) unstable; urgency=low
* Debhelper 7.3.7 has been upload to unstable, pkg-kde-tools with
debhelper/kde.mk follows.
-- Modestas Vainius <modestas@vainius.eu> Fri, 24 Jul 2009 15:17:47 +0300
pkg-kde-tools (0.4.10) experimental; urgency=low
* Add a basic debhelper/kde.mk snippet which automatically passes KDE cmake
flags to dh_auto_configure and runs dh $@ by default. Either of defaults
can be overriden as needed.
* Update debian/README.Debian with details about dh(1) support.
* Bump Standards-Version to 3.8.2: no changes needed.
* Suggest debhelper (>= 7.3.0) which includes dh(1) with cmake support.
-- Modestas Vainius <modestas@vainius.eu> Thu, 02 Jul 2009 20:12:07 +0300
pkg-kde-tools (0.4.9) unstable; urgency=low
[ Modestas Vainius ]
* Clarify comment in variables.mk.
* Install severily stripped down version of pkgkde-symbolshelper which
is compatible with dpkg-dev >= 1.15.3. This version is inappropriate
to generate/patch new symbols, it is here just to avoid breaking
old packages. While dpkg-dev 1.15.3 has some big improvements, they
are still not enough to properly support most C++ libraries.
[ Raúl Sánchez Siles ]
* Remove usage of deprecated dh_desktop.
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Sat, 27 Jun 2009 22:32:11 +0300
pkg-kde-tools (0.4.8) unstable; urgency=low
* Add maintainer check to debian_qt_kde.mk to disallow anybody else but
Debian Qt/KDE Maintainers to use this snippet (i.e. for official KDE
packages only). The check is supposed to support Kubuntu packages too.
-- Modestas Vainius <modestas@vainius.eu> Wed, 27 May 2009 13:42:22 +0300
pkg-kde-tools (0.4.7) unstable; urgency=low
+++ Changes by Modestas Vainius:
* dpkg 1.15.1 entered unstable, so pkg-kde-tools 0.4.7 follows.
* Change Conflicts to Breaks on dpkg-dev/kdelibs5 (more apppropriate in
this case).
+++ Changes by Fathi Boudra:
* Re-word README.Debian:
- use 80 colons max
- add a note on DEB_KDE_LINK_AS_NEEDED usage
- improve debhelper snippet based on dh-make template
- fix typo kde4.mk -> kde.mk
- remove extra lines
-- Debian Qt/KDE Maintainers <debian-qt-kde@lists.debian.org> Thu, 21 May 2009 09:14:44 +0300
pkg-kde-tools (0.4.6ubuntu11) karmic; urgency=low
* Do not compress using LZMA on armel
-- Harald Sitter <apachelogger@ubuntu.com> Wed, 29 Jul 2009 18:55:05 +0200
pkg-kde-tools (0.4.6ubuntu10) karmic; urgency=low
* Separate .pot generation into kubuntu.mk and include it in
kde.mk and debian-qt-kde.mk
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 29 Jul 2009 15:57:57 +0100
pkg-kde-tools (0.4.6ubuntu9) karmic; urgency=low
* Add playground-base to desktop-template-list for knetworkmanager
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 27 Jul 2009 17:31:34 +0100
pkg-kde-tools (0.4.6ubuntu8) karmic; urgency=low
* Really add extract-xml.sh to pot creation
-- Harald Sitter <apachelogger@ubuntu.com> Sun, 26 Jul 2009 21:39:02 +0200
pkg-kde-tools (0.4.6ubuntu7) karmic; urgency=low
* Import extract-xml.sh from KDE SVN
* Add extract-xml.sh to the pot creation in kde.mk
-- Harald Sitter <apachelogger@ubuntu.com> Sun, 26 Jul 2009 21:36:05 +0200
pkg-kde-tools (0.4.6ubuntu6) karmic; urgency=low
* Compress packages with LZMA via DEB_DH_BUILDDEB_ARGS += -- -Zlzma if this
should cause any problems it is advisable to wrap it in some if $package =
$enabeled_packages. This can be deactivated by exporting DEB_NO_LZMA=1
-- Harald Sitter <apachelogger@ubuntu.com> Mon, 08 Jun 2009 19:18:13 +0200
pkg-kde-tools (0.4.6ubuntu5) karmic; urgency=low
* Add a KUBUNTU_NO_DELETE_POT variable for packages which moan if you delete their .pot file
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 06 May 2009 11:22:04 +0000
pkg-kde-tools (0.4.6ubuntu4) karmic; urgency=low
* Applied magic from cdbs' kde4.mk to qt-kde-team/1/debian-qt-kde.mk so it
doesn't insist on quilt being installed
-- Harald Sitter <apachelogger@ubuntu.com> Sat, 02 May 2009 16:29:11 +0200
pkg-kde-tools (0.4.6ubuntu3) karmic; urgency=low
* Change docs path to /usr/share/doc/kde/HTML, this makes KDE 3 docs readable
in the help centre
-- Jonathan Riddell <jriddell@ubuntu.com> Fri, 01 May 2009 15:20:48 +0000
pkg-kde-tools (0.4.6ubuntu2) karmic; urgency=low
* Don't call symbolshelper.mk from debian-qt-kde.mk and remove conflicts with
old dpkg
-- Jonathan Riddell <jriddell@ubuntu.com> Thu, 30 Apr 2009 14:42:54 +0000
pkg-kde-tools (0.4.6ubuntu1) karmic; urgency=low
* Merge with Debian, remaining changes:
- Add scripts for i18n in kubuntu/ directory
- Add i18n code to kde.mk and variables.mk
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 29 Apr 2009 16:25:44 +0100
pkg-kde-tools (0.4.6) experimental; urgency=low
* Merge changes from 0.4.2, now compatible with KDE 4.2.2 in sid.
* Improve output of the patch subcommand:
- it includes added MISSING symbols now;
- dump postprocessed symbols.
* Switch to named parameters for *_min_version() subs.
* Bump Standards-Version to 3.8.1 (no changes).
* Fix dh_sameversiondep POD page (lintian warning).
-- Modestas Vainius <modestas@vainius.eu> Sat, 11 Apr 2009 16:51:06 +0300
pkg-kde-tools (0.4.5) experimental; urgency=low
* Restore pkgkde-symbolshelper compatibility with dpkg-dev 1.15.0. This
breaks compatibility with dpkg-dev (<< 1.15) though. Add conflicts.
* Small dpkg-dev 1.15.0 compatibility fix for dh_sameversiondep.
-- Modestas Vainius <modestas@vainius.eu> Sun, 29 Mar 2009 15:26:12 +0300
pkg-kde-tools (0.4.2) unstable; urgency=low
* Remove setting of kde home. We now use the default.
* Add aggressive conflicts to avoid bad accidents.
-- Sune Vuorela <debian@pusling.com> Wed, 01 Apr 2009 22:23:23 +0200
pkg-kde-tools (0.4.1) unstable; urgency=low
* Add Vcs fields to debian/control (Git).
* Get rid of custom bug file processing in qt-kde-team/1/debian-qt-kde.mk.
This is handled by dh_bugfiles now.
-- Modestas Vainius <modestas@vainius.eu> Wed, 11 Mar 2009 13:57:19 +0200
pkg-kde-tools (0.4.0.1ubuntu4) jaunty; urgency=low
* Update extract-messages.sh
* Refine desktop-template-list
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 08 Apr 2009 17:49:24 +0100
pkg-kde-tools (0.4.0.1ubuntu3) jaunty; urgency=low
* Add playground-sysadmin (kpackagekit) to pkg-kde-tools
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 08 Apr 2009 01:28:50 +0100
pkg-kde-tools (0.4.0.1ubuntu2) jaunty; urgency=low
* Add desktop-template-list with the list of .desktop file translation
templates we need for packages in main. Used by kde-l10n-xx to refresh
it's translations from upstream.
-- Jonathan Riddell <jriddell@ubuntu.com> Tue, 07 Apr 2009 16:59:32 +0100
pkg-kde-tools (0.4.0.1ubuntu1) jaunty; urgency=low
* Merge from debian unstable, remaining changes:
- Add extractrc and extractattr from kdesdk-scripts
- Replace kdesdk-scripts (<< 4:4.1.80-0ubuntu2), previous versions contain
the same scripts.
- Add dh_sameversiondeps and i18n scripts from kdesdk-scripts into
kubuntu/ directory, stops circular dependency on kdesdk-scripts.
- DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
- DKDE_DEFAULT_HOME=.kde
- Add .pot generation to kde.mk for Launchpad
- Change debian-qt-kde.mk to just include the Kubuntu kde4.mk from CDBS so
KDE4 debian/rules from Debian will work in Kubuntu (Still need to look
at what of the debian-qt-kde.mk should get integrated into kde4.mk or if
Kubuntu should change to use debian-qt-kde.mk for Karmic and later)
-- Scott Kitterman <scott@kitterman.com> Mon, 02 Mar 2009 10:43:49 -0500
pkg-kde-tools (0.4.0.1) unstable; urgency=low
* Get rid of THIS_SHOULD_GO_TO_UNSTABLE hack.
* Release to unstable.
-- Modestas Vainius <modestas@vainius.eu> Mon, 16 Feb 2009 01:58:52 +0200
pkg-kde-tools (0.4.0) experimental; urgency=low
* pkgkde-symbolshelper: add support for resorting symbol files (useful after
manual editing).
* pkgkde-symbolshelper create: add support for adding arch specific symbols
to the symbol template.
* Add dh_sameversiondep from official KDE packaging:
- make pkg-kde-tools suggest debhelper v7 and dpkg-dev;
- add POD help and generate manual page from it;
- add support for the external reference package.
* Pass -X.svn to dh_install
* Add makefiles/1/cdbs/symbolshelper.mk which hooks pkgkde-symbolshelper
calls to cdbs.
* Add stuff from svn pkg-kde/cdbs as qt-kde-team. Port kde.mk and rename
it to debian-qt-kde.mk as it was called in kde3 when stored in cdbs/ dir.
- use /usr/share/pkg-kde-tools/makefiles/1/variables.mk;
- link with --as-needed by default;
- remove lintian section, we should use dh_lintian;
- add README to discourage other developers from using qt-kde-team;
- enable pkgkde-symbolshelper support in debian-qt-kde.mk by defaylt.
* Add "distro policy" checking when building the package:
- THIS_SHOULD_GO_TO_UNSTABLE moved policy/unstable.mk
- policy/unstable.mk also emits a warning when KDE alpha or betas are to
be uploaded to unstable.
-- Modestas Vainius <modestas@vainius.eu> Sun, 25 Jan 2009 13:20:43 +0200
pkg-kde-tools (0.3.1) experimental; urgency=low
* pkgkde-symbolshelper/patch: improve processing of patches which patch
multiple files. Use the first patch portion that applies properly.
* pkgkde-symbolshelper/patch: rename -p parameter to -d (diff), support -p
(package) option.
* pkgkde-symbolshelper: rework module stucture a bit, merge small handlers
into one file.
* debian/rules: disable .svn check. It is wrong and useless since does not
check the tarball itself but the directory the tarball gets built from.
* add support for int64_t/uint64_t differences on 64bit/32bit arches.
-- Modestas Vainius <modestas@vainius.eu> Wed, 14 Jan 2009 14:18:17 +0200
pkg-kde-tools (0.3) experimental; urgency=low
* Add pkgkde-symbolshelper. It aims to make handling of symbols in
C++ libraries easier. Symbols in C++ libraries are inconsistent among
arches due to mangling and other issues.
- Add GPL3 notice to debian/copyright which pkgkde-symbolshelper is under.
* Add myself to Uploaders.
* Tweak description.
* Add DM-Upload-Allowed: yes.
-- Modestas Vainius <modestas@vainius.eu> Sat, 29 Nov 2008 16:53:01 +0200
pkg-kde-tools (0.2ubuntu4) jaunty; urgency=low
* Add extractrc and extractattr from kdesdk-scripts
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 16 Feb 2009 16:20:11 +0000
pkg-kde-tools (0.2ubuntu3) jaunty; urgency=low
* Replace kdesdk-scripts (<< 4:4.1.80-0ubuntu2), previous versions contain
the same scripts.
-- Harald Sitter <apachelogger@ubuntu.com> Sat, 06 Dec 2008 18:42:27 +0100
pkg-kde-tools (0.2ubuntu2) jaunty; urgency=low
* Add dh_sameversiondeps and i18n scripts from kdesdk-scripts into
kubuntu/ directory, stops circular dependency on kdesdk-scripts.
-- Jonathan Riddell <jriddell@ubuntu.com> Mon, 17 Nov 2008 13:58:29 +0000
pkg-kde-tools (0.2ubuntu1) jaunty; urgency=low
* Initial Kubuntu upload
-DKDE_DISTRIBUTION_TEXT="Kubuntu packages"
-DKDE_DEFAULT_HOME=.kde
* Add .pot generation to kde.mk for Launchpad
-- Jonathan Riddell <jriddell@ubuntu.com> Wed, 05 Nov 2008 11:00:07 +0000
pkg-kde-tools (0.2) unstable; urgency=low
* The no .svn dir in release release.
* Add a way to set --as-needed during build.
* there was a reference to ENABLE_FINAL in variables.mk. Kill it.
-- Sune Vuorela <debian@pusling.com> Wed, 29 Oct 2008 17:35:13 +0100
pkg-kde-tools (0.1) unstable; urgency=low
* Initial Release.
-- Sune Vuorela <debian@pusling.com> Thu, 18 Sep 2008 21:39:35 +0200
|