@@ -204,11 +204,13 @@ def fill_in_template(config: ConfigFile, declarative_buildsystem: bool) -> str:
204
204
return result
205
205
206
206
207
- def save_spec_file (config : ConfigFile , output : str | None , declarative_buildsystem : bool ) -> str :
207
+ def save_spec_file (config : ConfigFile , options : dict [ str , str ] ) -> str :
208
208
"""Save the spec file in the current directory if custom output is not set.
209
209
Return the saved file name."""
210
210
211
+ declarative_buildsystem = options .get ("declarative_buildsystem" )
211
212
result = fill_in_template (config , declarative_buildsystem )
213
+ output = options .get ("spec_output" )
212
214
if output is None :
213
215
output = create_compat_name (config .get_string ("python_name" ), config .get_string ("compat" ))
214
216
output += ".spec"
@@ -218,10 +220,10 @@ def save_spec_file(config: ConfigFile, output: str | None, declarative_buildsyst
218
220
return output
219
221
220
222
221
- def create_spec_file (config_file : str , spec_output : str | None = None , declarative_buildsystem : bool = False ) -> str | None :
223
+ def create_spec_file (config_file : str , options : dict [ str , str ] ) -> str | None :
222
224
"""Create and save the generate spec file."""
223
225
config = ConfigFile (load_config_file (config_file ))
224
- return save_spec_file (config , spec_output , declarative_buildsystem )
226
+ return save_spec_file (config , options )
225
227
226
228
227
229
@click .command ()
@@ -235,9 +237,9 @@ def create_spec_file(config_file: str, spec_output: str | None=None, declarative
235
237
"--declarative-buildsystem" , is_flag = True , default = False ,
236
238
help = "Create a spec file with pyproject declarative buildsystem (experimental)" ,
237
239
)
238
- def main (config : str , spec_output : str , declarative_buildsystem : bool ) -> None :
240
+ def main (config : str , ** options : dict [ str , str ] ) -> None :
239
241
try :
240
- create_spec_file (config , spec_output , declarative_buildsystem )
242
+ create_spec_file (config , options )
241
243
except (Pyp2specError , NotImplementedError ) as exc :
242
244
warn (f"Fatal exception occurred: { exc } " )
243
245
sys .exit (1 )
0 commit comments