Differences From Artifact [ff6747a2ac]:

To Artifact [7b6634f0e5]:


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


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




-
+








-
+
+
+

-
-
-
+
+
+

-
-
-
+
+
+

+
+
+
+


-
+

-
-



-
+




-
+
+
+
+
+

+
-
+

















+
-
+






+
-
+
+
+



-
-
-
-
-
+
-
-
+

-
-









-
+

-
-
+
+

-
-
-
+
+
+

-
+

-
+

-
+




-
-

-
-
-
+
+
+
-
-
-
-
+
-
-
-
+
-
-
-
+
+
+
-
-
-
-
+
+
+
-
-
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
+
-
-
-
-
-
-
-
-
+
-
-
-
-
+
+
+
-
-
+
-




-
-
-
-
-
+
+









+
-
+

-
-
-
+
+
# encoding: utf-8
# api: pep517
# title: flit backend
# description: wraps flit_core.buildapi
# version: 0.1
# version: 0.2
# depends: python:flit (>=3.0, <4.0)
# license: BSD-3-Clause
# priority: extra
# src: ~/.local/lib/python3.8/site-packages/flit_core/
#
# This is supposed to become an alternative to pluginconf.setup,
# using flit as pep517 build backend. But adding automagic field
# lookup of course.
# 
#
# It can be invoked per `flit-pluginconfig build` and requires
# a `pyproject.toml` like:
#
# [build-system]
# requires = ["flit_core", "pluginconf"]
# build-backend = "pluginconf.flit"
#       [build-system]
#       requires = ["flit_core", "pluginconf"]
#       build-backend = "pluginconf.flit"
#
# [project]
# name = "foobar"
# dynamic = ["version", "description"]
#       [project]
#       name = "foobar"
#       #dynamic = ["version", "description"]
#
# Injecting attributes between ini reading and parameter collection
# turned out easier than expanding on flit_core.buildapi functions.
# And lastly, this just chains to flit.main() to handle setup and
# build steps.
#

import os
import sys
import re
import os.path
import pathlib
import functools

import pluginconf
import pluginconf.setup
import pluginconf.setup as psetup

import flit_core.common


#-- patch functions
#-- patchy patch
def inject(where):
    def wrapped(func):
        setattr(where, func.__name__, func)
    return wrapped

@inject(flit_core.common)
def patch_flit_config(path):
def read_flit_config(path):
    """ read_flit_config() with preset dynamic fields """
    d = tomllib.loads(path.read_text('utf-8'))
    
    # make fields dynamic
    if not "dynamic" in d["project"]:
        d["project"]["dynamic"] = []
    for dyn in ['description', 'version']: 
        if dyn in d["project"]:
            del d["project"][dyn]
        if not dyn in d["project"]["dynamic"]:
            d["project"]["dynamic"].append(dyn)
    print(d)

    # turn it into LoadedConfig
    return prep_toml_config(d, path)

# override make_metadata
@inject(flit_core.common)
def patch_metadata(module, ini_info):
def make_metadata(module, ini_info):
    meta = {
        "name": module.name,
        "provides": [module.name]
    }
    meta.update(ini_info.metadata)
    meta.update(
        pmd_meta(
        pmd_meta(filename=module.file)
            pluginconf.plugin_meta(filename=module.file),
            ini_info
        )
    )
    return flit_core.common.Metadata(meta)

# inject
flit_core.common.make_metadata = patch_metadata


#-- map plugin meta to flit Metadata
# map plugin meta to flit Metadata

