Welcome to mirror list, hosted at ThFree Co, Russian Federation.

python-2.7.json « python2.7 - github.com/flathub/shared-modules.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: afdef90204fdefe64b09fc5555023bc906c787ca (plain)
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
{
    "name": "python-2.7",
    "sources": [
        {
            "type": "archive",
            "url": "https://www.python.org/ftp/python/2.7.18/Python-2.7.18.tar.xz",
            "sha256": "b62c0e7937551d0cc02b8fd5cb0f544f9405bafc9a54d3808ed4594812edef43"
        }
    ],
    "config-opts": [
        "--enable-shared",
        "--with-ensurepip=yes",
        "--with-system-expat",
        "--with-system-ffi",
        "--enable-loadable-sqlite-extensions",
        "--with-dbmliborder=gdbm",
        "--enable-unicode=ucs4"
    ],
    "post-install": [
        /* Theres seem to be a permissions missmatch that causes the debug stripping to fail */
        "chmod 644 $FLATPAK_DEST/lib/libpython2.7.so.1.0"
    ],
    "cleanup": [
        "/bin/2to3*",
        "/bin/easy_install*",
        "/bin/idle*",
        "/bin/pydoc*",
        "/bin/python*-config",
        "/bin/pyvenv*",
        "/include",
        "/lib/pkgconfig",
        "/lib/python*/config",
        "/share",

        /* Test scripts */
        "/lib/python*/test",
        "/lib/python*/*/test",
        "/lib/python*/*/tests",
        "/lib/python*/lib-tk/test",
        "/lib/python*/lib-dynload/_*_test.*.so",
        "/lib/python*/lib-dynload/_test*.*.so",

        /* Unused modules */
        "/lib/python*/idlelib",
        "/lib/python*/tkinter*",
        "/lib/python*/turtle*",
        "/lib/python*/lib2to3*",
        
        /* Static library */
        "/lib/python2.7/config/libpython2.7.a"
    ]
}