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 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415
|
commit 127d0abd88f3759fca8f6126460465910d24085d
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Sun Dec 15 10:18:32 2024 +0100
Updates for release
commit ab69a23e565252938d226fbf447a42f4452e99c0
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Fri Nov 1 22:04:37 2024 +0100
Back to development
commit aaaa112d3e3443fb216e2dd7f9bec622972d7d91
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Fri Nov 1 22:03:11 2024 +0100
Updates for release
commit 7e51adb0818ad6f4e0b6e441f22e89dcdec7c6b7
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Nov 1 16:43:31 2024 +0100
xfce-do-release: Do not warn when using main instead of master
commit 7e4d43e7906f7532999dd5992c1fdd4fda418a51
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Oct 21 10:52:21 2024 +0200
Add libgspell-1-dev to CI build
commit 8e042c27e8745cf055508c46f0625540f2927241
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Oct 18 11:21:50 2024 -0700
Add more details to the meson template and its README
This adds more detailed information about gobject-introspection, as well
as how to build vala API descriptions. It also includes information
about detecting the presence of library functions, libm, and shipping
the meson build files in the autotools tarball.
commit 6569437523b1109ffa21ef11e49fcd88c93353ac
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sun Oct 13 15:27:46 2024 -0700
Work around parallel 'make distcheck' bug in gettext
See:
https://lists.gnu.org/archive/html/bug-gettext/2024-05/msg00014.html
commit 9008df45d2d5a0566205f86c45026683402982b8
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Mon Oct 7 02:37:50 2024 -0700
Don't quote the filename args passed to 'git diff'
One of these may be the empty string, if either the autotools build or
meson build is missing. Passing the variables bare will make the
command line think there's nothing there at all, but quoting an empty
string acts as an empty string command line argument, which 'git diff'
will get confused by.
Usually it's of course a good practice to quote variables that contain
filenames, since they could have spaces in them or other shell-unsafe
characters. But in this case we know the variable will contain a string
that consists of only letters and dots.
commit bcf3b8c9e90b9daa48e20c1f11e20d71bd2de827
Author: Gaël Bonithon <gael@xfce.org>
Date: Thu Oct 3 16:39:47 2024 +0200
ci: Parallelize autotools builds
Closes: #65
commit 92a76eb093d9aaec29419afd40e05002c256a05f
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Oct 3 05:59:31 2024 -0700
Back to development
commit fcbe86a8da1113a305ba058e7cbcf0186b461389
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Oct 3 05:58:17 2024 -0700
Updates for release
commit e096d88c9624dd2240723719dbbc7bb4ff057ff8
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Oct 3 05:46:16 2024 -0700
xfce-do-release: fix quoting for xfce-build command
Without this, the first command in the list gets run in xfce-build, but
the rest get run outside the container on the host system.
commit 7a9ac432099d9cf20a9593225c2cd09bd50c638b
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Oct 3 03:10:46 2024 -0700
Add a couple more compiler flags to the meson template
commit 80a3a4c938a5903488911d4dd9bdef64041f75d0
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Oct 2 13:21:29 2024 -0700
Bump glib dependency in meson template
commit 1e28f7a536de889b235a29cdf483bb2e3cda69af
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Oct 2 13:20:52 2024 -0700
Add gobject-introspection example check to meson template
commit e011a74b5be86bdee41fe43cca4f86dbe5e6c66a
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed Oct 2 18:39:32 2024 +0200
build: Bump requirements for Xfce 4.20
commit a68d2d36dfbae6930521f404a0164587e97f3c70
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Oct 2 03:11:37 2024 -0700
Disable ABI_CHECK for no-x11 and no-wayland builds
Sometimes disabling one or the other will result in a different ABI, so
just disable the check for those builds.
commit 5f5c4f4a2eb09cdd99f8ae908ee1b0b7184a86f1
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Oct 1 13:33:38 2024 -0700
Back to development
commit 5784e66763832f92ae99396b8d02f7a0df68318c
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Oct 1 13:31:48 2024 -0700
Updates for release
commit 95441ab9a0b7f5e2235ac1577f5f14ffbc9a0c4c
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 20 15:53:32 2024 -0700
Add optional ABI check to the CI build stage
A CI variable called ABI_CHECK needs to be set in the repository
configuration. It should be a space-separated list of colon-separated
symbol-path + library-filename pairs.
(The symbol path should be a repository-root-relative path to the
.symbols file, while the library filename should just be the filename,
and CI will attempt to find it inside the repository.)
commit d5879e94d0a66cc27ff04427876d4a1d2ab2859c
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 20 15:01:44 2024 -0700
Add GNU visibility generation and ABI check script
It seems that all the library projects have their own copies of this,
which seems kinda silly. And there are some downsides to those files:
* The visibility alias file generation script is written in perl. This
isn't generally a bad thing, but requires people have perl installed.
With the meson build, python will be required, so might as well write
it in python.
* The symbols file consumed by the scripts is a C preprocessor file, and
its a bit tedious, annoying, and error-prone to write. The new format
that the new scripts consume is simple and easy to read and write.
There was also never really any documentation for how to set all this
up, so I've written a README that describes the process for both
autotools and meson.
commit d4a8b90e3158794f9f523cfb4467b07816fec3d2
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Sep 18 19:57:26 2024 -0700
Enhance/fix xfce-revision.h
Adds VERSION_FULL and PACKAGE_VERSION_FULL to xfce-revision.h, which can
be more easily used in apps.
Fixes version component splitting; previously it split on 'git', but it
should be '-dev' now.
Adds a 'version_short' meson.build variable for convenience.
commit 5565875f70f709b3155e4df17ee40b5e24bfbed7
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Apr 6 20:28:05 2024 -0700
Add a project template for meson
commit 53e9b08fc0e0ac633d5394369e0cccd8a1426062
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Apr 6 20:27:51 2024 -0700
Add meson support to xfce-do-release
commit eeb42aa4c022b8b4ba23629034e1f7ba388c9e5f
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Apr 6 20:27:29 2024 -0700
Add meson support to GitLab CI template
commit bc17fdc2d040cf1846359b6cfbd4b458ef8121c1
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Apr 6 20:26:05 2024 -0700
Allow the container build to build dependencies using meson
commit 194f6b6d240554b6fe6b2365209f46069b7082b8
Author: correctmost <11866-correctmost@users.noreply.gitlab.xfce.org>
Date: Sat Jul 20 01:02:38 2024 -0400
Plug leak stemming from g_path_get_basename
commit aedb03ac20601c363c7f8e04c732061b0983e79e
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Mon Sep 2 03:29:39 2024 -0700
Add libyaml-dev to the build container
xfdesktop will be needing it soon.
commit 4a5100bb45bb77bc042ebe99ed23bbc0093b0ceb
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Jun 27 04:02:35 2024 -0700
Add libdisplay-info-dev to build container
Soon this will be needed by libxfce4windowing.
commit 9bd05b7b305e99006a9b78332e269422b8dd2de7
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Jun 22 15:56:37 2024 +0200
Add meson to CI build
And some other packages needed by apps/catfish!60.
commit 6050c99327e32511691cc13af3407a4158b7559d
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun May 26 17:25:30 2024 +0200
ci: Do not store clang-format-diff output
I had originally used a log file in !101 because clang-format-diff <= 17
didn't emit an error code in the event of non-empty output, but this is
no longer the case with clang-format-diff >=18, so the use of this file
is no longer justified.
Amends: cbbceb2fa207a56a74abf77d14054b76a201ba03
commit 779e4363d8d7e96ae5dc2aae37e69c3dcd45eedc
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Jun 9 15:18:13 2024 +0200
ci: Enable on maintenance branches
commit add69d4e66e34e858af761fe872c80cd62cb9ad6
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Jun 9 12:31:12 2024 +0200
ci: Only run static analysis jobs on default branch
i.e. for commits on default branch and merge requests against default
branch. Do not run these jobs for tags, it's pretty useless and would
force us to distinguish between tags on default branch and tags on
maintenance branches.
Do not run these jobs on translation commits either, since in this case
the build jobs didn't run (unfortunately 'needs' doesn't handle this
automatically).
Amends: 8bf2175d178313c2b6b6a7efb634cd98917c2290
commit 0466aff75c0b20a667ccc2191ffe5a9b08507e06
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed Jun 5 22:20:09 2024 +0200
ci: Make false-positive patterns match a single warning
Otherwise, it's possible for a pattern to correspond to several
warnings, not all of which are false positives. By adding sufficiently
precise patterns as indicated in the comments, this is unlikely, but not
impossible.
In the case of this pattern, for example, currently present in
xfce4-panel:
tasklist-widget.c:[0-9]+:[0-9]+: warning: dereference of NULL 'child' \[CWE-476\] \[-Wanalyzer-null-dereference\]
the 'child' variable has enough occurrences in the tasklist-widget.c
file that the risk of a multiple match cannot be ruled out.
The simplest way to specify a multiple match seems to be to add the
pattern several times, instead of specifying the number of matches,
which would require additional parsing with a delimiter.
Amends: 8bf2175d178313c2b6b6a7efb634cd98917c2290
commit b3a9f742e9f5c122e7ac4e9b076098f331acc1f7
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Jun 16 11:11:14 2024 +0200
ci: Explicitly specify C++ compilers
This may be necessary in certain situations, for example when performing
static analysis with scan-build, to ensure that the standard C++ library
is added to the linker. See
https://gitlab.xfce.org/panel-plugins/xfce4-sensors-plugin/-/issues/48#note_90769
commit 1644b65b8b7fb19fd8d06827d099c30aaf38193c
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Jun 9 18:14:56 2024 +0200
ci: Ensure scan-build uses clang as compiler
Otherwise it overrides CC and uses the default compiler, i.e. gcc in our
case, making build-clang a duplicate of build-gcc + scan-build.
Fixes: 8bf2175d178313c2b6b6a7efb634cd98917c2290
commit 8bf2175d178313c2b6b6a7efb634cd98917c2290
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri May 31 10:20:07 2024 +0200
ci: Add static analysis jobs
This requires extra effort on the part of maintainers, and is therefore
disabled by default. To activate these jobs, you need to add the CI/CD
variables GCC_ANALYZER and/or SCAN_BUILD to each project.
These static analysis tools are quite prone to false positives, so for
these jobs to be useful, it seems the right approach is to not allow
them to fail and maintain false positive files (otherwise we risk
getting used to seeing them fail and simply not paying attention). How
to fill in these files is indicated in the comments.
As we only change software versions every two years in CI, the extra
maintenance effort should be quite small though, once the first warnings
have been fixed or ignored. The fact remains, however, that their
analysis can be more tortuous and time-consuming than that of simple
compiler warnings.
Also, the list of warnings not to be turned into errors for the gcc
analyzer will need to be updated every time we change version, i.e.
again every two years (otherwise the build-gcc job is likely to fail
when checking the compiler during configuration).
Closes: #51
commit 1141463d57cfa59d2518bd3060933026b4215480
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri May 31 10:12:10 2024 +0200
ci: Rename .make hidden job to .configure
Jobs and inheritances are starting to pile up, so it's best to give
things a name that won't cause confusion.
commit 9fc85a251e5ef8def002105ae409ac911d9ecbb4
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon May 27 13:10:36 2024 +0200
ci: Add clang build
commit 6943d356517171636d69a0cd0d310a256f7efab7
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon May 27 13:02:47 2024 +0200
ci: Build with --disable-debug in distcheck stage
In addition to the --enable-debug=werror (i.e. full + -Werror) of the
build stage, so we should compile all code paths (relative to debug
mode). This requires projects not to use DISTCHECK_CONFIGURE_FLAGS
directly in their Makefile.am, but AM_DISTCHECK_CONFIGURE_FLAGS, so that
the flags we set here are not overwritten.
commit 6d51a3b016f3b86b4e3ca4cc64abc3d537e6bc6a
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun May 26 21:14:16 2024 +0200
ci: Only run a stage if previous didn't failed
This is the default behavior that seems to have been overwritten for no
good reason. Typically distcheck should not run if build has failed.
commit 1fef4bc28869769e104ef32472ee7fb9e926c15c
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun May 26 12:09:47 2024 +0200
ci: Avoid clang-format job failure if diff is empty
This is a corner case, but it can happen when a sequence of commits
results in an empty diff (for example, a commit followed by a revert).
Fixes: cbbceb2fa207a56a74abf77d14054b76a201ba03
commit 4bd037dbe567d9161e7a65108e31f955194a570b
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed May 29 17:44:56 2024 +0200
Add libdbus-glib-1-dev to CI build
For parole and xfce4-screensaver, to be removed when these issues are
solved:
https://gitlab.xfce.org/apps/parole/-/issues/114
https://gitlab.xfce.org/apps/xfce4-screensaver/-/issues/153
commit fa58e74280b3d95d8f944ab23577a950b44cd615
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed May 29 09:03:38 2024 +0200
Back to development
commit b2d45129fd237ab5e9a2876f42c54a226b86a48a
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed May 29 09:03:01 2024 +0200
Updates for release
commit d977c9429c78100155af54c32d15e6b65b4667a1
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon May 27 13:10:36 2024 +0200
ci: Add no-x11 and no-wayland builds
Instead of adding them to each project, and thus having them as correct
.build extensions. This remains opt-in, with projects wishing to
activate these builds having to define (X11|WAYLAND)_FEATURE CI/CD
variables. I had originally thought of parsing configure.ac to detect
this, but it doesn't seem to be supported; maybe that's better.
commit dee6ec44e49bac20a9b60744774db49f41ede8f5
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun May 26 19:21:19 2024 +0200
ci: Make build stage fail on any compiler warning
Including on glib deprecation warnings, which are probably the only ones
we care about.
This assumes that XDT_FEATURE_DEBUG is used on all projects where
build_project.yml is included, which is currently the case.
This only applies to the build stage, as other distcheck-specific
warnings may appear that we don't necessarily want to turn into errors,
especially on vala projects. Also, this leaves open the possibility of
applying another debug level to distcheck, and thus compiling other code
paths.
commit 63ca64eb793e851f4b2892009ca4c04626781a62
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun May 26 12:50:25 2024 +0200
ci: Make jobs running in merge requests interruptible
By default, projects are configured so that a running pipeline is
interrupted if new changes are pushed in a merge request. But for this
to work in practice, all jobs in the pipeline must also be flagged
interruptible, otherwise the pipeline is not interrupted.
See https://docs.gitlab.com/ee/ci/yaml/index.html#workflowauto_cancelon_new_commit
commit cbbceb2fa207a56a74abf77d14054b76a201ba03
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Apr 22 17:52:52 2024 +0200
ci: Add clang-format check
Related: https://gitlab.xfce.org/apps/orage/-/issues/32
commit 00ff58a322bea07140a52c9c51723ead9bc7bbaf
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Apr 22 17:25:44 2024 +0200
Update `.gitignore`
commit 480a1f728776bf572a8c7cc389e65d311ac29950
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue Apr 9 16:57:44 2024 +0200
Bump CI container to Ubuntu 24.04
- More recent version of everything, should help to introduce new
features.
- Bump docker dind (docker-in-docker) image used to build CI container
itself
commit 8456563ea3f1633a23141a26f4510f3b238bc837
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat May 6 10:31:11 2023 +0200
xdt-autogen: Fix aclocal macro search path
Probably a regression introduced in 2759f19c.
Fixes: #62
commit a02cc7b84a971bcbc8df3ed93c6a583257f212ec
Author: Gaël Bonithon <gael@xfce.org>
Date: Thu Feb 22 10:18:21 2024 +0100
Add libjson-c-dev to CI build
For xfce4-weather-plugin.
Related: panel-plugins/xfce4-weather-plugin!26
commit b65a49af27dca9aa9438b7c5a1181618d44255da
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Nov 1 08:05:58 2023 -0700
Clone submodules for current repo in CI template
commit 4ff8b0280809f04472c23bc08ffb823f29328749
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Oct 31 08:32:58 2023 -0700
Clone submodules when cloning repo for CI container build
commit e650a815405e946c88cb5d508074c685c78fd334
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Jul 15 23:37:34 2023 +0200
xfce-do-release: Skip appdata if file does not exist in right format
This is only useful for components packaged in flatpak in practice, i.e.
for Mousepad and Ristretto. There's no point in asking to update this
file if it's irrelevant.
commit 5fba4331391753377a22a18315d44e57577827b6
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Jul 15 21:11:31 2023 +0200
xfce-do-release: Warn about unmodified configure.ac.in
Hopefully this will prevent releasing without changing the version
number.
commit aa3e9a97b3b120cc9f2d7fb9d4d01202777f40b1
Author: Gaël Bonithon <gael@xfce.org>
Date: Thu Jun 1 10:05:43 2023 +0200
xfce-do-release: Use available proc units for make
commit 74607cc5d82c0adc8a39e8cd82136d5132c28bc6
Author: Gaël Bonithon <gael@xfce.org>
Date: Thu Apr 20 19:49:36 2023 +0200
Add libayatana-indicator3-dev to CI build
For xfce4-indicator-plugin.
commit f27bcad8b9bc6749272d65e1815751713798d3a3
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed Apr 12 14:12:37 2023 +0200
Remove -Wdeclaration-after-statement from list of enabled warnings
We use C99 features in various places (especially init-statement in for
loops), and C99 allows declaration after statement. This also avoids
warnings from other projects, like GObject Introspection >= 1.76.1 via
g-ir-scanner.
commit c47d9389a6711fbf3944d37da2180e81ebc88631
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Apr 10 19:07:19 2023 +0200
Add polkitd to CI build
For gettext migration of project containing a policykit file.
commit c061b37c61f038f2069e703714cf580d1d759111
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sun Mar 5 00:43:49 2023 -0800
Back to development
commit 785c9a34dae57d00a73aa84216292a25ab897773
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sun Mar 5 00:40:58 2023 -0800
Updates for release
commit 2e5ee77b78c2fdb0f97b7b424ed44eaedadbf921
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Mar 2 15:54:39 2023 -0800
Add new macro XDT_CHECK_PACKAGE_BINARY
commit 8aeae028f95c4b7cedbe9064526eb8e2aad823ed
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Mar 2 15:36:02 2023 -0800
Add new macro XDT_CHECK_OPTIONAL_FEATURE
commit 074bfe3367609771d8ea05178e1d4fce7af2a311
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Mon Feb 13 21:44:05 2023 +0100
Add check for xsltproc (#60)
commit fff16fc002223207756fc013f2787e66df1d2245
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Feb 19 18:04:28 2023 +0100
Add Tumbler plugins dependencies to CI build
commit a8dd70a06e4d658f4e499d4d52f4d7eb086a6161
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date: Fri Feb 17 15:42:08 2023 +0200
xfce-do-release: added OS dependent sed and make detection
commit a207110ed20041c1d6f718722d18394e05fa6a06
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date: Fri Feb 17 15:29:54 2023 +0200
xfce-do-release: added user settable sed and make
commit a99e33603f6c981770aa90dad0f544f5b8259082
Author: Erkki Moorits <erkki.moorits@mail.ee>
Date: Wed Feb 8 17:01:35 2023 +0200
xdt-autogen: Fixed wrong make displayed on FreeBSD
commit 91bff86d9c1348403773d8ea0f1e3c5362e04ec4
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Jan 3 04:13:51 2023 -0800
Add libxfce4windowing to the API docs HTML index
commit a090b333a7b1ed6757aebc406e968e3d7a5ba4af
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Thu Dec 15 02:15:14 2022 -0800
Add libxfce4windowing to CI build
commit aa279559cbe6e9acb8728c59ea62b3ab14ab7069
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Dec 15 10:46:18 2022 +0100
Back to development
commit 98a7c8e777c21c127da2fd5f7d01a26c5e18d249
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Dec 15 10:43:35 2022 +0100
Updates for release
commit 68716b0878c1bc0aa5d13c177cfb55c38cc770f7
Author: Gaël Bonithon <gael@xfce.org>
Date: Mon Dec 5 21:12:16 2022 +0100
build: Bump requirements for Xfce 4.18
commit 0516736aefe694b0b478a256c321559a15450fbc
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 1 09:09:59 2022 +0100
Back to development
commit a8cd0b05e0604d62acf32db2a4c6e0c783d161f1
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Thu Dec 1 09:04:46 2022 +0100
Updates for release
commit 3e4bd95382648b7ab2ecb4e7a40210f76ff890d3
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Nov 17 22:55:46 2022 +0100
So much for package name consistency...
commit fb378ec505bee63c204283ccc2340bf9ac78536d
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Nov 17 22:51:33 2022 +0100
Add new libsoup3 to the builder
commit eac29eae51dac96e5c5674dc402240c6ed7e8c14
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Sun Nov 13 22:23:31 2022 +0100
xfce-do-release: unification of update version 'sed' command
commit 66993edccf3d6e2179a671298523d1817d076cfb
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Sun Nov 6 00:12:20 2022 +0100
xfce-do-release: match multiple spaces for git version replace
Makes 'xfce-do-release' as well usable for xfwm4, which has some more
spaces in the line: 'm4_define([xfwm4_version_tag], [git])'
MR !74
commit 5a965bc83640df1087dd7e2f5e139d9094a87736
Author: Alexander Schwinn <alexxcons@xfce.org>
Date: Sat Nov 12 21:30:01 2022 +0100
bump copyright year to 2022
commit 2b332e9ab0fe2194eb3d7849ba6c815ff2b3f6ae
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sat Oct 29 16:02:13 2022 +0200
Back to development
commit c012bb4a385f6e2f7068510b9fb5665adb4a30bf
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sat Oct 29 15:57:40 2022 +0200
Updates for release
commit e17223e0a826ee301967282b391abdd42e457596
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date: Fri Dec 4 12:01:17 2020 +0100
Warn about GLib functions newer than the checked GLib version
This patch enables GLib deprecation warnings in all XFCE apps and libraries
containing function calls such as XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.56.0])
in their configure.ac.in files in the following way:
AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_56, Prevent post 2_56 APIs)
AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_56, Ignore post 2_56 APIs)
The 3rd argument passed to XDT_CHECK_PACKAGE([GLIB], ...) selects the
GLib API version. So XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.44.0])
would add:
AC_DEFINE(GLIB_VERSION_MAX_ALLOWED, GLIB_VERSION_2_44, Prevent post 2_44 APIs)
AC_DEFINE(GLIB_VERSION_MIN_REQUIRED, GLIB_VERSION_2_44, Ignore post 2_44 APIs)
The enabled warnings can be overridden by the app or library by using
the two AC_DEFINEs after calling XDT_CHECK_PACKAGE([GLIB], ...).
Something like XDT_CHECK_PACKAGE([GLIB], [glib-2.0], [2.45.8]) will make
the XFCE app or library uncompilable because 2.45 isn't a stable GLib release.
See also: https://gitlab.xfce.org/apps/xfce4-notifyd/-/issues/34
Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
commit 01684335f58619ed3b0a4027d02de2764aba7c83
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Wed Sep 14 20:36:17 2022 +0000
Drop the test altogether
This avoids situations like `export EGREP=egrep; ./autogen.sh`
commit f97c4473ea1b63bbd7bca3bd29ec9ef7a053547a
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Sep 10 12:36:07 2022 +0200
xdt-autogen: Fix deprecation warning from grep 3.8
commit 5a058ea63a1544b4147f0a4534b70aaf037f8ad6
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Apr 8 19:03:14 2022 +0200
Use GLib structured logging
Suitable for viewing logs in tools such as `journalctl`, in particular
adding location information to the message.
Requires `GLIB_VERSION_MAX_ALLOWED >= GLIB_VERSION_2_56` to work
properly in GLib logging macros (not documented, see
`glib/gmessages.h`).
commit 1ab2053cf4ba13e41cebd8859687ea6f28c7576f
Author: Akbarkhon Variskhanov <akbarkhon.variskhanov@gmail.com>
Date: Wed Sep 14 18:35:23 2022 +0000
xdt-autogen: simplify do_version_check()
commit 7f253e5da0ae1cfbeabcf680126452b232bc2a7e
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Aug 25 12:10:08 2022 +0200
Add new dependencies to the builder
- libical-dev for orage
- libgtk-layer-shell-dev for wayland stuff
commit 240ea1b13ff3294f5e3250eafde4bbd3d395c59d
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Fri Aug 19 16:44:15 2022 +0200
Do not run useless distcheck in CI
- Since dbfc8c88b56962e85bfdc2b444dcd49d99ddd30c, distcheck is run even
when there is only a commit in po/
- This is because "extends" merges hashes, but not array, so the
".make" rules are overriden by the "distcheck" rule
- Use !reference to force the usage of ".make" rules in distcheck (and
this avoid duplicating the "if" everywhere)
commit 1007718676990c235d905c740b8668ac8c9fb6a0
Author: Manuel Grießmayr <abspack@posteo.de>
Date: Fri Aug 19 19:36:09 2022 +0000
Add favicon to Xfce API docs
commit 7530b65d7465eb48a76675e3893d3738f2c4eb50
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Feb 7 22:45:42 2022 +0100
Bump our xfce builder to ubuntu 22.04
- This is the new Ubuntu LTS version
- Reorder packages installations
- Install gtksourceview5/gtk4-dev libs
- Bump docker-dind to latest version
commit 51ca08881ab59acf1f1cb30f22074e51be95bee9
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Apr 7 23:14:30 2022 +0200
Add autopoint to xfce-build
- This is needed by autotools when using gettext instead of intltool
commit b68ae2f7fe9a16d730e38d4e61756ed41f56b00c
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Apr 7 19:43:55 2022 +0200
Add a workaround for thunar documentation generation
- Since https://gitlab.xfce.org/xfce/thunar/-/merge_requests/153,
we have thunar and thunarx documentations, which is not supported by the script
- This break the container build
commit 1448199eb4649e7f2b315ef4560ab44312f1f7da
Author: Kevin Bowen <kevin.bowen@gmail.com>
Date: Tue Mar 22 07:07:23 2022 -0700
Update COPYING
commit de6137361ee3bb8a8b398a349a3cdab4f297c116
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Fri Mar 4 02:53:38 2022 +0000
xfce-build: Fix build with SELinux (!58)
If you're using SELinux locally you will have to pass the "z" parameter
to make the volume mounted in the container readable.
commit 2ae47732a54ebfdbfa9c8e938e6e3be28c204e73
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Nov 27 09:41:46 2021 +0100
xfce-update-news: Add release date and adjust separator
commit 639984b37056c786da601d413949fa197d9b864b
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Jan 14 12:59:22 2022 +0100
xfce-do-release: Make warnings more visible
commit 2f493d79f2454dc2eb62dd955c0849e21587d6e1
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Jan 7 13:31:45 2022 +0100
xfce-do-release: Check the copyright year in `configure.ac*`
commit 7651c19ef009a99ac8367e88720231e58458d3af
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Jan 7 13:06:39 2022 +0100
xfce-do-release: Extend `configure.ac.in` update to `configure.ac`
The use of `m4_define` is also found in `configure.ac` files, with or
without a version tag, which is not a problem. The use of
`XDT_VERSION_INIT` is probably always exclusive of the use of
`m4_define`, but the filter by grep does not bother.
commit 9a71068cf03f565d93812d1d79194129bf48cb99
Author: Gaël Bonithon <gael@xfce.org>
Date: Sat Jan 29 09:18:20 2022 +0100
xdt-autogen: Fallback on `\n` as IFS if `\1` is not supported
Fixes #54.
commit bb06a93ddc609ffe587aaccc1e9929461c30ff51
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed Jan 26 23:16:44 2022 +0100
Fix exclusion of `xdt-autogen.in` in `.gitignore`
commit 02e5bab0eabd0ef0d94a15ac1d600d4141b8376c
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Oct 13 17:29:50 2021 +0200
Update developer.xfce.org home to add tumbler
commit 89ec470fabb43cd31cdd155b1aee8f1d1eaad8a7
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Oct 13 16:46:15 2021 +0200
Add tumbler to xfce-build container
- Fix #53
commit 724c75b1662265f27dd6c1bae7c8a078bd657237
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Oct 13 16:45:02 2021 +0200
Fix "image:" name in .gitlab-ci.yml
- Type from 64bc66536aaaeded488cf7a3a9d067cea9748545
commit be59ed378f846ea545bf9f0c08c297415162e288
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Oct 13 16:43:27 2021 +0200
Add libsensors4-dev to build-container
commit 64bc66536aaaeded488cf7a3a9d067cea9748545
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Aug 19 12:24:06 2021 +0200
Try to bump docker-dind image
commit 5e6bdfba4427f2a70c13099726c9c4edd21a5c97
Author: Gaël Bonithon <gael@xfce.org>
Date: Fri Sep 24 11:11:34 2021 +0200
xfce-do-release: Update Appdata file
This adds the new release to the Appdata file if the `<releases>` tag
exists. This file is only searched in the root of the repository and in
the `data` directory, and must be unique.
commit 7f231c22e1ade73d984ea51d48eee8662065ca8d
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Sep 16 23:56:08 2021 +0200
gitlabci: Ensure distcheck still runs
commit dbfc8c88b56962e85bfdc2b444dcd49d99ddd30c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Sep 7 00:45:14 2021 +0200
gitlabci: Add release stage that retains tarballs
This stage is only run for tags and is essentially the same as the
distcheck stage.
commit ef3ca47e7c8e489ef167abadafa03900c3ee362b
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Aug 19 12:19:10 2021 +0200
Add lm-sensors to dependencies, for xfce4-sensors-plugins CI
commit 2ef5b809e3d891dd576914ac4a9d1b25608e7f82
Author: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
Date: Mon Jul 26 14:24:31 2021 +0200
Separate CFLAGS from CXXFLAGS
Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b@xfce.org>
commit 411e7ab44751be71a6ca5b6f6e72ad7d5c410cd5
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sun Jul 25 18:34:55 2021 +0200
Back to development
commit 399646249d4c9158ba2d7b4aad7658704dfa9818
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sun Jul 25 18:18:20 2021 +0200
Updates for release
commit 47ac35062ff081d904aa140373fe42ddb8e54c9b
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Jul 5 12:57:29 2021 +0200
Try to build higher version available tag
- If 4.17.x is available, pick this one
- If 4.16.x is the higher (on component without 4.17 yet), pick it
- "grep" the component name to remove any "xfce-" release tags
- Enhance MR!49
commit 2266437dc8afad8d2bb60516d92dc636402de6c7
Author: Gaël Bonithon <gael@xfce.org>
Date: Wed May 12 13:39:40 2021 +0200
xfce-do-release: A review of confirmation prompts
* Abort on failure in `sanity_checks()`
* Always test if the version specified exists as a git tag
* Always have a default choice, indicated by a capital letter
* Remove unused function `get_on_with_it()`
commit 2c3d0deb8b512e1e4f8f5647a2ff893b4f365cc7
Author: Landry Breuil <landry@xfce.org>
Date: Tue Jun 8 07:25:51 2021 +0000
helpers: Improve script portability
Works better on OpenBSD now.
commit 7c609066e9ec1dc2876818a84453c2988fa24cd1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Wed Apr 28 15:11:31 2021 +0200
Improve Xfce Developer Center (developer.xfce.org)
commit 5f372ab304353bcbb44a5807248cb494cb3024c4
Author: Gaël Bonithon <gael@xfce.org>
Date: Tue Jan 26 10:22:57 2021 +0100
xdt-features.m4: Always enable compilation warnings
Fixes #44.
commit dba4b975a67bd39835c49069b1ebb5dc151eb981
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Apr 22 09:45:23 2021 +0200
g_locale_to_utf8 is misspelled as g_local_to_utf8
- Fix issue #46
- This code path is almost never used (we don't really test
minGW/windows), but let's fix this anyway
commit 54119a26c6faf54f1f1f6d6647a34b0b2239d470
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Wed Mar 10 15:40:19 2021 +0100
xfce-build: Always pick the latest stable release
Alternatively we could also pick the latest overall release, but the
downside would be that the container could jump back and forth between
4.17 dev and 4.16 maintenance releases.
git describe --tags `git rev-list --tags --max-count=1` --match "$NAME*"
commit 328f47cd130b61e2a6f7198e2a17af236649d6a4
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sat Jan 30 23:49:17 2021 +0100
Create the m4/ if it does not exists
- So we are sure to not print any warning because of a missing m4/
folder on first aclocal run
commit b569f211c16a49cba72f9a9d471c4ca02708f061
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue Jan 12 00:19:06 2021 +0100
Use autoreconf to bootstrap xfce4-dev-tools itself
commit 2759f19c4c9215069ae5cae86d47909ea4d42ab3
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Jan 11 01:19:52 2021 +0100
Use autoreconf to bootstrap autotools
- autoreconf already do all the jobs and detections, we don't need to run manually
multiples binaries
- Remove obsolete checks/warnings we are doing for libtoolize, all our
components have been ported
- Simply run autoreconf with good options should be enough for
everything
- We still need to run intltoolize and gtkdocize manually to support
autotool 2.69
- This fix issue #42
commit 6885d2a572e127083c2ae72832e373e752db2db5
Author: Gaël Bonithon <gael@xfce.org>
Date: Sun Jan 31 20:47:00 2021 +0100
xfce-do-release: Check for `docker` installed
commit 4ffc172cc6594ac6e88d49466f4572d729b5088f
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sat Jan 30 13:17:57 2021 +0100
Add dependencies to build thunarx-python CI
commit 248201216d9a59f81a7f72d47ceb19504463d157
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jan 19 15:45:51 2021 +0100
Fix location of apidocs
By copying the folder contents we don't end up with an additional docs/
folder inside the existing apidocs/ folder.
commit f971760d832bd6f48f7adf313ef5a1e91eda4ae4
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jan 19 10:56:47 2021 +0100
xfce-build: Fix conditional in gitlabci
commit 6560a412d4eaafcfede6cbb50ab48c5dd32aecd8
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Tue Jan 19 10:45:19 2021 +0100
Export apidocs as GitLab artifacts
The static index.html page and artifacts get merged into the newly
added apidocs folder.
commit 6f651e4a6b1e78d4745cba1b8bb193d73e38af2b
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Jan 11 00:33:52 2021 +0100
Get rid of glib-gettextize usage and XGETTEXT_ARGS custom args
- intltoolize already do all the job that glib-gettextize do (maybe
since 10 years)
- Remove the XGETTEXT_ARGS custom feature, I can't find any projec using
this in xfce
commit 008475ee9a08aaa458df8ff650d739889fb377a0
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Jan 11 00:06:16 2021 +0100
Remove obsolete AM_GLIB_GNU_GETTEXT
- This should no be used anymore since last century
commit e3d60b58f2377766d0265ac8f4d01fbee8d199dd
Author: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
Date: Tue Jan 12 04:38:36 2021 +0100
helpers: Fix command-line if git-config core.editor is unset
Closes: https://gitlab.xfce.org/xfce/xfce4-dev-tools/-/issues/43
Signed-off-by: Jan Ziak <0xe2.0x9a.0x9b@gmail.com>
commit f4212358a35267c8b3fec7a4765b6b44788f212a
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Fri Jan 8 11:22:48 2021 +0100
Update obsolete m4 macros
- They are obsolete since 2.69, and 2.70 now warn about it
- Bump minimal autoconf to 2.69 (available since 2012)
- AC_HEADER_STDC is not needed anymore: https://www.gnu.org/software/autoconf/manual/autoconf-2.70/html_node/Particular-Headers.html
commit 385f43220419a38c3641482ecefe35189c1db030
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Sat Jan 2 22:50:18 2021 +0100
helpers: Add 'xfce-build describe' command
This command prints the versions of the components built within this container, which are located in the /git folder.
commit 418ba8d073010112f6f7741dc3e3045020f67d07
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue Dec 22 23:49:22 2020 +0100
Back to development
commit 665dac6b7bccef20ba5911807dc53b60faa7935b
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue Dec 22 21:45:06 2020 +0100
Updates for release
commit d16010634f98cba467cb61c8b9451e84ed323b7a
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Fri Dec 18 12:11:39 2020 +0100
Bump glib to 2.50 based on xfce4.16 roadmap
- And update configure.ac syntax
commit 80b6f7d528c7f15f81b73d4bed627b62c6072b7f
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Fri Dec 18 11:55:38 2020 +0100
Do not process @LINGUAS@ at xdt-autogen stage
- We don't need to find all langugaes at this step, because it is done
in xdt-i18n.m4 macros since 4.15 when XDT_I18N is called.
- And the "-printf" argument is not supported on BSD find
commit 076e43d1d4e170fdc32fa7ac96045d8cd0042f67
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Dec 15 18:40:27 2020 +0100
xfce-build: Add Thunar to container (Fixes #40)
commit 3ba3f2e1c53638d322d83d332e93efda7c79f2e8
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Mon Dec 14 11:31:57 2020 +0100
helpers: Add xfce-build 'pull' argument
This command simply updates the container and then exits.
commit 27fc51ab63e9e41b72ec1aaaa7546a19d23070e4
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Dec 14 00:06:36 2020 +0100
Fail xfce-build container generation if there is any error
- So now we won't generate a broken container anymore is we can't build
on component
commit bdb5745f0493d45480cb780eea43acffc63d4afa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Wed Dec 9 16:57:08 2020 +0100
helpers: Prefer xfce-build over xfce-test (Fixes #38)
The xfce-build container is smaller and also what we use in GitLab CI.
commit 7f9fe83263c3ebe13861439e9a5949470004907d
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Wed Dec 9 15:37:17 2020 +0100
helpers: Add new helper xfce-open-gitlab
This helper enables you to quickly open the GitLab project of your Git
repository in your browser. You can navigate to a subpage by supplying
it as an argument (e.g. "issues").
commit 6bd43f8ef09e60ca92ea8a2746469cf1a513e727
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Dec 9 11:49:35 2020 +0100
Disable CFLAGS override when building CI container
- We don't need to override CFLAGS when we build the CI container, only
project built WITH the container needs that
- Also, build is broken because of new line in CFLAGS variable
commit b7e6c14a353bc03b0911dacc95f5e59f81e95f99
Author: Olaf Hering <olaf@aepfle.de>
Date: Sun Nov 29 20:41:57 2020 +0100
use strict CFLAGS to catch common mistakes in ci pipeline
A number of common coding errors are missed by the compiler.
They turn up only after release once packages are build with full CFLAGS.
Adjust the gitlab CI to catch such errors:
-Wall enables a number of diagnostics
-Wno-deprecated-declarations will hide a bogus warning.
As long as an API exists it can be used. Noone beside a curious developer
will actually take the time to do research and look for the replacment.
In the wild this warning is just noise in the build log.
-Werror=implicit-function-declaration will point out missing includes.
In case such errors are not fixed, the resulting code will assume int
for function arguments and function return values.
-Werror=return-type will point out incorrect return values. The caller
will most likely receive just garbage.
Signed-off-by: Olaf Hering <olaf@aepfle.de>
commit 398c4321da79becdacf0aa052dfb79c3849edea0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Fri Dec 4 01:29:00 2020 +0100
helpers: Add helper to locally run xfce-build
commit 1098ccaac8d960ae730422ce37bde293109973a0
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Nov 9 21:49:06 2020 +0100
Add xvfb on xfce-build
- Needed for xfconf distcheck, and might be used in other projects
commit 83520dfebb6d8cef1d0f7fa706a94ab3b388c523
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Mon Nov 2 21:23:04 2020 +0100
Update for release
commit 7416c0dd5bedc0372f18338cbd80db6bee5ed42f
Author: Andre Miranda <andre42m@gmail.com>
Date: Thu Oct 15 01:19:31 2020 -0300
get-translations: Fix line wrapping
commit ec0295a92ba60a9cf258eb90013e3d993d09b5c4
Author: Gaël Bonithon <trash.paradise@protonmail.com>
Date: Fri Oct 2 13:01:59 2020 +0200
xdt-autogen: Various small improvements
- quoting
- replace backticks with $()
- replace 'test "x$var"' with 'test "$var"'
- replace $(pwd) with $PWD
- simplify the command to search for languages
- do not use subshell when unneeded
- do not use redirection when unneeded
- directly test command exit codes instead of using $?
- readability (useless ";", indenting)
commit 72483f0e80a4241893711f6431d53def515e5b6d
Author: Gaël Bonithon <trash.paradise@protonmail.com>
Date: Fri Oct 2 12:25:44 2020 +0200
xdt-autogen: Properly handle whitespaces in filenames
and more generally special characters different from '\1'.
This is achieved by replacing the filename separator ' ' with '\1' in
lookup_configure_ac_*(), and the default IFS=' \t\n' with IFS='\1', but
only where necessary: the default IFS is usually required for things to
go as expected.
So we have to do an IFS round-trip substitution around each "for" loop
on filenames, just before and just after pathname expansion by the
shell.
Additionally, when running $XDT_PROG_ACLOCAL, one has to define some
new variables ACLOCAL_DIR and use conditional parameter expansion, to
properly set the program flags:
$XDT_PROG_ACLOCAL ${ACLOCAL_DIR:+-I "$ACLOCAL_DIR"}
Finally, one has to take care of some non optional quoting
(strictly speaking, some are optional in this commit, but I preferred
not to cut as close as possible and to keep an overall coherence).
commit 3e01e2136b0cb687987345cd19e0458e46e2d5b9
Author: Gaël Bonithon <trash.paradise@protonmail.com>
Date: Fri Oct 2 10:49:06 2020 +0200
xdt-autogen: Use sed instead of tr to replace strings
The purpose of the current code seems to be to replace the strings
'\t', '\n' and '\\' by a single space ' ', not the characters
"horizontal tab", "line feed" and "backslash" by a single space.
So the right command to do this is sed, not tr, which doesn't do the
job expected here.
commit bf575df6b316d860b922b952a2c0645257cb1993
Author: Kevin Bowen <kevin.bowen@gmail.com>
Date: Fri Sep 18 09:49:40 2020 +0200
Updates README.md
commit ed5e81009853fa1c1870ae53f39542e7dc9c56ad
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sat Jul 18 13:04:25 2020 +0200
xfce-build: Add libclutter-1.0-dev for xfdashboard build
commit 119263d75aec66e35015a89c0c7041b54ec54162
Author: Andre Miranda <andreldm@xfce.org>
Date: Sun Jul 12 15:22:46 2020 -0300
Update .gitignore
commit ed122f07cfeed391f2fe3b4c32b8aa027ba7080f
Author: Andre Miranda <andreldm@xfce.org>
Date: Sun Jul 12 15:21:33 2020 -0300
helpers: Use blank line for tags message
commit 4ada3e6733bf7e6383be78702c669beb3c4bcad5
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Jul 9 20:38:37 2020 -0300
helpers: Reuse release notes from NEWS for tag message
commit 3412f9b7d22490792707e7aecb1c06a4bf8f27e8
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Jul 9 20:10:01 2020 -0300
helpers: Simplify xfce-update-news
In my tests this works fine, unless I'm missing something
I don't see a reason for writing to files.
commit 796174773bde6d16790e5b48e2403747345c1a0d
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Jul 9 20:03:39 2020 -0300
helpers: Do not strip NEWS blank line at EOF
commit 2b5b1052785cd31574d480d487921a13a63d03f4
Author: Andre Miranda <andreldm@xfce.org>
Date: Thu Jul 9 20:03:17 2020 -0300
helpers: Install xfce-do-release
commit c7d3216976ac0f7735c75c174583fa4c269bfd46
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Wed Jul 8 10:39:32 2020 +0200
xfce-build: Add depend for mousepad (Fixes #37)
Add libgtksourceview-4-dev to support mousepad's transition to it.
Also see apps/mousepad!10
commit 4ec5547b07f497902faf264b738718cdd7f91694
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Wed Jul 8 10:36:58 2020 +0200
helpers: Add do-release helper and Readme
commit cae6670c3d3e0db1c31acc388c0e1249b94a1c0d
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue Jul 7 21:17:16 2020 +0200
xfce-build: Install python3 version of distutils-extra
- Needed for catfish build
commit 2067ef1b2fc4cdcac6cb5fb40be8f20159f02b7f
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jul 7 10:18:22 2020 +0200
helpers: Make get-translations executable
commit 2b9dbea980d4df3b44a4176cc5d3fb58beafca97
Author: Andre Miranda <andreldm@xfce.org>
Date: Tue Jul 7 00:13:27 2020 -0300
get-translations: Remove last comma
commit f57b4a8017874733589f4cb9607c249a03a1fb5b
Author: Andre Miranda <andreldm@xfce.org>
Date: Mon Jul 6 23:34:09 2020 -0300
get-translations: Correctly get locale from commit messages
The forth field of messages such as:
I18n: Add new translation sq (100%).
Is "translation", that's why we should pick the second last field.
commit 8fb443963bb6851a9e82b531dcd93b6c9a2fcd14
Author: Simon Steinbeiß <ochosi@xfce.org>
Date: Thu Jun 25 00:51:49 2020 +0200
xfce-build: Replace build-dep with package names
Also take further measures to make the container slimmer and more portable.
Thanks to Romain and Florian (schuellerf/xfce-test)!
commit caa7aca47d8a9d217e78f4846122b63c3905938d
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Jun 24 23:40:32 2020 +0200
Back to development
commit c9edd8f4c03159df2c9da1a871355c64b3af4a65
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Jun 24 23:21:12 2020 +0200
Update for release
commit 6ee8255391933f0bb5f755a2183bac78ff21019d
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue Jun 23 12:57:40 2020 +0200
Use datarootdir instead of datadir
datarootdir should be used instead of datadir.
https://www.gnu.org/software/autoconf/manual/autoconf-2.69/html_node/Changed-Directory-Variables.html
commit 45bac52f22b1892adbe5fee471b84d423c10efd0
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue Jun 23 12:48:05 2020 +0200
xdt-autogen: explicitly set search path for m4 macros
There is no guarantee that the configured include dir is in aclocal
default search path. For example, system aclocal may not search for m4
macros under /usr/local.
Fixes #36
commit 5c426e931f1e5eb10f3a63f3b54c9ea6b293543c
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Fri Jun 19 00:11:55 2020 +0200
xfce-build: Add depend for statusnotifier-plugin
commit bff9a867d1b7d6d6d07be1ee18339a6633a68208
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Jun 18 23:15:28 2020 +0200
xfce-build: Add valac for xfmpc
commit b9910c54b28afbf44fccb1e2e2c74dc6505a8ad1
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Jun 4 20:34:47 2020 +0200
Install the xfce-helpers
commit d3dde202976b2aad41847aad8d3c4d0004dbc752
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Thu Jun 4 20:19:15 2020 +0200
Add two new helpers
commit c9c4e832e30049f51fe039cf8abd9ece002bd9fa
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue Jun 16 23:38:38 2020 +0200
xfce-build: Enable building xfmpc
commit 0e2a8cb7650c8cf37aff95a7b30bd859dee1922d
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Thu Jun 11 12:40:57 2020 +0200
Install m4 macros into default $datadir/aclocal
Install the m4 macros in location where autoconf will find them by
default.
Adjust xdt-autogen to depend on the default location while still respect
any set ACLOCAL_FLAGS or XDT_ACLOCAL_FLAGS.
commit fd8682a24c5c3fc86098814b95b56c736a0893a1
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Jun 4 20:07:05 2020 +0200
Update README for new gitlab urls
commit 29b0a936ce8724567979dd1edbebea9188debd3a
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Wed Jun 3 11:57:11 2020 +0200
xdt-autogen: Improve and simplify linguas detection
The `ls *.po | awk ..` pattern is generally not recommended[0]. Replace
it with a tiny for loop with basename. Use POSIX `tr`[1] to delete the
trailing end-of-line, since `echo -n` is not specified in POSIX[2]. This
also removes the need for awk check.
[0]: https://github.com/koalaman/shellcheck/wiki/SC2012#rationale
[1]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/tr.html
[2]: https://pubs.opengroup.org/onlinepubs/9699919799/utilities/echo.html
commit bc9a62e08bdbd1460917e2eb44577ad472026738
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue Jun 2 13:58:07 2020 +0200
Let XDT_I18N automatically find the po/*.po as default
Make the LINGUAS argument optional and let it be auto generated from
po/*.po if is not specified.
commit 0628ba009c530cb0a0d1440ea4ebb551a6425103
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue Jun 2 12:39:14 2020 +0200
Let configure generate the xdt-autogen script
No need to add the rule to Makefile.am when configure itself can
generate the file.
commit caed69490485466132348afe283a2e80ab371ed1
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Mon Jun 1 17:29:37 2020 +0200
Implement XDT_VERSION_INIT
Add an XDT_VERSION_INIT help macro that will define a set of version
macros using esyscmd so we no lnger need to use configure.ac.in to
perpare the version string for AC_INIT.
XDT_VERSION_INIT(SEMVER, [TAG] will set the following macros:
- xdt_version
- xdt_version_major
- xdt_version_minor
- xdt_version_micro
- xdt_version_tag
- xdt_version_build
- xdt_debug_default
Example usage:
XDT_VERSION_INIT([4.15.3],[git])
AC_INIT([xfce4-someproject], [xdt_version()])
...
XDT_FEATURE_DEBUG([xdt_debug_default])
commit e19cc0f79b3a577ef1e3ab1220c47ed640362a6e
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Wed Jun 3 00:30:27 2020 +0200
Add manpage and tests to xdt-csource
- Migrated from the old-csource
- Needed to completely remove exo-csource from exo
commit 4531a96c9a77ab225aaeb472a7c7642e2e7dcb38
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue May 26 12:22:03 2020 +0200
ci/build_libs.sh: update configure options
Remove --build and --host since they are only needed for crosscompile.
Native builds don't need those and they will not work in case someone
tries build on 32bit.
Also add envronment variables for libdir and libexecdir so the
debian/ubuntu specific lib(exec)dir can be overridden.
commit 9747681dd97510d5a47f33edc323670a57bf1bfa
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue May 26 12:12:26 2020 +0200
ci/build_libs.sh: use all cores for build
Use all cores from `nproc` rather than hardcode parallel jobs to 8.
Allow overide this via environment variable NPROC:
`docker build --build-arg NPROC=2 ...`
commit 80bef8a08035f25d45cf5cb50fe92cfc3d2a45b0
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue May 26 12:10:28 2020 +0200
ci/build_libs.sh: create branch to avoid warning
avoid git warning about 'detached HEAD' state by creating a git branch
for the build.
commit 9ea41ec6a3becee8605977ca95fce1a9bd3abc1f
Author: Natanael Copa <ncopa@alpinelinux.org>
Date: Tue May 26 12:06:00 2020 +0200
ci/build_libs.sh: simplify and port to POSIX shell
commit 5965e65fcf9f246177a9002cca0c1175a0b39597
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Tue May 19 01:41:44 2020 +0200
xfce-build: Add depends for Catfish
commit 38f0d114a72275b9be771cf01d69ac8651dd9fe0
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Fri May 15 20:22:11 2020 +0200
xfce-build: Add build deps for apps (Fixes #33)
commit baa6466a34e6060a486fd05ea38639158bd588b4
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Fri May 15 20:13:34 2020 +0200
Add xfce4-dev-tools build in addition to container build
commit 46f6042649d5b83da986f4680949bc5ada0b69e7
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Thu May 14 10:24:53 2020 +0200
Check BEFORE_SHA along with changes to .po files
commit f9318560bf6d89eeab71cb58a6a99c3a4a1c0741
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Wed May 13 15:19:18 2020 +0200
Remove automake workaround
commit aebc3366f56d4bad6e96b929021a4f79c986351a
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Wed May 13 09:42:42 2020 +0200
Make it so containers are built on branches
commit 969033f104d870502c99b9d32b995d122979a4dc
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Wed May 13 00:01:01 2020 +0200
gitlabci: Ensure to run autogen in distcheck stage
commit fa58240b6b0070a6a7e446fa7bd6034eac452542
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Tue May 12 23:15:41 2020 +0200
Switch to "foreign" mode for automake
- This way, we don't need to provide a README file, now that we start to
switch to README.md for markdown readme on gitlab
- "[..] differences between the gnu and foreign flavours is
that the former requires the presence of a number of files in the
top-level of the projects": https://autotools.io/automake/options.html
- It also stop warning when using GNU make syntax, but we already
mandate gnu make, so it's not a problem
commit e652e9366589bbd3e6c47daed5b9fddb168748b8
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Tue May 12 17:46:54 2020 +0200
Fix issue with default cases in template
commit 49a224dbf6ddb80ee887a92ce7bfaf235429a6c2
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Tue May 12 13:06:59 2020 +0200
Separate build/distcheck and add translations
commit 80646b6511e38441e39dc99d953d23c21f23bd4d
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Tue May 12 09:49:36 2020 +0200
Add CI templates notes
commit e1ef0fea807716a6954649a0ed693b0647283560
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Tue May 12 09:29:01 2020 +0200
Update README with explanation of Dockerfile
commit 87b91f66d087d6f393230af5bd9a4f0283e15368
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Mon May 11 13:55:44 2020 +0200
Always run build on schedule
commit 26942c2a44779e88e28f8835d98ff04d2e4e2058
Author: Simon Steinbeiß <simon.steinbeiss@tttech.com>
Date: Mon May 11 13:00:24 2020 +0200
Fix whitespace error
commit be9eaae5c3a551fd2387584386e965eb59496a50
Author: Simon Steinbeiß <simon.steinbeiss@tttech.com>
Date: Mon May 11 11:56:40 2020 +0200
xfce-build: Order libs according to dependency chain
See also: https://docs.xfce.org/xfce/building#xfce_dependencies_explained
commit 01cab4d1e78435b19586844e93d99ea4d7c2a675
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Mon May 11 11:04:01 2020 +0200
Add libgirepository1.0-dev as dependency
commit 30143e90b84b98fa9d822fdd2aaf9bc73c829e68
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Mon May 11 10:41:56 2020 +0200
Remove steps that were building local repo
commit 2ca6ca136d1dc4c3a5ec2fd5e15396fc5e226994
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Mon May 11 08:54:57 2020 +0200
Switch to rules syntax to enforce project
commit 167d5e1a4c2b21873550d849f44cae705bb036c7
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Mon May 11 00:15:26 2020 +0200
xfce-build: Only rebuild on docker-related changes
commit 80b156a04f30be4b7447484e424772022d87ef3b
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun May 10 23:56:07 2020 +0200
Add helper script to get all translation-updates
commit 5333681a97d5d23b47a383f346019648337d7ba2
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun May 10 23:32:16 2020 +0200
xfce-build: Build latest tags of all core libs
commit 2bd8cac01f4579d43bb2b420cf7e2a862b5f2315
Author: Simon Steinbeiss <simon.steinbeiss@elfenbeinturm.at>
Date: Sun May 10 22:36:21 2020 +0200
xfce-build: Add gobject-introspection package
commit 15e41e0115a39eabd1c47d7a69278df1f8688d02
Author: Jason Yavorska <jyavorska@protonmail.com>
Date: Sun May 10 22:30:00 2020 +0200
Integrate xfce-build container build/creation
commit c62f6bec27b7870aa3ee5b366a0bf1e74b72ce44
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sun Aug 11 17:54:32 2019 +0200
Back to development
commit 3a7475960ac2d1eb990933ca5dfee6d4bf0069c9
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Sun Aug 11 17:43:26 2019 +0200
Bump to 4.14.0
commit 2e9291813e5afbe80d4de566b61ab879e96e1283
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Jun 27 14:56:38 2019 +0200
Back to development
commit c5fd93be2c853f0a47ab69b313edb03e12077ef5
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu Jun 27 14:48:28 2019 +0200
Update for release
commit 5e8bc24a466da1100bd8ffb4f334032e44869751
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu May 23 17:09:16 2019 +0200
Update xdt-csource with latest exo-csource modifications
- xdt-csource will replace exo-csource (projects using exo-csource needs to be updated)
- The work started in issue #6449 but the full migration has never been done.
- This way, we do not need to check for exo even when exo is not
required.
commit cea2eb7c81a8895cb1afb2f2e4b71e32dd0f531e
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu May 23 17:02:37 2019 +0200
Remove svn support in xdt-autogen
- Also simplify a bit the XDT_AUTOGEN_REQUIRED_VERSION detection
- Remove the check of the unused doc submodule
commit 7814d31d6c909e9fc65ba4340e7efe4c76cd7c73
Author: Romain Bouvier <skunnyk@alteroot.org>
Date: Thu May 23 16:57:55 2019 +0200
Cleanup xfce4-dev-tools
- Remove useless macros: m4macros/xdt-python.m4 and m4macros/xdt-xfce.m4
are not used
- Update URLs
- Remove xdt-commit, used to generate Changelog, now done via make
distcheck
commit b627d837b5e1bf98f403ef1fb4cdab18eeb6bfe8
Author: Matt Thirtytwo <matt.59491@gmail.com>
Date: Thu Mar 5 20:26:55 2015 +0100
No -Wshadow flag for enable_debug=full (bug #11637)
Use it only for enable_debug=yes.
commit 5eb3f0cd923711f1e005bb41dc324d6bbba31c91
Author: Harald Judt <h.judt@gmx.at>
Date: Sat Feb 28 15:39:00 2015 +0100
Post release tag bump
commit 18b2e20ea1f8be1005ed27443e667f660046ee04
Author: Harald Judt <h.judt@gmx.at>
Date: Sat Feb 28 15:30:12 2015 +0100
Updates for release
commit 86d8411271b38d6ecb1a6b77c17b6c9d6f59b3ba
Author: Harald Judt <h.judt@gmx.at>
Date: Sat Feb 28 15:28:22 2015 +0100
Require xfce4-panel-4.11 for panel plugins
GTK-3 API changes
commit 8858dfc3aa8124143a04b30db0bfb66e700feb8d
Author: Harald Judt <h.judt@gmx.at>
Date: Wed Feb 18 18:45:11 2015 +0100
Restore AC_REVISION
Other projects define this too; in previous versions it was simply ignored
because $Id$ was only generated by SVN checkout.
commit 856310420b814ca1508606cfbf72397ae7acf3bb
Author: Harald Judt <h.judt@gmx.at>
Date: Wed Feb 18 18:41:49 2015 +0100
Post-release tag bump
commit cbd2f20770b7e49a76c41f546e9cd731c86f99c9
Author: Harald Judt <h.judt@gmx.at>
Date: Tue Feb 17 22:57:58 2015 +0100
Updates for release
commit 6b088ab3d118f9cd4e9c98c6bd3883a05ef8a73e
Author: Harald Judt <h.judt@gmx.at>
Date: Tue Feb 17 22:01:49 2015 +0100
Update list of files to clean with xdt-autogen
commit 9c0e7524f0659a2c4867e8bb007bd5c0d0282512
Author: Harald Judt <h.judt@gmx.at>
Date: Tue Feb 17 21:30:35 2015 +0100
Use the correct libtool version number in the xdt-autogen warning
Commit de3d7f0 "Display warning if AC_PROG_INTLTOOL is used (bug #8930)"
prints a warning with a hardcoded libtool version. This patch replaces
the hardcoded value with the version number defined in configure.ac.in,
so developers will use the proper requirements.
commit 1541dcd7f5c923b5268ca617f4a3ddafe6565c4b
Author: Harald Judt <h.judt@gmx.at>
Date: Tue Feb 17 20:29:35 2015 +0100
Remove definitions related to the obsolete xfce-mcs-manager
xfce-mcs-manager has long been archived and replaced by xfconf.
commit f35b12d9a3d9d9b3ce3f937a6b3873d65e2aaf3c
Author: Harald Judt <h.judt@gmx.at>
Date: Tue Feb 17 20:27:22 2015 +0100
Remove check for threaded panels
This check is only for old panels (<=4.1.90) and useless today.
commit 4beed310b41ef8b3d56ee7e84ac825b5099e458d
Author: Harald Judt <h.judt@gmx.at>
Date: Mon Feb 16 21:20:11 2015 +0100
Bump dependencies for xfce4-dev-tools and m4macros
* automake-1.11
* autoconf-2.60
* libtool-2.4
* glib-2.30
* xfce4-panel-4.9
commit 55b8148aacb05346b8c85954d41d360ae8cbd38e
Author: Harald Judt <h.judt@gmx.at>
Date: Mon Feb 16 21:34:08 2015 +0100
Fix autotools m4 warning
commit 78e9cfafb1c8ed749c07a49e22440f5df7a96cd1
Author: Harald Judt <h.judt@gmx.at>
Date: Mon Feb 16 21:18:23 2015 +0100
Cleanup files and update .gitignore
Update copyright dates, remove subversion $id strings, update .gitignore.
commit e01becaeafa9c2373fa08ef9bdbb181e5af05718
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jul 27 17:03:42 2014 +0200
Fix out of source building (bug #10899)
Depending on files generated during build via $(srcdir) breaks builds
that take place outside the source directory. This commit fixes one such
mistake in scripts/Makefile.am that refers to $(srcdir)/xdt-autogen.in.
commit de3d7f023da850ad8fa834c94b999fb80343c1ec
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jul 27 16:46:34 2014 +0200
Display warning if AC_PROG_INTLTOOL is used (bug #8930)
Similar to AC_PROG_LIBTOOL, which has been replaced with LT_PREREQ
and LT_INIT, AC_PROG_INTLTOOL has been replaced with IT_PROG_INTLTOOL.
This commit makes xdt-autogen recommend intltool >= 0.35.0 and displays
a warning if AC_PROG_INTLTOOL is still being used in a configure script
template.
Original patch by Samuli Suominen <ssuominen@gentoo.org>
commit 6d6fadcba4619c556a4b2eb7abc3d7c5fb2c0279
Author: Nick Schermer <nick@xfce.org>
Date: Sat Feb 22 23:52:14 2014 +0100
Post release tag bump.
commit f574099ea0bb60bed7ee8f007edf66b1f86271f4
Author: Nick Schermer <nick@xfce.org>
Date: Sat Feb 22 23:51:08 2014 +0100
Updates for release.
commit b94af0c78a6509888368fbd4d280372eee1f7dab
Author: Nick Schermer <nick@xfce.org>
Date: Mon Apr 29 19:04:49 2013 +0200
Avoid gnu_printf warnings in debugging in gcc 4.8.
commit d13ceda50e099d1741f3fd1b67b76b4fca4aa5ae
Author: Nick Schermer <nick@xfce.org>
Date: Sun Jan 6 12:09:49 2013 +0100
Correctly quote macro.
commit a809811ec15a6c3c20f9b02464ea73d7b9c4c8a1
Author: Nick Schermer <nick@xfce.org>
Date: Sun Jan 6 11:43:11 2013 +0100
Some build improvements.
commit 236a0c578369bfc726f7d9a830975cbeaefbfee5
Author: Nick Schermer <nick@xfce.org>
Date: Mon Jul 23 17:31:48 2012 +0200
Remove FORTIFY_SOURCE=2.
This gives warnings with full debug builds on recent gcc versions.
commit 9244250ac0c15ba160688758c5dccf97f3f160ef
Author: Nick Schermer <nick@xfce.org>
Date: Sat Apr 28 21:17:59 2012 +0200
Post release tag bump.
commit 8b8f574f1223115250b3907865827273f760f4de
Author: Nick Schermer <nick@xfce.org>
Date: Sat Apr 28 21:12:26 2012 +0200
Updates for release.
commit 9e9eb8c42afa82b78a8bfbe8aad70f2a6559239e
Author: Nick Schermer <nick@xfce.org>
Date: Sat Apr 14 12:03:55 2012 +0200
Fix comment.
commit ec2ed1edda481405a77da040ffa96af612ad14df
Author: Nick Schermer <nick@xfce.org>
Date: Fri Apr 13 23:49:53 2012 +0200
Post release tag bump.
commit e000b3ab065c7474f8275e158d34aa88ea6b4cc1
Author: Nick Schermer <nick@xfce.org>
Date: Fri Apr 13 23:49:06 2012 +0200
Updates for release.
commit e13cc0004949cfc25e15d53f759e390089440e94
Author: Nick Schermer <nick@xfce.org>
Date: Fri Apr 13 23:46:50 2012 +0200
Never disable checks.
This disables the g_return_ macros, and quite often
we rely on that. So for the sake of stability, disable
those.
commit 286be3696483d5fcd5633371b23cbdca6a4e06fd
Author: Nick Schermer <nick@xfce.org>
Date: Fri Apr 13 18:34:17 2012 +0200
Use ?_VERSION for special versioned binary detection (bug #8683).
Use AUTOCONF_VERSION for automake-$ver, ACLOCAL_VERSION for
aclocal-$ver, AUTOMAKE_VERSION for automake-$ver and
AUTOHEADER_VERSION for autoheader-$ver.
This removes the custom checks for the //newest// binary
version, which gets constantly outdated.
commit 69de50c7cd911c8014f27db08bcde5e9f79afb0a
Author: Nick Schermer <nick@xfce.org>
Date: Fri Apr 13 21:45:12 2012 +0200
Remove the old BM_ macros.
commit f912e35def91422d37296dbd1bb692c663d862c7
Author: Nick Schermer <nick@xfce.org>
Date: Mon Feb 20 22:41:59 2012 +0100
Fix license.
commit 1edbcced363245e0e8336620a66308ec49d3b5b5
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Mon Jan 16 14:56:18 2012 +0000
Post-release version bump.
commit a1a5604add74f97928f8684f3d27d67cb25f4677
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Mon Jan 16 14:51:26 2012 +0000
Release 4.9.1!
commit 32eb2f4a298a77a1fcdaf3a3977c2abf1d63c26f
Author: Nick Schermer <nick@xfce.org>
Date: Sat Dec 10 12:28:05 2011 +0100
Never use xdt-autogen in autogen.sh.
commit dfd0dc48ef2d0dd8c3c771ccf69a4476534d6e34
Author: Nick Schermer <nick@xfce.org>
Date: Sun Nov 13 18:47:53 2011 +0100
Update build.
commit a2f88abdc5fa7a459558e6ef50d094571a943a0b
Author: Nick Schermer <nick@xfce.org>
Date: Sun Nov 13 18:45:32 2011 +0100
Remove spec file and rpm build.
commit 56cde58238898e5659c39f5e713ee0362ba772d9
Author: Nick Schermer <nick@xfce.org>
Date: Thu Nov 3 19:27:32 2011 +0100
Add support for LT_PREREQ (bug #6920).
Support LT_PREREQ as the new alternative of AC_PROG_LIBTOOL. If
the latter is used, show a message with information how to switch
to LT_PREREQ.
commit de35c92f942ca617e53c79e7d519a67a40d9cac3
Author: Nick Schermer <nick@xfce.org>
Date: Thu Oct 13 20:21:42 2011 +0200
Post release tag bump.
commit 057bcf217964ec5ed8a1f02d812db2b9b8786493
Author: Nick Schermer <nick@xfce.org>
Date: Thu Oct 13 20:20:18 2011 +0200
Updates for release.
commit c41acb07563a00018aef24a5b38fada289efd373
Author: Mike Massonnet <mmassonnet@xfce.org>
Date: Sat Aug 27 20:25:01 2011 +0200
Port exo-csource to xdt-csource (bug #6449)
The translations have been removed from the code -- Nick.
commit f2eb2c2e9ca7d042eb35fa56f392df4dbaf9924c
Author: Nick Schermer <nick@xfce.org>
Date: Sun Jul 3 19:42:38 2011 +0200
Use pkg-config macro for detection (bug #7787).
Use the macro shipped with pkg-config for detection of
$PKG_CONFIG. This to fix cross-build compatibility.
commit 874bfb8234ab1d3af08dea0ce4aa037cbddf996f
Author: Landry Breuil <landry@rhaalovely.net>
Date: Thu Apr 28 22:01:49 2011 +0200
Disable --as-needed on OpenBSD (bug #7546).
commit 5927409dd1d42b39e25d4b813b8b2f00d26b001a
Author: Nick Schermer <nick@xfce.org>
Date: Mon Apr 25 11:05:15 2011 +0200
Skip -Wredundant-decls on OpenBSD.
signal.h has an inline that redeclares __errno.
commit 8bfa89183b4e27db241b1402bd53a0d5f80f6af3
Author: Nick Schermer <nick@xfce.org>
Date: Tue Mar 22 23:37:27 2011 +0100
Support xldscope for Sun Studio.
commit ab2cf62f191b13884b4c7c7e71f10d0f21f3f9b5
Author: Nick Schermer <nick@xfce.org>
Date: Tue Mar 22 20:46:16 2011 +0100
Don't use -g3 for full debuggin.
This breaks the sun studio compiler and since -g defaults
to level 2, it provides enough backtrace information.
commit 1d71f62e24c95963f84b4d243fa8c07accd87af5
Author: Nick Schermer <nick@xfce.org>
Date: Mon Mar 7 20:58:15 2011 +0100
Only use -fstack-protector on Linux systems.
The FreeBSD bot has some problems with this flag. Disable
it on non-linux systems, since it's not that important.
commit 9516648eab1302bb7003c2298bb72c7b777b9013
Author: Nick Schermer <nick@xfce.org>
Date: Sun Mar 6 19:23:15 2011 +0100
Fix FSF address and add missing licenses.
commit f304f8bd2fe1c49b55c457f009bcd0434a6a4e7c
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jan 16 15:45:24 2011 +0100
Use 4.8.0git... for now.
commit 9ebbf22a19a11c13d08be88714615eb81c2e2f95
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jan 16 15:27:44 2011 +0100
Post-release version bump.
commit 2dc3f265c4ed5b45234aa6ff89ccefead9ca2ea5
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jan 16 15:13:37 2011 +0100
Release 4.8.0!
commit 3a8c824760c8d63f1438e219799e40a5b191d699
Author: Nick Schermer <nick@xfce.org>
Date: Sun Jan 2 13:58:09 2011 +0100
Post release tag bump.
commit e41279eac84b92b1e26cdffb999544177090c0d3
Author: Nick Schermer <nick@xfce.org>
Date: Sun Jan 2 13:57:23 2011 +0100
Updates for release.
commit e9f246a0486cc03168f7a8b47fadb64a9843da30
Author: Benedikt Meurer <benedikt.meurer@googlemail.com>
Date: Sun Dec 19 12:13:19 2010 +0100
Check for glibtoolize.
commit d1702a893ff5f2c0fdf3cb0779360d155004efb1
Merge: 4dc82ec 56cc7a6
Author: Benedikt Meurer <benedikt.meurer@googlemail.com>
Date: Sun Dec 19 12:01:53 2010 +0100
Merge remote branch 'origin'
commit 4dc82ec2af7cab940cd700be6cb041468dc86338
Author: Benedikt Meurer <benedikt.meurer@googlemail.com>
Date: Sun Dec 19 11:49:21 2010 +0100
Use printf instead of echo -n.
/bin/sh does not support the -n option for echo. Use printf instead,
which is independent of the shell.
commit 56cc7a69d75dd7d59d0170af16b5030189ccb1a0
Author: Enrico Tröger <enrico.troeger@uvena.de>
Date: Sun Nov 21 13:03:00 2010 +0100
Fix typo.
commit e0952f10499edcf6822b54811cb515b560612969
Author: Nick Schermer <nick@xfce.org>
Date: Sun Oct 31 15:08:40 2010 +0100
Updates for release.
commit 6bdbfdf491d3aa61806edc24b6a4cf984083c7ec
Author: Nick Schermer <nick@xfce.org>
Date: Sun Oct 31 12:45:04 2010 +0100
Check if $1 is a file before calling cat (bug #6101).
commit 0a39faed46ec1a72540649c69efd198a118851e8
Author: Yves-Alexis Perez <corsac@debian.org>
Date: Sun Oct 31 12:40:17 2010 +0100
Check for automake 1.11.
commit 7d85dae9cbd88e40fe987dc97e9453932e09b2ca
Author: Nick Schermer <nick@xfce.org>
Date: Sun Oct 31 12:09:20 2010 +0100
Add check stage for documentation submodules.
This adds an extra check when XDT_AUTOGEN_CHECK_DOCS
is defined. This variable points to the directory that
should contain the xfce4-docs submodule.
If no submodule clone if found and autogen.sh is running
from within a git clone, it will automatically initialize
the submodule for the user, if not it will show an error
and abort xdt-autogen, since configure will abort too if
we continue because of missing makefile.am files.
commit ddc1f35ba246fea94eea293a8f530de95aa0253e
Author: Nick Schermer <nick@xfce.org>
Date: Tue Jun 1 17:40:04 2010 +0200
Build ChangeLog from GIT.
commit 20e7901a9fef7ea229fa3c55f8875509c795c391
Author: Nick Schermer <nick@xfce.org>
Date: Fri Oct 23 11:42:39 2009 +0200
Revert "Don't set the default visibility in XDT_FEATURE_VISIBILITY."
This reverts commit 77d9703dccee853d007c3b7133bc14accff66203.
commit 77d9703dccee853d007c3b7133bc14accff66203
Author: Nick Schermer <nick@xfce.org>
Date: Thu Oct 22 11:18:06 2009 +0200
Don't set the default visibility in XDT_FEATURE_VISIBILITY.
Only use XDT_FEATURE_VISIBILITY to detect if visibility is
supported by the compiler. Setting the default visibility
to hidden will break libraries and modules that don't
set the visibility of their public function to "default".
commit 399b5f31fba3b76767041bdd0d7ad57c53ee1866
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Sep 19 17:38:13 2009 -0700
== 4.7.2 released! ==
commit 3a8ce30b0a3d84613d27bc5fdd503ace832b6a9d
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Sep 19 17:35:10 2009 -0700
fix typo that breaks XDT_FEATURE_LINKER_OPTS
commit 45448c2c68c5a405bb83efb8a33e8c5dd48db90e
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Sep 19 14:23:13 2009 -0700
== 4.7.1 released! ==
commit e1e347ca0f4df390b56d3ace890743c39ec7cf69
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Sep 19 14:04:39 2009 -0700
put --disable-debug back and fix defaults for visibility and linker opts
also make the non-defaults explicit and therefore less confusing (it
worked before due to default autoconf shell-ification of the first arg,
but that's not immediately clear)
commit 924e31f91d6f111b0c6ea65fa8b4cfbaf8043592
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Sat Sep 19 13:48:25 2009 -0700
Revert "Fix XDT_FEATURE_LINKER_OPTS and XDT_FEATURE_VISIBILITY."
This reverts commit 90d686411e994a0adfe822e917b1954538d95b74.
commit 90d686411e994a0adfe822e917b1954538d95b74
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sat Sep 19 17:32:07 2009 +0200
Fix XDT_FEATURE_LINKER_OPTS and XDT_FEATURE_VISIBILITY.
AC_ARG_ENABLE executes the code its last parameter if the --enable flag
is not provided, not if the --disable flag is not provided. That's why
we need to set the value to "no", not to "yes".
Also don't show the --disable-debug option (with weird indentation)
because the help message already explains that there are --disable
variants for all --enable options.
commit 678b9705cb2424d0d690aee12ac56ba24e8aaebd
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sat Sep 19 16:04:57 2009 +0200
Fix default detection and $enable_debug value in XDT_FEATURE_DEBUG().
This uses the m4_default() macro instead of the custom code to check
which debug level should be used as the default. $default_level was
not set when running configure with --help before.
It seems we also need to use [enable_debug=$enableval] in
AC_ARG_ENABLE() for enable_debug to be set. Tested it and it works fine.
commit 0b00f6c1ea8c7e7d1ca772bf46f4c0e770970925
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 18 17:41:43 2009 -0700
beef up the XDT_FEATURE_DEBUG macro a bit
commit 881dcbabcc5cdc488b2b051f8a5ea7b1db0abba6
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 18 17:20:29 2009 -0700
s/SVN/Git/
commit 1e8476b13f74bc2792a4b8af09d523cb726dffa0
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 18 17:20:18 2009 -0700
add XDT_FEATURE_LINKER_OPTS
commit 104a024b94ae87ee87aedefd21b140505220a2c4
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Fri Sep 18 16:16:13 2009 -0700
add XDT_FEATURE_VISIBILITY
commit 806ee07598a912c3e92498e98c29b35d29ea65ac
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:56:49 2009 -0700
add do-not-edit warning to top of autogenerated configure.{ac,in}
commit 3e611faa1d00f18639c3dc1ffe1ea9afce3ecdb5
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:51:43 2009 -0700
remove configure.{ac,in} on 'clean' if configure.{ac,in}.in exists
commit 65753f2d0307d51b2d15e66e76ef6599fac17264
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:46:13 2009 -0700
print warning if attempting to compare git revision versions
we can't tell version ordering, but it's possible it's fine, so just
print a warning and proceed. autogen.sh writers shouldn't depend on
particular git revisions, only on release versions, but let's soft-allow
it.
commit 2aea2c13e03ac17169bbfd5cb279cca513c2ffd8
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:45:37 2009 -0700
make lookup_configure_ac_files act like lookup_configure_ac_in_files
commit 1281d9011e8f3ac952e07c3190208c5388366b16
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:35:32 2009 -0700
add gitignore
commit 2398b2ab6f2a55b927444853cebec6bb347b9354
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:23:18 2009 -0700
rename CONFIGURE_FILES to CONFIGURE_AC_FILES for clarity
also rename some similar vars/functions for the same reason
commit c184070cd5923b155ade59127f7d992ed9f0ef34
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 14:19:12 2009 -0700
be a little more portable, and select the best awk implementation
commit c9fb4e83e98d829efa46a8f8123a4b2ae175bb17
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 13:19:13 2009 -0700
also recognize new-school AC_CONFIG_HEADERS() as requiring autoheader
commit 0fcf0dd8a995ef116cbfcf12591ce52a42a36dcc
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 26 13:18:50 2009 -0700
the -q option to grep is specified by POSIX, so no reason not to use it
commit 53c37889d8802da17cadbb2b97645f5d7acc9b39
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 20:34:29 2009 -0700
re-add git revision tag
commit b6eae91c36340fa6c5b36da40b97e4ae9b00418b
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 19:13:15 2009 -0700
== 4.7.0 released! ==
commit c7d5acfcaaea8ce1c54c7b7caf46ae3ef27c3fa5
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 19:12:02 2009 -0700
rename ChangeLog and autogenerate new one
commit 1c896e5c93ff8a720a2b1775a266373de41982a6
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 19:10:33 2009 -0700
fix distcheck (output is in builddir, not srcdir)
commit f88cea5e782a0496186d42f469782882cac34a7c
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 18:56:54 2009 -0700
use git for revision substitution
commit 37d405679d49f9bff0fdc1d70cff9ea560c08222
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Tue Aug 18 18:47:24 2009 -0700
do @REVISION@ and @LINGUAS@ substitution in xdt-autogen
commit 0b27b7072a807c3aff15c85aee9bf5fe4317b958
Author: Brian J. Tarricone <brian@tarricone.org>
Date: Wed Aug 12 18:27:24 2009 -0700
add module description file
commit f03b6d77c4a2bcf7bdf4855a61ff6501e83021b6
Author: Brian Tarricone <brian@tarricone.org>
Date: Tue Jul 28 22:10:06 2009 +0000
add --version and -V options, add required minimum version check.
users who wish to require a minimum version of xdt-autogen should
export XDT_AUTOGEN_REQUIRED_VERSION, set to the minimum required version
that is supported.
(Old svn revision: 30414)
commit 83019e7af8e87b2010b4f1fcb27135814722bdb6
Author: Brian Tarricone <brian@tarricone.org>
Date: Tue Jul 28 02:14:55 2009 +0000
also support the newer IT_PROG_INTLTOOL macro
(Old svn revision: 30408)
commit 1bc99454e7874a1f8dde35ab3e899e4b537f9ac1
Author: Brian Tarricone <brian@tarricone.org>
Date: Mon May 4 07:50:17 2009 +0000
* m4macros/xdt-features.m4: Add a bunch more compiler warning
options when --enable-debug={yes,full} is specified.
(Old svn revision: 29924)
commit d7c0e055d3ef27c645207c78d862dd43409c93b0
Author: Stephan Arts <stephan@xfce.org>
Date: Wed Feb 25 07:06:58 2009 +0000
Update Changelog, NEWS and version-info
(Old svn revision: 29589)
commit 236e831d71d1105ecce9836921555cbd0c94fc81
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Tue Feb 17 15:55:43 2009 +0000
* scripts/xdt-commit: Replace grep -P with awk and thus make the
script more portable. Properly detect changed ChangeLogs in SVN.
This should get rid the empty lines when committing several
changed ChangeLogs (bug #4716). Patch provided by Alexander
Toresson.
(Old svn revision: 29499)
commit b846bf67c1b64816908feb7cfde09f2568dda1b6
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sun Jan 25 00:28:44 2009 +0000
* == 4.5.99.1 released! ==
* configure.in.in: Bump version.
(Old svn revision: 29313)
commit 43faa68123dc682a229cebb210128a84a8dfefa7
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Wed Jan 14 21:14:06 2009 +0000
* configure.in.in: Post-release version bump.
(Old svn revision: 29243)
commit fe5bff2b4efeeaa0560c5472432d9b5d5cd35a78
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Mon Jan 12 20:51:22 2009 +0000
* == 4.5.93 released! ==
* configure.in.in: Bump version.
(Old svn revision: 29189)
commit 4d675b38e484ea3321a62d60adb951d426a9a521
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sat Jan 10 23:49:46 2009 +0000
* NEWS: Update NEWS for the upcoming 4.5.93 release.
(Old svn revision: 29128)
commit 96d7b7ff667555a798f469d54f62119cab316efd
Author: Brian Tarricone <brian@tarricone.org>
Date: Mon Nov 17 02:16:02 2008 +0000
* scripts/xdt-autogen.in: Remove intltool auto-patch: it wasn't
terribly reliable, and Xfce doesn't need it anymore anyway.
(Old svn revision: 28835)
commit 9b53b38659aaf16c94bdb20c2942ab9259ba5a27
Author: Stephan Arts <stephan@xfce.org>
Date: Fri Nov 14 11:04:05 2008 +0000
Bump version number
(Old svn revision: 28799)
commit 992f334faf49883293848a300e017d0c3bea6f13
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Tue Nov 11 00:19:39 2008 +0000
* scripts/xdt-commit: Use !/bin/bash instead of !/bin/sh in the
script header just to make sure everything works as it should.
(Old svn revision: 28718)
commit 23dee160db2f98548acc4ffdef07e179a011cfa7
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Sat Nov 1 11:44:28 2008 +0000
* scripts/xdt-commit: Automatically add ChangeLog files of git
repositories to the commit with "git add ${CHANGELOG}". Use "git
diff --cached" instead of "git diff HEAD" for the commit messages.
(Old svn revision: 28557)
commit b1be936216c8eab9cd2a6fdf133a3eb7264a9f9a
Author: Brian Tarricone <brian@tarricone.org>
Date: Sat Oct 18 18:54:51 2008 +0000
* scripts/xdt-commit: Support git/git-svn as well as svn (bug 4491).
* configure.in.in: Re-add 'svn' version tag.
(Old svn revision: 28295)
commit 821708eba982723857d753c55c81447a82c8ab2f
Author: Stephan Arts <stephan@xfce.org>
Date: Mon Oct 13 11:56:38 2008 +0000
Bump version number
(Old svn revision: 28218)
commit c54398798510d8c9c71748f0d781ff617e3bdb88
Author: Brian Tarricone <brian@tarricone.org>
Date: Sun Oct 12 08:40:41 2008 +0000
* scripts/xdt-autogen.in: Only attempt to patch intltool merge for
versions of intltool < 0.40.0. Versions starting from 0.40.4 are
fixed, and earlier 0.40.x versions aren't patchable because they
use a systemwide copy of intltool-merge.
(Old svn revision: 28165)
commit e716ab83cf0bc4c6065c0fe17c7ca2589617bb9e
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Fri Sep 12 20:32:24 2008 +0000
* NEWS: Updated for the alpha release.
* configure.in.in: Bump version number.
* INSTALL: Remove INSTALL, this is auto-generated by autotools
these days anyways.
* Remove xfce 4.6 alpha tag.
(Old svn revision: 27848)
commit 626e1309fb326cd3303ad62584df2bf55dc04622
Author: Stephan Arts <stephan@xfce.org>
Date: Sat Sep 6 09:46:08 2008 +0000
Bump version number
remove INSTALL, this is auto-generated by autotools these days anyways.
Remove xfce 4.6 alpha tag
(Old svn revision: 27681)
commit cc62a7a36cc509ee451ba21eabf06e8e211541c1
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Thu Sep 4 15:58:36 2008 +0000
* autogen.sh: Fix typo.
(Old svn revision: 27650)
commit f2b0f1e0f6453c62cb57094aa571ef1462cc9de6
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Thu Sep 4 15:57:01 2008 +0000
* autogen.sh: Add support for git svn revision versioning.
(Old svn revision: 27649)
commit ee452790e0121af7c1045e7e15d2df0c232ea6c8
Author: Brian Tarricone <brian@tarricone.org>
Date: Mon Aug 25 02:28:45 2008 +0000
2008-08-24 Brian Tarricone <kelnos@xfce.org>
* scripts/xdt-autogen.in: add intltool-merge.in patch to fix
merging translations to .desktop keys that have dashes in them
(Old svn revision: 27551)
commit 14ab0f174b591df67f7c8d11f122551416124378
Author: Stephan Arts <stephan@xfce.org>
Date: Sun Aug 17 22:03:51 2008 +0000
Bump version number
(Old svn revision: 27496)
commit 96793d21b6b9d1ce96b4597e7cd41e13357a2060
Author: Brian Tarricone <brian@tarricone.org>
Date: Sat Nov 17 18:54:43 2007 +0000
post-release version bump, add back svn release tag
(Old svn revision: 26361)
commit c374f478682326f8a2d55f074b67ca47b708b7c6
Author: Brian Tarricone <brian@tarricone.org>
Date: Sat Nov 17 18:42:54 2007 +0000
update changelogs; ready to tag 4.4.2
(Old svn revision: 26341)
commit 84c6de93778a8aaea6d8711a8e03aca8a75f6827
Author: Brian Tarricone <brian@tarricone.org>
Date: Sat Nov 17 18:24:17 2007 +0000
remove svn version tag for release
(Old svn revision: 26339)
commit 1633c4ac6670565c991f70fc9e3ea4c3a773a865
Author: Brian Tarricone <brian@tarricone.org>
Date: Sat Nov 17 17:47:38 2007 +0000
various pre-release updates - po files, docs, etc. mainly autogenerated stuff
(Old svn revision: 26337)
commit 2207f4511bac88fd65eedbef46dddc3b3c213853
Author: Nick Schermer <nick@xfce.org>
Date: Fri Nov 16 10:33:58 2007 +0000
Update NEWS, not really sure if trunk will be released as 4.4.1 tho...
(Old svn revision: 26312)
commit 0c4915fd91a27a2e703be78ffd0a2f60d6d5e94b
Author: Brian Tarricone <brian@tarricone.org>
Date: Wed Oct 24 22:26:53 2007 +0000
remove trailing parens on AC_INIT version info to work around bug
in intltool 0.35.x and 0.36.x
(Old svn revision: 26180)
commit 80a3cf0b608461cb6cd473359ef8e6d5c55a5c7b
Author: Brian Tarricone <brian@tarricone.org>
Date: Mon Oct 22 18:22:46 2007 +0000
2007-10-22 Brian Tarricone <kelnos@xfce.org>
* scripts/Makefile.am: fix 'make distcheck'; include
xdt-commit in EXTRA_DIST
(Old svn revision: 26176)
commit 1959ca88272931d1ab79dabaed7997c63ca866ab
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Wed Feb 14 12:18:04 2007 +0000
* scripts/xdt-commit: Too much quoting - all input files were
treated as one string.
(Old svn revision: 24978)
commit 351c61ec2856a44456eba553c73e2c5f45ef2a49
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Tue Feb 13 12:02:06 2007 +0000
* scripts/xdt-commit: Add more quotes around variables. Use
"type svn" to check whether Subversion is installed.
(Old svn revision: 24967)
commit 388a7f477399513d10577022c9067835f95571cc
Author: Jannis Pohlmann <jannis@xfce.org>
Date: Mon Feb 12 22:18:26 2007 +0000
* scripts/Makefile.am, scripts/xdt-commit: Add script for
generating commit messages from ChangeLogs on the fly.
(Old svn revision: 24965)
commit 0524f9cad910bb67d76832043c0aa34eaa8ef161
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Jan 20 09:28:35 2007 +0000
2007-01-20 Benedikt Meurer <benny@xfce.org>
* configure.in.in: Post-release version bump.
(Old svn revision: 24610)
commit d36d6840b8cf79bacb08e20f9c5379268919e645
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Jan 20 09:26:41 2007 +0000
2007-01-20 Benedikt Meurer <benny@xfce.org>
* === Released 4.4.0 ===
* NEWS, configure.in.in: Bump version.
(Old svn revision: 24608)
commit 65fa5840a9987a654dfbe0ede3433025fe36eae2
Author: Benedikt Meurer <benny@xfce.org>
Date: Mon Jan 15 17:47:49 2007 +0000
2007-01-15 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Apply patch from Olivier Fourdan
<fourdan@xfce.org> to update xdt-autogen to use the latest
GNU autotools if available. Bug #2755.
* m4macros/xdt-i18n.m4(XDT_I18N): Make sure xgettext treats
source code as UTF-8.
(Old svn revision: 24486)
commit 169553b0ef74ca49546d1bcd6d01fd0ad4a4728b
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Nov 4 12:00:58 2006 +0000
2006-11-04 Benedikt Meurer <benny@xfce.org>
* configure.in.in: Post-release version bump.
(Old svn revision: 23638)
commit 848d7fa7e5764a29c7a26a8d3f88fec6a7c9ccdc
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Nov 4 11:59:08 2006 +0000
2006-11-04 Benedikt Meurer <benny@xfce.org>
* === Released 4.3.99.2 ===
* NEWS, configure.in.in: Bump version.
(Old svn revision: 23636)
commit 0e9fa531896f13bbea6917990a780d0215ed0010
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Sep 2 12:36:00 2006 +0000
2006-09-02 Benedikt Meurer <benny@xfce.org>
* configure.in.in: Post-release version bump.
(Old svn revision: 23007)
commit 868c3a460469f645bf09e55874731dacfa18d370
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Sep 2 12:34:04 2006 +0000
2006-09-02 Benedikt Meurer <benny@xfce.org>
* === Released 4.3.99.1 ===
* NEWS, configure.in.in: Bump version.
(Old svn revision: 23005)
commit d2cb4cd5563fd69b23dbc462ff9f4f0ccd83ab55
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Sep 2 11:33:28 2006 +0000
2006-09-02 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-features.m4: Set gcc specific compiler flags only if
gcc is being used. Bug #2251.
(Old svn revision: 22990)
commit b4cf8b9f32d275b9256c6d349f39995de72341e5
Author: Benedikt Meurer <benny@xfce.org>
Date: Sun Jul 9 18:48:42 2006 +0000
2006-07-09 Benedikt Meurer <benny@xfce.org>
* === Released 4.3.90.2 ===
* NEWS, configure.in.in: Bump version.
(Old svn revision: 22332)
commit 45d4f2c185ffd3ecb31e567e80714ee854905113
Author: Benedikt Meurer <benny@xfce.org>
Date: Mon May 8 09:10:26 2006 +0000
2006-05-08 Benedikt Meurer <benny@xfce.org>
* m4macros/, scripts/: Add GPL boilerplate. Bug #1786.
(Old svn revision: 21591)
commit 349fda17c32a71243831228f1a689f8faa1e563b
Author: Benedikt Meurer <benny@xfce.org>
Date: Sun Apr 16 08:45:48 2006 +0000
2006-04-16 Benedikt Meurer <benny@xfce.org>
* configure.in.in: Post-release version bump.
(Old svn revision: 20980)
commit 0048f06ec06748efa4cff41699a5434749c642fa
Author: Benedikt Meurer <benny@xfce.org>
Date: Sun Apr 16 08:43:52 2006 +0000
2006-04-16 Benedikt Meurer <benny@xfce.org>
* === Released 4.3.90.1 ===
* NEWS, configure.in.in: Bump version.
* xfce4-dev-tools.spec.in: Update RPM spec file.
(Old svn revision: 20978)
commit 7712b9187aa7ca0d48f51e992041156989c6aee1
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Apr 15 22:59:23 2006 +0000
2006-04-16 Benedikt Meurer <benny@xfce.org>
* NEWS: Update NEWS.
* xfce4-dev-tools.spec.in: CVS -> SVN. Fix URL.
(Old svn revision: 20957)
commit 2c4a8c918e785e7de319275f6d3d97843ea82cb0
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Mar 9 18:39:28 2006 +0000
2006-03-09 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-depends.m4: Apply Brian's patch to fix stupid typo in a
variable name. Bug #1558.
(Old svn revision: 20306)
commit daa829f94497ce5c3f5f4ccd54f864c6e20218bc
Author: Benedikt Meurer <benny@xfce.org>
Date: Sun Mar 5 15:35:16 2006 +0000
2006-03-05 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-features.m4(XDT_FEATURE_DEBUG): Do not add
G_DISABLE_DEPRECATED to CFLAGS.
(Old svn revision: 20238)
commit 0329b83b9001f1047a925b4a4cbf8dd32f8457e0
Author: Daichi Kawahata <daichi.k@aioros.ocn.ne.jp>
Date: Sat Feb 25 06:00:16 2006 +0000
Fixed NULL revision string for certain locales.
(Old svn revision: 20044)
commit b21d516509b2f1d4cb296ba07065f6a5b94a25e0
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Sep 1 15:07:16 2005 +0000
2005-09-01 Benedikt Meurer <benny@xfce.org>
* autogen.sh: Don't depend on xfce4-dev-tools in autogen.sh.
(Old svn revision: 17247)
commit 20e5b81417b4fcb3a4384bbc83c48b907392230c
Author: Benedikt Meurer <benny@xfce.org>
Date: Wed Aug 31 09:18:20 2005 +0000
2005-08-31 Benedikt Meurer <benny@xfce.org>
* configure.in.in, autogen.sh: Merge build framework changes from
libexo.
(Old svn revision: 17214)
commit ef655012b2a02240f3a30bc9af7c6a6629b792fd
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Jul 9 19:17:01 2005 +0000
2005-07-09 Benedikt Meurer <benny@xfce.org>
* configure.ac, NEWS: Bump version after release (4.3.1svn).
(Old svn revision: 16202)
commit dd51d79ba01e9c86fa8a82d7d5db929b049ec81c
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Jul 9 19:14:53 2005 +0000
2005-07-09 Benedikt Meurer <benny@xfce.org>
* Makefile.am: Set proper automake options.
* HACKING, README: CVS -> SVN.
* NEWS, configure.ac: Version 4.3.0.
(Old svn revision: 16200)
commit 3802debdb3d4c83a706d7693783abc548229d824
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Jul 9 19:10:39 2005 +0000
Revert the b0rkage to ChangeLog!
(Old svn revision: 16199)
commit 939ad333c2296e9d2496a4430409b8cf98b3c045
Author: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Sat May 14 19:54:31 2005 +0000
Update ChangeLog
(Old svn revision: 14410)
commit 4aafdb5d2ef7199f6c0b3c7e55efbf2f09e71426
Author: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Wed May 4 21:00:59 2005 +0000
Update ChangeLog
(Old svn revision: 14001)
commit 04fb57da1e42265c94e51e73adcc88989d7bf318
Author: Brian Tarricone <brian@tarricone.org>
Date: Thu Apr 21 00:18:30 2005 +0000
* Modify checks for autoheader and autoconf so they first check for
versioned binaries (-2.59, -2.58, -2.57, -2.53) before falling back to a
non-versioned binary.
* Modify checks for automake and aclocal so they first check for
versioned binaries (-1.9, -1.8) before falling back to a non-
versioned binary.
* Fix two typos; 2>&0 -> 2>&1, autoconf -> automake.
(Old svn revision: 13702)
commit e8f30a2b515f19ddb70ec6eef40bc2daac41a9b7
Author: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Sun Apr 17 11:48:10 2005 +0000
REverting my last change, it's my Ubuntu install that is broken, not that script.
(Old svn revision: 13650)
commit 8c744f24b1aaf1df7c143cc66274d294c3a9b635
Author: Olivier Fourdan <fourdan.olivier@wanadoo.fr>
Date: Sat Apr 16 20:55:16 2005 +0000
The package did not build for me
(Old svn revision: 13633)
commit 22aa409e2526783e27802280d933564f435585af
Author: Jasper Huijsmans <jbhuijsmans@home.nl>
Date: Tue Apr 12 12:55:36 2005 +0000
Not all gmo files were removed; this at least works.
(Old svn revision: 13539)
commit e262092971abe533072a18f9852624537c247d42
Author: Jens Luedicke <jens.luedicke@gmail.com>
Date: Wed Apr 6 07:33:10 2005 +0000
remove .cvsignore cruft
(Old svn revision: 13312)
commit 97d74debfef7b61c6435aad5ca1d3d686ef6ee1f
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Mar 19 16:00:31 2005 +0000
2005-03-19 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-features.m4: Fix typo.
(Old svn revision: 2282)
commit c531a54746526b721b42bc9a040f5039aeb8a570
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Mar 19 15:56:38 2005 +0000
2005-03-19 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-features.m4: --enable-final is now on by default again.
The glib assertions are now toggled by --disable-asserts, as suggested
by Olivier.
(Old svn revision: 2281)
commit 5abc1c7221898ee53f5c4204cf77e352e69c9749
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Mar 17 22:37:05 2005 +0000
2005-03-17 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-features.m4: --enable-final is now disabled by default
and glib assertions will only be disabled if --enable-final is
specified and debugging is disabled.
(Old svn revision: 2280)
commit 853fb25053ae67f37d9cca18d8427057f2381f9b
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Mar 17 10:14:14 2005 +0000
2005-03-17 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Escape the special characters in the tr sets
twice as they are also expanded by the shell.
(Old svn revision: 2279)
commit cf207e1be0fa106e21bf68061a972b588cde8b66
Author: Benedikt Meurer <benny@xfce.org>
Date: Tue Mar 8 15:23:49 2005 +0000
2005-03-08 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-i18n.m4: Fix typo, its Q_() not O_().
(Old svn revision: 2278)
commit 1300236b4b51e5d20c291911c2282ed785d67553
Author: Benedikt Meurer <benny@xfce.org>
Date: Tue Mar 8 15:16:23 2005 +0000
2005-03-08 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in, m4macros/xdt-i18n.m4: Add better handling
of XGETTEXT_ARGS to automatically support the O_() translation
keyword.
(Old svn revision: 2277)
commit 1a12985f60404e9eb08ce8ecbaa07a130dcfe4e8
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Mar 5 19:05:28 2005 +0000
2005-03-05 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Fix a type where configure.ac was still
hardcoded into the script.
(Old svn revision: 2276)
commit 5c6624951b89e06a8344edd9b7cf84ca46888163
Author: Benedikt Meurer <benny@xfce.org>
Date: Fri Mar 4 13:58:13 2005 +0000
2005-03-04 Benedikt Meurer <benny@xfce.org>
* scripts/.cvsignore: Add vim swap files.
* scripts/xdt-autogen.in: Add support for AC_CONFIG_SUBDIRS(), currently
required by xfcalendar. Improve the clean logic.
(Old svn revision: 2275)
commit 0d500ce8e5cb4c7af1df444be503613ee2b34046
Author: Benedikt Meurer <benny@xfce.org>
Date: Sat Feb 19 10:42:02 2005 +0000
2005-02-19 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-python.m4, m4macros/Makefile.am: Add M4 file for Python
related checks, currently contains an autoconf check to find header
files required to build Python extensions on the target system.
(Old svn revision: 2274)
commit 4ee186e4371c83070c244b0c9f490c7035023d3b
Author: Benedikt Meurer <benny@xfce.org>
Date: Mon Jan 31 19:38:09 2005 +0000
2005-01-31 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-depends.m4: XDT_CHECK_OPTIONAL_PACKAGE() also
sets an automake conditional for HAVE_VARNAME now.
(Old svn revision: 2273)
commit 14343173eef997a04b619ac2c6324bd20a38de98
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 20:11:53 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-depends.m4: AC_REQUIRE() doesn't work properly with
conditional shell code.
(Old svn revision: 2272)
commit 3c5dde935311db566283e41955c23d033f625477
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 18:26:59 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Fix typo in the error message of the
gtk-doc check.
(Old svn revision: 2271)
commit 4b49550d329b79b2dadd82fab6a4d598082c54ce
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 16:31:46 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Remove gtk-doc.make as well when cleaning
autogenerated files.
(Old svn revision: 2270)
commit 6b0350781714073b9e1a4471cabba8269e5b06a2
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 15:49:47 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* configure.ac: Fix tag name. Fix order of autoconf macros. Use
autoconf values to initialize automake.
* Makefile.am: Fix distclean-local target. Strip down EXTRA_DIST
list.
(Old svn revision: 2269)
commit 69f4f8cf9270f17989f9220bb8051c663ac86493
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 13:04:42 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* scripts/xdt-autogen.in: Added commands to clean all autogenerated
files from the current source directory. Just run "xdt-autogen clean".
* m4macros/xdt-i18n.m4: Use the macros provided by glib-gettext.m4
instead of our own replacements, in order to make sure that they
play well with the Makefile.in.in generated by glib-gettextize.
* m4macros/xdt-i18n.m4: Fix typos in localedir substitution.
* scripts/xdt-autogen.in: Added support for intltool.
(Old svn revision: 2268)
commit 34ece938b7a833ff88eb096eb3e0aedc00e30575
Author: Benedikt Meurer <benny@xfce.org>
Date: Thu Jan 27 09:20:47 2005 +0000
2005-01-27 Benedikt Meurer <benny@xfce.org>
* autogen.sh, scripts/xdt-autogen.in: Don't run the configure script
if the environment variable NOCONFIGURE is set.
(Old svn revision: 2267)
commit b263d92a20e0bb711a72c99588a13facaec01235
Author: Benedikt Meurer <benny@xfce.org>
Date: Wed Jan 26 22:47:16 2005 +0000
2005-01-26 Benedikt Meurer <benny@xfce.org>
* m4macros/xdt-i18n.m4: Need to use AC_DEFINE_UNQUOTED() when
using shell variables.
(Old svn revision: 2266)
commit a1fc976e14bd61e69670686183dfcbc3586b94a7
Author: Benedikt Meurer <benny@xfce.org>
Date: Wed Jan 26 22:14:01 2005 +0000
2005-01-26 Benedikt Meurer <benny@xfce.org>
* autogen.sh: Be sure to pass command line parameters to xdt-autogen
and configure.
* m4macros/xdt-i18n.m4: Add missing fi, so now XDT_I18N() works
properly.
* .cvsignore, m4macros/.cvsignore, scripts/.cvsignore: Shut up CVS.
(Old svn revision: 2265)
commit 3bd7708effc4d6765b42c21ab4d366c02db61fa9
Author: Benedikt Meurer <benny@xfce.org>
Date: Wed Jan 26 21:42:45 2005 +0000
2005-01-26 Benedikt Meurer <benny@xfce.org>
* HACKING: Added notes for developers with write access to the
Xfce CVS repository.
(Old svn revision: 2264)
commit 9ed3a6cabc28be37c3d08bb263b363593129e5cb
Author: Benedikt Meurer <benny@xfce.org>
Date: Wed Jan 26 21:34:18 2005 +0000
Initial revision
(Old svn revision: 2260)
commit 9cc8112bc0b41e8dad311a2c3345b187cec8c0ba
Author: Unknown Author <xfce4-dev@xfce.org>
Date: Wed Jan 26 21:34:18 2005 +0000
New repository initialized by cvs2svn.
(Old svn revision: 2259)
|