def pmd_meta(filename):
def pmd_meta(pmd, ini):
    """ enjoin PMD fields with flit meta data """
    pmd  = pluginconf.plugin_meta(filename=filename)
    
    meta = dict(
        summary = pmd.get("description"),
        version = pmd.get("version"),
        home_page = pmd.get("url"),
        author = pmd.get("author"),  # should split this into mail and name
        author_email = None,
        maintainer = None,
        maintainer_email = None,
        license = pmd.get("license"),
        keywords = pmd.get("keywords"),
        keywords = psetup._keywords(pmd),
        download_url = None,
        requires_python = pluginconf.setup._python_requires(pmd).get("python_requires", ">= 2.7"),
        platform = (),
        requires_python = psetup._python_requires(pmd).get("python_requires", ">= 2.7"),
        platform = pmd.get("architecture"),
        supported_platform = (),
        classifiers = list(pluginconf.setup._classifiers(pmd))
                    + pluginconf.setup._trove_license(pmd)
                    + pluginconf.setup._trove_status(pmd),
        classifiers = list(psetup._classifiers(pmd))
                    + psetup._trove_license(pmd)
                    + psetup._trove_status(pmd),
        provides = (),
        requires = pluginconf.setup._install_requires(pmd).get("install_requires") or (),
        requires = psetup._install_requires(pmd).get("install_requires") or (),
        obsoletes = (),
        project_urls = [f"{k}, {v}" for k,v in pluginconf.setup._project_urls(pmd).items()],
        project_urls = [f"{k}, {v}" for k,v in psetup._project_urls(pmd).items()],
        provides_dist = (),
        requires_dist = pluginconf.setup._install_requires(pmd).get("install_requires") or (),
        requires_dist = psetup._install_requires(pmd).get("install_requires") or (),
        obsoletes_dist = (),
        requires_external = (),
        provides_extra = (),
    )
    meta.update({k[5:]: v for k,v in pluginconf.setup._plugin_doc(pmd).items()})
    meta.update({k[5:]: v for k,v in pluginconf.setup._get_readme().items()})

    return meta


    # comment/readme
    for docs in psetup._plugin_doc(pmd), psetup._get_readme():
        if docs["long_description"]:
# 'metadata', 'module', 'referenced_files', 'reqs_by_extra',
# 'sdist_exclude_patterns', 'sdist_include_patterns']
#
# ini.metadata =
            meta.update({
#   {'name': 'basename', 'requires_dist': []}
#
# ini.module =
                k[5:]: v for k,v in docs.items()
#   basename
#
# ini.dynamic_metadata =
            })

    # entry_points are in ini file
#   {'version', 'description'}
#
# ini.__dict__ =
# {
    for section, entries in psetup._entry_points(pmd).items():
        ini.entrypoints[section] = ini.entrypoints.get(section, {})
        for e in entries:
# 'module': 'pluginconf',
# 'metadata': {
#   'name': 'pluginconf',
#   'version': '1.0',
#   'summary': '...',
#   'requires_dist': []
# },
# 'reqs_by_extra': {},
# 'entrypoints': {},
            ini.entrypoints[section].update(
# 'referenced_files': [],
# 'sdist_include_patterns': [],
# 'sdist_exclude_patterns': [],
# 'dynamic_metadata': [],
# 'data_directory': None
# }

                dict(re.findall("(.+)=(.+)", e))
#module = Module(ini.module, pathlib.Path.cwd())
#print(module.__dict__)
#print(module.file)
# {'name': 'pluginconf', 'path':
# PosixPath('/home/mario/projects/pluginconf/pluginconf'), 'is_package':
# True, 'prefix': '', 'source_dir':
# PosixPath('/home/mario/projects/pluginconf')}

            )
#MD = patch_metadata(module, ini)
#print(MD.__dict__)


    print(ini.entrypoints)
    
    # strip empty entries
import flit_core.buildapi

    return {k: v for k, v in meta.items() if v}
flit_core.buildapi.prepare_metadata_for_build_wheel("./build/")



#-- buildapi
#
# These need to be late imports;
# else they'll bind the original helper functions
from flit_core.buildapi import (
    get_requires_for_build_wheel,
from flit_core.buildapi import (     # These have to be late imports; else they'll
    get_requires_for_build_wheel,    # bind with the original buildapi functions.
    get_requires_for_build_sdist,
    get_requires_for_build_editable,
    prepare_metadata_for_build_wheel,
    prepare_metadata_for_build_editable,
    build_wheel,
    build_editable,
    build_sdist,
)

#-- invocation point
import flit
from flit import main

# as invocation point
def main(argv=None):
    return flit.main(argv)
if __name__ == "__main__":
    main(sys.argv)