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
|
# This script generates the Makefiles for building PyQt. It has no dependency
# on the sipconfig module.
#
# Copyright (c) 2016 Riverbank Computing Limited <info@riverbankcomputing.com>
#
# This file is part of PyQt4.
#
# This file may be used under the terms of the GNU General Public License
# version 3.0 as published by the Free Software Foundation and appearing in
# the file LICENSE included in the packaging of this file. Please review the
# following information to ensure the GNU General Public License version 3.0
# requirements will be met: http://www.gnu.org/copyleft/gpl.html.
#
# If you do not wish to use this file under the terms of the GPL version 3.0
# then you may purchase a commercial license. For more information contact
# info@riverbankcomputing.com.
#
# This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
# WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
from distutils import sysconfig
import glob
import optparse
import os
import shutil
import stat
import sys
# Initialise the constants.
PYQT_VERSION_STR = "4.12.1"
SIP_MIN_VERSION = '4.19.1'
# The different values QLibraryInfo::licensee() can return for the LGPL version
# of Qt.
OPEN_SOURCE_LICENSEES = ('Open Source', 'Builder Qt', 'Nokia')
class ModuleMetadata:
""" This class encapsulates the meta-data about a PyQt4 module. """
def __init__(self, qmake_CONFIG='', qmake_QT=None, qmake_TARGET='', qpy_lib=False):
""" Initialise the meta-data. """
# The value to add to qmake's CONFIG variable.
self.qmake_CONFIG = qmake_CONFIG
# The values to update qmake's QT variable.
self.qmake_QT = [] if qmake_QT is None else qmake_QT
# The value to set qmake's TARGET variable to. It defaults to the name
# of the module.
self.qmake_TARGET = qmake_TARGET
# Set if there is a qpy support library.
self.qpy_lib = qpy_lib
# The module meta-data for Qt4.
QT4_MODULES = {
'dbus': ModuleMetadata(qmake_QT=['-gui'], qmake_TARGET='qt'),
'QAxContainer': ModuleMetadata(qmake_CONFIG='qaxcontainer'),
'Qt': ModuleMetadata(qmake_QT=['-core', '-gui']),
'QtAssistant': ModuleMetadata(qmake_CONFIG='assistant'),
'QtCore': ModuleMetadata(qmake_QT=['-gui'], qpy_lib=True),
'QtDBus': ModuleMetadata(qmake_QT=['dbus', '-gui'],
qpy_lib=True),
'QtDeclarative': ModuleMetadata(qmake_QT=['declarative', 'network'],
qpy_lib=True),
'QtDesigner': ModuleMetadata(qmake_CONFIG='designer', qpy_lib=True),
'QtGui': ModuleMetadata(qpy_lib=True),
'QtHelp': ModuleMetadata(qmake_CONFIG='help'),
'QtMultimedia': ModuleMetadata(qmake_QT=['multimedia']),
'QtNetwork': ModuleMetadata(qmake_QT=['network', '-gui']),
'QtOpenGL': ModuleMetadata(qmake_QT=['opengl'], qpy_lib=True),
'QtScript': ModuleMetadata(qmake_QT=['script', '-gui']),
'QtScriptTools': ModuleMetadata(qmake_QT=['scripttools', 'script']),
'QtSql': ModuleMetadata(qmake_QT=['sql']),
'QtSvg': ModuleMetadata(qmake_QT=['svg']),
'QtTest': ModuleMetadata(qmake_QT=['testlib']),
'QtWebKit': ModuleMetadata(qmake_QT=['webkit', 'network']),
'QtXml': ModuleMetadata(qmake_QT=['xml', '-gui']),
'QtXmlPatterns': ModuleMetadata(
qmake_QT=['xmlpatterns', '-gui', 'network']),
'phonon': ModuleMetadata(qmake_QT=['phonon'])
}
# The module meta-data for Qt5.
QT5_MODULES = {
'dbus': ModuleMetadata(qmake_QT=['-gui'], qmake_TARGET='qt'),
'QAxContainer': ModuleMetadata(qmake_QT=['axcontainer']),
'Qt': ModuleMetadata(qmake_QT=['-core', '-gui']),
'QtCore': ModuleMetadata(qmake_QT=['-gui'], qpy_lib=True),
'QtDBus': ModuleMetadata(qmake_QT=['dbus', '-gui'],
qpy_lib=True),
'QtDeclarative': ModuleMetadata(qmake_QT=['declarative', 'network'],
qpy_lib=True),
'QtDesigner': ModuleMetadata(qmake_QT=['designer'], qpy_lib=True),
'QtGui': ModuleMetadata(qmake_QT=['widgets', 'printsupport'],
qpy_lib=True),
'QtHelp': ModuleMetadata(qmake_QT=['help']),
'QtMultimedia': ModuleMetadata(qmake_QT=['multimedia']),
'QtNetwork': ModuleMetadata(qmake_QT=['network', '-gui']),
'QtOpenGL': ModuleMetadata(qmake_QT=['opengl'], qpy_lib=True),
'QtScript': ModuleMetadata(qmake_QT=['script', '-gui']),
'QtScriptTools': ModuleMetadata(
qmake_QT=['scripttools', 'script', 'widgets']),
'QtSql': ModuleMetadata(qmake_QT=['sql', 'widgets']),
'QtSvg': ModuleMetadata(qmake_QT=['svg']),
'QtTest': ModuleMetadata(qmake_QT=['testlib', 'widgets']),
'QtWebKit': ModuleMetadata(
qmake_QT=['webkit', 'webkitwidgets',
'network', 'printsupport']),
'QtXml': ModuleMetadata(qmake_QT=['xml', '-gui']),
'QtXmlPatterns': ModuleMetadata(
qmake_QT=['xmlpatterns', '-gui', 'network'])
}
def error(msg):
""" Display an error message and terminate. msg is the text of the error
message.
"""
sys.stderr.write(format("Error: " + msg) + "\n")
sys.exit(1)
def inform(msg):
""" Display an information message. msg is the text of the error message.
"""
sys.stdout.write(format(msg) + "\n")
def format(msg, left_margin=0, right_margin=78):
""" Format a message by inserting line breaks at appropriate places. msg
is the text of the message. left_margin is the position of the left
margin. right_margin is the position of the right margin. Returns the
formatted message.
"""
curs = left_margin
fmsg = " " * left_margin
for w in msg.split():
l = len(w)
if curs != left_margin and curs + l > right_margin:
fmsg = fmsg + "\n" + (" " * left_margin)
curs = left_margin
if curs > left_margin:
fmsg = fmsg + " "
curs = curs + 1
fmsg = fmsg + w
curs = curs + l
return fmsg
def version_to_sip_tag(version):
""" Convert a version number to a SIP tag. version is the version number.
"""
# Anything after Qt v4 is assumed to be Qt v5.0.
if version > 0x050000:
version = 0x050000
major = (version >> 16) & 0xff
minor = (version >> 8) & 0xff
patch = version & 0xff
return 'Qt_%d_%d_%d' % (major, minor, patch)
def version_to_string(version, parts=3):
""" Convert an n-part version number encoded as a hexadecimal value to a
string. version is the version number. Returns the string.
"""
part_list = [str((version >> 16) & 0xff)]
if parts > 1:
part_list.append(str((version >> 8) & 0xff))
if parts > 2:
part_list.append(str(version & 0xff))
return '.'.join(part_list)
class ConfigurationFileParser:
""" A parser for configuration files. """
def __init__(self, config_file):
""" Read and parse a configuration file. """
self._config = {}
self._extrapolating = []
cfg = open(config_file)
line_nr = 0
last_name = None
section = ''
section_config = {}
self._config[section] = section_config
for l in cfg:
line_nr += 1
# Strip comments.
l = l.split('#')[0]
# See if this might be part of a multi-line.
multiline = (last_name is not None and len(l) != 0 and l[0] == ' ')
l = l.strip()
if l == '':
last_name = None
continue
# See if this is a new section.
if l[0] == '[' and l[-1] == ']':
section = l[1:-1].strip()
if section == '':
error(
"%s:%d: Empty section name." % (
config_file, line_nr))
if section in self._config:
error(
"%s:%d: Section '%s' defined more than once." % (
config_file, line_nr, section))
section_config = {}
self._config[section] = section_config
last_name = None
continue
parts = l.split('=', 1)
if len(parts) == 2:
name = parts[0].strip()
value = parts[1].strip()
elif multiline:
name = last_name
value = section_config[last_name]
value += ' ' + l
else:
name = value = ''
if name == '' or value == '':
error("%s:%d: Invalid line." % (config_file, line_nr))
section_config[name] = value
last_name = name
cfg.close()
def sections(self):
""" Return the list of sections, excluding the default one. """
return [s for s in self._config.keys() if s != '']
def preset(self, name, value):
""" Add a preset value to the configuration. """
self._config[''][name] = value
def get(self, section, name, default=None):
""" Get a configuration value while extrapolating. """
# Get the name from the section, or the default section.
value = self._config[section].get(name)
if value is None:
value = self._config[''].get(name)
if value is None:
if default is None:
error(
"Configuration file references non-existent name "
"'%s'." % name)
return default
# Handle any extrapolations.
parts = value.split('%(', 1)
while len(parts) == 2:
prefix, tail = parts
parts = tail.split(')', 1)
if len(parts) != 2:
error(
"Configuration file contains unterminated "
"extrapolated name '%s'." % tail)
xtra_name, suffix = parts
if xtra_name in self._extrapolating:
error(
"Configuration file contains a recursive reference to "
"'%s'." % xtra_name)
self._extrapolating.append(xtra_name)
xtra_value = self.get(section, xtra_name)
self._extrapolating.pop()
value = prefix + xtra_value + suffix
parts = value.split('%(', 1)
return value
def getboolean(self, section, name, default):
""" Get a boolean configuration value while extrapolating. """
value = self.get(section, name, default)
# In case the default was returned.
if isinstance(value, bool):
return value
if value in ('True', 'true', '1'):
return True
if value in ('False', 'false', '0'):
return False
error(
"Configuration file contains invalid boolean value for "
"'%s'." % name)
def getlist(self, section, name, default):
""" Get a list configuration value while extrapolating. """
value = self.get(section, name, default)
# In case the default was returned.
if isinstance(value, list):
return value
return value.split()
class HostPythonConfiguration:
""" A container for the host Python configuration. """
def __init__(self):
""" Initialise the configuration. """
self.platform = sys.platform
self.version = sys.hexversion >> 8
self.inc_dir = sysconfig.get_python_inc()
self.venv_inc_dir = sysconfig.get_python_inc(prefix=sys.prefix)
self.module_dir = sysconfig.get_python_lib(plat_specific=1)
if sys.platform == 'win32':
self.bin_dir = sys.exec_prefix
self.data_dir = sys.prefix
self.lib_dir = sys.prefix + '\\libs'
else:
self.bin_dir = sys.exec_prefix + '/bin'
self.data_dir = sys.prefix + '/share'
self.lib_dir = sys.prefix + '/lib'
# The name of the interpreter used by the pyuic4 wrapper.
if sys.platform == 'darwin':
# The installation of MacOS's python is a mess that changes from
# version to version and where sys.executable is useless.
py_major = self.version >> 16
py_minor = (self.version >> 8) & 0xff
# In Python v3.4 and later there is no pythonw.
if (py_major == 3 and py_minor >= 4) or py_major >= 4:
exe = "python"
else:
exe = "pythonw"
self.pyuic_interpreter = '%s%d.%d' % (exe, py_major, py_minor)
else:
self.pyuic_interpreter = sys.executable
class TargetQtConfiguration:
""" A container for the target Qt configuration. """
def __init__(self, qmake):
""" Initialise the configuration. qmake is the full pathname of the
qmake executable that will provide the configuration.
"""
inform("Querying qmake about your Qt installation...")
pipe = os.popen(' '.join([qmake, '-query']))
for l in pipe:
l = l.strip()
tokens = l.split(':', 1)
if isinstance(tokens, list):
if len(tokens) != 2:
error("Unexpected output from qmake: '%s'\n" % l)
name, value = tokens
else:
name = tokens
value = None
name = name.replace('/', '_')
setattr(self, name, value)
pipe.close()
class TargetConfiguration:
""" A container for configuration information about the target. """
def __init__(self):
""" Initialise the configuration with default values. """
# Values based on the host Python configuration.
py_config = HostPythonConfiguration()
self.py_inc_dir = py_config.inc_dir
self.py_venv_inc_dir = py_config.venv_inc_dir
self.py_lib_dir = py_config.lib_dir
self.py_platform = py_config.platform
self.py_version = py_config.version
self.pyqt_bin_dir = py_config.bin_dir
self.pyqt_module_dir = py_config.module_dir
self.pyqt_stubs_dir = os.path.join(py_config.module_dir, 'PyQt4')
self.pyqt_sip_dir = os.path.join(py_config.data_dir, 'sip', 'PyQt4')
self.pyuic_interpreter = py_config.pyuic_interpreter
# The qmake spec we want to use.
if self.py_platform == 'win32':
if self.py_version >= 0x030500:
self.qmake_spec = 'win32-msvc2015'
elif self.py_version >= 0x030300:
self.qmake_spec = 'win32-msvc2010'
elif self.py_version >= 0x020600:
self.qmake_spec = 'win32-msvc2008'
elif self.py_version >= 0x020400:
self.qmake_spec = 'win32-msvc.net'
else:
self.qmake_spec = 'win32-msvc'
else:
# Use the Qt default. (We may update it for OS/X later.)
self.qmake_spec = ''
self.default_qmake_spec = ''
# Remaining values.
self.dbus_inc_dirs = []
self.dbus_lib_dirs = []
self.dbus_libs = []
self.debug = False
self.designer_plugin_dir = ''
self.license_dir = source_path('sip')
self.no_deprecated = False
self.no_designer_plugin = False
self.no_docstrings = False
self.no_pydbus = False
self.no_tools = False
self.prot_is_public = (self.py_platform.startswith('linux') or self.py_platform == 'darwin')
self.qmake = self._find_exe('qmake')
self.qmake_variables = []
self.py_pylib_dir = ''
self.py_pylib_lib = ''
self.py_pyshlib = ''
self.pydbus_inc_dir = ''
self.pydbus_module_dir = ''
self.pyqt_disabled_features = []
self.pyqt_modules = []
self.qsci_api = False
self.qsci_api_dir = ''
self.qt_framework = False
self.qt_licensee = ''
self.qt_shared = False
self.qt_version = 0
self.sip = self._find_exe('sip5', 'sip')
self.sip_inc_dir = ''
self.static = False
self.static_plugins = []
self.sysroot = ''
self.vend_enabled = False
self.vend_inc_dir = ''
self.vend_lib_dir = ''
def from_configuration_file(self, config_file):
""" Initialise the configuration with values from a file. config_file
is the name of the configuration file.
"""
inform("Reading configuration from %s..." % config_file)
parser = ConfigurationFileParser(config_file)
# Populate some presets from the command line.
version = version_to_string(self.py_version).split('.')
parser.preset('py_major', version[0])
parser.preset('py_minor', version[1])
parser.preset('sysroot', self.sysroot)
# Find the section corresponding to the version of Qt.
qt_major = self.qt_version >> 16
section = None
latest_section = -1
for name in parser.sections():
parts = name.split()
if len(parts) != 2 or parts[0] != 'Qt':
continue
section_qt_version = version_from_string(parts[1])
if section_qt_version is None:
continue
# Major versions must match.
if section_qt_version >> 16 != self.qt_version >> 16:
continue
# It must be no later that the version of Qt.
if section_qt_version > self.qt_version:
continue
# Save it if it is the latest so far.
if section_qt_version > latest_section:
section = name
latest_section = section_qt_version
if section is None:
error("%s does not define a section that covers Qt v%s." % (config_file, version_to_string(self.qt_version)))
self.py_platform = parser.get(section, 'py_platform', self.py_platform)
self.py_inc_dir = parser.get(section, 'py_inc_dir', self.py_inc_dir)
self.py_venv_inc_dir = self.py_inc_dir
self.py_pylib_dir = parser.get(section, 'py_pylib_dir',
self.py_pylib_dir)
self.py_pylib_lib = parser.get(section, 'py_pylib_lib',
self.py_pylib_lib)
self.py_pyshlib = parser.get(section, 'py_pyshlib', self.py_pyshlib)
self.qt_shared = parser.getboolean(section, 'qt_shared',
self.qt_shared)
self.pyqt_disabled_features = parser.getlist(section,
'pyqt_disabled_features', self.pyqt_disabled_features)
self.pyqt_modules = parser.getlist(section, 'pyqt_modules',
self.pyqt_modules)
self.pyqt_module_dir = parser.get(section, 'pyqt_module_dir',
self.pyqt_module_dir)
self.pyqt_bin_dir = parser.get(section, 'pyqt_bin_dir',
self.pyqt_bin_dir)
self.pyqt_stubs_dir = parser.get(section, 'pyqt_stubs_dir',
self.pyqt_stubs_dir)
self.pyqt_sip_dir = parser.get(section, 'pyqt_sip_dir',
self.pyqt_sip_dir)
self.pyuic_interpreter = parser.get(section, 'pyuic_interpreter',
self.pyuic_interpreter)
def from_introspection(self, verbose, debug):
""" Initialise the configuration by introspecting the system. """
inform("Determining the details of your Qt installation...")
out_file = 'qtdetail.out'
source = '''#include <QCoreApplication>
#include <QFile>
#include <QLibraryInfo>
#include <QTextStream>
int main(int argc, char **argv)
{
QCoreApplication app(argc, argv);
QFile outf("%s");
if (!outf.open(QIODevice::WriteOnly|QIODevice::Truncate|QIODevice::Text))
return 1;
QTextStream out(&outf);
out << QLibraryInfo::licensee() << '\\n';
#if defined(QT_SHARED) || defined(QT_DLL)
out << "shared\\n";
#else
out << "static\\n";
#endif
// Determine which features should be disabled.
#if defined(QT_NO_ACCESSIBILITY)
out << "PyQt_Accessibility\\n";
#endif
#if defined(QT_NO_SESSIONMANAGER)
out << "PyQt_SessionManager\\n";
#endif
#if defined(QT_NO_STATUSTIP)
out << "PyQt_StatusTip\\n";
#endif
#if defined(QT_NO_TOOLTIP)
out << "PyQt_ToolTip\\n";
#endif
#if defined(QT_NO_WHATSTHIS)
out << "PyQt_WhatsThis\\n";
#endif
#if defined(QT_NO_OPENSSL)
out << "PyQt_OpenSSL\\n";
#endif
#if defined(QT_NO_SIZEGRIP)
out << "PyQt_SizeGrip\\n";
#endif
#if defined(QT_NO_SYSTEMTRAYICON)
out << "PyQt_SystemTrayIcon\\n";
#endif
#if defined(QT_NO_PRINTDIALOG)
out << "PyQt_PrintDialog\\n";
#endif
#if defined(QT_NO_PRINTER)
out << "PyQt_Printer\\n";
#endif
#if defined(QT_NO_PRINTPREVIEWDIALOG)
out << "PyQt_PrintPreviewDialog\\n";
#endif
#if defined(QT_NO_PRINTPREVIEWWIDGET)
out << "PyQt_PrintPreviewWidget\\n";
#endif
#if defined(QT_NO_RAWFONT)
out << "PyQt_RawFont\\n";
#endif
#if defined(QT3_SUPPORT) && QT_VERSION < 0x040200
out << "PyQt_NoQtPrintRangeBug\\n";
#endif
#if defined(QT_OPENGL_ES)
out << "PyQt_NoOpenGLES\\n";
#endif
#if defined(QT_NO_FPU) || defined(QT_ARCH_ARM) || defined(QT_ARCH_WINDOWSCE) || defined(QT_ARCH_SYMBIAN) || defined(QT_ARCH_VXWORKS)
out << "PyQt_qreal_double\\n";
#endif
#if defined(QT_NO_PROCESS)
out << "PyQt_Process\\n";
#endif
return 0;
}
''' % out_file
cmd = compile_qt_program(self, verbose, 'qtdetail', source, 'QtCore')
if cmd is None:
error("Failed to determine the detail of your Qt installation. Try again using the --verbose flag to see more detail about the problem.")
# Create the output file, first making sure it doesn't exist.
remove_file(out_file)
run_command(cmd, verbose)
if not os.access(out_file, os.F_OK):
error("%s failed to create %s. Make sure your Qt installation is correct." % (cmd, out_file))
# Read the details.
f = open(out_file)
lines = f.read().split('\n')
f.close()
self.qt_licensee = lines[0]
self.qt_shared = (lines[1] == 'shared')
self.pyqt_disabled_features = lines[2:-1]
# Get the details of the Python interpreter library.
py_major = self.py_version >> 16
py_minor = (self.py_version >> 8) & 0x0ff
if sys.platform == 'win32':
debug_suffix = get_win32_debug_suffix(debug)
pylib_lib = 'python%d%d%s' % (py_major, py_minor, debug_suffix)
pylib_dir = self.py_lib_dir
# Assume Python is a DLL on Windows.
pyshlib = pylib_lib
else:
abi = getattr(sys, 'abiflags', '')
pylib_lib = 'python%d.%d%s' % (py_major, py_minor, abi)
pylib_dir = pyshlib = ''
# Use distutils to get the additional configuration.
ducfg = sysconfig.get_config_vars()
config_args = ducfg.get('CONFIG_ARGS', '')
dynamic_pylib = '--enable-shared' in config_args
if not dynamic_pylib:
dynamic_pylib = '--enable-framework' in config_args
if dynamic_pylib:
pyshlib = ducfg.get('LDLIBRARY', '')
exec_prefix = ducfg['exec_prefix']
multiarch = ducfg.get('MULTIARCH', '')
libdir = ducfg['LIBDIR']
if glob.glob('%s/lib/libpython%d.%d*' % (exec_prefix, py_major, py_minor)):
pylib_dir = exec_prefix + '/lib'
elif multiarch != '' and glob.glob('%s/lib/%s/libpython%d.%d*' % (exec_prefix, multiarch, py_major, py_minor)):
pylib_dir = exec_prefix + '/lib/' + multiarch
elif glob.glob('%s/libpython%d.%d*' % (libdir, py_major, py_minor)):
pylib_dir = libdir
self.py_pylib_dir = pylib_dir
self.py_pylib_lib = pylib_lib
self.py_pyshlib = pyshlib
# Apply sysroot where necessary.
if self.sysroot != '':
self.py_inc_dir = self._apply_sysroot(self.py_inc_dir)
self.py_venv_inc_dir = self._apply_sysroot(self.py_venv_inc_dir)
self.py_pylib_dir = self._apply_sysroot(self.py_pylib_dir)
self.pyqt_bin_dir = self._apply_sysroot(self.pyqt_bin_dir)
self.pyqt_module_dir = self._apply_sysroot(self.pyqt_module_dir)
self.pyqt_stubs_dir = self._apply_sysroot(self.pyqt_stubs_dir)
self.pyqt_sip_dir = self._apply_sysroot(self.pyqt_sip_dir)
def _apply_sysroot(self, dir_name):
""" Replace any leading sys.prefix of a directory name with sysroot.
"""
if dir_name.startswith(sys.prefix):
dir_name = self.sysroot + dir_name[len(sys.prefix):]
return dir_name
def get_qt_configuration(self, opts):
""" Get the Qt configuration that can be extracted from qmake. opts
are the command line options.
"""
# Query qmake.
qt_config = TargetQtConfiguration(self.qmake)
self.qt_version = 0
try:
qt_version_str = qt_config.QT_VERSION
for v in qt_version_str.split('.'):
self.qt_version *= 256
self.qt_version += int(v)
except AttributeError:
qt_version_str = None
# Check the Qt version number as soon as possible. Note that I'm not
# sure when the -query flag was added to qmake (maybe not until v4.6),
# so we try to cover all bases with the error message.
if qt_version_str is None:
if sys.platform == 'win32':
error(
"PyQt4 requires Qt v4.1.0 or later. Make sure the "
"correct version of qmake is on your PATH. If you are "
"sure you are using Qt v4 then try the configure.py "
"script instead of this one.")
else:
error(
"PyQt4 requires Qt v4.1.0 or later. Use the --qmake "
"flag to specify the correct version of qmake. If you "
"are sure you are using Qt v4 then try the "
"configure.py script instead of this one.")
if self.qt_version < 0x040100:
if sys.platform == 'win32':
error(
"PyQt4 requires Qt v4.1.0 or later. You seem to be "
"using v%s. Make sure the correct version of qmake is "
"on your PATH." % qt_version_str)
else:
error(
"PyQt4 requires Qt v4.1.0 or later. You seem to be "
"using v%s. Use the --qmake flag to specify the "
"correct version of qmake." % qt_version_str)
self.designer_plugin_dir = qt_config.QT_INSTALL_PLUGINS + '/designer'
if self.sysroot == '':
self.sysroot = getattr(qt_config, 'QT_SYSROOT', '')
# By default, install the API file if QScintilla seems to be installed
# in the default location.
self.qsci_api_dir = os.path.join(qt_config.QT_INSTALL_DATA, 'qsci')
self.qsci_api = os.path.isdir(self.qsci_api_dir)
# Save the default qmake spec. and finalise the value we want to use.
self.default_qmake_spec = getattr(qt_config, 'QMAKE_SPEC', '')
if self.qmake_spec == '':
self.qmake_spec = self.default_qmake_spec
if sys.platform == 'darwin':
# The binary OS/X Qt installer defaults to XCode. If this is what
# we might have then use macx-clang (Qt v5) or macx-g++ (Qt v4).
if self.qmake_spec in ('macx-xcode', ''):
if self.qt_version >= 0x050000:
# This will exist (and we can't check anyway).
self.qmake_spec = 'macx-clang'
else:
self.qmake_spec = 'macx-g++'
# See if it is a framework.
if os.access(os.path.join(qt_config.QT_INSTALL_LIBS, 'QtCore.framework'), os.F_OK):
self.qt_framework = True
def post_configuration(self):
""" Handle any remaining default configuration after having read a
configuration file or introspected the system.
"""
# The platform may have changed so update the default.
if self.py_platform.startswith('linux') or self.py_platform == 'darwin':
self.prot_is_public = True
self.sip_inc_dir = self.py_venv_inc_dir
self.vend_inc_dir = self.py_venv_inc_dir
self.vend_lib_dir = self.py_lib_dir
def apply_pre_options(self, opts):
""" Apply options from the command line that influence subsequent
configuration. opts are the command line options.
"""
# Get the target Python version.
if opts.target_py_version is not None:
self.py_version = opts.target_py_version
# Get the system root.
if opts.sysroot is not None:
self.sysroot = opts.sysroot
# Determine how to run qmake.
try:
qmake = opts.qmake
except AttributeError:
# Windows.
qmake = None
if qmake is not None:
self.qmake = qmake
elif self.qmake is None:
# Under Windows qmake and the Qt DLLs must be on the system PATH
# otherwise the dynamic linker won't be able to resolve the
# symbols. On other systems we assume we can just run qmake by
# using its full pathname.
if sys.platform == 'win32':
error("Make sure you have a working Qt qmake on your PATH.")
else:
error(
"Use the --qmake argument to explicitly specify a "
"working Qt qmake.")
if opts.qmakespec is not None:
self.qmake_spec = opts.qmakespec
def apply_post_options(self, opts):
""" Apply options from the command line that override the previous
configuration. opts are the command line options.
"""
if opts.assumeshared:
self.qt_shared = True
if opts.bindir is not None:
self.pyqt_bin_dir = opts.bindir
if opts.debug:
self.debug = True
if opts.licensedir is not None:
self.license_dir = opts.licensedir
if opts.designerplugindir is not None:
self.designer_plugin_dir = opts.designerplugindir
if opts.destdir is not None:
self.pyqt_module_dir = opts.destdir
if len(opts.modules) > 0:
self.pyqt_modules = opts.modules
if opts.nodeprecated:
self.no_deprecated = True
if opts.nodesignerplugin:
self.no_designer_plugin = True
if opts.nodocstrings:
self.no_docstrings = True
if opts.nopydbus:
self.no_pydbus = True
if opts.notools:
self.no_tools = True
if opts.protispublic is not None:
self.prot_is_public = opts.protispublic
if opts.pydbusincdir is not None:
self.pydbus_inc_dir = opts.pydbusincdir
if opts.pyuicinterpreter is not None:
self.pyuic_interpreter = opts.pyuicinterpreter
if opts.qsciapidir is not None:
self.qsci_api_dir = opts.qsciapidir
# Assume we want to install the API file if we have provided an
# installation directory.
self.qsci_api = True
if opts.qsciapi is not None:
self.qsci_api = opts.qsciapi
if opts.qsciapidir is not None:
self.qsci_api_dir = opts.qsciapidir
if opts.stubsdir is not None:
self.pyqt_stubs_dir = opts.stubsdir
elif not opts.install_stubs:
self.pyqt_stubs_dir = ''
if opts.sip is not None:
self.sip = opts.sip
if opts.sipdir is not None:
self.pyqt_sip_dir = opts.sipdir
elif not opts.install_sipfiles:
self.pyqt_sip_dir = ''
if opts.sipincdir is not None:
self.sip_inc_dir = opts.sipincdir
if opts.static:
self.static = True
if len(opts.staticplugins) > 0:
self.static_plugins = opts.staticplugins
if opts.vendenabled:
self.vend_enabled = True
if opts.vendincdir is not None:
self.vend_inc_dir = opts.vendincdir
if opts.vendlibdir is not None:
self.vend_lib_dir = opts.vendlibdir
# Handle any conflicts.
if self.qt_shared:
if len(self.static_plugins) != 0:
inform(
"Static plugins are disabled because Qt has been "
"built as shared libraries.")
self.static_plugins = []
else:
if not self.static:
error(
"Qt has been built as static libraries so the "
"--static argument should be used.")
if self.vend_enabled and self.static:
error(
"Using the VendorID package when building static "
"libraries makes no sense.")
def get_pylib_link_arguments(self):
""" Return a string to append to qmake's LIBS macro to link against the
Python interpreter library.
"""
return qmake_quote('-L' + self.py_pylib_dir) + ' -l' + self.py_pylib_lib
@staticmethod
def _find_exe(*exes):
""" Find an executable, ie. the first on the path. """
path_dirs = os.environ.get('PATH', '').split(os.pathsep)
for exe in exes:
# Strip any surrounding quotes.
if exe.startswith('"') and exe.endswith('"'):
exe = exe[1:-1]
if sys.platform == 'win32':
exe = exe + '.exe'
for d in path_dirs:
exe_path = os.path.join(d, exe)
if os.access(exe_path, os.X_OK):
return exe_path
return None
def create_optparser(target_config):
""" Create the parser for the command line. target_config is the target
configuration containing default values.
"""
def store_abspath(option, opt_str, value, parser):
setattr(parser.values, option.dest, os.path.abspath(value))
def store_abspath_dir(option, opt_str, value, parser):
if not os.path.isdir(value):
raise optparse.OptionValueError("'%s' is not a directory" % value)
setattr(parser.values, option.dest, os.path.abspath(value))
def store_abspath_exe(option, opt_str, value, parser):
if not os.access(value, os.X_OK):
raise optparse.OptionValueError("'%s' is not an executable" % value)
setattr(parser.values, option.dest, os.path.abspath(value))
def store_abspath_file(option, opt_str, value, parser):
if not os.path.isfile(value):
raise optparse.OptionValueError("'%s' is not a file" % value)
setattr(parser.values, option.dest, os.path.abspath(value))
def store_version(option, opt_str, value, parser):
version = version_from_string(value)
if version is None:
raise optparse.OptionValueError(
"'%s' is not a valid version number" % value)
setattr(parser.values, option.dest, version)
p = optparse.OptionParser(usage="python %prog [opts] [name=value] "
"[name+=value]", version=PYQT_VERSION_STR)
# Note: we don't use %default to be compatible with Python 2.3.
p.add_option("--static", "-k", dest='static', default=False,
action='store_true',
help="build modules as static libraries")
p.add_option("--no-docstrings", dest='nodocstrings', default=False,
action='store_true',
help="disable the generation of docstrings")
p.add_option("--trace", "-r", dest='tracing', default=False,
action='store_true',
help="build modules with tracing enabled")
p.add_option("--debug", "-u", dest='debug', default=False,
action='store_true',
help="build modules with debugging symbols")
p.add_option("--verbose", "-w", dest='verbose', default=False,
action='store_true',
help="enable verbose output during configuration")
p.add_option("--concatenate", "-c", dest='concat', default=False,
action='store_true',
help="concatenate each module's C++ source files")
p.add_option("--concatenate-split", "-j", dest='split', type='int',
default=1, metavar="N",
help="split the concatenated C++ source files into N pieces "
"[default: 1]")
# Configuration.
g = optparse.OptionGroup(p, title="Configuration")
g.add_option("--confirm-license", dest='license_confirmed', default=False,
action='store_true',
help="confirm acceptance of the license")
g.add_option("--license-dir", dest='licensedir', type='string',
default=None, action='callback', callback=store_abspath,
metavar="DIR",
help="the license file can be found in DIR [default: "
"%s]" % target_config.license_dir)
g.add_option("--target-py-version", dest='target_py_version',
type='string', action='callback', callback=store_version,
metavar="VERSION",
help="the major.minor version of the target Python [default: "
"%s]" % version_to_string(target_config.py_version,
parts=2))
g.add_option("--sysroot", dest='sysroot', type='string', action='callback',
callback=store_abspath_dir, metavar="DIR",
help="DIR is the target system root directory")
g.add_option("--spec", dest='qmakespec', default=None, action='store',
metavar="SPEC",
help="pass -spec SPEC to qmake [default: %s]" % "don't pass -spec" if target_config.qmake_spec == '' else target_config.qmake_spec)
g.add_option("--enable", "-e", dest='modules', default=[], action='append',
metavar="MODULE",
help="enable checks for the specified MODULE [default: checks for "
"all modules will be enabled]")
g.add_option("--no-designer-plugin", dest='nodesignerplugin',
default=False, action='store_true',
help="disable the building of the Python plugin for Qt Designer "
"[default: enabled]")
g.add_option("--plugin", "-t", dest='staticplugins', default=[],
action='append', metavar="PLUGIN",
help="add PLUGIN to the list be linked (if Qt is built as static "
"libraries)")
g.add_option("--assume-shared", dest='assumeshared', default=False,
action='store_true',
help="assume that the Qt libraries have been built as shared "
"libraries [default: check]")
g.add_option("--no-timestamp", "-T", dest='notimestamp', default=False,
action='store_true',
help="suppress timestamps in the header comments of generated "
"code [default: include timestamps]")
g.add_option("--no-deprecated", dest='nodeprecated', default=False,
action='store_true',
help="disable Qt v4 features deprecated in Qt v5 [default: "
"enabled]")
g.add_option("--configuration", dest='config_file', type='string',
action='callback', callback=store_abspath_file, metavar="FILE",
help="FILE contains the target configuration")
g.add_option("--protected-is-public", dest='protispublic', default=None,
action='store_true',
help="enable building with 'protected' redefined as 'public' "
"[default: %s]" %
"enabled" if target_config.prot_is_public
else "disabled")
g.add_option("--protected-not-public", dest='protispublic', default=None,
action='store_false',
help="disable building with 'protected' redefined as 'public'")
g.add_option("--pyuic4-interpreter", dest='pyuicinterpreter',
type='string', default=None, action='callback',
callback=store_abspath_exe, metavar="FILE",
help="the name of the Python interpreter to run the pyuic4 "
"wrapper is FILE [default: %s]" %
target_config.pyuic_interpreter)
if sys.platform != 'win32':
g.add_option("--qmake", "-q", dest='qmake', type='string',
default=None, action='callback', callback=store_abspath_exe,
metavar="FILE",
help="the pathname of qmake is FILE [default: "
"%s]" % (target_config.qmake or "search PATH"))
g.add_option("--sip", dest='sip', type='string', default=None,
action='callback', callback=store_abspath_exe, metavar="FILE",
help="the pathname of sip is FILE [default: "
"%s]" % (target_config.sip or "None"))
g.add_option("--sip-incdir", dest='sipincdir', type='string',
default=None, action='callback', callback=store_abspath_dir,
metavar="DIR",
help="the directory containing the sip.h header file is DIR "
"[default: %s]" % target_config.sip_inc_dir)
g.add_option("--no-python-dbus", dest='nopydbus',
default=False, action='store_true',
help="disable the Qt support for the standard Python DBus "
"bindings [default: enabled]")
g.add_option("--dbus", "-s", dest='pydbusincdir', type='string',
default=None, action='callback', callback=store_abspath_dir,
metavar="DIR",
help="the directory containing the dbus/dbus-python.h header is "
"DIR [default: supplied by pkg-config]")
p.add_option_group(g)
# Installation.
g = optparse.OptionGroup(p, title="Installation")
g.add_option("--bindir", "-b", dest='bindir', type='string', default=None,
action='callback', callback=store_abspath, metavar="DIR",
help="install pyuic4, pyrcc4 and pylupdate4 in DIR [default: "
"%s]" % target_config.pyqt_bin_dir)
g.add_option("--destdir", "-d", dest='destdir', type='string',
default=None, action='callback', callback=store_abspath,
metavar="DIR",
help="install the PyQt4 Python package in DIR [default: "
"%s]" % target_config.pyqt_module_dir)
g.add_option("--designer-plugindir", dest='designerplugindir',
type='string', default=None, action='callback',
callback=store_abspath, metavar="DIR",
help="install the Python plugin for Qt Designer in DIR "
"[default: QT_INSTALL_PLUGINS/designer]")
g.add_option("--no-sip-files", action="store_false", default=True,
dest="install_sipfiles", help="disable the installation of the "
".sip files [default: enabled]")
g.add_option("--sipdir", "-v", dest='sipdir', type='string', default=None,
action='callback', callback=store_abspath, metavar="DIR",
help="install the PyQt4 .sip files in DIR [default: %s]" %
target_config.pyqt_sip_dir)
g.add_option("--no-stubs", action="store_false", default=True,
dest="install_stubs", help="disable the installation of the PEP "
"484 stub files [default: enabled]")
g.add_option("--stubsdir", dest='stubsdir', type='string', default=None,
action='callback', callback=store_abspath, metavar="DIR",
help="install the PEP 484 stub files in DIR [default: "
"%s]" % target_config.pyqt_stubs_dir)
g.add_option("--no-tools", action="store_true", default=False,
dest="notools",
help="disable the building of pyuic5, pyrcc5 and pylupdate5 "
"[default: enabled]")
p.add_option_group(g)
# Vendor ID.
g = optparse.OptionGroup(p, title="VendorID support")
g.add_option("--vendorid", "-i", dest='vendenabled', default=False,
action='store_true',
help="enable checking of signed interpreters using the VendorID "
"package [default: %s]" %
"enabled" if target_config.vend_enabled else "disabled")
g.add_option("--vendorid-incdir", "-l", dest='vendincdir', type='string',
default=None, action='callback', callback=store_abspath_dir,
metavar="DIR",
help="the VendorID header file is installed in DIR [default: "
"%s]" % target_config.vend_inc_dir)
g.add_option("--vendorid-libdir", "-m", dest='vendlibdir', type='string',
default=None, action='callback', callback=store_abspath_dir,
metavar="DIR",
help="the VendorID library is installed in DIR [default: "
"%s]" % target_config.vend_lib_dir)
p.add_option_group(g)
# QScintilla.
g = optparse.OptionGroup(p, title="QScintilla support")
g.add_option("--qsci-api", "-a", dest='qsciapi', default=None,
action='store_true',
help="always install the PyQt API file for QScintilla [default: "
"install only if QScintilla installed]")
g.add_option("--no-qsci-api", dest='qsciapi', default=None,
action='store_false',
help="do not install the PyQt API file for QScintilla [default: "
"install only if QScintilla installed]")
g.add_option("--qsci-api-destdir", "-n", dest='qsciapidir', type='string',
default=None, action='callback', callback=store_abspath,
metavar="DIR",
help="install the PyQt4 API file for QScintilla in DIR [default: "
"QT_INSTALL_DATA/qsci]")
p.add_option_group(g)
return p
def check_modules(target_config, verbose):
""" Check which modules can be built and update the target configuration
accordingly. target_config is the target configuration. verbose is set if
the output is to be displayed.
"""
target_config.pyqt_modules.append('QtCore')
check_module(target_config, verbose, 'QtGui', 'qwidget.h', 'new QWidget()')
check_module(target_config, verbose, 'QtHelp', 'qhelpengine.h',
'new QHelpEngine("foo")')
check_module(target_config, verbose, 'QtMultimedia', 'QAudioDeviceInfo',
'new QAudioDeviceInfo()')
check_module(target_config, verbose, 'QtNetwork', 'qhostaddress.h',
'new QHostAddress()')
if target_config.qt_version < 0x050000 or not target_config.no_deprecated:
check_module(target_config, verbose, 'QtDeclarative',
'qdeclarativeview.h', 'new QDeclarativeView()')
check_module(target_config, verbose, 'QtScript', 'qscriptengine.h',
'new QScriptEngine()')
check_module(target_config, verbose, 'QtScriptTools',
'qscriptenginedebugger.h', 'new QScriptEngineDebugger()')
check_module(target_config, verbose, 'QtOpenGL', 'qgl.h',
'new QGLWidget()')
check_module(target_config, verbose, 'QtSql', 'qsqldatabase.h',
'new QSqlDatabase()')
check_module(target_config, verbose, 'QtSvg', 'qsvgwidget.h',
'new QSvgWidget()')
check_module(target_config, verbose, 'QtTest', 'QtTest',
'QTest::qSleep(0)')
check_module(target_config, verbose, 'QtWebKit', 'qwebpage.h',
'new QWebPage()')
check_module(target_config, verbose, 'QtXml', 'qdom.h',
'new QDomDocument()')
check_module(target_config, verbose, 'QtXmlPatterns', 'qxmlname.h',
'new QXmlName()')
if target_config.qt_version < 0x050000:
check_module(target_config, verbose, 'phonon', 'phonon/videowidget.h',
'new Phonon::VideoWidget()')
if target_config.qt_version < 0x040700:
check_module(target_config, verbose, 'QtAssistant',
'qassistantclient.h', 'new QAssistantClient("foo")')
if target_config.qt_shared:
check_module(target_config, verbose, 'QtDesigner', 'QExtensionFactory',
'new QExtensionFactory()')
else:
inform("QtDesigner module disabled with static Qt libraries.")
check_module(target_config, verbose, 'QAxContainer', 'qaxobject.h',
'new QAxObject()')
# Qt v4.7 was current when we added support for QtDBus and we didn't bother
# properly versioning its API.
if target_config.qt_version >= 0x040700:
check_module(target_config, verbose, 'QtDBus', 'qdbusconnection.h',
'QDBusConnection::systemBus()')
def generate_makefiles(target_config, verbose, no_timestamp, parts, tracing):
""" Generate the makefiles to build everything. target_config is the
target configuration. verbose is set if the output is to be displayed.
no_timestamp is set if the .sip files should exclude the timestamp. parts
is the number of parts the generated code should be split into. tracing is
set if the generated code should include tracing calls.
"""
# For the top-level .pro file.
toplevel_pro = 'PyQt4.pro'
subdirs = []
# Set the SIP platform, version and feature flags.
sip_flags = get_sip_flags(target_config)
# Go through the modules.
for mname in target_config.pyqt_modules:
metadata = get_module_metadata(target_config, mname)
if metadata.qpy_lib:
sp_qpy_dir = source_path('qpy', mname)
qpy_c_sources = [os.path.relpath(f, mname)
for f in glob.glob(os.path.join(sp_qpy_dir, '*.c'))]
qpy_cpp_sources = [os.path.relpath(f, mname)
for f in glob.glob(os.path.join(sp_qpy_dir, '*.cpp'))]
qpy_headers = [os.path.relpath(f, mname)
for f in glob.glob(os.path.join(sp_qpy_dir, '*.h'))]
qpy_sources = qpy_c_sources + qpy_cpp_sources
else:
qpy_sources = []
qpy_headers = []
generate_sip_module_code(target_config, verbose, no_timestamp, parts,
tracing, mname, sip_flags, qpy_sources, qpy_headers)
subdirs.append(mname)
# Generate the composite module.
qtmod_sipdir = os.path.join('sip', 'Qt')
mk_clean_dir(qtmod_sipdir)
qtmod_sipfile = os.path.join(qtmod_sipdir, 'Qtmod.sip')
f = open_for_writing(qtmod_sipfile)
f.write('''%CompositeModule PyQt4.Qt
''')
for mname in target_config.pyqt_modules:
f.write('%%Include %s/%smod.sip\n' % (mname, mname))
f.close()
generate_sip_module_code(target_config, verbose, no_timestamp, parts,
tracing, 'Qt', sip_flags)
subdirs.append('Qt')
if not target_config.no_tools:
# Generate pylupdate4 and pyrcc4.
for tool in ('pylupdate', 'pyrcc'):
generate_application_makefile(target_config, verbose, tool)
subdirs.append(tool)
# Generate the pyuic4 wrapper.
pyuic_wrapper = generate_pyuic4_wrapper(target_config)
# Generate the Qt Designer plugin.
if not target_config.no_designer_plugin and 'QtDesigner' in target_config.pyqt_modules:
if generate_plugin_makefile(target_config, verbose, 'designer', target_config.designer_plugin_dir, "Qt Designer"):
subdirs.append('designer')
# Generate the QScintilla API file.
if target_config.qsci_api:
inform("Generating the QScintilla API file...")
f = open_for_writing('PyQt4.api')
for mname in target_config.pyqt_modules:
api = open(mname + '.api')
for l in api:
f.write('PyQt4.' + l)
api.close()
os.remove(mname + '.api')
f.close()
# Generate the Python dbus module.
if target_config.pydbus_module_dir != '':
mname = 'dbus'
mk_dir(mname)
sp_src_dir = source_path(mname)
includepath = ' '.join(target_config.dbus_inc_dirs)
lib_dirs = ['-L' + l for l in target_config.dbus_lib_dirs]
lib_names = ['-l' + l for l in target_config.dbus_libs]
libs = ' '.join(lib_dirs + lib_names)
generate_module_makefile(target_config, verbose, mname,
includepath=includepath, libs=libs,
install_path=target_config.pydbus_module_dir,
src_dir=sp_src_dir)
subdirs.append(mname)
# Generate the top-level .pro file.
inform("Generating the top-level .pro file...")
out_f = open_for_writing(toplevel_pro)
out_f.write('''TEMPLATE = subdirs
CONFIG += ordered nostrip
SUBDIRS = %s
init_py.files = %s
init_py.path = %s/PyQt4
INSTALLS += init_py
''' % (' '.join(subdirs), source_path('__init__.py'), target_config.pyqt_module_dir))
# Install the uic module and the pyuic4 wrapper.
out_f.write('''
uic_package.files = %s
uic_package.path = %s/PyQt4
INSTALLS += uic_package
''' % (source_path('pyuic', 'uic'), target_config.pyqt_module_dir))
if not target_config.no_tools:
out_f.write('''
pyuic4.files = %s
pyuic4.path = %s
INSTALLS += pyuic4
''' % (pyuic_wrapper, target_config.pyqt_bin_dir))
# Install the stub files.
if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir:
out_f.write('''
pep484_stubs.files = %s Qt.pyi
pep484_stubs.path = %s
INSTALLS += pep484_stubs
''' % (' '.join([mname + '.pyi' for mname in target_config.pyqt_modules]),
target_config.pyqt_stubs_dir))
# Install the QScintilla .api file.
if target_config.qsci_api:
out_f.write('''
qscintilla_api.files = PyQt4.api
qscintilla_api.path = %s/api/python
INSTALLS += qscintilla_api
''' % target_config.qsci_api_dir)
# Install ElementTree if the version of Python doesn't have it.
if target_config.py_version < 0x020500:
out_f.write('''
elementtree.files = %s
elementtree.path = %s/PyQt4
INSTALLS += elementtree
''' % (source_path('elementtree'), target_config.pyqt_module_dir))
out_f.close()
# Make the pyuic4 wrapper executable on platforms that support it. If we
# did it after running qmake then (on Linux) the execute bits would be
# stripped on installation.
if not target_config.no_tools and target_config.py_platform != 'win32':
inform("Making the %s wrapper executable..." % pyuic_wrapper)
sbuf = os.stat(pyuic_wrapper)
mode = sbuf.st_mode
mode |= (stat.S_IXUSR | stat.S_IXGRP | stat.S_IXOTH)
os.chmod(pyuic_wrapper, mode)
# Generate the makefiles.
inform("Generating the Makefiles...")
run_qmake(target_config, verbose, toplevel_pro, recursive=True)
def generate_plugin_makefile(target_config, verbose, plugin_dir, install_dir, plugin_name):
""" Generate the makefile for a plugin that embeds the Python interpreter.
target_config is the target configuration. verbose is set if the output is
to be displayed. plugin_dir is the name of the directory containing the
plugin implementation. install_dir is the name of the directory that the
plugin will be installed in. plugin_name is a descriptive name of the
plugin to be used in user messages. Returns True if the makefile could be
generated.
"""
# Check we have a shared interpreter library.
if target_config.py_pyshlib == '':
inform("The %s plugin was disabled because a dynamic Python library couldn't be found." % plugin_name)
return False
# Create the qmake project file.
inform("Generating the %s plugin .pro file..." % plugin_name)
sp_plugin_dir = source_path(plugin_dir)
fin = open(os.path.join(sp_plugin_dir, '%s.pro-in' % plugin_dir))
prj = fin.read()
fin.close()
prj = prj.replace('@QTCONFIG@',
'debug' if target_config.debug else 'release')
prj = prj.replace('@PYINCDIR@', qmake_quote(target_config.py_inc_dir))
prj = prj.replace('@SIPINCDIR@', qmake_quote(target_config.sip_inc_dir))
prj = prj.replace('@PYLINK@', target_config.get_pylib_link_arguments())
prj = prj.replace('@PYSHLIB@', target_config.py_pyshlib)
prj = prj.replace('@QTPLUGINDIR@', qmake_quote(install_dir))
pro_name = os.path.join(plugin_dir, '%s.pro' % plugin_dir)
mk_dir(plugin_dir)
fout = open_for_writing(pro_name)
fout.write(prj)
if sp_plugin_dir != plugin_dir:
fout.write('''
INCLUDEPATH += %s
VPATH = %s
''' % (qmake_quote(sp_plugin_dir), qmake_quote(sp_plugin_dir)))
fout.write('\n'.join(target_config.qmake_variables) + '\n')
fout.close()
return True
def generate_application_makefile(target_config, verbose, src_dir):
""" Create the makefile for a QtXml based application. target_config is
the target configuration. verbose is set if the output is to be displayed.
src_dir is the name of the directory containing the source files. (It is
assumed that it is not a path.)
"""
mk_dir(src_dir)
sp_src_dir = source_path(src_dir)
# The standard naming convention.
app = src_dir + '4'
inform("Generating the .pro file for %s..." % app)
pro_lines = ['TARGET = %s' % app]
pro_lines.extend(['TEMPLATE = app', 'QT -= gui', 'QT += xml'])
pro_lines.append(
'CONFIG += warn_on %s' %
('debug' if target_config.debug else 'release'))
if target_config.py_platform == 'win32':
pro_lines.append('CONFIG += console')
elif target_config.py_platform == 'darwin':
pro_lines.append('CONFIG -= app_bundle')
# Work around QTBUG-39300.
pro_lines.append('CONFIG -= android_install')
pro_lines.append('target.path = %s' % target_config.pyqt_bin_dir)
pro_lines.append('INSTALLS += target')
if sp_src_dir != src_dir:
pro_lines.append('INCLUDEPATH += %s' % qmake_quote(sp_src_dir))
pro_lines.append('VPATH = %s' % qmake_quote(sp_src_dir))
pro_lines.extend(pro_sources(sp_src_dir))
pro_name = os.path.join(src_dir, src_dir + '.pro')
pro = open_for_writing(pro_name)
pro.write('\n'.join(pro_lines))
pro.close()
def pro_sources(src_dir, other_headers=None, other_sources=None):
""" Return the HEADERS and SOURCES variables for a .pro file by
introspecting a directory. src_dir is the name of the directory.
other_headers is an optional list of other header files. other_sources is
an optional list of other source files.
"""
pro_lines = []
headers = [os.path.basename(f) for f in glob.glob('%s/*.h' % src_dir)]
if other_headers is not None:
headers += other_headers
if len(headers) != 0:
pro_lines.append('HEADERS = %s' % ' '.join(headers))
sources = [os.path.basename(f) for f in glob.glob('%s/*.c' % src_dir)]
for f in glob.glob('%s/*.cpp' % src_dir):
f = os.path.basename(f)
# Exclude any moc generated C++ files that might be around from a
# previous build.
if not f.startswith('moc_'):
sources.append(f)
if other_sources is not None:
sources += other_sources
if len(sources) != 0:
pro_lines.append('SOURCES = %s' % ' '.join(sources))
return pro_lines
def generate_pyuic4_wrapper(target_config):
""" Create a platform dependent executable wrapper for the pyuic.py script.
target_config is the target configuration. Returns the platform specific
name of the wrapper.
"""
wrapper = 'pyuic4.bat' if target_config.py_platform == 'win32' else 'pyuic4'
inform("Generating the %s wrapper..." % wrapper)
exe = quote(target_config.pyuic_interpreter)
script = quote(
os.path.join(target_config.pyqt_module_dir, 'PyQt4', 'uic', 'pyuic.py'))
wf = open_for_writing(wrapper)
if target_config.py_platform == 'win32':
wf.write('@%s %s %%1 %%2 %%3 %%4 %%5 %%6 %%7 %%8 %%9\n' % (exe, script))
else:
wf.write('#!/bin/sh\n')
wf.write('exec %s %s ${1+"$@"}\n' % (exe, script))
wf.close()
return wrapper
def quote(path):
""" Return a path with quotes added if it contains spaces. path is the
path.
"""
if ' ' in path:
path = '"%s"' % path
return path
def qmake_quote(path):
""" Return a path quoted for qmake if it contains spaces. path is the
path.
"""
if ' ' in path:
path = '$$quote(%s)' % path
return path
def inform_user(target_config, sip_version):
""" Tell the user the values that are going to be used. target_config is
the target configuration. sip_version is the SIP version string.
"""
if target_config.qt_licensee == '':
detail = ''
elif target_config.qt_licensee in OPEN_SOURCE_LICENSEES:
detail = " (Open Source)"
else:
detail = " licensed to %s" % target_config.qt_licensee
inform("Qt v%s%s is being used." % (
version_to_string(target_config.qt_version), detail))
if target_config.qt_framework:
inform("Qt is built as a framework.")
else:
inform(
"Qt is built as a %s library." % (
"shared" if target_config.qt_shared else "static"))
if target_config.sysroot != '':
inform("The system root directory is %s." % target_config.sysroot)
inform("SIP %s is being used." % sip_version)
inform("The sip executable is %s." % target_config.sip)
inform("These PyQt4 modules will be built: %s." % ', '.join(target_config.pyqt_modules))
inform("The PyQt4 Python package will be installed in %s." % target_config.pyqt_module_dir)
if target_config.qt_version >= 0x050000:
if target_config.no_deprecated:
inform("PyQt4 is being built without deprecated Qt v4 features.")
else:
inform("PyQt4 is being built with deprecated Qt v4 features.")
if target_config.no_docstrings:
inform("PyQt4 is being built without generated docstrings.")
else:
inform("PyQt4 is being built with generated docstrings.")
if target_config.prot_is_public:
inform("PyQt4 is being built with 'protected' redefined as 'public'.")
if target_config.no_designer_plugin:
inform("The Designer plugin will not be built.")
else:
inform("The Designer plugin will be installed in %s." %
target_config.designer_plugin_dir)
if target_config.qsci_api:
inform(
"The QScintilla API file will be installed in %s." %
os.path.join(
target_config.qsci_api_dir, 'api', 'python'))
if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir:
inform("The PyQt4 PEP 484 stub files will be installed in %s." %
target_config.pyqt_stubs_dir)
if target_config.pydbus_module_dir:
inform(
"The dbus support module will be installed in %s." %
target_config.pydbus_module_dir)
if target_config.pyqt_sip_dir:
inform("The PyQt4 .sip files will be installed in %s." %
target_config.pyqt_sip_dir)
if target_config.no_tools:
inform("pyuic4, pyrcc4 and pylupdate4 will not be built.")
else:
inform("pyuic4, pyrcc4 and pylupdate4 will be installed in %s." %
target_config.pyqt_bin_dir)
inform("The interpreter used by pyuic4 is %s." %
target_config.pyuic_interpreter)
if target_config.vend_enabled:
inform("PyQt4 will only be usable with signed interpreters.")
def run_qmake(target_config, verbose, pro_name, makefile_name='', fatal=True, recursive=False):
""" Run qmake against a .pro file. target_config is the target
configuration. verbose is set if the output is to be displayed. pro_name
is the name of the .pro file. makefile_name is the name of the makefile
to generate (and defaults to Makefile). fatal is set if a qmake failure is
considered a fatal error, otherwise False is returned if qmake fails.
recursive is set to use the -recursive flag.
"""
# qmake doesn't behave consistently if it is not run from the directory
# containing the .pro file - so make sure it is.
pro_dir, pro_file = os.path.split(pro_name)
if pro_dir != '':
cwd = os.getcwd()
os.chdir(pro_dir)
else:
cwd = None
mf = makefile_name if makefile_name != '' else 'Makefile'
remove_file(mf)
args = [quote(target_config.qmake)]
if target_config.qmake_spec != target_config.default_qmake_spec:
args.append('-spec')
args.append(target_config.qmake_spec)
if makefile_name != '':
args.append('-o')
args.append(makefile_name)
if recursive:
args.append('-recursive')
args.append(pro_file)
run_command(' '.join(args), verbose)
if not os.access(mf, os.F_OK):
if fatal:
error(
"%s failed to create a makefile from %s." %
(target_config.qmake, pro_name))
return False
# Restore the current directory.
if cwd is not None:
os.chdir(cwd)
return True
def run_make(target_config, verbose, exe, makefile_name):
""" Run make against a makefile to create an executable. target_config is
the target configuration. verbose is set if the output is to be displayed.
exe is the platform independent name of the executable that will be
created. makefile_name is the name of the makefile. Returns the platform
specific name of the executable, or None if an executable wasn't created.
"""
# Guess the name of make and set the default target and platform specific
# name of the executable.
if target_config.py_platform == 'win32':
if target_config.qmake_spec == 'win32-borland':
make = 'bmake'
elif target_config.qmake_spec == 'win32-g++':
make = 'mingw32-make'
else:
make = 'nmake'
if target_config.debug:
makefile_target = 'debug'
platform_exe = os.path.join('debug', exe + '.exe')
else:
makefile_target = 'release'
platform_exe = os.path.join('release', exe + '.exe')
else:
make = 'make'
makefile_target = ''
if target_config.py_platform == 'darwin':
platform_exe = os.path.join(exe + '.app', 'Contents', 'MacOS', exe)
else:
platform_exe = os.path.join('.', exe)
remove_file(platform_exe)
args = [make, '-f', makefile_name]
if makefile_target != '':
args.append(makefile_target)
run_command(' '.join(args), verbose)
return platform_exe if os.access(platform_exe, os.X_OK) else None
def run_command(cmd, verbose):
""" Run a command and display the output if requested. cmd is the command
to run. verbose is set if the output is to be displayed.
"""
if verbose:
sys.stdout.write(cmd + "\n")
fout = get_command_output(cmd, and_stderr=True)
# Read stdout and stderr until there is no more output.
lout = fout.readline()
while lout:
if verbose:
if sys.hexversion >= 0x03000000:
sys.stdout.write(str(lout, encoding=sys.stdout.encoding))
else:
sys.stdout.write(lout)
lout = fout.readline()
fout.close()
try:
os.wait()
except:
pass
def remove_file(fname):
""" Remove a file which may or may not exist. fname is the name of the
file.
"""
try:
os.remove(fname)
except OSError:
pass
def check_vendorid(target_config):
""" See if the VendorID library and include file can be found.
target_config is the target configuration.
"""
if target_config.py_version >= 0x030000:
# VendorID doesn't support Python v3.
target_config.vend_enabled = False
elif target_config.vend_enabled:
if os.access(os.path.join(target_config.vend_inc_dir, 'vendorid.h'), os.F_OK):
if glob.glob(os.path.join(target_config.vend_lib_dir, '*vendorid*')):
inform("The VendorID package was found.")
else:
target_config.vend_enabled = False
inform(
"The VendorID library could not be found in %s and so "
"signed interpreter checking will be disabled. If the "
"VendorID package is installed then use the "
"--vendorid-libdir argument to explicitly specify the "
"correct directory." % target_config.vend_lib_dir)
else:
target_config.vend_enabled = False
inform(
"vendorid.h could not be found in %s and so signed "
"interpreter checking will be disabled. If the VendorID "
"package is installed then use the --vendorid-incdir "
"argument to explicitly specify the correct directory." %
target_config.vend_inc_dir)
def get_command_output(cmd, and_stderr=False):
""" Return a pipe from which a command's output can be read. cmd is the
command. and_stderr is set if the output should include stderr as well as
stdout.
"""
try:
import subprocess
except ImportError:
if and_stderr:
_, sout = os.popen4(cmd)
else:
_, sout, _ = os.popen3(cmd)
return sout
if and_stderr:
stderr = subprocess.STDOUT
else:
stderr = subprocess.PIPE
p = subprocess.Popen(cmd, shell=True, stdin=subprocess.PIPE,
stdout=subprocess.PIPE, stderr=stderr)
return p.stdout
def source_path(*names):
""" Return the native path for a list of components rooted at the directory
containing this script. names is the sequence of component names.
"""
path = [os.path.dirname(os.path.abspath(__file__))] + list(names)
return os.path.join(*path)
def check_dbus(target_config, verbose):
""" See if the DBus support module should be built and update the target
configuration accordingly. target_config is the target configuration.
verbose is set if the output is to be displayed.
"""
if target_config.no_pydbus or not os.path.isdir(source_path('dbus')):
return
inform("Checking to see if the dbus support module should be built...")
cmd = 'pkg-config --cflags-only-I --libs dbus-1'
if verbose:
sys.stdout.write(cmd + "\n")
sout = get_command_output(cmd)
iflags = sout.read().strip()
if not iflags:
inform("DBus v1 does not seem to be installed.")
return
if sys.hexversion >= 0x03000000:
iflags = iflags.decode()
for f in iflags.split():
if f.startswith('-I'):
target_config.dbus_inc_dirs.append(f[2:])
elif f.startswith('-L'):
target_config.dbus_lib_dirs.append(f[2:])
elif f.startswith('-l'):
target_config.dbus_libs.append(f[2:])
try:
import dbus.mainloop
except:
inform("The Python dbus module doesn't seem to be installed.")
return
target_config.pydbus_module_dir = dbus.mainloop.__path__[0]
# Try and find dbus-python.h. We don't use pkg-config because it is broken
# for dbus-python (at least for versions up to and including v0.81.0).
# Instead we look where DBus itself is installed - which in most cases will
# be where dbus-python is also installed.
if target_config.pydbus_inc_dir != '':
dlist = [target_config.pydbus_inc_dir]
else:
dlist = target_config.dbus_inc_dirs
for d in dlist:
if os.access(os.path.join(d, 'dbus', 'dbus-python.h'), os.F_OK):
if d not in target_config.dbus_inc_dirs:
target_config.dbus_inc_dirs.append(d)
break
else:
inform(
"dbus/dbus-python.h could not be found and so the DBus "
"support module will be disabled. If dbus-python v0.80 or "
"later is installed then use the --dbus argument to "
"explicitly specify the directory containing "
"dbus/dbus-python.h.")
target_config.pydbus_module_dir = ''
def check_module(target_config, verbose, mname, incfile, test):
""" See if a module can be built and, if so, add it to the target
configurations list of modules. target_config is the target configuration.
verbose is set if the output is to be displayed. mname is the name of the
module. incfile is the name of the include file needed for the test. test
is a C++ statement being used for the test.
"""
# Check the module's main .sip file exists.
if not os.access(source_path('sip', mname, mname + 'mod.sip'), os.F_OK):
return
inform("Checking to see if the %s module should be built..." % mname)
source = '''#include <%s>
int main(int, char **)
{
%s;
}
''' % (incfile, test)
if compile_qt_program(target_config, verbose, 'cfgtest_' + mname, source, mname) is not None:
target_config.pyqt_modules.append(mname)
def compile_qt_program(target_config, verbose, name, source, mname):
""" Compile the source of a Qt program and return the name of the
executable or None if it couldn't be created. target_config is the target
configuration. verbose is set if the output is to be displayed. name is
the root name of the program from which all program-specific file names
will be derived. source is the C++ source of the program. mname is the
name of the Qt module that the program uses.
"""
metadata = get_module_metadata(target_config, mname)
# The derived file names.
name_pro = name + '.pro'
name_makefile = name + '.mk'
name_source = name + '.cpp'
# Create the .pro file.
pro_lines = []
pro_add_qt_dependencies(target_config, metadata, pro_lines)
pro_lines.append('TARGET = %s' % name)
pro_lines.append('SOURCES = %s' % name_source)
f = open_for_writing(name_pro)
f.write('\n'.join(pro_lines))
f.close()
# Create the source file.
f = open_for_writing(name_source)
f.write(source)
f.close()
if not run_qmake(target_config, verbose, name_pro, name_makefile, fatal=False):
return None
return run_make(target_config, verbose, name, name_makefile)
def pro_add_qt_dependencies(target_config, metadata, pro_lines):
""" Add the Qt dependencies of a module to a .pro file. target_config is
the target configuration. metadata is the module's meta-data. pro_lines
is the list of lines making up the .pro file that is updated.
"""
add = []
remove = []
for qt in metadata.qmake_QT:
if qt.startswith('-'):
remove.append(qt[1:])
else:
add.append(qt)
if len(remove) != 0:
pro_lines.append('QT -= %s' % ' '.join(remove))
if len(add) != 0:
pro_lines.append('QT += %s' % ' '.join(add))
if metadata.qmake_CONFIG != '':
pro_lines.append('CONFIG += %s' % metadata.qmake_CONFIG)
pro_lines.append(
'CONFIG += %s' % ('debug' if target_config.debug else 'release'))
pro_lines.extend(target_config.qmake_variables)
def get_sip_flags(target_config):
""" Return the SIP platform, version and feature flags. target_config is
the target configuration.
"""
sip_flags = []
# If we don't check for signed interpreters, we exclude the 'VendorID'
# feature
if target_config.py_version < 0x030000 and not target_config.vend_enabled:
sip_flags.append('-x')
sip_flags.append('VendorID')
if target_config.qt_version >= 0x050000 and target_config.no_deprecated:
sip_flags.append('-x')
sip_flags.append('PyQt_Deprecated_5_0')
# Handle the platform tag.
if target_config.py_platform == 'win32':
plattag = 'WS_WIN'
elif target_config.py_platform == 'darwin':
plattag = 'WS_MACX'
else:
plattag = 'WS_X11'
sip_flags.append('-t')
sip_flags.append(plattag)
# Handle the Qt version tag.
sip_flags.append('-t')
sip_flags.append(version_to_sip_tag(target_config.qt_version))
# Handle any feature flags.
for xf in target_config.pyqt_disabled_features:
sip_flags.append('-x')
sip_flags.append(xf)
# Handle the version specific Python features.
if target_config.py_version < 0x020400:
sip_flags.append('-x')
sip_flags.append('Py_DateTime')
if target_config.py_version < 0x030000:
sip_flags.append('-x')
sip_flags.append('Py_v3')
# Generate code for a debug build of Python if needed.
if hasattr(sys, 'gettotalrefcount'):
sip_flags.append('-D')
return ' '.join(sip_flags)
def mk_clean_dir(name):
""" Create a clean (ie. empty) directory. name is the name of the
directory.
"""
try:
shutil.rmtree(name)
except:
pass
try:
os.makedirs(name)
except:
error("Unable to create the %s directory." % name)
def mk_dir(name):
""" Ensure a directory exists, creating it if necessary. name is the name
of the directory.
"""
try:
os.makedirs(name)
except:
pass
def generate_sip_module_code(target_config, verbose, no_timestamp, parts, tracing, mname, sip_flags, qpy_sources=None, qpy_headers=None):
""" Generate the code for a module. target_config is the target
configuration. verbose is set if the output is to be displayed.
no_timestamp is set if the .sip files should exclude the timestamp. parts
is the number of parts the generated code should be split into. tracing is
set if the generated code should include tracing calls. mname is the name
of the module to generate the code for. sip_flags is the string of flags
to pass to sip. qpy_sources is the optional list of QPy support code
source files. qpy_headers is the optional list of QPy support code header
files.
"""
inform("Generating the C++ source for the %s module..." % mname)
mk_clean_dir(mname)
# Build the SIP command line.
argv = [quote(target_config.sip), '-w', '-f', sip_flags]
# Make sure any unknown Qt version gets treated as the latest Qt v4.
argv.append('-B')
argv.append('Qt_5_0_0')
if no_timestamp:
argv.append('-T')
if not target_config.no_docstrings:
argv.append('-o');
if target_config.prot_is_public:
argv.append('-P');
if parts != 0:
argv.append('-j')
argv.append(str(parts))
if tracing:
argv.append('-r')
if target_config.qsci_api and mname != 'Qt':
argv.append('-a')
argv.append(mname + '.api')
if target_config.py_version >= 0x030500 and target_config.pyqt_stubs_dir:
argv.append('-y')
argv.append(mname + '.pyi')
# There is a historical issue creating QObjects while the GIL is held
# causing deadlocks in multi-threaded applications. We don't fully
# understand this yet so we make sure we avoid the problem by always
# releasing the GIL.
argv.append('-g')
# Pass the absolute pathname so that #line files are absolute.
argv.append('-c')
argv.append(os.path.abspath(mname))
argv.append('-I')
argv.append('sip')
sp_sip_dir = source_path('sip')
if sp_sip_dir != 'sip':
# SIP assumes POSIX style separators.
sp_sip_dir = sp_sip_dir.replace('\\', '/')
argv.append('-I')
argv.append(sp_sip_dir)
# The .sip files for the Qt modules will be in the out-of-tree directory.
if mname == 'Qt':
sip_dir = 'sip'
else:
sip_dir = sp_sip_dir
# Add the name of the .sip file.
argv.append('%s/%s/%smod.sip' % (sip_dir, mname, mname))
run_command(' '.join(argv), verbose)
# Check the result.
if mname == 'Qt':
file_check = 'sip%scmodule.c' % mname
else:
file_check = 'sipAPI%s.h' % mname
if not os.access(os.path.join(mname, file_check), os.F_OK):
error("Unable to create the C++ code.")
# Embed the sip flags.
if mname == 'QtCore':
inform("Embedding sip flags...")
in_f = open(source_path('qpy', 'QtCore', 'qpycore_post_init.cpp.in'))
out_f = open_for_writing(
os.path.join('QtCore', 'qpycore_post_init.cpp'))
for line in in_f:
line = line.replace('@@PYQT_SIP_FLAGS@@', sip_flags)
out_f.write(line)
in_f.close()
out_f.close()
# Generate the makefile.
includepath = libs = ''
if target_config.vend_enabled:
if mname == 'QtCore':
includepath = target_config.vend_inc_dir
libs = '-L%s -lvendorid' % target_config.vend_lib_dir
generate_module_makefile(target_config, verbose, mname,
includepath=includepath, libs=libs, qpy_sources=qpy_sources,
qpy_headers=qpy_headers)
def generate_module_makefile(target_config, verbose, mname, includepath='', libs='', install_path='', src_dir='', qpy_sources=None, qpy_headers=None):
""" Generate the makefile for a module. target_config is the target
configuration. verbose is set if the output is to be displayed. mname is
the name of the module. includepath is an optional additional value of
INCLUDEPATH. libs is an optional additional value of LIBS. install_path
is the optional name of the directory that the module will be installed in.
src_dir is the optional source directory (by default the sources are
assumed to be in the module directory). qpy_sources is the optional list
of QPy support code source files. qpy_headers is the optional list of QPy
support code header files.
"""
inform("Generating the .pro file for the %s module..." % mname)
if src_dir == '':
src_dir = mname
target_name = mname
metadata = get_module_metadata(target_config, mname)
if metadata.qmake_TARGET != '':
target_name = metadata.qmake_TARGET
elif target_config.static:
# qmake assumes that -lQtCore etc. refers to the QtCore library so we
# give the static module a different name (mainly for pyqtdeploy's
# benefit).
target_name += '_s'
pro_lines = ['TEMPLATE = lib']
pro_lines.append('CONFIG += warn_on %s' % ('staticlib' if target_config.static else 'plugin'))
pro_add_qt_dependencies(target_config, metadata, pro_lines)
# Work around QTBUG-39300.
pro_lines.append('CONFIG -= android_install')
if not target_config.static:
debug_suffix = get_win32_debug_suffix(target_config.debug)
link = get_win32_python_library(target_config)
shared = '''
win32 {
PY_MODULE = %s%s.pyd
target.files = %s%s.pyd
LIBS += %s
} else {
PY_MODULE = %s.so
target.files = %s.so
}
''' % (target_name, debug_suffix, target_name, debug_suffix, link, target_name, target_name)
pro_lines.extend(shared.split('\n'))
# Without the 'no_check_exist' magic the target.files must exist when
# qmake is run otherwise the install and uninstall targets are not
# generated.
pro_lines.append('target.CONFIG = no_check_exist')
if install_path == '':
install_path = target_config.pyqt_module_dir + '/PyQt4'
pro_lines.append('target.path = %s' % install_path)
pro_lines.append('INSTALLS += target')
if target_config.pyqt_sip_dir:
sip_files = [os.path.relpath(f, mname)
for f in glob.glob(source_path('sip', mname, '*.sip'))]
if len(sip_files) != 0:
pro_lines.append('sip.path = %s/%s' % (target_config.pyqt_sip_dir, mname))
pro_lines.append('sip.files = %s' % ' '.join(sip_files))
pro_lines.append('INSTALLS += sip')
# If we don't know the qmake spec. then we must be compiling against Qt v4
# using the default. Therefore make assumptions about what the default is.
spec = target_config.qmake_spec
if spec == '':
# We only bother about Linux and OS/X.
if target_config.py_platform.startswith('linux'):
spec = 'linux-g++'
elif target_config.py_platform == 'darwin':
# It doesn't matter if the default was actually clang.
spec = 'macx-g++'
if 'g++' in spec or 'clang' in spec:
pro_lines.append('QMAKE_CXXFLAGS += -fno-exceptions')
# This optimisation could apply to other platforms.
if 'linux' in spec and not target_config.static:
if target_config.py_version >= 0x030000:
entry_point = 'PyInit_%s' % target_name
else:
entry_point = 'init%s' % target_name
exp = open_for_writing(os.path.join(mname, target_name + '.exp'))
exp.write('{ global: %s; local: *; };' % entry_point)
exp.close()
pro_lines.append('QMAKE_LFLAGS += -Wl,--version-script=%s.exp' % target_name)
if target_config.qt_version >= 0x050000 and not target_config.no_deprecated:
# The name of this macro is very confusing.
pro_lines.append('DEFINES += QT_DISABLE_DEPRECATED_BEFORE=0x04ffff')
if target_config.prot_is_public:
pro_lines.append('DEFINES += SIP_PROTECTED_IS_PUBLIC protected=public')
# This is needed for Windows.
pro_lines.append('INCLUDEPATH += .')
# Make sure the SIP include directory is searched before the Python include
# directory if they are different.
pro_lines.append('INCLUDEPATH += %s' % target_config.sip_inc_dir)
if target_config.py_inc_dir != target_config.sip_inc_dir:
pro_lines.append('INCLUDEPATH += %s' % target_config.py_inc_dir)
pro_add_qpy(mname, metadata, pro_lines)
if includepath != '':
pro_lines.append('INCLUDEPATH += %s' % includepath)
if libs != '':
pro_lines.append('LIBS += %s' % libs)
if not target_config.static:
shared = '''
win32 {
QMAKE_POST_LINK = $(COPY_FILE) $(DESTDIR_TARGET) $$PY_MODULE
} else {
QMAKE_POST_LINK = $(COPY_FILE) $(TARGET) $$PY_MODULE
}
macx {
QMAKE_LFLAGS += "-undefined dynamic_lookup"
}
'''
pro_lines.extend(shared.split('\n'))
pro_lines.append('TARGET = %s' % target_name)
if src_dir != mname:
pro_lines.append('INCLUDEPATH += %s' % quote(src_dir))
pro_lines.append('VPATH = %s' % quote(src_dir))
pro_lines.extend(pro_sources(src_dir, qpy_headers, qpy_sources))
pro_name = os.path.join(mname, mname + '.pro')
pro = open_for_writing(pro_name)
pro.write('\n'.join(pro_lines))
pro.write('\n')
pro.close()
def pro_add_qpy(mname, metadata, pro_lines):
""" Add the qpy dependencies of a module to a .pro file. mname is the
module's name. metadata is the module's meta-data. pro_lines is the list
of lines making up the .pro file that is updated.
"""
if metadata.qpy_lib:
pro_lines.append('INCLUDEPATH += %s' %
qmake_quote(os.path.relpath(source_path('qpy', mname), mname)))
def fix_license(src_lfile, dst_lfile):
""" Fix the license file, if there is one, so that it conforms to the SIP
v5 syntax. src_lfile is the name of the license file. dst_lfile is the
name of the fixed license file.
"""
f = open(src_lfile)
f5 = open_for_writing(dst_lfile)
for line in f:
if line.startswith('%License'):
anno_start = line.find('/')
anno_end = line.rfind('/')
if anno_start < 0 or anno_end < 0 or anno_start == anno_end:
error("%s has missing annotations." % name)
annos = line[anno_start + 1:anno_end].split(', ')
annos5 = [anno[0].lower() + anno[1:] for anno in annos]
f5.write('%License(')
f5.write(', '.join(annos5))
f5.write(')\n')
else:
f5.write(line)
f5.close()
f.close()
def check_license(target_config, license_confirmed, introspecting):
""" Handle the validation of the PyQt4 license. target_config is the
target configuration. license_confirmed is set if the user has already
accepted the license. introspecting is set if the configuration is being
determined by introspection.
"""
try:
import license
ltype = license.LicenseType
lname = license.LicenseName
try:
lfile = license.LicenseFile
except AttributeError:
lfile = None
except ImportError:
ltype = None
if ltype is None:
ltype = 'GPL'
lname = "GNU General Public License"
lfile = 'pyqt-gpl.sip'
inform(
"This is the %s version of PyQt %s (licensed under the %s) for "
"Python %s on %s." %
(ltype, PYQT_VERSION_STR, lname, sys.version.split()[0],
sys.platform))
# Common checks.
if introspecting and target_config.qt_licensee not in OPEN_SOURCE_LICENSEES and ltype == 'GPL':
error(
"This version of PyQt4 and the commercial version of Qt have "
"incompatible licenses.")
# Confirm the license if not already done.
if not license_confirmed:
loptions = """
Type 'L' to view the license.
"""
sys.stdout.write(loptions)
sys.stdout.write("""Type 'yes' to accept the terms of the license.
Type 'no' to decline the terms of the license.
""")
while 1:
sys.stdout.write("Do you accept the terms of the license? ")
sys.stdout.flush()
try:
resp = sys.stdin.readline()
except KeyboardInterrupt:
raise SystemExit
except:
resp = ""
resp = resp.strip().lower()
if resp == "yes":
break
if resp == "no":
sys.exit(0)
if resp == 'l':
os.system('more LICENSE')
# Check that the license file exists and fix its syntax.
sip_dir = 'sip'
mk_dir(sip_dir)
src_lfile = os.path.join(target_config.license_dir, lfile)
if os.access(src_lfile, os.F_OK):
inform("Found the license file %s." % lfile)
fix_license(src_lfile, os.path.join(sip_dir, lfile + '5'))
else:
error(
"Please copy the license file %s to %s." % (lfile,
target_config.license_dir))
def check_qt(target_config):
""" Check the Qt installation. target_config is the target configuration.
"""
# Starting with v4.7, Qt (when built with MinGW) assumes that stack frames
# are 16 byte aligned because it uses SSE. However the Python Windows
# installers are built with 4 byte aligned stack frames. We therefore need
# to tweak the g++ flags to deal with it.
if target_config.qmake_spec == 'win32-g++' and target_config.qt_version >= 0x040700:
target_config.qmake_variables.append('QMAKE_CFLAGS += -mstackrealign')
target_config.qmake_variables.append('QMAKE_CXXFLAGS += -mstackrealign')
def check_sip(target_config):
""" Check that the version of sip is good enough and return its version.
target_config is the target configuration.
"""
if target_config.sip is None:
error(
"Make sure you have a working sip on your PATH or use the "
"--sip argument to explicitly specify a working sip.")
pipe = os.popen(' '.join([target_config.sip, '-V']))
for l in pipe:
version_str = l.strip()
break
else:
error("'%s -V' did not generate any output." % target_config.sip)
pipe.close()
if '.dev' not in version_str and 'snapshot' not in version_str:
version = version_from_string(version_str)
if version is None:
error(
"'%s -V' generated unexpected output: '%s'." % (
target_config.sip, version_str))
min_version = version_from_string(SIP_MIN_VERSION)
if version < min_version:
error(
"This version of PyQt4 requires sip %s or later." %
SIP_MIN_VERSION)
return version_str
def version_from_string(version_str):
""" Convert a version string of the form m.n or m.n.o to an encoded version
number (or None if it was an invalid format). version_str is the version
string.
"""
parts = version_str.split('.')
if not isinstance(parts, list):
return None
if len(parts) == 2:
parts.append('0')
if len(parts) != 3:
return None
version = 0
for part in parts:
try:
v = int(part)
except ValueError:
return None
version = (version << 8) + v
return version
def open_for_writing(fname):
""" Return a file opened for writing while handling the most common problem
of not having write permission on the directory. fname is the name of the
file to open.
"""
try:
return open(fname, 'w')
except IOError:
error(
"There was an error creating %s. Make sure you have write "
"permission on the parent directory." % fname)
def get_win32_python_library(target_config):
""" Return the qmake LIBS flags to link against the Python library on
Windows. target_config is the target configuration.
"""
lib_dir = qmake_quote('-L%s' % target_config.py_lib_dir)
py_major, py_minor = get_py_major_minor(target_config)
debug_suffix = get_win32_debug_suffix(target_config.debug)
return '%s -lpython%d%d%s' % (lib_dir, py_major, py_minor, debug_suffix)
def get_win32_debug_suffix(debug):
""" Return the debug-dependent suffix appended to the name of Windows
libraries. debug is set if the debug version is to be used.
"""
return '_d' if debug else ''
def get_py_major_minor(target_config):
""" Return a tuple of the major and minor Python version numbers.
target_config is the target configuration.
"""
py_major = target_config.py_version >> 16
py_minor = (target_config.py_version >> 8) & 0x0ff
return py_major, py_minor
def get_module_metadata(target_config, mname):
""" Get the metadata for a module. target_config is the target
configuration. mname is the name of the module.
"""
metadata = QT4_MODULES if target_config.qt_version < 0x050000 else QT5_MODULES
return metadata[mname]
def main(argv):
""" Create the configuration module module. argv is the list of command
line arguments.
"""
# Create the default target configuration.
target_config = TargetConfiguration()
# Parse the command line.
parser = create_optparser(target_config)
opts, target_config.qmake_variables = parser.parse_args()
target_config.apply_pre_options(opts)
# Query qmake for the basic configuration information.
target_config.get_qt_configuration(opts)
# Update the target configuration.
if opts.config_file is not None:
target_config.from_configuration_file(opts.config_file)
else:
target_config.from_introspection(opts.verbose, opts.debug)
target_config.post_configuration()
target_config.apply_post_options(opts)
# Check the licenses are compatible.
check_license(target_config, opts.license_confirmed,
(opts.config_file is None))
# Check SIP is what we need.
sip_version = check_sip(target_config)
# Check Qt is what we need.
check_qt(target_config)
# Check for the VendorID package.
check_vendorid(target_config)
# Check which modules to build if we haven't been told.
if len(target_config.pyqt_modules) == 0:
check_modules(target_config, opts.verbose)
check_dbus(target_config, opts.verbose)
# Tell the user what's been found.
inform_user(target_config, sip_version)
# Generate the makefiles.
generate_makefiles(target_config, opts.verbose, opts.notimestamp,
opts.split if opts.concat else 0, opts.tracing)
###############################################################################
# The script starts here.
###############################################################################
if __name__ == '__main__':
try:
main(sys.argv)
except SystemExit:
raise
except:
sys.stderr.write(
"""An internal error occured. Please report all the output from the program,
including the following traceback, to support@riverbankcomputing.com.
""")
raise
|