Skip to content

Commit a696460

Browse files
committed
Pass the dictionary of CLI options rather than one by one
1 parent f9b6e2d commit a696460

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

pyp2spec/conf2spec.py

+7-5
Original file line numberDiff line numberDiff line change
@@ -204,11 +204,13 @@ def fill_in_template(config: ConfigFile, declarative_buildsystem: bool) -> str:
204204
return result
205205

206206

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:
208208
"""Save the spec file in the current directory if custom output is not set.
209209
Return the saved file name."""
210210

211+
declarative_buildsystem = options.get("declarative_buildsystem")
211212
result = fill_in_template(config, declarative_buildsystem)
213+
output = options.get("spec_output")
212214
if output is None:
213215
output = create_compat_name(config.get_string("python_name"), config.get_string("compat"))
214216
output += ".spec"
@@ -218,10 +220,10 @@ def save_spec_file(config: ConfigFile, output: str | None, declarative_buildsyst
218220
return output
219221

220222

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:
222224
"""Create and save the generate spec file."""
223225
config = ConfigFile(load_config_file(config_file))
224-
return save_spec_file(config, spec_output, declarative_buildsystem)
226+
return save_spec_file(config, options)
225227

226228

227229
@click.command()
@@ -235,9 +237,9 @@ def create_spec_file(config_file: str, spec_output: str | None=None, declarative
235237
"--declarative-buildsystem", is_flag=True, default=False,
236238
help="Create a spec file with pyproject declarative buildsystem (experimental)",
237239
)
238-
def main(config: str, spec_output: str, declarative_buildsystem: bool) -> None:
240+
def main(config: str, **options: dict[str, str]) -> None:
239241
try:
240-
create_spec_file(config, spec_output, declarative_buildsystem)
242+
create_spec_file(config, options)
241243
except (Pyp2specError, NotImplementedError) as exc:
242244
warn(f"Fatal exception occurred: {exc}")
243245
sys.exit(1)

pyp2spec/pyp2spec.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def main(**options): # noqa
2323
if options["automode"] and options["declarative_buildsystem"]:
2424
raise Pyp2specError("Declarative buildsystem doesn't work with automode")
2525
config_file = create_config(options)
26-
create_spec_file(config_file, options["spec_output"], options["declarative_buildsystem"])
26+
create_spec_file(config_file, options)
2727
except (Pyp2specError, NotImplementedError) as exc:
2828
warn(f"Fatal exception occurred: {exc}")
2929
sys.exit(1)

tests/test_conf2spec.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def test_archful_flag_is_loaded(config_dir, conf, expected):
5656
)
5757
def test_default_generated_specfile(file_regression, config_dir, conf, db):
5858
# Run the conf2spec converter
59-
rendered_file = conf2spec.create_spec_file(config_dir + conf, declarative_buildsystem=db)
59+
rendered_file = conf2spec.create_spec_file(config_dir + conf, {"declarative_buildsystem": db})
6060

6161
# Compare the results
6262
with open(rendered_file, "r", encoding="utf-8") as rendered_f:

0 commit comments

Comments
 (0)