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
|
libconfig-model-dpkg-perl (3.014) unstable; urgency=medium
* control: add dep on libconfig-inifiles-perl and remove
libconfig-ini-perl
-- Dominique Dumont <dod@debian.org> Thu, 10 Apr 2025 17:36:58 +0200
libconfig-model-dpkg-perl (3.013) unstable; urgency=medium
* control/binary model: Description fix now uses "Debian" instead
of "Debian GNU" (Closes: 1101401)
* copyright handler:
* Place Source field after Format field (Closes: 1101404)
* extract license and copyright from dist.ini files
* handle BOM in package.json
* handle broken package.json files (Closes: 1101989)
* handle broken Cargo.toml files (Closes: 1101988)
* docs(scan-copyright): add instruction to fill blank or skip files
* control:
* bump version on build-depends
* add new dep libconfig-ini-perl
* declare compliance with Debian policy 4.7.2
-- Dominique Dumont <dod@debian.org> Thu, 10 Apr 2025 15:57:24 +0200
libconfig-model-dpkg-perl (3.012) unstable; urgency=medium
* Fix bug when parsing Cargo.toml files (Closes: 1100660)
-- Dominique Dumont <dod@debian.org> Tue, 18 Mar 2025 11:34:27 +0100
libconfig-model-dpkg-perl (3.011) unstable; urgency=medium
* dpkg-copyright: handle deprecated package.json license entries.
Thanks to Walter for the bug report (Closes: #1100033)
* control model: XS-Ruby-Versions and XB-Ruby-Versions are deprecated.
Thanks to Praveen for the bug report (Closes: #1075762)
* add support for upstream/metadata (Closes: #966208)
-- Dominique Dumont <dod@debian.org> Fri, 14 Mar 2025 19:21:36 +0100
libconfig-model-dpkg-perl (3.010) unstable; urgency=medium
* Remove failing test, which is no longer needed (Closes: 1095114)
-- Dominique Dumont <dod@debian.org> Tue, 04 Feb 2025 09:41:34 +0100
libconfig-model-dpkg-perl (3.009) unstable; urgency=medium
* Grant/ByFile: avoid crash when get_has_files returns undef
(Closes: #1092950)
* scan-copyright: avoid duplicated log messages
-- Dominique Dumont <dod@debian.org> Sun, 19 Jan 2025 16:01:46 +0100
libconfig-model-dpkg-perl (3.008) unstable; urgency=medium
* fill copyright blanks: add forwared-comment parameter
* Grant/ByDir: write comment in generated debian/copyright file
* ByFile: fix crash when comments are specified in fill.copyrights.blank
-- Dominique Dumont <dod@debian.org> Sun, 05 Jan 2025 18:35:17 +0100
libconfig-model-dpkg-perl (3.007) unstable; urgency=medium
* Grant/ByDir: fix crash in corner case (Closes: #1091179)
-- Dominique Dumont <dod@debian.org> Mon, 23 Dec 2024 16:50:02 +0100
libconfig-model-dpkg-perl (3.006) unstable; urgency=medium
* new feature: add update-standards-version script
* cme copyright:
* fix unknown license filler
* warn if unversioned GFDL is used
* remove registered trade mark from owner
* grant: also cleanup copyright from fill.blank file
* grant: suppress warning when package.json has no author field
* Grant/ByFile: propagate comment found in fill.blanks
(Closes: #1085382)
* debian/control: declare compliance with Debian policy 4.7.0
* debian/control: depend on libconfig-model-perl 2.155
-- Dominique Dumont <dod@debian.org> Sat, 07 Dec 2024 17:18:14 +0100
libconfig-model-dpkg-perl (3.005) unstable; urgency=medium
* grant: change perl license to Artistic-1.0 or GPL-1+
* fix(dependencies): add loong64 and risv64 in list of permitted arch
(Closes: #1072334)
-- Dominique Dumont <dod@debian.org> Sat, 15 Jun 2024 16:55:45 +0200
libconfig-model-dpkg-perl (3.004) unstable; urgency=medium
[ Victor Westerhuis ]
* Add Architecture as allowed field in debian/tests/control
(Closes: #1063783)
[ Dominique Dumont ]
* add Victor Westerhuis in contributor list
* control: add autopkgtest-pkg-pybuild as a known auto test suites
(Closes: #1064001)
-- Dominique Dumont <dod@debian.org> Sun, 03 Mar 2024 17:37:08 +0100
libconfig-model-dpkg-perl (3.003) unstable; urgency=medium
* fix grant/by-dir test (Closes: #1061035)
-- Dominique Dumont <dod@debian.org> Wed, 17 Jan 2024 17:56:41 +0100
libconfig-model-dpkg-perl (3.002) unstable; urgency=medium
* fix tests broken by Software::Copyright 0.012
* control: build-dep on libsoftware-copyright-perl 0.012
-- Dominique Dumont <dod@debian.org> Thu, 28 Sep 2023 18:56:39 +0200
libconfig-model-dpkg-perl (3.001) unstable; urgency=medium
[ Dominique Dumont ]
* This new release features a major rewrite of Copyright Scanner and
Copyright update. As a result, the scanner algorithm was changed and
you may observe slightly different results in debian/copyright file.
(Closes: 1033406)
* Dropped "check" parameter from copyright-scan-patterns.yml file. Now all
files are parsed, excepts binary files. You still may specify file patterns
to exclude some files in debian/copyright-scan-patterns.yml.
* control:
* remove dependency on libdata-compare-perl
* add dependency on libsoftware-copyright-perl
* add build dependency on libtest-synopsis-expectation-perl
-- Dominique Dumont <dod@debian.org> Wed, 23 Aug 2023 16:06:45 +0200
libconfig-model-dpkg-perl (2.165) unstable; urgency=medium
* doc: fix fix.scanned.copyright file name (Closes: 1021772)
* Dpkg::Copyright: fix example to access File:* entry.
Thanks to Andreas Metzler for the bug report (Closes: 1021773)
* C::M::D::Dependency: fix test about @args size (Closes: 1023068)
* Scanner: fix code to find main license id
-- Dominique Dumont <dod@debian.org> Sat, 21 Jan 2023 19:25:38 +0100
libconfig-model-dpkg-perl (2.164) unstable; urgency=medium
* add support for package.docs files
-- Dominique Dumont <dod@debian.org> Thu, 08 Sep 2022 15:43:47 +0200
libconfig-model-dpkg-perl (2.163) unstable; urgency=medium
* fix autopkgtest: set Source value when needed.
Thanks to gregoa for the bug report (Closes: #1016670)
* fix (Dpkg::Dependency): add missing build profiles.
Thanks to Andreas for the bug report (Closes: #1016635)
* fix (Dpkg::Dependency): improve wrong build profile message
-- Dominique Dumont <dod@debian.org> Sat, 06 Aug 2022 18:46:22 +0200
libconfig-model-dpkg-perl (2.162) unstable; urgency=medium
* fix Lintian override broken by Config::Model 2.151
* Dpkg::Control model: allow <pkg.thing.whatever> in Build-Profiles.
Thanks to Victor Westerhuis for the bug report (Closes: 1015987)
* fix Source parameters (Closes: 1015913)
Thanks to Damyan Ivanov for the bug report
* fix (model): anchor Standards-Version match regexp with ^ and $
* Update doc in Dpkg::Control model
* Scanner: copy license info in README info when it's missing
* control: depends on libconfig-model-perl 2.151
-- Dominique Dumont <dod@debian.org> Wed, 27 Jul 2022 18:17:24 +0200
libconfig-model-dpkg-perl (2.161) unstable; urgency=medium
* Scanner: scan only the first 300 lines of each file
for copyright information (another solution for #1000179)
* update lintian-override help text
* fix "Please fill license" text written in debian/copyright
* Fix test error related to ISC license text (triggered by
libsoftware-license-perl 0.104002)
* control: declare compliance with policy 4.6.1
-- Dominique Dumont <dod@debian.org> Wed, 29 Jun 2022 18:28:46 +0200
libconfig-model-dpkg-perl (2.160) unstable; urgency=medium
* Scanner:
* fix missing white space in multi-line Copyright
* use licensecheck --lines 0 option (Closes: #1000179)
* avoid multiple file entries with same copyright
* Copyright merge part:
* fix order of merged copyright entries
* Remove license text when license is known
* doc: (hopefully) improve "examples" element description
* control: add dep in libdata-compare-perl
-- Dominique Dumont <dod@debian.org> Fri, 17 Jun 2022 18:49:47 +0200
libconfig-model-dpkg-perl (2.159) unstable; urgency=medium
* LicenseSpec model: drop dummy copyright holder
Thanks to Thorsten Alteholz for the heads up.
* copyright scanner: extract author from README.rakudoc
* control: depends on libsoftware-licensemoreutils-perl >= 1.009
-- Dominique Dumont <dod@debian.org> Sat, 04 Jun 2022 19:07:27 +0200
libconfig-model-dpkg-perl (2.158) unstable; urgency=medium
* fix fill.copyright.blanks.yml file name.
Thanks to Ross Vandegrift for the report (Closes: 1009023)
* Scanner: convert spdx license short names in Debian style
* Scanner: remove identical or'ed license short names
-- Dominique Dumont <dod@debian.org> Sun, 08 May 2022 17:18:59 +0200
libconfig-model-dpkg-perl (2.157) unstable; urgency=medium
* fix update-my-copyright-year script: do not duplicate current year.
Thanks to gregoa for the bug report (Closes: #1004206)
* fix update-my-copyright-year: avoid spurious change notification
* copyright: update my copyright year with cme in dogfooding mode
* control: update cme build dep version
-- Dominique Dumont <dod@debian.org> Sun, 06 Feb 2022 15:52:08 +0100
libconfig-model-dpkg-perl (2.156) unstable; urgency=medium
* fix "cme run update-my-copyright-year" script
-- Dominique Dumont <dod@debian.org> Fri, 21 Jan 2022 18:19:59 +0100
libconfig-model-dpkg-perl (2.155) unstable; urgency=medium
* Team upload.
* Fix autopkgtest failure.
Update new test t/cme-scripts.t to look for the cme scripts in different
places during build (i.e. within the source tree) and during autopkgtests
(i.e. against the installed package).
Thanks to ci.debian.net.
-- gregor herrmann <gregoa@debian.org> Mon, 17 Jan 2022 21:27:05 +0100
libconfig-model-dpkg-perl (2.154) unstable; urgency=medium
[ Anthony Fok ]
* source options: Fix typo in compression choice: 'gzip2' → 'bzip2'
[ Dominique Dumont ]
* update-my-copyright-year script: no longer limited to last year
* fix bump-dependency-version script: preserve <!nocheck>
* warn or fix about too old package relationship
* control: add BDI on cme and libapp-cmd-perl
* control: build dep on libconfig-model-perl 2.149
-- Dominique Dumont <dod@debian.org> Sat, 15 Jan 2022 17:38:55 +0100
libconfig-model-dpkg-perl (2.153) unstable; urgency=medium
[ gregor herrmann ]
* Add libcarp-assert-{,more-}perl to Build-Depends-Indep.
Needed by t/model_tests.d/dpkg-test-conf.pl, and previously pulled in by
another package.
[ Dominique Dumont ]
* Lintian checker: fix parsing of lintian tag (Closes: 996697)
* control: rm obsolete versioned dependency
* control: add dependency on libparse-debcontrol-perl
* lintian.t: test when many tags are replaced by one
-- Dominique Dumont <dod@debian.org> Sun, 17 Oct 2021 17:07:54 +0200
libconfig-model-dpkg-perl (2.152) unstable; urgency=medium
* License: fix crash related to 'and/or' statement
* Dependency: issue a warning when not using last debhelper version
(like lintian)
-- Dominique Dumont <dod@debian.org> Wed, 22 Sep 2021 18:14:39 +0200
libconfig-model-dpkg-perl (2.151) unstable; urgency=medium
* Team upload.
* Fix regexp for Standards-Version mangling in
Config::Model::Dpkg::Control::Source::StandardVersion and
t/model_tests.d/dpkg-control-test-conf.pl.
-- gregor herrmann <gregoa@debian.org> Sat, 11 Sep 2021 14:22:06 +0200
libconfig-model-dpkg-perl (2.150) unstable; urgency=medium
* Team upload.
[ gregor herrmann ]
* Adjust to lintian 2.105.0.
Use the new usr/share/lintian/private/latest-policy-version helper in
StandardVersion.pm and dpkg-control-test-conf.pl instead of the now
private Lintian:** perl modules.
Cf. #968000 (Note: We are not closing this bug as this is probably an
interim workaround until #968154 is fixed.)
* Bump the versioned test and runtime dependency on lintian.
[ Dominique Dumont ]
* Filter old packages coming from rmadison, so that cme can better
detect out of date versioned dependencies.
-- gregor herrmann <gregoa@debian.org> Thu, 09 Sep 2021 22:51:14 +0200
libconfig-model-dpkg-perl (2.149) unstable; urgency=medium
* control: add BD-I on libregexp-pattern-license-perl >= 3.9.3
(Closes: 992439)
-- Dominique Dumont <dod@debian.org> Sat, 04 Sep 2021 15:33:00 +0200
libconfig-model-dpkg-perl (2.148) unstable; urgency=medium
* Team upload.
* Sort test examples in t/scanner/scan-copyright.t in order to
investigate #992439.
-- gregor herrmann <gregoa@debian.org> Fri, 20 Aug 2021 02:50:29 +0200
libconfig-model-dpkg-perl (2.147) unstable; urgency=medium
* Team upload.
* Upload to unstable as the freeze is over.
* Adjust to newer licensecheck.
Bump versioned (test) dependency, and use new commandline options.
Thanks to Jonas Smedegaard for the bug report.
(Closes: #992253)
* Fix "Use of uninitialized value" warning in Dpkg::Copyright::Scanner's
print_copyright sub.
* Declare compliance with Debian Policy 4.6.0.
-- gregor herrmann <gregoa@debian.org> Thu, 19 Aug 2021 02:15:51 +0200
libconfig-model-dpkg-perl (2.146) experimental; urgency=medium
[ Walter Lozano ]
* Support "author" as object in package.json
* Add test based on package less.js
[ Dominique Dumont ]
* translated t/scanner/README in org-mode file
* update t/scanner/README.org
* add Walter Lozano as contributor (thanks !)
* fixed lot of style issues reported by perlcritic
* handles debian/<pkg>.examples files
-- Dominique Dumont <dod@debian.org> Sun, 06 Jun 2021 16:04:27 +0200
libconfig-model-dpkg-perl (2.145) experimental; urgency=medium
* test with lintian tag instead of pkg-perl tag
-- Dominique Dumont <dod@debian.org> Mon, 22 Mar 2021 14:09:56 +0100
libconfig-model-dpkg-perl (2.144) experimental; urgency=medium
* handle lintian override files. Obsolete tags can be updated with
"cme fix dpkg" command.
-- Dominique Dumont <dod@debian.org> Sun, 21 Mar 2021 19:27:36 +0100
libconfig-model-dpkg-perl (2.143) unstable; urgency=medium
* Team upload.
* Add a test for a calculated virtual package dh-sequence-something.
* Config::Model::Dpkg::Dependency: change handling of virtual packages.
Add a private method _is_virtual which returns true for known virtual
packages and also for established patterns (currently "dh-sequence-*"),
and use this method instead of checking only the known list.
Thanks to Dominique Dumont for proposing this approach.
(Closes: #971784)
-- gregor herrmann <gregoa@debian.org> Mon, 25 Jan 2021 18:34:01 +0100
libconfig-model-dpkg-perl (2.142) unstable; urgency=medium
[ Guillem Jover ]
* scanner: Switch from TOML to TOML::Tiny (Closes: #977892)
[ Dominique Dumont ]
* doc: add Guillem in contributor list
* feature (scanner): Extract info from NodeJS's package.json
* feature (scanner): handle copyright owner written in markdown
(Closes: 954248)
* feature (scanner): Extract info from Perl's META.yml
* feature (scanner): Extract info from Raku's META6.json
* fix (model): add trailing \n to default rules file
-- Dominique Dumont <dod@debian.org> Sun, 10 Jan 2021 19:39:53 +0100
libconfig-model-dpkg-perl (2.141) unstable; urgency=medium
* fix (scanner): no longer swap information from Config.toml
-- Dominique Dumont <dod@debian.org> Mon, 21 Dec 2020 15:19:14 +0100
libconfig-model-dpkg-perl (2.140) unstable; urgency=medium
[ gregor herrmann ]
* Update list of virtual packages. Cf. #971784
* Add 'needs-internet' to autpkgtest restrictions.
Thanks to Xavier Guimard for the bug report. (Closes: #971785)
[ Dominique Dumont ]
* copyright scanner: fix Dist::Zilla generated LICENSE file entry
* add Xavier Guimard (yadd) in contributor list (thanks !)
* fix (scanner): parse rust files (*.rs)
* feature (scanner): extract info from Config.toml.
Thanks to Andrej Shadura for the patch
* control: declare compliance with policy 4.5.1
* control: add dependency on libtoml-perl
-- Dominique Dumont <dod@debian.org> Wed, 16 Dec 2020 18:13:16 +0100
libconfig-model-dpkg-perl (2.139) unstable; urgency=medium
* Team upload.
[ Dominique Dumont ]
* warn (and fix) when install path begin with / see dh_install man page,
path in these files should be relative
* test fix of absolute install paths
[ gregor herrmann ]
* Replace '--with bash{_,-}completion' in debian/rules with a build
dependency on 'dh-sequence-bash-completion'.
* Update list of virtual packages.
* Drop libconfig-model-dpkg-perl.maintscript which was needed for
upgrades from versions before oldstable.
* lib/Config/Model/models/Dpkg.pl: add a newline to the embedded POD.
Fixes a pod2man glitch.
Thanks to lintian.
-- gregor herrmann <gregoa@debian.org> Sat, 05 Sep 2020 15:00:50 +0200
libconfig-model-dpkg-perl (2.138) unstable; urgency=medium
* Bug fixes:
* set default changelog version to 0.0.0.0-0
* white-list libkvm-dev virtual package
* fix handling of debian/install files. Now handle
[<package>.]install[.<arch>]
* update doc of install element
* fix handling of maintainer scripts. Now handle
[<package>.]<pre|post><inst|rm>[.<arch>]
* update Dpkg backend doc
* control: depends on libconfig-model-perl >= 2.140
-- Dominique Dumont <dod@debian.org> Fri, 31 Jul 2020 19:25:45 +0200
libconfig-model-dpkg-perl (2.137) unstable; urgency=medium
* use getcwd instead of $ENV{PWD} (Fixes FTBFS)
-- Dominique Dumont <dod@debian.org> Fri, 03 Jul 2020 12:18:52 +0200
libconfig-model-dpkg-perl (2.136) unstable; urgency=medium
* Team upload.
* Add build dependency on libtest-longstring-perl.
Thanks to Adrian Bunk for the bug report. (Closes: #964135)
* Bump debhelper-compat to 13.
* debian/rules: drop handling of $HOME.
debhelper 13 does this for us.
* Update lintian override.
lintian capitalizes field names now.
-- gregor herrmann <gregoa@debian.org> Thu, 02 Jul 2020 20:00:39 +0200
libconfig-model-dpkg-perl (2.135) unstable; urgency=medium
* dpkg-copyright: do not reformat imported license text
-- Dominique Dumont <dod@debian.org> Wed, 01 Jul 2020 19:09:13 +0200
libconfig-model-dpkg-perl (2.134) unstable; urgency=medium
[ gregor herrmann ]
* Update list of virtual packages in
lib/Config/Model/Dpkg/Dependency.pm.
* Add debhelper sequences to virtual package list in
lib/Config/Model/Dpkg/Dependency.pm.
[ Dominique Dumont ]
* DpkgSyntax: http://foo.com is not a key value pair...
* Patch:
* better preserve Subject or Description
* add a blank line between unstructured text and diff
* write file when fixing multi line Subject
-- Dominique Dumont <dod@debian.org> Sun, 07 Jun 2020 18:24:19 +0200
libconfig-model-dpkg-perl (2.133) unstable; urgency=medium
* Copyright: document that debian/* entries are kept during update
* Copyright: remove debian/ entries without matching file or dir
* Patch: concatenate Subject lines (Closes: 958746)
-- Dominique Dumont <dod@debian.org> Sat, 06 Jun 2020 15:38:29 +0200
libconfig-model-dpkg-perl (2.132) unstable; urgency=medium
* Team upload.
* Annotate test-only build dependencies with <!nocheck>.
* Config/Model/Dpkg/Control/Source/StandardVersion: adjust loading of
lintian profile after changes in Lintian::Profile.
* Adjust t/model_tests.d/dpkg-control-test-conf.pl to new
Lintian::Profile as well.
* Make build and runtime dependency on lintian versioned.
-- gregor herrmann <gregoa@debian.org> Wed, 18 Mar 2020 20:26:27 +0100
libconfig-model-dpkg-perl (2.131) unstable; urgency=medium
* control: depends on licensecheck >= 3.0.45
-- Dominique Dumont <dod@debian.org> Mon, 09 Mar 2020 19:11:19 +0100
libconfig-model-dpkg-perl (2.130) unstable; urgency=medium
* fix test broken by licensecheck fix (Closes: 952170)
-- Dominique Dumont <dod@debian.org> Wed, 26 Feb 2020 10:51:02 +0100
libconfig-model-dpkg-perl (2.129) unstable; urgency=medium
* Clarify C::M::Dpkg::Copyright doc.
Thanks to Ross Vandegrift for the doc update (Closes: 942756)
* Scanner: improve error messages
* Scanner: handle copyright like "2015, -present"
* FileLicense model: fix typo in user message
* control: declare compliance with policy 4.5.0
-- Dominique Dumont <dod@debian.org> Fri, 07 Feb 2020 15:30:30 +0100
libconfig-model-dpkg-perl (2.128) unstable; urgency=medium
[ Andrej Shadura ]
* Point prospective contributors to Salsa instead of Alioth
* Prevent some of the binary junk from being dumped into the output as is
(Closes: #946675)
[ Dominique Dumont ]
* add Andrej Shadura in contributor list
* Switch from YAML::Tiny to YAML::XS
* abort scan when licensecheck exits on error (Closes: #948471)
* update scanner doc
* skips binary graphic files when scanning for copyright
* allow licence combination with and/or (Thanks Jonas for the heads-up)
* issue a warning with and/or licence combination
* control: build require licensecheck
* control: depends on libyaml-libyaml-perl
-- Dominique Dumont <dod@debian.org> Tue, 21 Jan 2020 10:28:53 +0100
libconfig-model-dpkg-perl (2.127) unstable; urgency=medium
[ gregor herrmann ]
* Add perl-xs-dev to list of virtual packages.
[ Dominique Dumont ]
* 'cme fix dpkg' can now remove autotools and autoreconf dep
when debhelper >= 10
* fix debhelper compat only in Build dependencies, i.e. don't try
to fix runtime debhelper dependency
* control: put back runtime depends on plain debhelper (oh the irony)
* fix typo in Dpkg::Control::Source model
* C::M::Dependency:
* skip check when check param is 'no'
* fix typo in warning message
* control: declare compliance with policy 4.4.1
-- Dominique Dumont <dod@debian.org> Sun, 01 Dec 2019 18:46:33 +0100
libconfig-model-dpkg-perl (2.126) unstable; urgency=medium
* handle correctly section comments.
Thanks to Andreas Tille for the bug report (Closes: 933648)
* merge copyright info from README, LICENSE.. files.
Thanks to Pirate Praveen for the bug report (Closes: 929694)
* Do not list LICENSE and COPYING files as their license information
is stored in directory entries like foo/*. See
Dpkg::Copyright::Scanner doc for details
* update Dpkg::Copyright::Scanner doc about README and
LICENSE license scan
* control: depends on debhelper-compat (= 12)
-- Dominique Dumont <dod@debian.org> Thu, 05 Sep 2019 18:50:01 +0200
libconfig-model-dpkg-perl (2.125) unstable; urgency=medium
* Team upload.
* Add a dependency on debhelper which is used by
Config::Model::Dpkg::Dependency since ee144a0.
Thanks to autopkgtests.
* Add lintian override for adding a dependency on debhelper.
-- gregor herrmann <gregoa@debian.org> Sun, 28 Jul 2019 17:50:42 -0300
libconfig-model-dpkg-perl (2.124) unstable; urgency=medium
[ gregor herrmann ]
* debian/*: replace ADTTMP with AUTOPKGTEST_TMP.
[ Dominique Dumont ]
* no longer show confusing warning when old lintian is installed.
Thanks to Clément Hermann for the bug report (Closes: 932409)
* handle debhelper-compat dependency (Closes: 930118)
* better handle LICENSE and README files (See: 929694)
* do not retry to get info from madison for unknown package
* handle and/or license operator coming from licensecheck
* add new virtual package (added with policy 4.3.0)
* control:
* setup new debhelper-compat dependency with cme (dogfooding)
* add dependency on libsort-versions-perl
* comply with policy 4.4.0
-- Dominique Dumont <dod@debian.org> Thu, 25 Jul 2019 14:43:07 +0200
libconfig-model-dpkg-perl (2.123) experimental; urgency=medium
* Use XDG_CACHE_HOME to store dependency cache.
Thanks to Guillem Jover for the report (Closes: 899337)
* handle dependency list with leading commas.
Thanks to Xavier Guimard for the bug report (Closes: 923265)
-- Dominique Dumont <dod@debian.org> Mon, 04 Mar 2019 18:52:00 +0100
libconfig-model-dpkg-perl (2.122) unstable; urgency=medium
* Team upload.
[ Xavier Guimard ]
* tests-control: add superficial and skippable restrictions
(Closes: #922668)
[ gregor herrmann ]
* Config::Model::Dpkg::Dependency: add debhelper-compat to virtual
packages. (Closes: #922517)
* test-control: add more autopkgtest restrictions
(flaky, skip-not-installable, hint-testsuite-triggers), and add help
text for all new ones. Also update URL of autopkgtest specification.
-- gregor herrmann <gregoa@debian.org> Wed, 20 Feb 2019 19:19:22 +0100
libconfig-model-dpkg-perl (2.121) unstable; urgency=medium
* dual life dependency on perl modules are now deprecated.
When cme fix is run, the perl alternate of a dual dependency
is now removed.
* copyright: update copyright years
* control: remove dual dependencies (dogfooding)
-- Dominique Dumont <dod@debian.org> Thu, 31 Jan 2019 19:34:19 +0100
libconfig-model-dpkg-perl (2.120) unstable; urgency=medium
Bug fixes:
* cme update: better handle copyright data generated
by dh-make-perl
* remove arch qualifier when checking package on madison
(i.e. check for package perl and not perl:any)
Doc improvement for maintenance:
* add README file in t/scanner
* update instructions to add test cases
Tests updates:
* fix open-nebula-from-scratch test
* tests: fix warning about old standard-versions
(Closes: #917430)
* forbid calls to madison during tests
Other:
* bump compat to 12
* control: declare compliance with policy 4.3.0
-- Dominique Dumont <dod@debian.org> Sun, 30 Dec 2018 18:46:04 +0100
libconfig-model-dpkg-perl (2.119) unstable; urgency=medium
[ Laurent Baillet ]
* fix lintian file-contains-trailing-whitespace warning
[ Dominique Dumont ]
* control: add dep on libconfig-model-backend-yaml-perl
-- Dominique Dumont <dod@debian.org> Mon, 17 Dec 2018 18:58:50 +0100
libconfig-model-dpkg-perl (2.118) unstable; urgency=medium
* fix test that broke with Config::Model 2.130 (Closes: #916429)
* Standard-Version is now mandatory
* warn (and fix) when an old compat value (i.e. < current - 1) is found
-- Dominique Dumont <dod@debian.org> Fri, 14 Dec 2018 17:40:21 +0100
libconfig-model-dpkg-perl (2.117) unstable; urgency=medium
* don't crash when madison is down.
Thanks to Andreas Tille for the heads-up
* reduce verbosity when madison is down
* improve dependency error messages
* support arch qualifier in dependency (Closes: #911756)
* accept any dependency that contain a variable
(See also #911756)
-- Dominique Dumont <dod@debian.org> Wed, 07 Nov 2018 14:51:37 +0100
libconfig-model-dpkg-perl (2.116) unstable; urgency=medium
Many thanks to Cyrille Bollu for the work done on Dpkg model.
[ Cyrille Bollu ]
* Add support for Rules-Requires-Root field in debian/control file
(Closes: 907410)
[ Dominique Dumont ]
* add t/model_test.d/README.md file
* add debian/tests/pkg-perl/use-name file
* control: declare compliance with policy 4.2.1
* add Cyrille Bollu as contributor
-- Dominique Dumont <dod@debian.org> Fri, 14 Sep 2018 10:27:34 +0200
libconfig-model-dpkg-perl (2.115) unstable; urgency=medium
* allow X*-Ruby-Version with ruby packages not maintained
by Debian Ruby team.
Thanks to Andreas Tille for the idea (Closes: 903905)
-- Dominique Dumont <dod@debian.org> Fri, 20 Jul 2018 16:57:28 +0200
libconfig-model-dpkg-perl (2.114) unstable; urgency=medium
* Store my_config in ~/.config/config-model/dpkg-meta.yml.
dpkg-meta data from old locations (~/.dpkg-meta.yaml and
~/.local/share/.dpkg-meta.yml) are migrated and the old
files are removed. (Closes: 899337)
* Compute Standard-Version with Lintian::Data file.
Thanks to Andreas Tille for the idea (Closes: 903220)
* control: remove versioned dependency on
libsoftware-licensemoreutils-perl
-- Dominique Dumont <dod@debian.org> Sun, 15 Jul 2018 16:53:53 +0200
libconfig-model-dpkg-perl (2.113) unstable; urgency=medium
* Team upload.
* Declare compliance with Debian policy 4.1.5
* Set default Standards-Version to 4.1.5
* Set Rules-Requires-Root to no
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 07 Jul 2018 15:35:22 +0200
libconfig-model-dpkg-perl (2.112) unstable; urgency=medium
[ gregor herrmann ]
* Dpkg/Control/Source.pl: add default Vcs-* values for the R pkg team.
Thanks to Andreas Tille for the patch.
[ Dominique Dumont ]
* warn if Bug-Debian is just a bug number (with fix)
* add libqt5opengl5-desktop-dev in virtual pkg list
* remove doc about checking files read from STDIN
* control: depends on libsoftware-licensemoreutils-perl >= 0.005
instead of libsoftware-license-perl
-- Dominique Dumont <dod@debian.org> Sat, 30 Jun 2018 18:35:07 +0200
libconfig-model-dpkg-perl (2.111) unstable; urgency=medium
[ gregor herrmann ]
* Dpkg/Control/Source.pl: add default Vcs-* values for the Java team.
Thanks to Andreas Tille for the bug report. (Closes: #897401)
[ Dominique Dumont ]
* added t/README.md
* update link of warn message of Standards-Version
* update testsuite and Tests doc in dpkg model
* use file_path instead of deprecated io_handle (Closes: #897962)
Thanks to Niko for the bug report.
-- Dominique Dumont <dod@debian.org> Sun, 06 May 2018 10:47:16 +0200
libconfig-model-dpkg-perl (2.110) unstable; urgency=medium
[ Andreas Tille ]
* Vcs-fields for Neurodebian team
[ gregor herrmann ]
* Bump debhelper compatibility level to 10.
* debian/copyright: update a URL to the mailing list archive.
* Mark alioth-based Vcs-{Arch,Bzr,Cvs,Hg,Svn} as invalid and reset them.
* Add a test for the Neurodebian Vcs-* fixups.
Thanks to Andreas Tille for the initial patch.
* Test and fixups for Vcs-*: change from warn_unless to warn_if.
Thanks to dod for the proposal to make this more readable.
* Control/Source.pl: if $name and $email
[ Dominique Dumont ]
* use 'User' logger to warn about issues
* tests check for log using log4perl_load_warnings
* dpkg backend: place comment at start of line.
Thanks to Andreas Tille for the detailed bug report (Closes: #896156)
* control: BD-I on libconfig-model-tester-perl 3.006
-- Dominique Dumont <dod@debian.org> Mon, 30 Apr 2018 15:34:27 +0200
libconfig-model-dpkg-perl (2.109) unstable; urgency=medium
* control: depends on libconfig-model-perl >= 2.122 (Closes: #896076)
Thanks to Paul Gevers for reporting this issue.
-- Dominique Dumont <dod@debian.org> Thu, 19 Apr 2018 17:06:09 +0200
libconfig-model-dpkg-perl (2.108) unstable; urgency=medium
Many people contributed to this release, I like that :-)
Thank you all for your work
[ gregor herrmann ]
* Update Standards-Version to 4.1.4
* Add fixups for the Vcs-* fields for the Debian PhotoTools team.
* Bump debhelper compatibility level to 10.
* debian/copyright: update a URL to the mailing list archive.
* Add a test for the Neurodebian Vcs-* fixups.
Thanks to Andreas Tille for the initial patch.
[ Sebastiaan Couwenberg ]
* Add Vcs-* fixups for r-cran-* packages.
* Vcs-*: sort package name based checks before the maintainer based checks
[ Andreas Tille ]
* Vcs-fields for Neurodebian team
[ Dominique Dumont ]
* fix warning in bump-dep-version script (req cme 1.027)
* set debhelper dependency like >= 9~ (Closes: #894392)
* Fix call to Lintian to check debhelper relation
* show XS-Ruby-Versions when Maintainer is ruby team (Closes: #888949)
* fix dependency arch parser for s390x (Thanks Andreas for the heads-up)
* issue a warning instead of an error when Maintainer is empty
-- Dominique Dumont <dod@debian.org> Wed, 18 Apr 2018 18:00:17 +0200
libconfig-model-dpkg-perl (2.107) unstable; urgency=medium
[ gregor herrmann ]
* Use HTTPS in a couple of places, mostly for well-known Vcs-* values.
* Add fixups for Vcs-{Browser,Git} for Debian Med and Debian Science
teams.
* Change warning messages about Vcs-*: Don't mention Alioth (or Salsa).
* remove rules fixing anonscm url in Vcs-Git
[ Dominique Dumont ]
* remove rules fixing anonscm url in Vcs-Browser
-- Dominique Dumont <dod@debian.org> Mon, 02 Apr 2018 10:08:21 +0200
libconfig-model-dpkg-perl (2.106) unstable; urgency=medium
[ Dominique Dumont ]
* fix dependency list sort algorithm
* test wrap-and-sort like dependency list sort
* bump-dependency-version: pkg arg can now be a regexp
* add set-vcs-git script (cme run)
[ Salvatore Bonaccorso ]
* Update Vcs-* headers for switch to salsa.debian.org
[ gregor herrmann ]
* Update Vcs-* values for the Debian Perl Group.
* Allow m{^https://salsa.debian.org/} as canonical URLs
for Vcs-Browser and Vcs-Git. (Closes: #889732)
* Update Vcs-Git and Vcs-Browser URLs for ruby and
javascript teams.
-- Dominique Dumont <dod@debian.org> Mon, 05 Mar 2018 18:55:40 +0100
libconfig-model-dpkg-perl (2.105) unstable; urgency=medium
[ gregor herrmann ]
* Update Standards-Version to 4.1.2 for the package, the Dpkg model, and
the test suite.
[ Salvatore Bonaccorso ]
* Declare compliance with Debian policy 4.1.3
* Set default Standards-Version to 4.1.3
* Update Vcs-* headers for switch to salsa.debian.org
[ Dominique Dumont ]
* sort dependencies like wrap-and-sort
* update URL for policy upgrade checklist
* fix links to debian policy (Closes: #880607)
* add libuv-dev as non-official virtual package
* Test::Control Depends: @ is upstream_default
* control: depends on libconfig-model-perl >= 2.116
-- Dominique Dumont <dod@debian.org> Fri, 19 Jan 2018 21:11:12 +0100
libconfig-model-dpkg-perl (2.104) unstable; urgency=medium
* fix Autopkgtest to handle several stanzas
-- Dominique Dumont <dod@debian.org> Wed, 22 Nov 2017 20:13:32 +0100
libconfig-model-dpkg-perl (2.103) unstable; urgency=medium
* new feature: add support for Autopkgtest
* fix utf8 handling of debian/*.yml files (Closes: #880368)
* improve error message about missing license paragraph
* control:
* depends on libconfig-model-tester-perl >= 3.003
* depends on libconfig-model-perl >= 2.114
-- Dominique Dumont <dod@debian.org> Mon, 13 Nov 2017 13:38:07 +0100
libconfig-model-dpkg-perl (2.102) unstable; urgency=medium
* fix paste-license script
-- Dominique Dumont <dod@debian.org> Tue, 17 Oct 2017 13:05:58 +0200
libconfig-model-dpkg-perl (2.101) unstable; urgency=medium
[ gregor herrmann ]
* Bump (build) dependency on libconfig-model-perl to 2.112.
[ Dominique Dumont ]
* fix comment handling before Description (Closes: #877984)
* accept missing Testsuite parameter when debian/tests/control
files exists (Closes: #876856)
* Take also into account kfreebsd only packages (Closes: #875955)
* add paste-license script for cme run
* Warn when no useful info is found in madison
* control: depends on libconfig-model-perl >= 2.113
-- Dominique Dumont <dod@debian.org> Mon, 16 Oct 2017 13:09:05 +0200
libconfig-model-dpkg-perl (2.100) unstable; urgency=medium
[ gregor herrmann ]
* Accept autopkgtest-pkg-octave as a valid value for the Testsuite field.
Thanks to Sébastien Villemot for the bug report. (Closes: #876534)
[ Dominique Dumont ]
* all models: upgrade old style backend parameter to new style with
rw_config. This change was done with "cme meta save" using
Config::Model::Itself 2.012
* fix test failing with "Load command error"
Fix a long standing error which is now detected due to
Config::Model::Loader 2.111 changes.
* Dpkg backend: move Standards-Version before Priority
* keep Standards-Version in old place when writing control file
* replace Priority extra with optional (Closes: #871423)
only when Standards-Version >= 4.0.1
Requires Config::Model 2.112 to work correctly
* copyright: fix wrong warning about common BSD license (Tx Thomas)
* control: depends on libconfig-model-perl >= 2.112
[ Salvatore Bonaccorso ]
* Set default Standards-Version to 4.1.1
* Declare compliance with Debian policy 4.1.1
-- Dominique Dumont <dod@debian.org> Mon, 02 Oct 2017 19:27:16 +0200
libconfig-model-dpkg-perl (2.099) unstable; urgency=medium
[ Martín Ferrari ]
* Add support for autopkgtest-pkg-go and others.
[ Dominique Dumont ]
* test consecutive good and bad values for Testsuite
(thanks Tincho)
* update: skip debian changelog and copyright files
* scanner: improve cleanup of (c) from owner line
* scanner: use licensecheck --deb-fmt (Closes: #872350)
* scanner: remove obsolete cleanup of license data
* fix pack_copyright to handle multi line copyright statements
that may come from debian/copyright
-- Dominique Dumont <dod@debian.org> Fri, 15 Sep 2017 13:17:37 +0200
libconfig-model-dpkg-perl (2.098) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* Test debian/control files: Change priority field from extra to optional
* Make optional priority the default
[ Dominique Dumont ]
* improve versioned dep warning message
* cleanup old lower-than dependencies (Closes: #871422)
* improve dual dependency handling and << requirement
[ Salvatore Bonaccorso ]
* Set default Standards-Version to 4.1.0
* Declare compliance with Debian policy 4.1.0
-- Dominique Dumont <dod@debian.org> Tue, 22 Aug 2017 18:51:53 +0200
libconfig-model-dpkg-perl (2.097) unstable; urgency=medium
* Use "Artistic or GPL-1+" for Perl license
* fix error message when patch file is missing
* Remove filter parameter of dependency version check
* do not set Upstream-Name for native package
* add watch parameter in dpkg model
* control: depends on libconfig-model-perl >= 2.104
-- Dominique Dumont <dod@debian.org> Tue, 15 Aug 2017 10:42:15 +0200
libconfig-model-dpkg-perl (2.096) unstable; urgency=medium
[ Dominique Dumont ]
* Updated for Debian policy 4.0.0
* Dependency: updated virtual package list (thanks to
Paul Wise for spotting an error before release)
[ Salvatore Bonaccorso ]
* Set default Standards-Version to 4.0.0 in control model
* control: Declare compliance with Debian policy 4.0.0
-- Dominique Dumont <dod@debian.org> Sat, 24 Jun 2017 19:43:14 +0200
libconfig-model-dpkg-perl (2.095) experimental; urgency=medium
* fix 'cme run bump-dependency-version' script
-- Dominique Dumont <dod@debian.org> Sat, 10 Jun 2017 19:14:07 +0200
libconfig-model-dpkg-perl (2.094) experimental; urgency=medium
* fix license split in short names (Closes: #863052)
-- Dominique Dumont <dod@debian.org> Wed, 24 May 2017 17:06:51 +0200
libconfig-model-dpkg-perl (2.093) experimental; urgency=medium
* Dpkg Dependency:
* show why a value was fixed with apply_fix
* fix parse of 'foo|bar' dependency (Closes: #861061)
* Copyright update:
* abort optimisation when © years range is empty (Closes: #862368)
* improve split copyright (Closes: #862368)
* normalise existing copyright data (Closes: #862368)
* add support for bugfiles (Closes: #692131)
* cme run: add script bump-dependency-version
* control: depends on libconfig-model-perl >= 2.101
-- Dominique Dumont <dod@debian.org> Sat, 20 May 2017 19:56:57 +0200
libconfig-model-dpkg-perl (2.092) experimental; urgency=medium
* Add scripts that can be launched with 'cme run':
* remove-uploader
* update-my-copyright-year
* add-me-to-uploaders
* remove debug trace
-- Dominique Dumont <dod@debian.org> Fri, 21 Apr 2017 13:50:19 +0200
libconfig-model-dpkg-perl (2.091) experimental; urgency=medium
First, some improvement to help packaging from scratch with 'cme edit
dpkg':
* use directory name as package source name default
* default copyright upstream name is found from control source data
* add default value for debian/rules (based on debhelper)
* tell user to use "reportbug" in case of missing parameter
Add support for more Dpkg parameter:
* debian/*.install files
* debian/not-installed file
* package scripts
* Built-Using parameter
* Build-Depends-Arch parameter
* Build-Conflicts-Arch parameter
* changelog (with a dummy default value)
Improvement related to copyright updates:
* no longer use licensecheck --check option (does not work anymore)
* scanner: skip files which are not in check list
* scanner: improve check/ignore doc
* scanner: scan by default .in .am .m4 files and man pages
* scanner: ignore some debian files
Bug fix:
* fix broken 'cme update dpkg' command
* copyright: updated of Dominique Dumont
* control: depends on libconfig-model-perl 2.099
* control: depends on libconfig-model-tester-perl 2.060
-- Dominique Dumont <dod@debian.org> Wed, 08 Mar 2017 19:27:43 +0100
libconfig-model-dpkg-perl (2.090) unstable; urgency=medium
* fix bogus change shown by cme fix
* fix patch writer: write description first
-- Dominique Dumont <dod@debian.org> Wed, 18 Jan 2017 18:28:23 +0100
libconfig-model-dpkg-perl (2.089) unstable; urgency=medium
* remove "use XXX" (used for debugging)
-- Dominique Dumont <dod@debian.org> Fri, 13 Jan 2017 14:44:41 +0100
libconfig-model-dpkg-perl (2.088) unstable; urgency=medium
* add long overdue contributor section (thanks all !)
* handle comments in list parameter (Closes: #849500)
-- Dominique Dumont <dod@debian.org> Fri, 13 Jan 2017 13:56:08 +0100
libconfig-model-dpkg-perl (2.087) unstable; urgency=medium
* Team upload.
[ Josh Triplett ]
* Add sections for Rust, JavaScript, and Go. (Closes: #847534)
-- gregor herrmann <gregoa@debian.org> Fri, 09 Dec 2016 16:38:04 +0100
libconfig-model-dpkg-perl (2.086) unstable; urgency=medium
* improve warning message for VCS URL (Closes: #842371)
* show file name in syntax error message
* Store unexpected patch line in patch description (help convert
git diff in dep-3 header)
* skip comment in debian/copyright with -force option (to cope with
copyright generated by dh_make)
* write patch description body without synopsis (Closes: #842391)
* relevant pkg version is found in arch all or amd64 (Closes: #841667)
-- Dominique Dumont <dod@debian.org> Mon, 05 Dec 2016 19:53:01 +0100
libconfig-model-dpkg-perl (2.085) unstable; urgency=medium
* Allow 'cme check' to check for unused license in
debian/copyright (enabled from cme 1.014)
* control:
* update BD-I libconfig-model-tester-perl >= 2.057
-- Dominique Dumont <dod@debian.org> Mon, 19 Sep 2016 16:48:18 +0200
libconfig-model-dpkg-perl (2.084) unstable; urgency=medium
* control model improvements:
* Add doc for pkg relation fields
* Add link to debian policy in Std-Version doc
* improved Std-Version warning message with a local link
to upgrade procedure (Tx to Holger Levsen for the idea)
* fix pan copyright test (Closes: #837261)
* control: depends on libconfig-model-perl >= 2.090
-- Dominique Dumont <dod@debian.org> Mon, 12 Sep 2016 19:12:37 +0200
libconfig-model-dpkg-perl (2.083) unstable; urgency=medium
* Update control/Testsuite only when running 'cme fix'
-- Dominique Dumont <dod@debian.org> Mon, 05 Sep 2016 13:29:23 +0200
libconfig-model-dpkg-perl (2.082) unstable; urgency=medium
* Major bug fix:
* debian/rules was written with mode 0644.
This is fixed, rules is now written with mode 0755
* Improvements:
* 'cme update dpkg' now remove unused licenses.
-- Dominique Dumont <dod@debian.org> Fri, 22 Jul 2016 13:51:41 +0200
libconfig-model-dpkg-perl (2.081) unstable; urgency=medium
* Bug fixes:
* cme update ©: really delete obsolete dir entries
* delete files in debian/ once all data is removed
* Model changes:
* compute Maintainer default from DEBNAME and DEBEMAIL
* Section default value is 'misc'
* Priority default value is 'extra'
* improve error message about © Format url
* Remove redundant match test for © Format
* control:
* BD-I on libconfig-model-perl 2.088
* Depends on licensecheck instead of devscripts (Closes: #830663)
* add CONTRIBUTE.md in doc
-- Dominique Dumont <dod@debian.org> Mon, 11 Jul 2016 13:14:51 +0200
libconfig-model-dpkg-perl (2.080) unstable; urgency=medium
[ gregor herrmann ]
* debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
[ Salvatore Bonaccorso ]
* Force HTTPS transport protocol for the recommended URL.
Force HTTPS transport protocol or the recomended format specification
URL in debian/copyright.
[ Dominique Dumont ]
* Dependency: fix build profile pass-through (Closes: #826573)
* Check/fix Debian BTS url in patch header
* control: removed version dep of libmodule-corelist-perl (cme)
-- Dominique Dumont <dod@debian.org> Sat, 11 Jun 2016 19:20:19 +0200
libconfig-model-dpkg-perl (2.079) unstable; urgency=medium
* control:
* updated dep version libconfig-model-perl -> 2.83
(required by usage of auto_delete parameter)
* cleanup of dual life deps (cme)
-- Dominique Dumont <dod@debian.org> Sun, 01 May 2016 18:08:40 +0200
libconfig-model-dpkg-perl (2.078) unstable; urgency=medium
[ gregor herrmann ]
* Fix typo in error message. (Closes: #821327)
[ Dominique Dumont ]
* Auto delete empty yaml files used by cme (fix FTBS)
(set auto_delete to 1 in the rw backend for
copyright-scan-patterns.yml and fill.copyright.blanks.yml)
-- Dominique Dumont <dod@debian.org> Sat, 30 Apr 2016 20:57:57 +0200
libconfig-model-dpkg-perl (2.077) unstable; urgency=medium
* Team upload.
[ Dominique Dumont ]
* License model: replace BSD summary with full text
* debian/control: depend on libsoftware-license-perl >= 0.103010-3~ to get
BSD full text instead of summary. Without this dependency the fix
implemented in previous commit won't work (and the fix will loop until
C::M::Value gives up)
[ Salvatore Bonaccorso ]
* Set default Standards-Version to 3.9.8
* Declare compliance with Debian policy 3.9.8
[ gregor herrmann ]
* Fix autopkgtest. Set HOME in debian/tests/pkg-perl/smoke-env.
Needed by the smoke test for t/dependency-check.t.
-- gregor herrmann <gregoa@debian.org> Wed, 06 Apr 2016 17:05:40 +0200
libconfig-model-dpkg-perl (2.076) unstable; urgency=medium
* Fix hang due to removal of madison gci script from qa.debian.org.
The dependency checker now use new madison api from
api.ftp-master.debian.org
* Fixed syntax error message of Patch parser
* Fixed URL given at the end of cme update dpkg-copyright
-- Dominique Dumont <dod@debian.org> Sat, 05 Mar 2016 14:32:41 +0100
libconfig-model-dpkg-perl (2.075) unstable; urgency=medium
Copyright scanner:
* license can be overridden with fill.copyright.blank
* Improved license cleanup (Closes: #815756)
Copyright merge and update:
* Abort when extracted license data is corrupted
* be less verbose: don't show meaningless changes
Dpkg editor/checker:
* copyright checker complain only about vanilla MIT license,
i.e. a license short name like MIT-joe-variant is fine
* Dpkg model: added fix.copyright.scanner parameter, which can
be used with 'cme update dpkg'
-- Dominique Dumont <dod@debian.org> Sat, 27 Feb 2016 19:00:11 +0100
libconfig-model-dpkg-perl (2.074) unstable; urgency=medium
Copyright scanner:
* don't skip files without info. Missing info can be added in
debian/fill-copyright-blanks.yml (with patterns)
* accept comment field in copyright-scan-patterns
* accepted patterns are added to licensecheck's default
list
Copyright merge and update:
* better handle errors in fix.scanned.copyright file
* merge old directory data into new file data
* preserve comments during copyright upgrades
Dpkg editor/checker:
* warn (and fix) if Vcs-Git uses http transport
* cme edit dpkg: added fill-copyright-blanks parameter
* cme edit dpkg: added scan-copyright-patterns parameter
Debian files:
* control: added forgotten Depends on libyaml-perl
* control: depends in libconfig-model-perl >= 2.079
* copyright: updated. Added a comment about code copied
from licensecheck2deb
-- Dominique Dumont <dod@debian.org> Sun, 21 Feb 2016 12:05:17 +0100
libconfig-model-dpkg-perl (2.073) unstable; urgency=medium
[ Dominique Dumont ]
* Scanner: skip debian changelog and copyright files
* Scanner: can specify files to scan or ignore.
* Dpkg control source model: cme fix Vcs-Git url will use https://
[ Salvatore Bonaccorso ]
* debian/control: Use HTTPS transport protocol for Vcs-Git URI
* Set default Standards-Version to 3.9.7
* Declare compliance with Debian policy 3.9.7
-- Dominique Dumont <dod@debian.org> Tue, 02 Feb 2016 09:10:32 +0100
libconfig-model-dpkg-perl (2.072) unstable; urgency=medium
* Copyright: Show a warning when fixing common keyword issues
(e.g. when converting File->Files, licence->license)
(This fix tests which broke with Config::Model 2.077)
* Removed calls to Exception::Class->caught.
* copyright: updated years
-- Dominique Dumont <dod@debian.org> Sun, 24 Jan 2016 12:34:16 +0100
libconfig-model-dpkg-perl (2.071) unstable; urgency=medium
* control model: allow user defined fields (Closes: #810023)
-- Dominique Dumont <dod@debian.org> Thu, 07 Jan 2016 19:10:01 +0100
libconfig-model-dpkg-perl (2.070) unstable; urgency=medium
* scan-copyright (i.e. copyright scanner):
* fix doc issues (Tx Jens Reyer)
* show skipped files
* mentions fill.copyright.blanks.yml in doc (Closes: #804783)
* scanner: assume all source files are utf-8
* add the possibility to override garbled copyright info which
can be used when the above assumption is wrong.
* Config::Model::Dpkg::Copyright doc:
* refer to scanner doc for detail on how to fill info blanks
* Inform user about limitation and work-around
* cme update dpkg-copyright:
* better preserve dir info during update
* set undefined © to "UNKNOWN" to avoid fatal errors during update
* cme check: raise a warning if copyright or license contains 'unknown'
* Build.PL: fix generation of pod doc from model files
* deliver new bash completion file as cme-dpkg-patch
* remove obsolete bash completion conffile
* control: depends on devscripts >= 2.15.10
-- Dominique Dumont <dod@debian.org> Sat, 02 Jan 2016 19:43:37 +0100
libconfig-model-dpkg-perl (2.069) unstable; urgency=medium
* Dependency checker:
* updated list of known virtual packages
* copyright scanner:
* improved © cleanup
* user can now provide missing information before © information
is coalesced. This should improve © update on older software.
See Config::Model::Dpkg::Copyright man page for more details.
(Closes: #795195)
* Copyright checker:
* warn and fix trailing slashes in Files-Excluded
* warn and fix MIT license to Expat (Closes: #797321)
* warn and fix BSD3 license (Closes: #797322)
* during update, also override directory data with info found in files...
* Copyright parser:
* improved Files cleanup
* trim traling white space from key parameter like Files
* Patch model: Added Bug-Debian field
* added TODO file (help welcome)
-- Dominique Dumont <dod@debian.org> Sat, 17 Oct 2015 18:10:35 +0200
libconfig-model-dpkg-perl (2.068) unstable; urgency=medium
* Dpkg dependency: make sure that debhelper shows a warning when
compat is increased (in interactive mode like cme edit dpkg)
* control: added dep libtext-levenshtein-damerau-perl. Installing this
dependency enable cme to warn about typos in permissive files
like debian/copyright (Closes: #789568)
* source options: advise user to log a bug in case of missing parameter
-- Dominique Dumont <dod@debian.org> Fri, 24 Jul 2015 16:45:22 +0200
libconfig-model-dpkg-perl (2.067) unstable; urgency=medium
Major bug fixes release: previous version removed too many
directory entries. This version fixes this problem while being
able to merge existing directory entries with data extracted from
files (including LICENSE, COPYING or README files)
Also fixed:
* C::M::Dpkg::Dependency: escape '{' in regexp (Closes: #789841) ...
* Scanner::__squash_copyrights_years: also handle last entry of
$copyrights_by_id...
-- Dominique Dumont <dod@debian.org> Fri, 03 Jul 2015 20:13:44 +0200
libconfig-model-dpkg-perl (2.066) unstable; urgency=medium
[ gregor herrmann ]
* Add Build-Conflicts-Indep fields to Dpkg::Control::Source model.
* Dpkg::Control::Source model: warn on duplicates in Build-
Conflicts{,-Indep}.
* Update descriptions and summaries for Dpkg::Control::Source model.
[ Dominique Dumont ]
* updated © years in model doc
* Dpkg::Copyright doc:
+ added explanation on merge mechanism in pod doc
+ added scary example to modify copyright content with cme
-- Dominique Dumont <dod@debian.org> Mon, 15 Jun 2015 12:45:10 +0200
libconfig-model-dpkg-perl (2.065) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* Correct name of licensecheck utility.
Thanks to Andreas Metzler (Closes: #784838)
[ Dominique Dumont ]
* Dpkg Control: can now fix formatting of Description when more
than one paragraph has too long lines
* Dependency:
* added stretch and buster to the list of known debian releases
* die if something went wrong while finding the ideal dependency
for an alternate dependency
* preserve Perl's versioned dep if the alternate lib has no
versioned dependency.
* Copyright update: can remove old directory entries when needed
-- Dominique Dumont <dod@debian.org> Wed, 20 May 2015 18:46:08 +0200
libconfig-model-dpkg-perl (2.064) unstable; urgency=medium
* Fixed scanner bugs found while trying 'cme update dpkg-copyright' on
icedove files:
* don't croak on utf8 encoding errors
* can use $ENV{COPYRIGHT_SCANNER_INPUT} as input for tests..
* fix parsing of multi copyright owners
* provide better error message for invalid (c) year ranges
* improved copyright cleanup
-- Dominique Dumont <dod@debian.org> Fri, 08 May 2015 18:45:47 +0200
libconfig-model-dpkg-perl (2.063) unstable; urgency=medium
* Copyright scanner:
* to cope with owner containing 'f00' (Closes: #783932)
* handle ranges like 2010-12 or 2002-3 (Closes: #783928)
* Dpkg::Patch: fix handling of Subject body expressed as
free form text below header.
* Updated list of supported arch in C::M::Dpkg::Dependency
(Closes: #782995)
* control: added build-dep on libyaml-tiny-perl
-- Dominique Dumont <dod@debian.org> Fri, 08 May 2015 10:24:03 +0200
libconfig-model-dpkg-perl (2.062) experimental; urgency=medium
* control: added missing deps libarray-intspan-perl
and libexporter-lite-perl (Closes: #782010)
-- Dominique Dumont <dod@debian.org> Tue, 07 Apr 2015 08:21:48 +0200
libconfig-model-dpkg-perl (2.061) experimental; urgency=medium
* Improved 'cme update dpkg-copyright' command:
* update can now start from scratch
* improved handling of fix.scanned.copyright file
* cleanup "by" and "all rights reserved" from copyrights
* globally squash copyright that have same owners and licenses
* don't remove correct entries while updating...
* Other copyright model changes:
* improve error message when copyright header is missing
* issue a warning when boilerplate license is found
* copyright: added entry for lib/Dpkg/Copyright/Scanner.pm
Thanks to Jonas for agreeing to LGPL-2.1+
* control:
* updated dep version of libconfig-model-perl and
libconfig-model-tester-perl
* added runtime dependency on devscripts (for licensecheck)
* udpated description for 'cme update dpkg'
-- Dominique Dumont <dod@debian.org> Sat, 04 Apr 2015 11:27:37 +0200
libconfig-model-dpkg-perl (2.060) experimental; urgency=medium
* New feature:
+ added scan-copyright command: Scan source file and print lines for
debian/copyright files. This command is indenpendant of Config::Model
and may land in its own package or in devscript if required.
+ new 'cme update dpkg' command that uses scan-copyright to update
the content on debian/copyright from the source files.
See Config::Model::Dpkg::Copyright documentation for more details.
* Model changes:
* Dpkg::Source: 'cme migrate' sets TestSuite to autopkgtest-pkg-perl
for pkg-perl team packages
* Perf improvement of dependency checks:
* C::M::Dpkg::Dependency: do not use regexp to find Perl module
in CoreList...
* Minor changes:
* Use show_message instead of say for most user messages
* debian/control: dep on libconfig-model-perl 2.066
* debian/copyright: updated year
-- Dominique Dumont <dod@debian.org> Fri, 20 Feb 2015 13:16:24 +0100
libconfig-model-dpkg-perl (2.059) unstable; urgency=medium
* Copyright license text (Closes: #767494):
* fix (really) automatic import of license summary or text
* suppress misleading warning
-- Dominique Dumont <dod@debian.org> Fri, 31 Oct 2014 14:06:18 +0100
libconfig-model-dpkg-perl (2.058) unstable; urgency=medium
* Team upload.
* Trigger warning 'Synopsis is too long.' only for >= 80 characters.
Cf. Debian Policy 3.4.1, DEP3, and lintian.
-- gregor herrmann <gregoa@debian.org> Fri, 10 Oct 2014 16:38:59 +0200
libconfig-model-dpkg-perl (2.057) unstable; urgency=medium
* Dpkg::Dependency: support new build profile syntax.
Tx Johannes Schauer (Closes: #763772)
-- Dominique Dumont <dod@debian.org> Tue, 07 Oct 2014 21:09:03 +0200
libconfig-model-dpkg-perl (2.056) unstable; urgency=medium
[ Dominique Dumont ]
* Dpkg::Copyright: fix automatic import of license summary or text
* control:
* depends on liconfig-model-perl 2.061
* depends on libsoftware-license-perl (>= 0.103010-3~)
* removed versioned dep on libconfig-model-tester-perl
[ gregor herrmann ]
* dpkg-control model: allow autopkgtest-pkg-{ruby,perl}
in Testsuite header.
* Use autopkgtest-pkg-ruby in tests.
[ Dominique Dumont ]
* Fix broken Vcs-Git and Vcs-Browser computed default values
* Dpkg::Dependency: Warn and fix if a dual dependency is used with
a module that is or will no longer be dual life
[ gregor herrmann ]
* Fix some occurences of libmodule-build-perl versions in test suite.
* Mark package as autopkgtest-able.
-- Dominique Dumont <dod@debian.org> Sat, 27 Sep 2014 21:05:05 +0200
libconfig-model-dpkg-perl (2.054) unstable; urgency=medium
* Team upload.
* Set default Standards-Version to 3.9.6 in dpkg-control model.
Update tests as well.
* Declare compliance with Debian Policy 3.9.6.
-- gregor herrmann <gregoa@debian.org> Sat, 20 Sep 2014 21:47:23 +0200
libconfig-model-dpkg-perl (2.053) unstable; urgency=medium
[ gregor herrmann ]
* debian/control: update Module::Build dependency.
[ Dominique Dumont ]
* dpkg copyright format: accepts http and https url and default
to https (Closes: #756876)
* Copyright model: Accept multi-line string for Files-Excluded
field (Closes: #757812)
-- Dominique Dumont <dod@debian.org> Mon, 08 Sep 2014 20:56:15 +0200
libconfig-model-dpkg-perl (2.052) unstable; urgency=medium
* Team upload.
[ Paul Wise ]
* Use the correct hostname for the ftp-master changelog service
[ Salvatore Bonaccorso ]
* Fix URL in description of the XS-Testsuite field.
Adjust file name to README.package-tests.rst and switch to URL based on
the cgit web frontend on alioth.
* Fix URL in description of the Testsuite field.
Adjust file name to README.package-tests.rst and switch to URL based on
the cgit web frontend on alioth.
* Recommend Vcs-Browser field values pointing to cgit web frontend.
Recommend the cgit based URLs for the Vcs-Browser field instead of the
gitweb based URLs.
* Adjust Vcs-Browser URLs in testsuite to cgit web frontend based URLs
[ Dominique Dumont ]
* Provide Vcs-Git and Vcs_browser values for pkg-javascript team
* added missing "memory cycle" test label
* Fix expected Vcs-Browser URL
[ Salvatore Bonaccorso ]
* Strip appended ';a=summary' if the cgit webinterface is used.
Thanks to Gregor Herrmann for the patch
* Update Vcs-Browser URL to cgit web frontend
* Switch http to https URLs in dpkg-control exampes in testsuite
-- Salvatore Bonaccorso <carnil@debian.org> Sun, 17 Aug 2014 13:59:51 +0200
libconfig-model-dpkg-perl (2.051) unstable; urgency=medium
* Control Binary model: added Build-Profiles (Tx Peter Pentchev)
* added TestSuite parameter (Closes: #752149)
* Patch model:can now fix synopsis when using 'cme fix patch my-great-patch'
* fix typo in bash completion file name (which broke completion for
'cme edit patch')
* rules: added --with bash-completion
-- Dominique Dumont <dod@debian.org> Sat, 19 Jul 2014 18:18:28 +0200
libconfig-model-dpkg-perl (2.050) unstable; urgency=medium
* Dpkg::Patch:
* Author, From, Reviewed-by and Ack-by fields are now list
+ added missing inline documentation
-- Dominique Dumont <dod@debian.org> Sun, 15 Jun 2014 18:52:58 +0200
libconfig-model-dpkg-perl (2.049) unstable; urgency=medium
* Dpkg::Copyright:
* fixed Files-Excluded type and updated doc
* consider license exception as part of license short
name (Closes: #748501)
* Dpkg::Patch(es):
* read/write patches in utf8 mode
* skip non dep-3 patches when cme is run with -force option
(Closes: 748502)
* added bash completion for 'cme edit|fix|check dpkg-patch'
* control:
* build depends on libconfig-model-tester 2.048 to test
tolerance of bad patch
* added BDI on libpath-tiny-perl
-- Dominique Dumont <dod@debian.org> Sat, 14 Jun 2014 14:37:59 +0200
libconfig-model-dpkg-perl (2.048) unstable; urgency=medium
+ Added a patch (DEP-3) editor/checker:
* check all patches with 'cme check dpkg-patches'
* check one patch with 'cme check dpkg-patch debian/patches/foo'
or 'cme check dpkg-patch foo'
* the edit command can also be used. E.g. 'cme edit dpkg-patch foo'
* control:
- removed dependency on libnamespace-autoclean-perl
* depends on libconfig-model-perl 2.055
+ added depends on liburi-perl (not used during tests)
* fix warnings by removing last traces of async calls
* fix test (removed calls to removed functions)
-- Dominique Dumont <dod@debian.org> Mon, 05 May 2014 19:23:55 +0200
libconfig-model-dpkg-perl (2.047) unstable; urgency=medium
* Model changes:
* Dpkg::Dependency: added libgl-dev and libtiff-dev to virtual packages
* Dpkg::Control: removed experience attribute
* Dpkg::Patch backend: leave a space after colon when writing back
patch header. I.e. 'Field: foo' (thankd gregoa for the heads-up)
* Removed all asynchronous code from Dpkg::Dependency. The code should be
easier to understand.
* control: removed deps on libanyevent*. Added dep on libwww-perl
-- Dominique Dumont <dod@debian.org> Sun, 20 Apr 2014 14:16:33 +0200
libconfig-model-dpkg-perl (2.046) unstable; urgency=medium
* Dependency checker: use escape_uri on package name to build the URL
used to query madison (Closes: #742302)
* Dpkg::Copyright model:
+ added Files-Excluded parameter (the one used by uscan)
* check consistency of global License parameter
* Config::Model::Dpkg::Dependency: no longer complain about *known*
virtual packages (i.e. mostly virtual packages listed in packaging
manual)
* Config::Model::Dpkg: added 'cme modify dpkg' examples in pod doc
* control: BD-I on libconfig-model-perl 2.053
-- Dominique Dumont <dod@debian.org> Wed, 26 Mar 2014 12:25:04 +0100
libconfig-model-dpkg-perl (2.045) unstable; urgency=medium
* Control model: set up value for Vcs-Git and Vcs-Browser for
pkg-ruby-extra team
* allow config file override for dpkg-control and dpkg-copyright
(Closes: #739387). See Config::Model::Dpkg(3pm) for explanations
* control: depends on libconfig-model-perl >= 2.050 for the config
file overrride
-- Dominique Dumont <dod@debian.org> Sat, 01 Mar 2014 19:48:26 +0100
libconfig-model-dpkg-perl (2.044) unstable; urgency=medium
* section parameter:
* fix check to cope with section like 'gnu-r' (Closes: #735308)
* dependency parameters:
* fix warnings issued when a alternate dep contains an unknown/virtual
package
* compute cache expiry date only once
* added global function cache_info_from_madison
* source Vcs-* parameters:
* warn (and fix) if Vcs-* field is not a recommended URL
(Closes: #735309)
* fix Vcs-Git url substitution (thanks Andreas)
* Backend Dpkg Control: query info for all package in one call to
madison. (Closes: #735000)
* debian/copyright: updated year
-- Dominique Dumont <dod@debian.org> Sat, 01 Feb 2014 11:46:55 +0100
libconfig-model-dpkg-perl (2.043) unstable; urgency=low
* Team upload.
[ Salvatore Bonaccorso ]
* Set Standards-Version to 3.9.5 for the dpkg-control model
* Bump Standards-Version to 3.9.5
[ Dominique Dumont ]
* copyright backend: improved error message
[ gregor herrmann ]
* Remove version from libconfig-model-tester-perl build dependency.
Nothing older in the archive; found with the help of this very
package.
-- gregor herrmann <gregoa@debian.org> Fri, 22 Nov 2013 02:55:21 +0100
libconfig-model-dpkg-perl (2.042) unstable; urgency=low
[ Bas Couwenberg ]
* Homepage is also allowed for binary packages.
* XB-Python-Version is allowed but deprecated for binary packages.
[ Dominique Dumont ]
* copyright backend: improved error message
* Added doc to 'patch' dpkg parameter
* skip comments in debian/series files (Closes: #725147)
-- Dominique Dumont <dod@debian.org> Sun, 13 Oct 2013 20:56:27 +0200
libconfig-model-dpkg-perl (2.041) unstable; urgency=low
* fix new dual life dependency corner case uncovered by last corner
case fix
-- Dominique Dumont <dod@debian.org> Sat, 28 Sep 2013 09:46:59 +0200
libconfig-model-dpkg-perl (2.040) unstable; urgency=low
* All: fix white space and extraneous line issue (Closes: #721832)
* dpkg-copyright:
* skip empty-ish license
* append second occurrence of an entry (Closes: #721670)
* convert File section into Files (Closes: #721672)
* dpkg-control:
+ added support for XS-Testsuite (Thanks Stig) (Closes: #721663)
* added tests for xs-testsuite (Thanks Stig)
* control: BD on libconfig-model-tester >= 2.044 to test white space fix
-- Dominique Dumont <dod@debian.org> Sun, 08 Sep 2013 21:03:40 +0200
libconfig-model-dpkg-perl (2.039) unstable; urgency=low
* Team upload.
[ Dominique Dumont ]
* Dpkg::Copyright: clean up comma from Files line
[ gregor herrmann ]
* Switch order of alternative (build) dependencies after Perl 5.18
upload to unstable.
* Remove version from libconfig-model-tester-perl build dependency.
Nothing older in the archive. This fix was brought to the audience by
cme and libconfig-model-dpkg-perl itself.
-- gregor herrmann <gregoa@debian.org> Mon, 02 Sep 2013 21:36:44 +0200
libconfig-model-dpkg-perl (2.038) unstable; urgency=low
* Fix alternate dependency corner case (Closes: #719225)
* Dpkg Source model: add XS-AutoBuild field (Closes: #719753)
* Dpkg Control Binary model: fixed pod error in embedded doc
* dpkg control backend: improved error message for unknown flags
* Dpkg model: added XS-Ruby-Versions and XB-Ruby-Versions fields
(Closes: #713053)
* control:
+ added libconfig-model-tester-perl dependency.
* Clean up other dependencies
* up-to-date libmodule-corelist-perl is now required instead
of recommended to ensure better resulst with Perl dual-life
package
* updated description
- removed obsolete lintian override
-- Dominique Dumont <dod@debian.org> Sun, 25 Aug 2013 17:17:05 +0200
libconfig-model-dpkg-perl (2.037) unstable; urgency=low
* Dpkg Source model: fixed typo (thanks Daniel)
* Source Option model: added compression and compression-level
parameters (thanks Daniel)
* doc: added BUGS section
* Dependency parser:
* rewrote grammar to give better error message. Extracted
complex treament from grammar. Fixed bugs related to arch parsing
(Closes: #707565)
* trap mismatched '!' in dependency arch declaration
* Patch backend: replaced 'given...when' with good old 'if'
(Closes: #709783)
-- Dominique Dumont <dod@debian.org> Mon, 20 May 2013 18:55:09 +0200
libconfig-model-dpkg-perl (2.036) unstable; urgency=low
* Dependency:
* fix bug to save all info from rmasdison in cache
* fix bug that blocked cme during request to rmadison, now
rmadison requests are done again in parrallel
* Dpkg::Source: DM-Upload-Allowed is deprecated. This parmeter will
be removed when running 'cme migrate dpkg' (or cme edit)
* Dpkg Control backend: avoid double deprecation warnings
-- Dominique Dumont <dod@debian.org> Sat, 27 Apr 2013 16:51:13 +0200
libconfig-model-dpkg-perl (2.035) unstable; urgency=low
* Removed deps on Any::Moose. Use Mouse now
* control:
- removed deps on libany-moose-perl
+ added deps on libnamespace-autoclean-perl
* Copyright model: parse correctly license short
name when a comma is appended to name (Closes: #692131)
-- Dominique Dumont <dod@debian.org> Mon, 22 Apr 2013 13:48:56 +0200
libconfig-model-dpkg-perl (2.034) unstable; urgency=low
* Dpkg Backend: removed AnyEvent code that blocked until
http request were done. This is now handled by Config::Model
* Dependency: use asynchronous store
* control: depends on libconfig-model-perl >= 2.030
* copyright: updated years
-- Dominique Dumont <dod@debian.org> Sun, 24 Mar 2013 19:28:16 +0100
libconfig-model-dpkg-perl (2.033) unstable; urgency=low
* bail out of of check_perl_lib_dep if the version contains a
variable (Closes: #698876) (Tx gregoa for the help)
* Allow version with variables and appended stuff (e.g. ${foo}.1~ )
(Closes: #702792)
-- Dominique Dumont <dod@debian.org> Thu, 14 Mar 2013 19:25:31 +0100
libconfig-model-dpkg-perl (2.032) unstable; urgency=low
[ Salvatore Bonaccorso ]
* Fix typos in package description.
Thanks to Stephen Kitt <steve@sk2.org> (Closes: #696630)
* Correct regexp for allowed package names.
According to Debian policy "5.6.1 Source", package names must consist
only of lower case letters (a-z), digits (0-9), plus (+) and minus (-)
signs, and periods (.). They must be at least two characters long and
must start with an alphanumeric character.
Thanks to Stephen Kitt <steve@sk2.org> (Closes: #696631)
* Add support for Built-Using field (Closes: #696768)
* Expand testsuite to check for binary package using Built-Using field
* Add description for Built-Using field
* Warn if Built-Using field is not filled via substvars.
Add a regular expression matching the allowed variable substitution
names for Built-Using field and warn unless it matches. See
deb-substvars(5).
Expand the built-using test using a 'fake' variable substitution.
* Fix FTBFS if no writable $HOME is available during tests.
Add overrides for dh_clean and dh_auto_test to provide a writable $HOME
during tests.
* Use posix character classes for warn_unless regular expression
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
[ Dominique Dumont ]
* manifest.skip: ignore HOWTO.release, *.bak, *.tar.gz
* HOWTO.release: added instructions to clean repo
* control source model: fix computed value for VCS-Git to use
anonscm.debian.org
* removed old changelog
* Build.PL: updated repo URL (for CPAN)
* MANIFEST.SKIP: updated to ship debian/changelog to CPAN
* fix build-depends-on-1-revision lintian warning
-- Dominique Dumont <dod@debian.org> Wed, 09 Jan 2013 18:46:41 +0100
libconfig-model-dpkg-perl (2.031) unstable; urgency=low
* adapted Dpkg copyright model to new libsoftware-license-perl
(Closes: #696140)
* Dependency: check if dependency is provided within the control
file (Closes: #692849)
* control: depends on libsoftware-license-perl ( >= 0.103005-1)
-- Dominique Dumont <dod@debian.org> Mon, 17 Dec 2012 19:44:45 +0100
libconfig-model-dpkg-perl (2.030) unstable; urgency=low
* Team upload.
* Set Standards-Version to 3.9.4 for the dpkg-control model.
* Bump Standards-Version to 3.9.4 for the package itself.
-- gregor herrmann <gregoa@debian.org> Sat, 03 Nov 2012 15:44:57 +0100
libconfig-model-dpkg-perl (2.029) unstable; urgency=low
* Team upload.
* Add missing Build-Depends-Indep on lintian.
Fix FTBFS "Can't locate Lintian/Relation.pm in @INC" during tests.
Thanks to Angel Abad <angel@debian.org> (Closes: #691905)
* Fix spelling-error-in-copyright lintian warning.
Fix "spelling-error-in-copyright GNU Lesser Public License GNU Lesser
General Public License" lintian warning.
-- Salvatore Bonaccorso <carnil@debian.org> Wed, 31 Oct 2012 12:33:52 +0100
libconfig-model-dpkg-perl (2.028) unstable; urgency=low
* updated doc embedded in dpkg-copyright model
* control: added build-dep on libfile-copy-recursive
to fix a FTBS
-- Dominique Dumont <dod@debian.org> Tue, 09 Oct 2012 14:04:16 +0200
libconfig-model-dpkg-perl (2.027) unstable; urgency=low
* re-release to unstable
-- Dominique Dumont <dod@debian.org> Sun, 07 Oct 2012 10:55:27 +0200
libconfig-model-dpkg-perl (2.026) experimental; urgency=low
* Initial Release. (Closes: #689241)
-- Dominique Dumont <dod@debian.org> Sun, 07 Oct 2012 10:54:11 +0200
|