Skip to content

Commit 37cd402

Browse files
committed
fixup! Account with package names ending with digits
1 parent 30115db commit 37cd402

File tree

5 files changed

+16
-15
lines changed

5 files changed

+16
-15
lines changed

pyp2spec/conf2spec.py

+4-3
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, create_compat_python_name
18+
from pyp2spec.utils import Pyp2specError, create_compat_name
1919
from pyp2spec.utils import warn, yay
2020

2121

@@ -183,12 +183,13 @@ def fill_in_template(config: ConfigFile) -> str:
183183
archive_name=archive_basename(config, pypi_version),
184184
automode=config.get_bool("automode"),
185185
compat=config.get_string("compat"),
186+
compat_name=create_compat_name(config.get_string("pypi_name"), config.get_string("compat")),
186187
extras=",".join(config.get_list("extras")),
187188
license=license,
188189
license_notice=license_notice,
189190
mandate_license=config.get_bool("license_files_present"),
190191
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")),
192193
pypi_version=pypi_version_or_macro(pypi_version),
193194
python_alt_version=config.get_string("python_alt_version"),
194195
source=source(config, pypi_version),
@@ -208,7 +209,7 @@ def save_spec_file(config: ConfigFile, output: str | None) -> str:
208209

209210
result = fill_in_template(config)
210211
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"))
212213
output += ".spec"
213214
with open(output, "w", encoding="utf-8") as spec_file:
214215
spec_file.write(result)

pyp2spec/pyp2conf.py

+2-2
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, create_compat_python_name
14+
from pyp2spec.utils import is_archful, resolve_url, create_compat_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,7 +159,7 @@ def save_config(contents: dict, output: str | None = None) -> str:
159159
Return the saved file name.
160160
"""
161161
if not output:
162-
package_name = create_compat_python_name(contents.get("python_name"), contents.get("compat"))
162+
package_name = create_compat_name(contents.get("python_name"), contents.get("compat"))
163163
output = f"{package_name}.conf"
164164
with open(output, "wb") as f:
165165
tomli_w.dump(contents, f, multiline_strings=True)

pyp2spec/template.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This is package '{{name}}' generated automatically by pyp2spec.}
2727
%description %_description
2828

2929
{% if not python_alt_version -%}
30-
%package -n python{{python3_pkgversion}}-{{name}}{{compat}}
30+
%package -n python{{python3_pkgversion}}-{{compat_name}}
3131
Summary: %{summary}
3232
{% if compat %}
3333
Conflicts: python{{python3_pkgversion}}-{{name}}
@@ -77,7 +77,7 @@ Provides: deprecated()
7777
{%- endif %}
7878

7979

80-
%files -n python{{python3_pkgversion}}-{{name}}{{compat}} -f %{pyproject_files}
80+
%files -n python{{python3_pkgversion}}-{{compat_name}} -f %{pyproject_files}
8181

8282

8383
%changelog

pyp2spec/utils.py

+5-5
Original file line numberDiff line numberDiff line change
@@ -192,9 +192,9 @@ def resolve_url(urls: dict) -> str:
192192
return "..."
193193

194194

195-
def create_compat_python_name(python_name: str, compat: str | None) -> str:
195+
def create_compat_name(name: str, compat: str | None) -> str:
196196
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}"
197+
return name
198+
if name[-1].isdigit():
199+
return f"{name}_{compat}"
200+
return f"{name}{compat}"

tests/test_utils.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +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
7+
from pyp2spec.utils import create_compat_name
88

99

1010
def test_license_classifier_read_correctly():
@@ -189,5 +189,5 @@ def test_project_urls_empty():
189189
("my-package-foo2", "3.5", "my-package-foo2_3.5"),
190190
]
191191
)
192-
def test_create_compat_python_name(name, compat, expected):
193-
assert create_compat_python_name(name, compat) == expected
192+
def test_create_compat_name(name, compat, expected):
193+
assert create_compat_name(name, compat) == expected

0 commit comments

Comments
 (0)