Skip to content

Commit 30115db

Browse files
committed
Account with package names ending with digits
1 parent 702a138 commit 30115db

File tree

5 files changed

+28
-11
lines changed

5 files changed

+28
-11
lines changed

pyp2spec/conf2spec.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
from jinja2 import Template
1616

1717
from pyp2spec.rpmversion import RpmVersion
18-
from pyp2spec.utils import Pyp2specError
18+
from pyp2spec.utils import Pyp2specError, create_compat_python_name
1919
from pyp2spec.utils import warn, yay
2020

2121

@@ -188,7 +188,7 @@ def fill_in_template(config: ConfigFile) -> str:
188188
license_notice=license_notice,
189189
mandate_license=config.get_bool("license_files_present"),
190190
name=config.get_string("pypi_name"),
191-
python_name=config.get_string("python_name"),
191+
python_compat_name=create_compat_python_name(config.get_string("python_name"), config.get_string("compat")),
192192
pypi_version=pypi_version_or_macro(pypi_version),
193193
python_alt_version=config.get_string("python_alt_version"),
194194
source=source(config, pypi_version),
@@ -208,9 +208,7 @@ def save_spec_file(config: ConfigFile, output: str | None) -> str:
208208

209209
result = fill_in_template(config)
210210
if output is None:
211-
output = config.get_string("python_name")
212-
if compat := config.get_string("compat"):
213-
output += compat
211+
output = create_compat_python_name(config.get_string("python_name"), config.get_string("compat"))
214212
output += ".spec"
215213
with open(output, "w", encoding="utf-8") as spec_file:
216214
spec_file.write(result)

pyp2spec/pyp2conf.py

+3-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
from pyp2spec.license_processor import check_compliance, resolve_license_expression
1212
from pyp2spec.utils import Pyp2specError, normalize_name, get_extras, get_summary_or_placeholder
1313
from pyp2spec.utils import prepend_name_with_python, archive_name
14-
from pyp2spec.utils import is_archful, resolve_url
14+
from pyp2spec.utils import is_archful, resolve_url, create_compat_python_name
1515
from pyp2spec.utils import warn, caution, inform, yay
1616
from pyp2spec.pypi_loaders import load_from_pypi, load_core_metadata_from_pypi, CoreMetadataNotFoundError
1717

@@ -159,10 +159,8 @@ def save_config(contents: dict, output: str | None = None) -> str:
159159
Return the saved file name.
160160
"""
161161
if not output:
162-
package = contents["python_name"]
163-
if compat := contents.get("compat"):
164-
package += compat
165-
output = f"{package}.conf"
162+
package_name = create_compat_python_name(contents.get("python_name"), contents.get("compat"))
163+
output = f"{package_name}.conf"
166164
with open(output, "wb") as f:
167165
tomli_w.dump(contents, f, multiline_strings=True)
168166
yay(f"Configuration file was saved successfully to '{output}'")

pyp2spec/template.spec

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
%global python3_pkgversion {{ python_alt_version }}
33

44
{% endif -%}
5-
Name: {{python_name}}{{compat}}
5+
Name: {{python_compat_name}}
66
Version: {{version}}
77
Release: %autorelease
88
# Fill in the actual package summary to submit package to Fedora

pyp2spec/utils.py

+8
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,11 @@ def resolve_url(urls: dict) -> str:
190190
if values_list := list(normalized_urls.values()):
191191
return values_list[0]
192192
return "..."
193+
194+
195+
def create_compat_python_name(python_name: str, compat: str | None) -> str:
196+
if not compat:
197+
return python_name
198+
if python_name[-1].isdigit():
199+
return f"{python_name}_{compat}"
200+
return f"{python_name}{compat}"

tests/test_utils.py

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
from pyp2spec.utils import normalize_name, get_extras, is_archful
55
from pyp2spec.utils import normalize_as_wheel_name, archive_name
66
from pyp2spec.utils import resolve_url, SdistNotFoundError, MissingPackageNameError
7+
from pyp2spec.utils import create_compat_python_name
78

89

910
def test_license_classifier_read_correctly():
@@ -178,3 +179,15 @@ def test_project_urls_valid_multiple():
178179

179180
def test_project_urls_empty():
180181
assert resolve_url({}) == "..."
182+
183+
184+
@pytest.mark.parametrize(
185+
("name", "compat", "expected"), [
186+
("my-package-foo", None, "my-package-foo"),
187+
("my-package-foo", "3.5", "my-package-foo3.5"),
188+
("my-package-foo2", None, "my-package-foo2"),
189+
("my-package-foo2", "3.5", "my-package-foo2_3.5"),
190+
]
191+
)
192+
def test_create_compat_python_name(name, compat, expected):
193+
assert create_compat_python_name(name, compat) == expected

0 commit comments

Comments
 (0)