15
15
from jinja2 import Template
16
16
17
17
from pyp2spec .rpmversion import RpmVersion
18
- from pyp2spec .utils import Pyp2specError , create_compat_python_name
18
+ from pyp2spec .utils import Pyp2specError , create_compat_name
19
19
from pyp2spec .utils import warn , yay
20
20
21
21
@@ -183,12 +183,13 @@ def fill_in_template(config: ConfigFile) -> str:
183
183
archive_name = archive_basename (config , pypi_version ),
184
184
automode = config .get_bool ("automode" ),
185
185
compat = config .get_string ("compat" ),
186
+ compat_name = create_compat_name (config .get_string ("pypi_name" ), config .get_string ("compat" )),
186
187
extras = "," .join (config .get_list ("extras" )),
187
188
license = license ,
188
189
license_notice = license_notice ,
189
190
mandate_license = config .get_bool ("license_files_present" ),
190
191
name = config .get_string ("pypi_name" ),
191
- python_compat_name = create_compat_python_name (config .get_string ("python_name" ), config .get_string ("compat" )),
192
+ python_compat_name = create_compat_name (config .get_string ("python_name" ), config .get_string ("compat" )),
192
193
pypi_version = pypi_version_or_macro (pypi_version ),
193
194
python_alt_version = config .get_string ("python_alt_version" ),
194
195
source = source (config , pypi_version ),
@@ -208,7 +209,7 @@ def save_spec_file(config: ConfigFile, output: str | None) -> str:
208
209
209
210
result = fill_in_template (config )
210
211
if output is None :
211
- output = create_compat_python_name (config .get_string ("python_name" ), config .get_string ("compat" ))
212
+ output = create_compat_name (config .get_string ("python_name" ), config .get_string ("compat" ))
212
213
output += ".spec"
213
214
with open (output , "w" , encoding = "utf-8" ) as spec_file :
214
215
spec_file .write (result )
0 commit comments