@@ -120,6 +120,9 @@ def filt(prefix: str, name: str,
120
120
else :
121
121
items = entry .split ("," )
122
122
for item in items :
123
+ # "no-xxxx" -> "-xxxx"
124
+ if item .startswith ("no-" ):
125
+ item = item [2 :]
123
126
if item == "all" :
124
127
real_list += all_fn ()
125
128
else :
@@ -129,8 +132,6 @@ def filt(prefix: str, name: str,
129
132
def ap (v : str ) -> str :
130
133
if v .startswith ("-" ):
131
134
return "-" + autoprefix (prefix , v [1 :])
132
- if v .startswith ("no-" ):
133
- return "-" + autoprefix (prefix , v [3 :])
134
135
parts = v .split (":" , 1 )
135
136
if len (parts ) == 1 :
136
137
return autoprefix (prefix , parts [0 ])
@@ -142,21 +143,22 @@ def apl(items: Iterable[str]) -> list[str]:
142
143
143
144
# when comparing, ignore options:
144
145
def noopt (item_str : str ):
145
- return item_str .split (":" , 1 )[0 ]
146
+ return item_str .lstrip ( "-" ). split (":" , 1 )[0 ]
146
147
147
148
exclist = apl (x [1 :] for x in real_list if x and x .startswith ("-" ))
148
149
inclist = apl (x for x in real_list if x and not x .startswith ("-" ))
149
150
if not inclist and exclist :
150
151
inclist = apl (all_fn ())
151
152
lists = exclist + inclist
152
153
all_list = apl (all_options )
153
- unknown = tuple (x for x in lists if noopt (ap ( x ) ) not in CODEC_TO_MODULE and x .lower () != "none" )
154
+ unknown = tuple (x for x in lists if noopt (x ) not in CODEC_TO_MODULE and x .lower () != "none" )
154
155
if unknown :
155
156
log .warn (f"Warning: ignoring unknown { name } : " + csv (unknown ))
156
- notfound = tuple (x for x in lists if (x and noopt (ap ( x ) ) not in all_list and x not in unknown and x != "none" ))
157
+ notfound = tuple (x for x in lists if (x and noopt (x ) not in all_list and x not in unknown and x != "none" ))
157
158
if notfound :
158
159
log .warn (f"Warning: { name } not found: " + csv (notfound ))
159
- allowed = apl (x for x in inclist if x not in exclist and x != "none" )
160
+ allowed = apl (x for x in inclist if x in all_list and x not in exclist and x != "none" )
161
+ # log(f"{inclist=}, {exclist=}, {all_list=} -> {allowed=}")
160
162
# now we can parse individual entries:
161
163
values = {}
162
164
for entry in allowed :
0 commit comments