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 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432
|
libconfig-model-perl (2.155-1) unstable; urgency=medium
[ Dominique Dumont ]
* new upstream version
* Loader: add .set_to_standard_value() function
* README.source.org: add missing step
* rules: skip test when running with nocheck
* rules: override_dh_clean removes only generated pod files
-- Dominique Dumont <dod@debian.org> Sat, 30 Nov 2024 10:57:28 +0100
libconfig-model-perl (2.154-1) unstable; urgency=medium
[ Dominique Dumont ]
* new upstream version
* update to build with dzil
* add README.source.org
* add patch to remove Git plugin from dist.ini
-- Dominique Dumont <dod@debian.org> Sun, 16 Jun 2024 19:30:16 +0200
libconfig-model-perl (2.153-3) unstable; urgency=medium
* Add patch to fix autopkgtest failure. (Closes: #1050059)
* Update years of packaging copyright.
-- gregor herrmann <gregoa@debian.org> Sat, 19 Aug 2023 12:02:51 +0200
libconfig-model-perl (2.153-2) unstable; urgency=medium
* control: add build dep on libtest-synopsis-expectation-perl
-- Dominique Dumont <dod@debian.org> Thu, 20 Jul 2023 19:03:54 +0200
libconfig-model-perl (2.153-1) unstable; urgency=medium
* New upstream version 2.153
* term_ui.t: fix test for Term::ReadLine::Gnu 1.46
* Loader: add support for single quotes
* control: declare compliance with policy 4.6.2
* control: remove obsolete depends or breaks versions
* remove old NEWS file
-- Dominique Dumont <dod@debian.org> Wed, 19 Jul 2023 18:59:58 +0200
libconfig-model-perl (2.152-1) unstable; urgency=medium
* New upstream version 2.152
* fix regression (Value) that broke the GUI: error_msg now
returns empty string when there's no error
-- Dominique Dumont <dod@debian.org> Thu, 28 Jul 2022 11:39:37 +0200
libconfig-model-perl (2.151-2) unstable; urgency=medium
* control: add breaks on libconfig-model-dpkg-perl (<<2.162)
-- Dominique Dumont <dod@debian.org> Wed, 27 Jul 2022 18:33:29 +0200
libconfig-model-perl (2.151-1) unstable; urgency=medium
* New upstream version 2.151
* fix (Value): do not check compute result with mandatory value
(related to #1015913)
* Node: apply_fixes now returns $self
* control: declare compliance with policy 4.6.1
-- Dominique Dumont <dod@debian.org> Wed, 27 Jul 2022 17:44:18 +0200
libconfig-model-perl (2.150-1) unstable; urgency=medium
* New upstream version 2.150
* Loader: add list:.ensure(value) function
* Loader: fix reading JSON file with utf8 characters
* control: add Breaks cme << 1.036
-- Dominique Dumont <dod@debian.org> Tue, 10 May 2022 19:35:26 +0200
libconfig-model-perl (2.149-1) unstable; urgency=medium
* New upstream version 2.149
* fix regression with check_value method
-- Dominique Dumont <dod@debian.org> Fri, 14 Jan 2022 14:47:31 +0100
libconfig-model-perl (2.148-1) unstable; urgency=medium
* New upstream version 2.148
* fix (Exception): avoid double crash (keep ref to instance object)
* fix (modify instance): show changes before saving
* updated copyright year of Dominique Dumont
-- Dominique Dumont <dod@debian.org> Tue, 11 Jan 2022 12:42:16 +0100
libconfig-model-perl (2.147-1) unstable; urgency=medium
* New upstream version 2.147
* fstab: add suid/nosuid (thanks Topi Miettinen)
* feat (fstab model): add umask element in common options
* feat (fstab model): add description to common options
* feat (Instance): modify method displays changes before saving
* fix (Grab): improve error message of grab_value
* fix (TermUI): add completion to display command
* fix (SimpleUI): simplify error message shown to user
* fix (SimpleUI): avoid undef warnings
* fix (Describe): truncate long lines
* fix (Describe): show default value in comments
* fix (Describe): show value in user mode
* Value: accept on/off as boolean values
* control: set Rules-Requires-Root: no
-- Dominique Dumont <dod@debian.org> Sun, 05 Dec 2021 19:53:42 +0100
libconfig-model-perl (2.145-1) unstable; urgency=medium
* New upstream version 2.145
* fix (Node): undef warning on $filter value
* fix (Model loader): crash with Config::Model::Itself (Closes: #998601)
* fix (Constants role): fix crash for perl < 5.28
-- Dominique Dumont <dod@debian.org> Sun, 07 Nov 2021 16:36:18 +0100
libconfig-model-perl (2.143-1) unstable; urgency=medium
[ Debian Janitor ]
* Remove constraints unnecessary since stretch:
+ Build-Depends-Indep: Drop versioned constraint on libpath-tiny-perl.
+ libconfig-model-perl: Drop versioned constraint on libpath-tiny-perl in
Depends.
+ Remove 4 maintscript entries from 1 files.
[ Dominique Dumont ]
* New upstream version 2.143
* fix (Model load): fix load from absolute path
* fix (BackEndMgr): crash when calling config_file_override
with absolute path
* fix (get_info): show upstream_default as written in file
* feature (get_info): include write_as values
* control: drop obsolete Breaks constraints
* control: declare compliance with policy 4.6.0
-- Dominique Dumont <dod@debian.org> Mon, 01 Nov 2021 12:44:38 +0100
libconfig-model-perl (2.142-1) unstable; urgency=medium
* New upstream version 2.142
* cme function: add force-load parameter to behave like
cme command
* Avoid messing up array indexes when remove list items (gh #26)
* load method: forward value of check parameter
* removed dumb-upstream patch
-- Dominique Dumont <dod@debian.org> Mon, 06 Sep 2021 18:26:30 +0200
libconfig-model-perl (2.141-1) unstable; urgency=medium
[ gregor herrmann ]
* Replace '--with bash{_,-}completion' in debian/rules with a build
dependency on 'dh-sequence-bash-completion'.
[ Debian Janitor ]
* Remove obsolete field Name from debian/upstream/metadata (already present in
machine-readable debian/copyright).
[ Dominique Dumont ]
* New upstream version 2.141
* Loader: can extract data from YAML or JSON file
* feature (ini backend): add quote_value parameter
* ListId: fix storage of undef value in store_set
* Config::Model::Loader: update documentation. (Thanks gregoa)
* control: declare compliance with policy 4.5.1
* add patch to remove debug code from tests
* control: add dependency on libyaml-tiny-perl
* copyright: update copyright year
-- Dominique Dumont <dod@debian.org> Wed, 20 Jan 2021 17:57:31 +0100
libconfig-model-perl (2.140-1) unstable; urgency=medium
* New upstream version 2.140
* fix loader_logs tests broken by Config::Model::Tester 4.006
-- Dominique Dumont <dod@debian.org> Fri, 31 Jul 2020 10:57:46 +0200
libconfig-model-perl (2.139-1) unstable; urgency=medium
[ gregor herrmann ]
* debian/watch: use uscan version 4.
[ Dominique Dumont ]
* New upstream version 2.139
* Show warnings in blue color (color can be
configured using ~/.log4config-model file)
* shell UI:
* add info command
* improve tree and ls commands
* fix crash when cme should be showing an error message
* control: bump debhelper-compat version to 13
* control: declare compliance with policy 4.5.0
-- Dominique Dumont <dod@debian.org> Mon, 20 Jul 2020 12:01:14 +0200
libconfig-model-perl (2.138-2) unstable; urgency=medium
* control: fix Breaks versions of libconfig-model-itself-perl and
libconfig-model-tkui-perl
-- Dominique Dumont <dod@debian.org> Fri, 17 Jan 2020 10:26:30 +0100
libconfig-model-perl (2.138-1) unstable; urgency=medium
* New upstream version 2.138
* CheckList: add missing "backend" fetch mode
* Value: update doc of allow_under mode
* fix typo in pod doc
-- Dominique Dumont <dod@debian.org> Fri, 27 Dec 2019 16:00:00 +0100
libconfig-model-perl (2.137-1) unstable; urgency=medium
* New upstream version 2.137
* Loader: fix parsing of list assignment with quotes
* Node: warn only once about deprecated elements
* Value: provide has_warnings along has_warning
* DumpAsData, Dumper:
* deprecate full_mode parameter
* full dump is now mode => user
* control: declare compliance with policy 4.4.1
-- Dominique Dumont <dod@debian.org> Thu, 05 Dec 2019 13:36:47 +0100
libconfig-model-perl (2.136-1) unstable; urgency=medium
* New upstream version 2.136
* fix libconfig-model-systemd-perl FTBS
* setup new debhelper-compat dependency with cme
* declare compliance with policy 4.4.0
-- Dominique Dumont <dod@debian.org> Mon, 29 Jul 2019 19:15:33 +0200
libconfig-model-perl (2.135-1) unstable; urgency=medium
[ gregor herrmann ]
* debian/*: replace ADTTMP with AUTOPKGTEST_TMP.
[ Dominique Dumont ]
* New upstream version 2.135
* Instance: clear changes after reset
* dump_tree: add quote around value or if that contain '~'
* control: update libconfig-model-tester-perl dependency
* copyright: update years
-- Dominique Dumont <dod@debian.org> Tue, 09 Jul 2019 18:57:06 +0200
libconfig-model-perl (2.133-1) unstable; urgency=medium
* New upstream version 2.133
* IniFile: delete empty file when auto_delete is set
and config file contains no data
* warn when restoring backup file
* declare compliance with policy 4.3.0
-- Dominique Dumont <dod@debian.org> Tue, 15 Jan 2019 18:41:59 +0100
libconfig-model-perl (2.132-1) unstable; urgency=medium
* New upstream version 2.132
* YAML backend was moved out of this package. See NEWS file for details.
* Value: use warn_if warn_unless label in warning message shown to user.
* BackendMgr: throw correctly "unknown backend" exception
* Exception: trap missing object parameter
* Value: really use old_value to track changes (fix issue where cme
would not save a modification)
* control: no longer provides YAML backend
* control: remove dependency on libyaml-perl
* bump compat to 11
* add NEWS about YAML backend spinoff
-- Dominique Dumont <dod@debian.org> Sun, 23 Dec 2018 08:45:13 +0100
libconfig-model-perl (2.130-3) unstable; urgency=medium
* Bump versioned Breaks on libconfig-model-dpkg-perl to '<< 2.118'.
Config::Model 2.130 breaks one test in libconfig-model-dpkg-perl, and
thereby its autopkgtests.
* Update years of packaging copyright.
* Remove trailing whitespace from debian/*.
-- gregor herrmann <gregoa@debian.org> Sat, 15 Dec 2018 20:03:03 +0100
libconfig-model-perl (2.130-2) unstable; urgency=medium
* control: add Provides libconfig-model-backend-yaml-perl
-- Dominique Dumont <dod@debian.org> Wed, 12 Dec 2018 08:28:56 +0100
libconfig-model-perl (2.130-1) unstable; urgency=medium
* New upstream version 2.130
* Value" improve warning message about multi line value
* Convert cme boolean values (i.e. value of value_type boolean) to
Perl boolean values
* control: add dependency on libboolean-perl
-- Dominique Dumont <dod@debian.org> Sun, 09 Dec 2018 19:23:00 +0100
libconfig-model-perl (2.128-1) unstable; urgency=medium
* New upstream version 2.128
* CheckList: die or warn (with cme -force) when storing unknown item
in check list. Bad values used to be silently dropped.
* Instance: add doc for backend_arg
-- Dominique Dumont <dod@debian.org> Tue, 27 Nov 2018 17:25:53 +0100
libconfig-model-perl (2.127-1) unstable; urgency=medium
* New upstream version 2.127
* Can use regexp in leaf model to specify help on values
-- Dominique Dumont <dod@debian.org> Fri, 05 Oct 2018 19:39:18 +0200
libconfig-model-perl (2.126-1) unstable; urgency=medium
* New upstream version 2.126
* Value: Don't crash with some chain of fixes (cme fix xxx)
* BackendMgr: log an error when eval'ed write dies
* control: declare compliance with policy 4.2.1
-- Dominique Dumont <dod@debian.org> Mon, 27 Aug 2018 12:24:18 +0200
libconfig-model-perl (2.125-1) unstable; urgency=medium
* Add Breaks on libconfig-model-approx-perl
* New upstream version 2.125
* Breaking change: remove code to read from stdin. This removes
the possibility to read a config file from STDIN. This was
deprecated since January and nobody complained.
* Doc change: improve pod doc of Grab.pm
-- Dominique Dumont <dod@debian.org> Sat, 30 Jun 2018 19:55:13 +0200
libconfig-model-perl (2.124-1) unstable; urgency=medium
[ gregor herrmann ]
* Add Breaks on three libconfig-model-*-perl which needed updates for
Config::Model 2.123.
Thanks to Paul Gevers for the bug report. (Closes: #898011)
* Update debian/tests/pkg-perl. Remove dummy entry which is not needed
anymore with autopkgtest-pkg-perl 0.45.
[ Dominique Dumont ]
* New upstream version 2.124
* Config::Model::initialize_log4perl now accepts a verbose parameter
to enable verbose message of Loader class (used by cme run and
modify).
* display USER INFO log as plain message (no need of 'INFO:' prefix)
* fix CheckList element handling when cme is run with -force option.
(add check param to CheckList)
* Value: avoid warning when loading wrong boolean (gh #17)
* Avoid unneeded change notif when showing up a node that was
previously hidden (gh #17)
* improve error message about unknown element (gh #18)
-- Dominique Dumont <dod@debian.org> Sun, 17 Jun 2018 20:16:04 +0200
libconfig-model-perl (2.123-1) unstable; urgency=medium
* New upstream version 2.123:
* io_handle backend parameter is deprecated. New warnings
are expected when using cme.
* control: BD-I on libconfig-model-tester-perl >= 3.006
* control: declare compliance with policy 4.1.4
-- Dominique Dumont <dod@debian.org> Thu, 03 May 2018 13:36:43 +0200
libconfig-model-perl (2.122-1) unstable; urgency=medium
* New upstream version 2.122
* Warper: fix crash when a warper (aka warp master)
is a computed value
-- Dominique Dumont <dod@debian.org> Wed, 18 Apr 2018 14:22:39 +0200
libconfig-model-perl (2.121-1) unstable; urgency=medium
* New upstream version 2.121
* BackendMgr: fix handling of file argument
* use User class to log warning for User
* add README for the tests
* some tests can be rung with --log, --trace and --error
options. See t/README.pod for details
-- Dominique Dumont <dod@debian.org> Mon, 16 Apr 2018 15:56:12 +0200
libconfig-model-perl (2.120-1) unstable; urgency=medium
* New upstream version 2.120
* fix config file location declared with absolute
path (i.e. all system application like ssh, systemd)
-- Dominique Dumont <dod@debian.org> Sun, 08 Apr 2018 19:14:10 +0200
libconfig-model-perl (2.119-1) unstable; urgency=medium
* New upstream version 2.119
* use logger to warn about issues. By default, logged warnings
are shown on STDOUT. These warnings can be suppressed
using ~/.log4config-model file.
* BackendMgr: fix broken file backup
* Backend: create dir before creating file
* Yaml backend: avoid redefined sub warning
* control: depends on libconfig-model-tester-perl >= 3.005
* control: add BD-I on libtest-log-log4perl-perl
-- Dominique Dumont <dod@debian.org> Wed, 04 Apr 2018 13:54:01 +0200
libconfig-model-perl (2.118-1) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* Update Vcs-* headers for switch to salsa.debian.org
[ Dominique Dumont ]
* New upstream version 2.118
* BackendMgr: deprecate using STDIN to load config file. Which
means using '-' with cme '-file' option is deprecated.
* Backends: Improve global comment extraction
-- Dominique Dumont <dod@debian.org> Thu, 29 Mar 2018 19:26:01 +0200
libconfig-model-perl (2.117-1) unstable; urgency=medium
[ Damyan Ivanov ]
* declare conformance with Policy 4.1.3 (no changes needed)
[ Dominique Dumont ]
* New upstream version 2.117:
* notify about addition of hash key only when needed
* fix error message of "missing file" exception
* copyright: updated copyright year of Dominique Dumont
-- Dominique Dumont <dod@debian.org> Mon, 19 Feb 2018 18:49:57 +0100
libconfig-model-perl (2.116-1) unstable; urgency=medium
[ Damyan Ivanov ]
* declare conformance with Policy 4.1.2 (no changes needed)
[ Dominique Dumont ]
* New upstream version 2.116:
* ShellVar backend: don't reorder when writing back (experimental)
* Loader: provide "english" operator foreach_match, rm rm_value,
rm_match, substitute. These are equivalent to :-~ :- :-= :-~ :=~
operators. These new operators can be used by 'cme modify'
-- Dominique Dumont <dod@debian.org> Mon, 18 Dec 2017 19:08:34 +0100
libconfig-model-perl (2.114-1) unstable; urgency=medium
* New upstream version 2.114
* support for multiple backends is now removed. Attempting to
configure multiple backend leads to an error message with
explanations.
* Node: add gist parameter and fetch_gist method to get a summary
of node content to be shown in user interface.
* Instance: no longer show diff-like changes
* don't drop value when -force is used (gh #15)
* AnyId: add notification triggered by adding a new element to a
hash or array.
* control: remove dep on libtext-diff-perl
-- Dominique Dumont <dod@debian.org> Sun, 12 Nov 2017 18:45:05 +0100
libconfig-model-perl (2.113-2) unstable; urgency=medium
* Fix autopkgtest: add debian/tests/pkg-perl/smoke-files.
t/load.t needs README.md since 2.113.
* autopkgtest: enable syntax.t by adding
debian/tests/pkg-perl/syntax-skip.
* Add debian/duck-overrides to cover a false positive about a moved
webpage.
* Remove traling whitespace in debian/control.
Thanks to pedantic lintian.
* Drop debian/libconfig-model-perl.examples.
The examples/ directory is gone since 2.085.
-- gregor herrmann <gregoa@debian.org> Sun, 05 Nov 2017 17:41:45 +0100
libconfig-model-perl (2.113-1) unstable; urgency=medium
* New upstream version 2.113
* update models (Fstab Multistrap PopCon) to use new rw_config parameter
* do not notify when deleting an undef value in a hash (Closes: #876967)
* remove confusing "master triggered changed" message
* New features usable with 'cme modify' or in a cme script
(used by 'cme run'):
* add "=.env(...)" instruction to store the content of an environment
variable in a value
* add "=.file(...)" instruction to store a file in a value.
".file(-)" reads from STDIN.
* control: declare compliance with policy 4.1.1
-- Dominique Dumont <dod@debian.org> Fri, 13 Oct 2017 13:35:11 +0200
libconfig-model-perl (2.112-1) unstable; urgency=medium
* New upstream version 2.112
* Value: trigger a warp after apply_fix is called
* Value: apply replace when warping
* don't initialise Log4Perl if already done
* Avoid warning when YAML data is missing
-- Dominique Dumont <dod@debian.org> Mon, 02 Oct 2017 12:09:32 +0200
libconfig-model-perl (2.111-1) unstable; urgency=medium
* New upstream version 2.111
* the model parameters read_config and write_config that are used
to specify different read and write backends are deprecated
in favor of rw_config to specify *one* r/w backend
* multiple backends are deprecated.
* Value: allow regexp and code test for enum (like warn_if_match)
* can run tests concurrently: prove -j8 runs all tests in 4s
(16s without -j8)
-- Dominique Dumont <dod@debian.org> Sun, 24 Sep 2017 12:52:52 +0200
libconfig-model-perl (2.108-1) unstable; urgency=medium
* New upstream version 2.108
* custom backends are deprecated
* ValueComputer: safer use of variables in eval: variables are
passed to the eval'ed code in a hash insted of being inserted
*in* the code to eval.
* value: fix mechanism to avoid repetitive warnings (Thanks Tincho)
* use check => skip when fetching a value from
is_element_available method. This avoid missing warnings when
is_element_available function triggers a read of a configuration
file (like debian/control)
* control: remove obsolete Breaks (cme)
* control: Declare compliance with policy 4.1.0
-- Dominique Dumont <dod@debian.org> Sun, 03 Sep 2017 11:52:36 +0200
libconfig-model-perl (2.106-1) unstable; urgency=medium
* New upstream version 2.106
* Improve behavior on errors. See Changes file for details
-- Dominique Dumont <dod@debian.org> Tue, 15 Aug 2017 20:46:07 +0200
libconfig-model-perl (2.105-2) unstable; urgency=medium
* re-release to unstable
* control: Declare compliance with policy 4.0.0
-- Dominique Dumont <dod@debian.org> Wed, 21 Jun 2017 17:47:42 +0200
libconfig-model-perl (2.105-1) experimental; urgency=medium
* New upstream version 2.105
* Value: fix fetch in non_upstream_default mode to avoid breaking
'cme meta plugin' command
-- Dominique Dumont <dod@debian.org> Fri, 09 Jun 2017 21:40:40 +0200
libconfig-model-perl (2.104-1) experimental; urgency=medium
* New upstream version 2.104
* Instance: add backend_arg to enable misc parameter for cme command
(e.g a systemd service name for systemd model or a patch name for
Dpkg patch model).
* control: depends on libconfig-model-tester-perl >= 2.062
-- Dominique Dumont <dod@debian.org> Sat, 03 Jun 2017 21:26:52 +0200
libconfig-model-perl (2.102-2) experimental; urgency=medium
* control: added back BD-I on libyaml-perl which is used during tests
-- Dominique Dumont <dod@debian.org> Tue, 16 May 2017 08:13:44 +0200
libconfig-model-perl (2.102-1) experimental; urgency=medium
* New upstream version 2.102
* do not rely on '.' in @INC to load snippet model files
(CVE-2017-0374)
* genclasspod: remove use lib (CVE-2017-0373)
* avoid possible creation of Perl object through hostile
YAML file: use YAML::Tiny in YAML backend instead of YAML::Any
* model can choose YAML parser (default YAML::Tiny)
* boolean value: accept empty string as false value
* control: depends on libyaml-tiny-perl
* add stretch only release (2.097-2) entry in changelog
-- Dominique Dumont <dod@debian.org> Mon, 15 May 2017 12:47:32 +0200
libconfig-model-perl (2.101-1) experimental; urgency=medium
* New upstream version 2.101
* Add assign_char and assign_with to IniFile backend. So it can
be used for files with "key: value" lines.
* add option to write hash key with empty values. By default empty
hash values are dropped and the hash keys of these values are lost.
* Value: if possible show why a fix is applied, i.e. show the warning
that triggered the fix
* improved log levels (i.e. move some log from debug to info or trace)
-- Dominique Dumont <dod@debian.org> Sat, 29 Apr 2017 11:49:27 +0200
libconfig-model-perl (2.100-1) experimental; urgency=medium
* New upstream version 2.100
* Unknown element exception show instructions to report a bug.
* add compute information in generated doc
* pod generator: show default values in item list
* remove fix-file-mode-test patch
-- Dominique Dumont <dod@debian.org> Sun, 19 Mar 2017 17:32:25 +0100
libconfig-model-perl (2.099-2) experimental; urgency=medium
* add patch to fix file_mode test
-- Dominique Dumont <dod@debian.org> Wed, 08 Mar 2017 19:03:09 +0100
libconfig-model-perl (2.099-1) experimental; urgency=medium
* New upstream version 2.099
* add file_mode parameter to backend specification. This
parameter sets the permission (mode) of written configuration
files
* control: update dep libconfig-model-tester-perl >= 2.060
-- Dominique Dumont <dod@debian.org> Tue, 07 Mar 2017 20:57:50 +0100
libconfig-model-perl (2.098-1) experimental; urgency=medium
* New upstream version 2.098:
* Model improvements:
* allow injection of model snippet in another configuration class.
This is used by dpkg model: a dpkg-control default value is
computed from a value in dpkg model only when dpkg-control model
is loaded with dpkg model,
* add doc for has_instance and get_instance methods
* Plainfile backend improvements:
* handle deletion of file managed by Plainfile backend
* plainfile backend can handle file named with &element and &index
functions, i.e the config file name can depend on the location
of the value in the configuration tree. (used by dpkg model for
debian/<pkg>.install files)
* Value computer improvements:
* doc: mention that functions are allowed in variable definition
* allow '- -' or '--' param to &index
* Bug fix:
* fix error forwarding in BackendMgr
* warn when Term::ReadLine::Gnu is not installed
* fix term UI set command to accept white spaces
* Loader: allow creation of empty hash leaf
* copyright: bumped © years
* control: BD-I on libconfig-model-tester-perl 2.059
-- Dominique Dumont <dod@debian.org> Tue, 28 Feb 2017 13:54:33 +0100
libconfig-model-perl (2.097-2) unstable; urgency=medium
* add patch to remove 'use lib' (CVE-2017-0373)
* add patch to remove '.' in @INC emulation (CVE-2017-0374)
* rules: add '.' in @INC for tests
* package for stretch release only
-- Dominique Dumont <dod@debian.org> Sun, 14 May 2017 18:20:55 +0200
libconfig-model-perl (2.097-1) unstable; urgency=medium
* New upstream version 2.097
* fix a regression seen when starting curses interface
-- Dominique Dumont <dod@debian.org> Thu, 22 Dec 2016 19:18:27 +0100
libconfig-model-perl (2.096-1) unstable; urgency=medium
* New upstream version 2.096
* New feature usable by cme:
* loader: add .insort() command for hash element
* Hash element: add insort method
Term UI improvement
* fix autocompletion of 'cd' command
* add -nz and -v option to ll command
* ll command accept several patterns
* improved ll output
* better format the output of 'desc' command (transform
pod doc to text).
Bug fix:
* show complete stack trace of rethrown exceptions
* Node: propagate check param when calling init
(which fix cme's -force option)
* track and save annotation changes (gh #12)
* Node: propagate check override in init() (which fixes
loading of a systemd config that contains an error)
* control:
* require v0.070 of libpath-tiny-perl
* add dependency libregexp-common-perl
-- Dominique Dumont <dod@debian.org> Mon, 12 Dec 2016 13:42:12 +0100
libconfig-model-perl (2.094-1) unstable; urgency=medium
* New upstream version 2.094
* Allow alternate comment char in INI config file (gh #10)
required to support Systemd config files
* Better support of utf8 in term UI
-- Dominique Dumont <dod@debian.org> Thu, 10 Nov 2016 13:35:45 +0100
libconfig-model-perl (2.092-1) unstable; urgency=medium
* New upstream version 2.092
* New feature in shell UI:
* 'll' command shows a warning sign when an element
has a warning that may be fixed
* added 'check' command
* 'fix' command can be applied to selected element instead
on the whole config.
-- Dominique Dumont <dod@debian.org> Sat, 24 Sep 2016 17:46:09 +0200
libconfig-model-perl (2.091-1) unstable; urgency=medium
* New upstream version 2.091:
* really fix issue with '.' removal from @INC
(needed to close Debian #837682)
-- Dominique Dumont <dod@debian.org> Wed, 14 Sep 2016 11:13:49 +0200
libconfig-model-perl (2.090-1) unstable; urgency=medium
* New upstream version 2.090
* Model developer can use $std_value in warning messages to
provide better feedback to user. This variable is substituted
with preset, computed or default value when the message is
generated.
* remove obsolete skip_read parameter
(breaks App::Cme older than v1.011)
* Add double quote when dumping a value that contains '#'
(Closes: #837133)
* Value: generates same error messages for warn_if, warn_if_match
* fix other collaterals of '.' removal from @INC
* control: added breaks cme < 1.011
-- Dominique Dumont <dod@debian.org> Sun, 11 Sep 2016 19:48:32 +0200
libconfig-model-perl (2.089-1) unstable; urgency=medium
[ gregor herrmann ]
* Remove Fabrizio Regalli from Uploaders. Thanks for your work!
* Remove Jonathan Yu from Uploaders. Thanks for your work!
[ Dominique Dumont ]
* New upstream version 2.089
* load perl data file even if @INC does not contain '.' (required
for perl 5.14 or Debian perl 5.22.2-4)
* Loader: trap another syntax error in load steps. This may breaks
existing tests or cme scripts that contain such an error.
-- Dominique Dumont <dod@debian.org> Mon, 05 Sep 2016 15:39:09 +0200
libconfig-model-perl (2.088-1) unstable; urgency=medium
* Imported Upstream version 2.088:
* document repo structure in CONTRIBUTE file
* add CREDITS section in main doc
* New instructions for 'cme modify'
* add copy command for list
* add clear command for list and hash
* use sort keys to get consistent warning order
(which is important for non-regression tests)
* fix regexps for Perl 5.22 (gh #6) Tx mat813
* ship CONTRIBUTING.md in docs
-- Dominique Dumont <dod@debian.org> Sun, 10 Jul 2016 18:02:47 +0200
libconfig-model-perl (2.087-1) unstable; urgency=medium
[ gregor herrmann ]
* debian/upstream/metadata: use HTTPS for GitHub URLs.
[ Dominique Dumont ]
* Imported Upstream version 2.087
Mostly doc improvements and some bug fixes
-- Dominique Dumont <dod@debian.org> Thu, 30 Jun 2016 13:49:59 +0200
libconfig-model-perl (2.086-1) unstable; urgency=medium
* Imported Upstream version 2.086
Fixed some bugs so that cme() function works with
new Systemd model
-- Dominique Dumont <dod@debian.org> Mon, 06 Jun 2016 18:53:06 +0200
libconfig-model-perl (2.085-1) unstable; urgency=medium
[ gregor herrmann ]
* Simplify BTS URL.
* debian/copyright: change Copyright-Format 1.0 URL to HTTPS.
* debian/upstream/metadata: change GitHub/CPAN URL(s) to HTTPS.
[ Dominique Dumont ]
* Imported Upstream version 2.085
* This new releases brings new functions to simplify script that modify
configuration files. For instance, the following line is enough to
update popcon's configuration file:
cme('popcon')->modify("PARTICIPATE=yes");
* Fix gen_class_pod which skipped some classes
(fix reproducible build of libconfig-model-openssh-perl)
-- Dominique Dumont <dod@debian.org> Sun, 29 May 2016 19:38:51 +0200
libconfig-model-perl (2.083-1) unstable; urgency=medium
* Imported Upstream version 2.083
* control: Standards-Version: '3.9.7' -> '3.9.8'
-- Dominique Dumont <dod@debian.org> Thu, 21 Apr 2016 10:48:53 +0200
libconfig-model-perl (2.082-1) unstable; urgency=medium
* Imported Upstream version 2.082
* Loader: list operator :~ with no argument loops
over all values of a hash element
* Loader: fix loop bug which exited too soon
* Fix tests broken by C::M::Tester 2.053 (required)
* removed Log4Perl instructions from synopsis.
Log4Perl initialisation is handled by Config::Model
constructor since v2.057
* control: removed deps on perl >= 5.11
* control: build-dep on libconfig-model-tester-perl (>= 2.053)
-- Dominique Dumont <dod@debian.org> Wed, 30 Mar 2016 12:33:44 +0200
libconfig-model-perl (2.081-1) unstable; urgency=medium
* Imported Upstream version 2.081
* storing a wrong value is no longer ignored but now
triggers an exception.
* Trigger change notif when store_set reduces the nb of items
(closes gh #4)
* Improved change message shown to user
* Value: don't display grammar in case of error
* Fix error handling in Value.
* control: updated Standard-Version to 3.9.7
-- Dominique Dumont <dod@debian.org> Tue, 01 Mar 2016 19:51:49 +0100
libconfig-model-perl (2.079-1) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* debian/control: Use HTTPS transport protocol for Vcs-Git URI
[ Dominique Dumont ]
* Imported Upstream version 2.079
* Remove YAML file when no data is left
* When a root class has only one element, the backend
write (and read) only the content of that element (this
reduce the depth of the written data structure by one).
* Added "ChangeTracker" log class and traces (Log::Log4Perl)
* HashId: load_data can load ordered data in non-ordered hash
* Removed Exception::Class from warper error handler
(gh #5, Thanks jplesnik)
* Dumper/Loader: handle literal \\n
-- Dominique Dumont <dod@debian.org> Sat, 20 Feb 2016 19:21:25 +0100
libconfig-model-perl (2.078-1) unstable; urgency=medium
* Imported Upstream version 2.078:
* Error handling no longer uses Exception::Class.
* Config::Model: fix get_element_property (fix a bug with cme dpkg where
XS-Autobuild is wrongly added to debian/control file)
* Config::Model::Value:
* don't check value when loading layered config (aka system
default values). These values are assumed to be correct.
* accept when a mandatory value is set by a layered value.
(this fixes hangs in libconfig-model-itself-perl tests)
* copyright: updated years
* control:
- removed libexception-class-perl dependency
+ recommends cme
-- Dominique Dumont <dod@debian.org> Mon, 25 Jan 2016 13:12:14 +0100
libconfig-model-perl (2.077-1) unstable; urgency=medium
* Imported Upstream version 2.077
* Loader: added hash copy command. This new command can be used with
something like: "cme modify stuff some_hash:.copy(from,to)"
* Instance: added config_dir (used when provided by application info
and not by model)
* IniFile backend can read/write check list
* Warp feature can be driven by a check list. See upstream change
file for details.
* ValueComputer: escape quotes in variables (Closes: #810768)
* Value: fix check of reference values
-- Dominique Dumont <dod@debian.org> Thu, 21 Jan 2016 10:17:01 +0100
libconfig-model-perl (2.075-2) unstable; urgency=medium
* properly remove obsolete conffile /etc/bash_completion.d/cme_multistrap
(Closes: #806766)
-- Dominique Dumont <dod@debian.org> Sat, 02 Jan 2016 17:58:48 +0100
libconfig-model-perl (2.075-1) unstable; urgency=medium
* Imported Upstream version 2.075
* Lister can list local (dev) application
-- Dominique Dumont <dod@debian.org> Tue, 24 Nov 2015 10:13:12 +0100
libconfig-model-perl (2.074-1) unstable; urgency=medium
* Imported Upstream version 2.074
* Loader: added navigation with upward search. E.g. with a
command like '/foo', the loader will go up the tree until
a node containing a 'foo' element is found.
-- Dominique Dumont <dod@debian.org> Tue, 13 Oct 2015 12:11:01 +0200
libconfig-model-perl (2.073-1) unstable; urgency=medium
* Imported Upstream version 2.073
* Loader: convert literal "\n" into real \n
* shell UI: added 'tree' command to show config tree from current node
* Node: Warn if an accepted element is likely a typo (required for #789568)
(this feature requires module Text::Levenshtein::Damerau to be installed)
* removed cme-old command
* removed cme-old bash_completion file (conffile)
* control: added libtext-levenshtein-damerau-perl in BDI and Recommends
-- Dominique Dumont <dod@debian.org> Tue, 21 Jul 2015 13:28:42 +0200
libconfig-model-perl (2.071-3) unstable; urgency=medium
* Add build dependency on libmodule-build-perl.
* Add debian/upstream/metadata.
* Update years of packaging copyright.
-- gregor herrmann <gregoa@debian.org> Fri, 05 Jun 2015 15:33:17 +0200
libconfig-model-perl (2.071-2) unstable; urgency=medium
* removed dh_cme_upgrade (now in cme package)
-- Dominique Dumont <dod@debian.org> Thu, 28 May 2015 19:55:59 +0200
libconfig-model-perl (2.071-1) unstable; urgency=medium
* Imported Upstream version 2.071:
* shell like user interface:
* fixed completion of commands (like set, clear...)
* improved error message sent when command is wrong
* use item location as prompt
* Loader: fixed parding of command like foo:.insort("bar( stuff )")
which are also used in shell UI.
* Backend::Any: mention cme command used to edit config file in
comment header when writing back files. (e.g. "You can run
'cme edit lcdproc' to modify this file" is written in header
of /etc/LCDd.conf)
* Value: fixed formatting and errors in pod doc
* Added patch to fix debci (Closes: #785528)
-- Dominique Dumont <dod@debian.org> Sat, 23 May 2015 14:24:42 +0200
libconfig-model-perl (2.070-1) unstable; urgency=medium
* Imported Upstream version 2.070:
* Model:
* include no longer include read/write spec (Closes: #783952)
read/write is now included with include_backend
* Hash and Array: clear now triggers notify_change
* Value: boolean conversion (e.g yes/no to 1/0) during initial load
must not trigger a change notification...
* shell UI:
+ added fix command
+ added clear command for list hash and value.
* dh_cme_upgrade:
* tell user where to find config file when refusing automatic upgrade
* inject dependency on cme and not on libconfig-model-perl
* added mainscript to remove obselete conffiles (Closes: #784113)
-- Dominique Dumont <dod@debian.org> Sun, 03 May 2015 17:40:16 +0200
libconfig-model-perl (2.069-1) unstable; urgency=medium
* Imported Upstream version 2.069
* Model: Allow inclusion of read/write specification
-- Dominique Dumont <dod@debian.org> Sun, 26 Apr 2015 14:25:00 +0200
libconfig-model-perl (2.068-1) experimental; urgency=medium
* Imported Upstream version 2.068
* Value: request configuration save when initial load
detects problem like duplicated or mismatched values
in config file
-- Dominique Dumont <dod@debian.org> Mon, 30 Mar 2015 09:08:44 +0200
libconfig-model-perl (2.067-1) experimental; urgency=medium
* Imported Upstream version 2.067 (doc and bug fixes)
-- Dominique Dumont <dod@debian.org> Tue, 03 Mar 2015 13:39:10 +0100
libconfig-model-perl (2.066-1) experimental; urgency=medium
* Imported Upstream version 2.066
* C::M::Instance:
+ added on_message_cb and show_message parameters
* C::M::GenClassPod:
* added missing doc for gen_class_pod parameters
* generate doc in a reproducible way by using "sort keys". This should
fix Debian problem with unreproducible build found on
libconfig-model-dpkg-perl and libconfig-model-itself-perl
* control: added Testsuite parameter
-- Dominique Dumont <dod@debian.org> Tue, 17 Feb 2015 13:06:38 +0100
libconfig-model-perl (2.065-1) experimental; urgency=medium
* Imported Upstream version 2.065
* control: updated Standard-Version to 3.9.6
* copyright: updated © years
-- Dominique Dumont <dod@debian.org> Wed, 07 Jan 2015 12:07:55 +0100
libconfig-model-perl (2.064-1) experimental; urgency=medium
* Imported Upstream version 2.064
-- Dominique Dumont <dod@debian.org> Fri, 05 Dec 2014 13:20:06 +0100
libconfig-model-perl (2.063-1) experimental; urgency=medium
* Imported Upstream version 2.063:
* old config-edit command is now gone
* cme command is no longer delivered with this package.
cme is now delivered cme package (Closes: #752797).
To help the transition, this package delivers cme-old. You can
use this command until cme package is available or if you find
bugs in the new cme command (which now uses App::Cmd).
* refreshed patches
* updated remove-call-to-env patch
* updated add_dh_config patch patch
-- Dominique Dumont <dod@debian.org> Mon, 01 Dec 2014 17:41:29 +0100
libconfig-model-perl (2.061-1) unstable; urgency=medium
* Imported Upstream version 2.061:
* ValueComputer: leave $@ and $! alone in formula.
Also skip variables like '$ foo'
-- Dominique Dumont <dod@debian.org> Wed, 24 Sep 2014 08:46:31 +0200
libconfig-model-perl (2.060-1) unstable; urgency=medium
[ Salvatore Bonaccorso ]
* Update Vcs-Browser URL to cgit web frontend
[ Dominique Dumont ]
* Imported Upstream version 2.060
* Avoid new perl 5.20 warning (Closes: #758320)
* Value: improved notify change message (computed vs preset vs default)
* fix pod doc in cme (Closes: #756433)
* removed obsolete cleanup-yaml-version patch
-- Dominique Dumont <dod@debian.org> Mon, 08 Sep 2014 18:37:29 +0200
libconfig-model-perl (2.059-1) unstable; urgency=medium
* Imported Upstream version 2.059:
* cme:
+ added shell command as a shortcut to 'cme edit -ui shell'.
E.g 'cme shell ssh' to edit ssh_config through a shell like UI
+ add :@ and :.sort sub command for ordered hash.
E.g.: "cme modify dpkg-control ~~ 'binary:~/.*/ Depends:.sort' -save"
or "cme modify dpkg-copyright ~~ 'Files:.sort' -save "
* cme shell mode:
* fix or add completion for several commands
* added shell style pattern match to ll and ls command (e.g 'ls foo*')
* remove version req from use YAML::Any 0.303 (Closes: #752942 #753207)
* added patch to cleanup YAML::Any version from META.* and Build.PL
-- Dominique Dumont <dod@debian.org> Mon, 30 Jun 2014 13:20:50 +0200
libconfig-model-perl (2.058-1) unstable; urgency=medium
* New upstream release.
Fixes 'cme check dpkg-copyright' crash.
* Drop patch fix-cryptic-message, merged upstream.
* Update years of packaging copyright.
-- gregor herrmann <gregoa@debian.org> Thu, 19 Jun 2014 22:51:17 +0200
libconfig-model-perl (2.057-1) unstable; urgency=medium
* cme: modify cryptic user message about "Fixing stuff"
* fix dh_cme_upgrade pod doc
* Revert "cme: modify cryptic user message about "Fixing stuff""
* added patch to fix cme cryptic message
* Imported Upstream version 2.057
-- Dominique Dumont <dod@debian.org> Sun, 15 Jun 2014 21:01:15 +0200
libconfig-model-perl (2.056-1) unstable; urgency=medium
* Imported Upstream version 2.056
- This release deprecates experience associated with configuration
element. experience specification in models is now ignored.
* added bash_completion snippet associated to a model. This will
be useful for dpkg-patch model
* replaced File::Slurp and Path::Class with Path::Tiny
* control:
- removed dep on libfile-slurp-perl and libpath-class-perl
+ added dep on libpath-tiny-perl
+ bash_completion: added cme_multistrap
* refreshed patch
-- Dominique Dumont <dod@debian.org> Tue, 20 May 2014 07:52:31 +0200
libconfig-model-perl (2.055-1) unstable; urgency=medium
* Imported Upstream version 2.055
This release removes all code related to asynchronous stores.
You may see deprecation warning about callback parameter with
other Config::Model::* modules. This will be fixed soon.
* control: removed dep on libanyevent-perl, libev-perl,
libnamespace-autoclean-perl
-- Dominique Dumont <dod@debian.org> Mon, 05 May 2014 14:05:45 +0200
libconfig-model-perl (2.054-1) unstable; urgency=medium
* Imported Upstream version 2.054
* Loader Dumper: fix quote handling (Closes: #743097)
* Loader: return 'ok' after dispatching an action (avoid undef warning
during tests)
* cme: -save options force a save even if no semantic change was done
* ListId: sort may trigger notify_change is elements are actually
moved around, so 'cme modify stuff list:.sort' will save the file
as expected.
-- Dominique Dumont <dod@debian.org> Thu, 03 Apr 2014 19:08:06 +0200
libconfig-model-perl (2.053-1) unstable; urgency=medium
* Imported Upstream version 2.053:
* Loader: fix broken list leaf assignment (like 'list:4=foo')
-- Dominique Dumont <dod@debian.org> Tue, 25 Mar 2014 20:46:22 +0100
libconfig-model-perl (2.052-1) unstable; urgency=medium
* Imported Upstream version 2.052
+ added remove by value on list and hash ( :-= and :-~ )
(Closes: #741453)
+ added lots of list and hash operator usable on 'cme modify stuff'.
E.g. :.insort :.insert_before :.insert_at :.unshift :.push :.sort
+ handle list/hash value substitution ( e.g. list:=~s/foo/bar/ )
* warn when trying to remove a list element with a non numeric index
* rationalize list and hash commands: list assignment is now
list:=a,b,c instead of list=a,b,c
-- Dominique Dumont <dod@debian.org> Tue, 25 Mar 2014 18:45:22 +0100
libconfig-model-perl (2.051-1) unstable; urgency=medium
[ gregor herrmann ]
* Strip trailing slash from metacpan URLs.
[ Dominique Dumont ]
* Imported Upstream version 2.051:
* cme: fix command like "cme modify foo ~~ <load_instructions>"
* ValueComputer: formula with eval no longer mess with $& and ${^MATCH}
variables used in regexp
-- Dominique Dumont <dod@debian.org> Fri, 07 Mar 2014 17:49:54 +0100
libconfig-model-perl (2.050-1) unstable; urgency=medium
* Imported Upstream version 2.050
+ new features of cme command:
+ add possibility to override config file (for appli with
allow_config_file_override) (part of Debian #739387) if config
file override is '-', open STDIN to read and STDOUT to write.
This way, cme can be used as a filter.
+ added -strict option so cme exits 1 when warnings are found
(Closes: #736972)
+ added -save option to force save. Useful when just reformatting
is desired
+ modify command can apply Perl substitution (s/foo/bar/) to
configuration values. See cme(1p) synopsis.
* Other changes:
* C::M::Loader (used by 'cme modify'):
* changed hash selection =~ sub-command to :~
+ added =~ subcommand to apply Perl substitution to values
* Config::Model: load EV at compile time (Closes: #738975)
* control: added [build]depends on libev-perl
-- Dominique Dumont <dod@debian.org> Fri, 28 Feb 2014 13:18:21 +0100
libconfig-model-perl (2.047-1) unstable; urgency=medium
* Imported Upstream version 2.047
* Value: store a good value cancels the error stored in Instance
* Shell like inteface:
* list unsaved changes and propose to save on exit or quit
* fixed "save" command
* added 'changes' command to list unsaved changes
* allow also delete command on leaf element
* added reset command to set a leaf element to undef
* allow spaces around '=' and ':'
* copyright: updated years
-- Dominique Dumont <dod@debian.org> Mon, 27 Jan 2014 20:43:26 +0100
libconfig-model-perl (2.046-2) unstable; urgency=low
* dh_cme_upgrade (formerly dh_config_model_upgrade) is now working:
* mostly re-written
* is run before install phase(ignored if run too soon)
* can use cme to create a configuration file from scratch
+ new cme-purge options to specify which files to delete when purging
* allow packager to use 'cme fix' instead of 'cme migrate' to allow
configuration fixes along with configuration upgrades
* query user to allow automatic configuration upgrade:
+ add a template file for that query
+ added debian/dh/config-script-cme
* debian/dh/postinst-cme:
* use '-backup dpkg-old' when calling 'cme migrate'
* fix manual upgrade instructions
-- Dominique Dumont <dod@debian.org> Fri, 17 Jan 2014 19:00:56 +0100
libconfig-model-perl (2.046-1) unstable; urgency=medium
* Imported Upstream version 2.046
* cme:
+ added -create option to force creation of missing configuration
file
* improved message about applied changes and don't show '0' as <undef>
* BackendMgr:
+ add note about cme in header of saved file (if comments
are supported in the configuration file format)
* Improved error message when no config file is found
* skip backup copy if no original file is found
* control: removed version of BD-I libconfig-model-tester-perl
-- Dominique Dumont <dod@debian.org> Wed, 18 Dec 2013 19:43:50 +0100
libconfig-model-perl (2.045-2) unstable; urgency=low
* Add missing Depends on libpath-class-perl (Closes: #728494, #728514)
* Bump Standards-Version to 3.9.5
-- Salvatore Bonaccorso <carnil@debian.org> Sat, 02 Nov 2013 09:55:18 +0100
libconfig-model-perl (2.045-1) unstable; urgency=low
* Imported Upstream version 2.045:
* cme: print an error message when no application is
specified (Closes: #726447)
* Added JSON backend
* cme: force write back if -force option is used
* control:
* bump libconfig-model-tester to 2.046
- removed unused dep on libpath-class-perl
+ added dep on libjson-perl
-- Dominique Dumont <dod@debian.org> Sun, 20 Oct 2013 15:12:18 +0200
libconfig-model-perl (2.043-1) unstable; urgency=low
* Imported Upstream version 2.043:
* Value: accept yes/no true/false as default value for Boolean.
This can make model declaration more consistent when boolean
value must be written as true/false, yes/no. In this case,
forcing model developer to write default value as 0/1 was not
cool and prevented generation of model like LcdProc's model.
* Config::Model: load AnyEvent as soon as possible to avoid
test issues
+ added patch to replace '#!/usr/bin/env perl' with #!/usr/bin/perl
- control: removed dependencies that were needed by dpkg model
-- Dominique Dumont <dod@debian.org> Sat, 21 Sep 2013 12:19:37 +0200
libconfig-model-perl (2.041-1) unstable; urgency=low
* Imported Upstream version 2.041
* The ENCRYPT parameter of Popularity contest model was changed from
boolean type to a yes,maybe,no value, thus allowing a
"réponse de Normand" ;) This follows up resolution of Debian
bug #714917.
* Config::Model::Tester class was moved in its own distribution.
* Avoid warning with 'cme list' (Closes: #719197)
* ShellVar backend: Allow variable assignement like "foo = value".
This is not legal is Shell but sometimes used in configuration files
using a shell like syntax (Closes: #719256)
* control: BD-I on libconfig-model-tester-perl. Removed unused build-dep
-- Dominique Dumont <dod@debian.org> Tue, 20 Aug 2013 14:26:58 +0200
libconfig-model-perl (2.040-1) unstable; urgency=low
* Imported Upstream version 2.040
* improved check_list
* backend can now handled layered config like ssh_config
* added example of log config file for Config::Model in doc
* refreshed patch
* control:
* updated description to explain why some packages are
recommended or suggested
* - removed 'enhances' relation with lcdproc (no longer applies)
-- Dominique Dumont <dod@debian.org> Mon, 22 Jul 2013 19:46:13 +0200
libconfig-model-perl (2.038-1) unstable; urgency=low
* Imported Upstream version 2.038:
+ cme: added -backup option.
+ popcon model: added ENCRYPT support
* Ini backend: fix bug with 'cme check lcdproc' run on
upstream LCDd.conf
* copyright: removed unused GPL-2 license
-- Dominique Dumont <dod@debian.org> Thu, 04 Jul 2013 20:16:42 +0200
libconfig-model-perl (2.037-1) unstable; urgency=low
* Imported Upstream version 2.037:
* Removed LcdProc model (now in its own package)
* copyright: removed lcdproc related files
* control: removed lcdproc from description
* bumped compat to 9
-- Dominique Dumont <dod@debian.org> Wed, 19 Jun 2013 09:02:33 +0200
libconfig-model-perl (2.036-1) unstable; urgency=low
[ gregor herrmann ]
* Add =encoding to POD in dh_config_model_upgrade.
[ Dominique Dumont ]
* Imported Upstream version 2.036
* config-edit: added deprecation warning
* Value: fix pod doc error in L<> (Closes: #709784)
* Node::load_data: use a predictable order to accept elements.
This change fixes the test failure in t/backend_ini.t
(Closes: #709785)
* make t/pod.t run only when AUTHOR_TESTING is set
-- Dominique Dumont <dod@debian.org> Sun, 26 May 2013 12:40:30 +0200
libconfig-model-perl (2.035-1) unstable; urgency=low
* Imported Upstream version 2.035:
* cme:
* make sure that async store is used before actual check
* load Tk only when using edit command (avoids issues on exit
with AnyEvent)
* All: use directly Mouse instead of going through Any::Moose
* Fstab model: added missing relatime option
* Doc: clarified and moved model plugin doc in advanced manual
- control: removed dependencies on libany-moose-perl
libanyevent-http-perl and libapt-pkg-perl
-- Dominique Dumont <dod@debian.org> Sat, 27 Apr 2013 20:09:27 +0200
libconfig-model-perl (2.030-1) unstable; urgency=low
[ Salvatore Bonaccorso ]
* Change Vcs-Git to canonical URI (git://anonscm.debian.org)
* Change search.cpan.org based URIs to metacpan.org based URIs
[ Dominique Dumont ]
* Imported Upstream version 2.030:
The main change of this release is to provide asynchronous store
check. Now, a model can check the validity of a configuration
value against a remote resource in a non-blocking way. This is
currently used by Dpkg model to check the validity of package
names with Debian server through several concurent http
requests. See /usr/share/doc/libconfig-model-perl/changelog
for more details.
* control: updated standaards-version to 3.9.4
* copyright: updated years
-- Dominique Dumont <dod@debian.org> Sat, 23 Mar 2013 17:05:19 +0100
libconfig-model-perl (2.029-2) unstable; urgency=low
* control: recommends fuse instead of transitional package
fuse-utils (Closes: #696610)
-- Dominique Dumont <dod@debian.org> Mon, 24 Dec 2012 12:23:58 +0100
libconfig-model-perl (2.029-1) unstable; urgency=low
* new upstream version
* cme-gen-class-pod: pod doc can be generated from
a class specified on command line argument (really this
time, previous version was broken)
* cme: run the first extension found in @INC, not the last one
-- Dominique Dumont <dod@debian.org> Wed, 28 Nov 2012 19:32:31 +0100
libconfig-model-perl (2.028-1) unstable; urgency=low
* Imported Upstream version 2.028
* cme:
+ added a BUGS section in man page
* Improved error message for unknown elements
-- Dominique Dumont <dod@debian.org> Tue, 27 Nov 2012 17:25:21 +0100
libconfig-model-perl (2.027-1) unstable; urgency=low
[ Salvatore Bonaccorso ]
* Add missing Depends on libfile-slurp-perl
[ Dominique Dumont ]
* new upstream version:
* fix checklist problem with writing default values
(which broke openssh demo). (Closes: #691338)
* Dumper: fix wrong module reference in pod doc
* removed add-extensions-file patch (applied upsream)
-- Dominique Dumont <dod@debian.org> Tue, 30 Oct 2012 19:22:39 +0100
libconfig-model-perl (2.026-3) unstable; urgency=low
* removed obsolete statement in NEWS (Closes: #689909)
* control: removed dep on lintian.
Added dep on libpath-class-perl (Closes #689958)
-- Dominique Dumont <dod@debian.org> Tue, 09 Oct 2012 13:42:39 +0200
libconfig-model-perl (2.026-2) unstable; urgency=low
* control: added libconfig-model-dpkg-perl and
libconfig-model-openssh-perl in suggests. updated
description. Moved libconfig-model-tkui-perl from suggest to
recommend.
-- Dominique Dumont <dod@debian.org> Sun, 07 Oct 2012 10:39:52 +0200
libconfig-model-perl (2.026-1) experimental; urgency=low
* Imported Upstream version 2.026:
Moved all Debian dpkg stuff into libonfig-model-dpkg-perl.
-- Dominique Dumont <dod@debian.org> Wed, 03 Oct 2012 11:23:22 +0200
libconfig-model-perl (2.024-1) experimental; urgency=low
[ gregor herrmann ]
* debian/control: update {versioned,alternative} (build) dependencies.
[ Dominique Dumont ]
* Imported Upstream version 2.024:
* Debian dpkg dependency:
* Warn and (maybe) remove unversioned dependency on essential
package (Closes: #684208)
* Warn and (maybe) replace perl-modules dependency with perl
* Don't mess with alternate dependency with < relation
(Closes: #682730)
* remove Debian epoch when checking perl module version
from corelist (Closes: #683861)
* cme command changes:
+ added bash completion for 'fix' subcommand
+ added -dir-char option for fusefs command. This option is
required when using fuse on top of debian/copyright,
for instance with
cme fusefs dpkg-copyright -fuse-dir tmp -dir-char '\'
* removed pod patch (applied upstream)
* removed corelist version patch (applied upstream)
* patched fuseui test: do not force load fuse in buildd
-- Dominique Dumont <dod@debian.org> Thu, 06 Sep 2012 15:59:30 +0200
libconfig-model-perl (2.023-2) experimental; urgency=low
* New patch module_corelist-version: Module::CoreList expects a version
object. Thanks to Ansgar Burchardt for his help.
-- gregor herrmann <gregoa@debian.org> Thu, 05 Jul 2012 11:53:24 -0600
libconfig-model-perl (2.023-1) experimental; urgency=low
* New upstream release:
- In control binary Depends, replace 'perl' dep with ${perl:Depends}
* Refresh patch add_dh_config (offset).
* New patch pod-glitch (missing "=back").
-- gregor herrmann <gregoa@debian.org> Wed, 04 Jul 2012 10:18:17 -0600
libconfig-model-perl (2.022-1) experimental; urgency=low
* New upstream release:
- added -from and -filter option to cme fix command
* Drop patch fix-race-condition-dependency-check, merged upstream.
-- gregor herrmann <gregoa@debian.org> Tue, 03 Jul 2012 11:56:59 -0600
libconfig-model-perl (2.021-3) unstable; urgency=low
* use patch from upstream to fix unsaved changes (Closes: #681353)
Config::Model saves back data only when they are changed. To keep
track of the changes, the notify_changes method must be called
whenever a data is changed, otherwise the modifications will be
lost. The patch fix-unsaved-change add calls to the notify_change
method where it was forgotten. The second patch
(test-fix-unsaved-changes) add the relevant test cases.
-- Dominique Dumont <dod@debian.org> Fri, 13 Jul 2012 14:22:05 +0200
libconfig-model-perl (2.021-2) unstable; urgency=low
* added a patch to fix a race condition between async calls to rmadison
-- Dominique Dumont <dod@debian.org> Fri, 29 Jun 2012 14:14:02 +0200
libconfig-model-perl (2.021-1) unstable; urgency=low
* Imported Upstream version 2.021
* Debian::Dpkg
* Bump default compat level to 9 (for hardening)
* dependency model:
* Make concurrent calls to madison to reduce user wait
with AnyEvent::HTTP
* make sure that apply_fix trigger notification changes
so the fixes are indeed saved when running apply_fix
(thanks to gregoa for the heads up)
* copyright: allow any non-space character for license short name
* imported upstream
* control:
- removed dep on libwww-perl
+ added dep on libanyevent-perl.
+ added dep on libanyevent-http-perl
-- Dominique Dumont <dod@debian.org> Fri, 29 Jun 2012 13:27:39 +0200
libconfig-model-perl (2.020-1) unstable; urgency=low
* new upstream release
* Fix DEP-3 model for patch handling
* fix cme doc example (Closes: #677069)
* control: Depends on liblist-moreutils-perl
-- Dominique Dumont <dod@debian.org> Thu, 21 Jun 2012 13:19:12 +0200
libconfig-model-perl (2.019-1) unstable; urgency=low
* Imported Upstream version 2.019
(Small bug fixes and doc improvements)
-- Dominique Dumont <dod@debian.org> Tue, 05 Jun 2012 19:05:32 +0200
libconfig-model-perl (2.018-1) unstable; urgency=low
* new upstream release
+ Debian::Dependency: Added a check and fix for debhelper version
requirement taking into account compat value. This check is
available only with full dpkg model (i.e. "cme xxx dpkg"
command). It is disabled when using only dpkg-contol model ("cme
xxx dpkg-control").
* Debian::Dpkg model: fix default Vcs-Git URL for debian-perl packages
* cme: better formatting when printing changes. No more false
positives.
+ control: added dependency on lintian (used to check debhelper dep
requirement vs compat
-- Dominique Dumont <dod@debian.org> Wed, 30 May 2012 14:46:13 +0200
libconfig-model-perl (2.015-1) unstable; urgency=low
* new upstream version
* Framework changes:
* List, Hash, Value: ensure that migration is done after initial
load, i.e. once all data from configuration file is loaded.
* Value: don't trigger notify_change with update undef -> undef
-- Dominique Dumont <dod@debian.org> Mon, 14 May 2012 21:11:29 +0200
libconfig-model-perl (2.014-1) unstable; urgency=low
* new upstream version:
* cme: list changes before saving data (unless save is handled by
user interface) (HEAD, master)
* Dpkg backend: provide error messages with the line
number where the error was found. (Closes: #670441)
* control: new dependency on libtext-diff-perl
-- Dominique Dumont <dod@debian.org> Sun, 06 May 2012 10:13:54 +0200
libconfig-model-perl (2.013-1) unstable; urgency=low
* Imported Upstream version:
* Debian Dpkg model: Moved libtiff4 transition warning
from source Build-Depends to binary Depends
* Debian Dep-3 patch parser: quilt formats patch in a very concise
way. There's no Index: line and no '====='. OTOH, imported patch
may contain this lines until the patch is refreshed. This commit
makes sure that both types of patch are parsed correctly.
* Debian model: changed meta element into my-config. This should
make clear that this element stores user's config regarding dpkg
files.
* Tester: Produced file order is not important. Make sure both
list are sorted before being compared (Closes: #666705)
-- Dominique Dumont <dod@debian.org> Sat, 07 Apr 2012 19:34:55 +0200
libconfig-model-perl (2.011-3) unstable; urgency=low
* bash-completion: added forgotten file for cme
-- Dominique Dumont <dod@debian.org> Sat, 24 Mar 2012 14:07:04 +0100
libconfig-model-perl (2.011-2) unstable; urgency=low
* Set temporary $HOME during build for test suite. (Closes: #665228)
-- gregor herrmann <gregoa@debian.org> Fri, 23 Mar 2012 00:20:08 +0100
libconfig-model-perl (2.011-1) unstable; urgency=low
* Imported Upstream version 2.011:
+ Debian copyright: added deprecated License-Alias parameter.
When set to 'Perl', this parameter is migrated into
License: Artistic or GPL-1+
+ Debian DpkgSyntax: better error message. This was really annoying
for DEP-3 patch parser.
+ cme: added forgotten -stack-trace option
-- Dominique Dumont <dod@debian.org> Tue, 20 Mar 2012 12:50:35 +0100
libconfig-model-perl (2.010-1) unstable; urgency=low
* Imported Upstream version 2.010
* Debian control:
* fix warning of section and priority fields
+ added check and fix for libpng and libtiff4 transitions
* Debian Copyright: added warnings if Files uses either [ ] or |
(thanks gregoa for the suggestion)
* cme: check must check all values
-- Dominique Dumont <dod@debian.org> Wed, 14 Mar 2012 15:00:05 +0100
libconfig-model-perl (2.008-1) unstable; urgency=low
* Imported Upstream version 2.008
* Debian control:
+ comments are now parsed correctly
* Debian copyright model:
+ added support for deprecated X-Comment. X-Comment fields are converted
-- Dominique Dumont <dod@debian.org> Fri, 02 Mar 2012 12:56:29 +0100
libconfig-model-perl (2.007-1) unstable; urgency=low
* New upstream release:
- cme: fix 'migrate' command.
-- gregor herrmann <gregoa@debian.org> Sun, 26 Feb 2012 18:57:31 +0100
libconfig-model-perl (2.006-1) unstable; urgency=low
* Imported Upstream version 2.006:
* Debian control model:
* bumped default Debian source standards version to 3.9.3
- no longer try to enforce first lowercase in Synopsis.
Too many false positives (Closes: #661184)
- Removed check for virtual package (source packages are seen as
virtual packages). Unfortunately, virtual packages are now reported
as unknown packages. Suggestions on how to fix this are welcome.
* Debian copyright model:
* changed copyright type from line based list to string leaf
* Framework changes:
+ cme: added forgotten 'migrate' command (i.e. cme migrate stuff)
* control: bumped standard version to 3.9.3 (no other changes)
-- Dominique Dumont <dod@debian.org> Sat, 25 Feb 2012 15:03:14 +0100
libconfig-model-perl (2.005-1) unstable; urgency=low
* New upstream release.
* Update years of packaging copyright.
* (Build-)depend on perl 5.11.1 (for File::Path 2.07).
* Refresh patch add_dh_config (offset).
* Update Format: URL in debian/copyright.
* Remove one of the lintian overrides.
-- gregor herrmann <gregoa@debian.org> Thu, 23 Feb 2012 22:49:12 +0100
libconfig-model-perl (2.004-1) unstable; urgency=low
* Imported Upstream version 2.004:
+ new cme program to replace config-edit
* Performance improvement
* dpkg model:
+ added rules element for debian/rules file
+ contro: added migration from XC-Package-Type to Package-Type
* copyright: updated (c) years
* control:
+ added BDI on libtest-memory-cycle-perl.
+ added BD[I] on libnamespace-autoclean-perl
* Updated description and hme page
* refreshed patch to cope with new cme script
-- Dominique Dumont <dod@debian.org> Fri, 10 Feb 2012 12:49:21 +0100
libconfig-model-perl (1.265-1) unstable; urgency=low
* Imported Upstream version 1.265
* model Debian::Dpkg:
+ added Multi-Arch parameter
* don't fail when debian/copyright is missing or empty
* refreshed patch for new MANIFEST
-- Dominique Dumont <dod@debian.org> Wed, 07 Dec 2011 14:02:16 +0100
libconfig-model-perl (1.264-1) unstable; urgency=low
* Imported Upstream version 1.264:
* Application changes:
+ new multistrap model. Supports multistrap's layered configuration
* lcdproc:
* lcdconf2model.pl: added better check of info in square brackets
* lcdproc/LCDd.conf: resync with upstream lcdproc LCDd.conf
* model Debian::Dpkg: removed email checks
* bash_completion: use new Lister class to gain a lot of speed
* Updated INI file backend to take care of various conventions
* control: added BDI on libtest-file-contents-perl
-- Dominique Dumont <dod@debian.org> Wed, 30 Nov 2011 16:58:13 +0100
libconfig-model-perl (1.260-1) unstable; urgency=low
* New upstream version:
* Application changes
* Backend Debian::Dpkg: skip empty lines in patch series files
* Framework changes:
+ Config::Model::Tester: new class extracted from t/model_tests.t
to test config files and models.
-- Dominique Dumont <dod@debian.org> Sat, 29 Oct 2011 18:15:54 +0200
libconfig-model-perl (1.259-1) unstable; urgency=low
* Imported Upstream version 1.259
* Application changes
* model Debian::Dpkg: Bumped compat default value to 8
* model Debian::Dpkg::Patch: Synopsis is no longer mandatory.
Issue a warning for empty Synopsis and propose a value based
on patch name
+ model Debian::Dpkg::Meta: added email element
+ model Debian::Dpkg::Copyright::LicenseSpec: compute license
text from Software::License (requires version patched for Debian)
* Backend::Debian::Dpkg::Copyright: Rewrote parser to classify
correctly Files and Licenses paragraph even if extra fields are
prepended.
* model Debian::Dpkg::Control::Source: Vcs-browser must also accept
https URLs
* lcdproc: fixed some specs in square brackets in LCDd.conf template.
Reworked model generator to better specs in square brackets and
handle model snippets in curly brackets
* Framework changes: usual bunch of bug fixes and minor features
+ control: added libsoftware-license-perl dependency.
* control: Updated description
-- Dominique Dumont <dod@debian.org> Sun, 16 Oct 2011 18:10:03 +0200
libconfig-model-perl (1.257-1) unstable; urgency=low
* Imported Upstream version 1.257:
* Framework changes:
* config-edit: avoid deprecation warning
* C::M::AnyId: enable automatic fix of duplicated values
* C::M::Node: Create BackendMgr when read_config or write_config
is defined (Closes: #642157)
* Application changes
+ models Debian::Dpkg::Control::Binary and Source:
added duplicates warning in dependencies
+ model Debian::Dpkg::Control::Source:
compute Vcs-Browser and Vcs-Git default value for pkg-perl team
* model Debian::Dpkg::Patch: No need for a first capital letter
restriction. Look for debian patches in the correct places
* debian/copyright: fix GPL typo
-- Dominique Dumont <dod@debian.org> Fri, 23 Sep 2011 13:21:04 +0200
libconfig-model-perl (1.256-1) unstable; urgency=low
[ Dominique Dumont ]
* new upstream release
* Framework changes:
* Instance.pm, Node.pm: fix bug where -force_load option did
not work with dpkg model (takes into account force_load
with delayed loading of config files)
* Application changes
* Dpkg control model: warn (and offer to fix) duplicated
dependencies
+ Dpkg model: new compat docs and dirs parameters
* lintian-overrides: removed *.gz files (not needed)
-- Dominique Dumont <dod@debian.org> Fri, 16 Sep 2011 17:53:22 +0200
libconfig-model-perl (1.254-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
* Framework changes:
* AutoRead.pm: correctly handle ~ as home dir (thanks fabreg)
* Backend/ShellVar.pm: do not write global comments if
there's no data to write. I.e. don't write files containing
only coments
* Application changes:
* Backend Debian/Dpkg/Copyright.pm:
Fixed parser to avoid confusing License and License-Alias
+ model Debian/Dpkg/Control/Source.pl:
warn in case of duplicated dependencies
* Debian/Dependency.pm: Fixed handling of dependency alternates
* Backend Debian/Dpkg/Patch.pm: patch write is now working
* removed fix_dir patch (applied upstream)
* New upstream release
[Ansgar Burchardt ]
* debian/control: Convert Vcs-* fields to Git.
-- Dominique Dumont <dod@debian.org> Mon, 05 Sep 2011 14:03:17 +0200
libconfig-model-perl (1.250-1) unstable; urgency=low
* New upstream release:
* Debian Dpkg License model and backend: Reworked Licence models
to allow comments and arbitrary parameters in stand-alone
licences section (Closes: #633847)
* lintian-overrides: updated to take into account the changes above
* control: hardcoded recommended version of libmodule-corelist-perl
(Closes: #634529)
* rules: removed code that tinkered with recommended version
of libmodule-corelist-perl
-- Dominique Dumont <dod@debian.org> Sun, 24 Jul 2011 19:52:08 +0200
libconfig-model-perl (1.249-1) unstable; urgency=low
[ Fabrizio Regalli ]
* New upstream release:
* Bug fixes
* Config/Model/Debian/Dependency.pm: reworked to take buildd
limitation into account (check if Perl version is available
in sid to decide the order of the alternates dependencies)
[ gregor herrmann ]
* debian/control, debian/rules: use current version of
libmodule-corelist-perl for Recommends.
[ Dominique Dumont ]
* debian/control and copyright: updated my email address.
* control: added libmodule-corelist-perl >= 2.52 to pass non-reg tests
-- Dominique Dumont <dod@debian.org> Fri, 15 Jul 2011 18:22:57 +0200
libconfig-model-perl (1.248-1) unstable; urgency=low
* New upstream release
* Added myself to Uploaders and Copyright.
* Switch d/compat to 8.
* Build-Depends: switch to debhelper (>= 8).
* Added fix_dir.patch.
-- Fabrizio Regalli <fabreg@fabreg.it> Wed, 06 Jul 2011 09:56:15 +0200
libconfig-model-perl (1.247-1) unstable; urgency=low
* New upstream release (Fix issue is INI backend
triggered by default LCDd.conf file)
- Removed spelling patch (applied upstream)
-- Dominique Dumont <domi.dumont@free.fr> Tue, 28 Jun 2011 13:31:02 +0200
libconfig-model-perl (1.246-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
* Application changes:
* models Debian::Dpkg::Copyright::License:
Allow any license exception keyword (closes: #627874)
+ New model for lcdproc:
The model for lcdproc (LCDd) is generated from the template
LCDd.conf file provided by lcdproc project. This model can be
generated by running Dist::Zilla (when working from Mercurial) or
by running Build.PL (when working from Config::Model Perl
distribution).
* Framework changes:
* IniFile backend: Do not write twice leaf comments. When check is
set to 'no', discard data that belongs to unavailable elements
* debian/control:
+ mention lcdproc in description.
+ Added "Enhances: lcdproc"
+ debian/patches: added spelling patch to fix generated lcdproc doc
+ debian/copyright: updated with lcdproc files. Updated my e-mail.
[ gregor herrmann ]
* Refresh patch add_dh_config (offset).
-- Dominique Dumont <domi.dumont@free.fr> Thu, 23 Jun 2011 17:32:46 +0200
libconfig-model-perl (1.244-1) unstable; urgency=low
* New upstream release
* Fstab model: Prevent wrong value in fs_passno and fs_freq with
bound mount point
+ Dpkg: Added doc for control Architecture. Fix pod doc in DpkgSyntax
backend
+ config-edit: added -search and -narrow-search options. This options
enable search in tree element, values and tree documentation.
* config-edit: cleaned up option names (always accept '-' in place of '_')
- removed fix_perl_group_filter patch (applied upstream)
-- Dominique Dumont <domi.dumont@free.fr> Tue, 17 May 2011 14:49:11 +0200
libconfig-model-perl (1.243-1) unstable; urgency=low
* New upstream release:
* dpkg control: bumped standard version to 3.9.2
* dpkg: fix spelling . Closes RT# 67783 and 67784. Thanks carnil
* dpkg control license: tweaked grammar to accept commas in license
fields. Closes: #624305. Thanks Niko Tyni.
* Dpkg/Control/Source.pl : added XS-Python-Version and X-Python-Version
(first step to solve Debian #624321)
* Debian Dpkg Meta model: package filter is computed from group-filter
OR private policy
* reworked warp registration mechanism (Changed inherited WarpedThing
into delegation to new Warper class)
* debian/patches:
+ refreshed fix_perl_group_filter
- removed bump-standard-version (applied upstream)
- removed fix-typo-for-dpkg-source-manpage and
fix-spelling-error-in-manpage.patch (applied
upstream)
-- Dominique Dumont <domi.dumont@free.fr> Thu, 05 May 2011 13:53:28 +0200
libconfig-model-perl (1.242-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
- dpkg control: added Build-Conflicts field
- dpkg: Added model for debian/source/options
and debian/clean files
* refreshed bump-standard-version patch
* control: set standard version to 3.9.2 (no other changes)
[ Salvatore Bonaccorso ]
* Add fix-typo-for-dpkg-source-manpage.patch patch to fix references
to dpkg-source manpage.
* Add fix-spelling-error-in-manpage.patch patch to fix some spelling
errors in manpages.
-- Dominique Dumont <domi.dumont@free.fr> Tue, 26 Apr 2011 14:21:15 +0200
libconfig-model-perl (1.241-1) unstable; urgency=low
* New upstream release (bug fixes)
* control: added libtest-differences-perl to BDI
* new patch: bump-standard-version in control model
* README.debian: rewrote a sentence to keep lintian happy
* added fix_perl_group_filter patch to set pkg-perl group
dependency filter to older than etch
-- Dominique Dumont <domi.dumont@free.fr> Fri, 08 Apr 2011 15:04:29 +0200
libconfig-model-perl (1.240-1) unstable; urgency=low
* New upstream release:
- dpkg model:
o can now tune the cleanup of versioned dependencies
o dependency warns if a package is unknown
o can update e-mail addresses depending on meta-parameters
- all models are now documented in their own man pages
- replaced Moose dependency with Any::Moose
- Model: added author, copyright, license fields.
- config-edit: new -gen-pod option to generate pod document
from config class
* control:
- BDI and depends: replaced libmoose* dependencies with
libmouse-perl, libmousex-nativetraits-perl, libany-moose-perl
libmousex-strictconstructor-perl
- BDI and depends: added libfile-homedir-perl, libpod-pom-perl
- BDI: added libfile-slurp-perl
* refreshed patch add_dh_config
* added libconfig-model-perl.lintian-overrides
* New upstream release
-- Dominique Dumont <domi.dumont@free.fr> Tue, 05 Apr 2011 19:37:52 +0200
libconfig-model-perl (1.235-1) unstable; urgency=low
* New upstream release:
- dpkg control source model: Encourage Standard-Version 3.9.1
- dpkg control dependency: only versions older than old-stable (i.e.
not found on madison) will trigger a warning
- dpkg copyright: Handle license in header (Closes: #614776)
- Dpkg copyright backend: skip empty copyright lines
- config-edit: Force to load all sub-models (i.e. control, copyright) of
a top-model (err.. dpkg) when run with option -ui none
-- Dominique Dumont <domi.dumont@free.fr> Tue, 01 Mar 2011 17:30:53 +0100
libconfig-model-perl (1.234-1) unstable; urgency=low
* New upstream release
- Fix bad handling of leaf type Ini backend
(Thanks Krzysztof for the notice)
-- Dominique Dumont <domi.dumont@free.fr> Wed, 23 Feb 2011 09:59:03 +0100
libconfig-model-perl (1.233-1) unstable; urgency=low
* New upstream release
- dpkg control source model: Added DM-Upload-Allowed and
all Vcs-* tags defined in Debian reference guide (Peter Pentchev)
- Backend Ini file: Fixed comment handling
- All modules: Improved synopsis. You can now save them in a file and
have a working program
* control: changed my e-mail address
-- Dominique Dumont <domi.dumont@free.fr> Sun, 13 Feb 2011 18:50:56 +0100
libconfig-model-perl (1.232-1) unstable; urgency=low
* New upstream release:
- Debian::Dependency: reworked to reduce calls to madison. Report
available versions when unnecessary version issue is found. Source
is optional.
- dpkg control model: added forgotten Enhances and
Pre-Depends. Added warnings for too long lines in Descriptiom
(plus fix based on Text::Autoformat). Added Synopsis element to
better tune warnings and fixes
* control: added dependency on libtext-autoformat-perl
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 30 Jan 2011 19:04:04 +0100
libconfig-model-perl (1.230-1) unstable; urgency=low
* New upstream release
- Debian::Dependency: don't check debhelper version
- Debian::Copyright: removed license keyword warnings. (Closes: #610242),
lots of other bug fixes (Closes: #609889, #610231)
- FuseUI: Fix bug that disabled write in a boolean value
* copyright: updated to candidate dep-5 format (dogfooding mode ;-) )
-- Dominique Dumont <dominique.dumont@hp.com> Fri, 21 Jan 2011 13:23:50 +0100
libconfig-model-perl (1.229-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
- Debian::Dpkg::Copyright: updated to new CANDIDATE DEP-5
specification. Copyright files written for older specifications
are migrated to the new specification. This should save a lot of
typing from my fellow Debian packagers. Feedbacks are welcome.
- Value.pm: warn_if_match and warn_unless_match can speficy
instructions to "fix" the value.
- config-edit: added -apply-fixes option to apply the fixes mentioned
above
- Debian::Dependency: new class derived from Value to provide checks
specific to Debian dependencies (syntax, whether a "(>= vers)" is
necessary or not, ... )
[ Jonathan Yu ]
* No longer install README, it is autogenerated
* Update copyright information
* Add dependency on libapt-pkg-perl (for AptPkg::Version) and libwww-
perl (for LWP::Simple)
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 11 Jan 2011 14:02:53 +0100
libconfig-model-perl (1.226-1) unstable; urgency=low
[ Salvatore Bonaccorso ]
* debian/control:
- Add libpath-class-perl to Build-Depends-Indep.
- Add libfuse-perl and fuse-utils to Recommends.
- Add libmoosex-singleton-perl to (Build-)Depends(-Indep).
- Change unversioned Build-Depends-Indep on libtest-command-perl to
versioned libtest-command-perl (>= 0.08).
[ Dominique Dumont ]
* New upstream release:
- config-edit: added virtual file system (Fuse) interface where each
config parameter is mapped to a file (-ui fuse option)
* debian/control:
- Add available models and UIs in description
- Add libconfig-model-tkui-perl in Suggests
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 09 Dec 2010 14:19:45 +0100
libconfig-model-perl (1.223-1) unstable; urgency=low
* New upstream release
* debian/control:
- Add libprobe-perl-perl to Build-Depends-Indep.
- Add libhash-merge-perl (>= 0.12) and libmoosex-strictconstructor-perl
to (Build-)Depends(-Indep).
-- Salvatore Bonaccorso <carnil@debian.org> Mon, 29 Nov 2010 12:13:19 +0100
libconfig-model-perl (1.222-1) unstable; urgency=low
* New upstream release
-- Salvatore Bonaccorso <carnil@debian.org> Tue, 23 Nov 2010 07:46:31 +0100
libconfig-model-perl (1.221-1) unstable; urgency=low
* New upstream release:
- new config editor for /etc/fstab
- new -application option for config-edit
- new manual and cookbook docs
* libconfig-model-perl.bash-completion: new file
* rules: added --with bash-completion
* control:
- added build dependency on libtest-command-perl
- added dependency on bash-completion (>= 1:1.0-3)
* removed fix-* patches (applied upstream)
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 21 Nov 2010 21:10:38 +0100
libconfig-model-perl (1.220-1) unstable; urgency=low
* New upstream release
* Refresh add_dh_config patch.
* debian/copyright: Refer to Debian systems in general instead of
Debian GNU/Linux systems.
* debian/control: Drop libtext-template-perl Build-Depends-Indep.
* Add fix-spelling-error-in-manpage.patch to fix small spelling error
in manpage.
* Add fix-manpage-has-bad-whatis-entry.patch patch to fix whatis
entries for manpages.
-- Salvatore Bonaccorso <carnil@debian.org> Fri, 12 Nov 2010 11:17:36 +0100
libconfig-model-perl (1.217-1) unstable; urgency=low
* New upstream release (small bug fix, improved Fstab example)
* Refresh patch add_dh_config.
-- Dominique Dumont <dominique.dumont@hp.com> Sat, 30 Oct 2010 15:06:06 +0200
libconfig-model-perl (1.216-1) unstable; urgency=low
* New upstream release (mostly bug and doc fixes)
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 26 Oct 2010 18:17:56 +0200
libconfig-model-perl (1.215-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (Closes: #597794, #597795):
- Dep5 is renamed in Dpkg::Copyright
- command line is config-edit-dpkg-copyright
- new model for Dpkg control file (with config-edit-dpkg-control
command)
- Model can be tuned so that config-edit-* will issue warning
regarding configuration data when needed
- Copyright model: warn if unknown license is used.
- Deprecated some over-complicated stuff. This change may trigger a lot of
warning with old Config::Model::* modules
[ Salvatore Bonaccorso ]
* Update my email address.
[ gregor herrmann ]
* Refresh patch add_dh_config.
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 19 Oct 2010 18:01:59 +0200
libconfig-model-perl (1.209-1) unstable; urgency=low
* New upstream release (Fixed Debian::Dep5 read/write backend)
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 20 Sep 2010 22:26:22 +0200
libconfig-model-perl (1.208-1) unstable; urgency=low
* New upstream release:
- new DEP-5 parser (with DEP-5 model and config-edit-dep5 command)
* debian/control:
- removed dependency on libconfig-tiny-perl
-- Dominique Dumont <dominique.dumont@hp.com> Fri, 17 Sep 2010 13:11:09 +0200
libconfig-model-perl (1.206-1) unstable; urgency=low
* New upstream release
* Refresh debian/copyright: Add Krzysztof Tyszecki to upstream
copyright stanza.
* Refresh add_dh_config patch.
* debian/control:
- Update alternate Build-Depends on perl (>= 5.10.1)
| libmodule-build-perl (>= 0.34).
- Make versioned Build-Depends-Indep on libparse-recdescent-perl
unversioned.
- Make versioned Build-Depends-Indep on liblog-log4perl-perl
unversioned.
* Bump Standards-Version to 3.9.1.
-- Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com> Sat, 14 Aug 2010 09:47:32 +0200
libconfig-model-perl (1.205-1) unstable; urgency=low
* New upstream release (Closes: #582915)
* Add myself to Uploaders.
* Refresh debian/copyright: Update debian/* packaging stanza and
update Format-Specification revision.
* debian/patches: refresh add_dh_config patch.
-- Salvatore Bonaccorso <salvatore.bonaccorso@gmail.com> Thu, 10 Jun 2010 21:17:06 +0200
libconfig-model-perl (1.204-1) unstable; urgency=low
* New upstream release
* Refresh the dh_config patch
-- Jonathan Yu <jawnsy@cpan.org> Fri, 04 Jun 2010 20:32:42 -0400
libconfig-model-perl (1.202-1) unstable; urgency=low
[ Jonathan Yu ]
* New upstream release
* Adds dependency on Moose per upstream
* Move Uploaders below Maintainer, it looks more natural
* Rewrite long description a bit
[ gregor herrmann ]
* debian/copyright: point to /usr/share/common-licenses/LGPL-2.1.
-- Jonathan Yu <jawnsy@cpan.org> Sat, 01 May 2010 23:48:20 -0400
libconfig-model-perl (1.001-1) unstable; urgency=low
* New upstream release:
- new config-edit-popcon command
- new shell script read/write backend
- configuration values can be checked with a regular expression
* debian/libconfig-model-perl.docs: added MODELS file
* debian/control: added build-depends on libtext-template-perl
* refreshed add_dh_config patch
-- Dominique Dumont <dominique.dumont@hp.com> Sun, 28 Mar 2010 17:53:26 +0200
libconfig-model-perl (0.644-1) unstable; urgency=low
* New upstream release
* Add myself to Uploaders and Copyright
* Rename README.debian to README.Debian
* Use new 3.0 (quilt) source format
-- Jonathan Yu <jawnsy@cpan.org> Sat, 13 Mar 2010 15:40:24 -0500
libconfig-model-perl (0.643-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release:
- new YAML backend (read/write YAML config files)
- hash and list parameter name changed: min -> min_index,
max -> max_index. This change is backward compatible.
* debian/control:
- added build and run time dependency on libyaml-perl,
- updated Standard-Version to 3.8.4
[ Franck Joncourt ]
* Made short description a noun phrase.
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 25 Feb 2010 18:36:34 +0100
libconfig-model-perl (0.642-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (mostly bug fix and doc updates)
[ gregor herrmann ]
* debian/copyright: update years of upstream and packaging copyright.
* New patch spelling: fixes some spelling errors.
-- Dominique Dumont <dominique.dumont@hp.com> Sat, 23 Jan 2010 13:56:10 +0100
libconfig-model-perl (0.640-4) unstable; urgency=low
* Removed debconf question as it was not a good idea (as discussed
on debian-devel), thus also removed lintian overrides
* README.debian: clarified developer's jobs
-- Dominique Dumont <dominique.dumont@hp.com> Wed, 23 Dec 2009 20:08:45 +0100
libconfig-model-perl (0.640-3) unstable; urgency=low
[ Dominique Dumont ]
* Added README.debian to explain templates/debconf stuff
* dh_config_model_upgrade: setup debconf question to ask whether to use
config-model to upgrade configuration data in target package.
[ gregor herrmann ]
* debian/control: Changed: (build-)depend on perl instead of perl-
modules.
[ Dominique Dumont ]
* dh_config_model_upgrade: A template is provided for this
question. This template will be used and shipped with target
package. Added -edit_option whose value is passed verbatim to
config-edit command.
* control: mention configuration upgrade in description
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 30 Nov 2009 17:46:31 +0100
libconfig-model-perl (0.640-2) unstable; urgency=low
* dh_config_model_upgrade: correctly pass versioned dependency when
calling addsubstvar (ie. with '>= ')
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 14 Sep 2009 14:37:20 +0200
libconfig-model-perl (0.640-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release (WizardHelper bug fix)
[ gregor herrmann ]
* Add build dependency on libtest-exception-perl.
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 10 Sep 2009 13:11:56 +0200
libconfig-model-perl (0.639-1) unstable; urgency=low
[ Dominique Dumont ]
* New upstream release
* control: updated Standard-Version to 3.8.3
[ gregor herrmann ]
* Simplify debian/rules.
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 08 Sep 2009 13:41:27 +0200
libconfig-model-perl (0.638-2) unstable; urgency=low
[ Dominique Dumont ]
* added dh_config_model_upgrade, Debconf sequence addon (config_model.pm)
and postinst snippet in debian/dh
* added patch (with headers) to handle dh_config_model_upgrade delivery
in Build.PL
* libconfig-model-perl.install: new file to deliver postinst snippet
and debconf sequence add-on
* rules: added --with quilt
[ gregor herrmann ]
* debian/control: adjust Build-Depends to quilt usage.
* Add debian/README.source to document quilt usage, as required by
Debian Policy since 3.8.0.
-- Dominique Dumont <dominique.dumont@hp.com> Mon, 27 Jul 2009 13:03:36 +0200
libconfig-model-perl (0.638-1) unstable; urgency=low
* New upstream release: small bug fix
-- Dominique Dumont <dominique.dumont@hp.com> Wed, 01 Jul 2009 15:17:25 +0200
libconfig-model-perl (0.637-1) unstable; urgency=low
[ Nathan Handler ]
* debian/watch: Update to ignore development releases.
[ Dominique Dumont ]
* New upstream release : Following Jonas Smedegaard's suggestion, leaf
'built_in' parameter was replaced with 'upstream_default'. This new
name should be easier to understand for users. This change will
trigger warnings with existing model. See upstream ChangeLog to get
rid of them.
[ gregor herrmann ]
* Set Standards-Version to 3.8.2 (no changes).
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 25 Jun 2009 17:37:11 +0200
libconfig-model-perl (0.636-1) unstable; urgency=low
* New upstream release.
-- gregor herrmann <gregoa@debian.org> Sun, 31 May 2009 16:32:34 +0200
libconfig-model-perl (0.635-1) unstable; urgency=low
* New upstream release:
- Added -dump and -load options to config-edit.
- Added 'summary' field so configuration elements can have a
short description (along with the usual long description).
- Read and write call-back are now passed an opened file-handle
(if possible).
* debian/control: set Standards-Version to 3.8.1
-- Dominique Dumont <dominique.dumont@hp.com> Tue, 21 Apr 2009 13:58:04 +0200
libconfig-model-perl (0.634-1) unstable; urgency=low
* New upstream release.
* Update debian/copyright.
* Add /me to Uploaders.
* debian/control: slightly rephrase long description.
-- gregor herrmann <gregoa@debian.org> Fri, 06 Mar 2009 20:22:03 +0100
libconfig-model-perl (0.633-1) unstable; urgency=low
* Initial Release. (Closes: #493308)
-- Dominique Dumont <dominique.dumont@hp.com> Thu, 18 Dec 2008 13:43:38 +0100
|