Skip to content

Commit 3c6a738

Browse files
committed
Account with package names ending with digits
1 parent 2cca4d3 commit 3c6a738

File tree

8 files changed

+112
-13
lines changed

8 files changed

+112
-13
lines changed

pyp2spec/conf2spec.py

+4-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_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_name=config.get_string("python_name"),
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,9 +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 = config.get_string("python_name")
212-
if compat := config.get_string("compat"):
213-
output += compat
212+
output = create_compat_name(config.get_string("python_name"), config.get_string("compat"))
214213
output += ".spec"
215214
with open(output, "w", encoding="utf-8") as spec_file:
216215
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_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_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

+3-3
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
@@ -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

+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_name(name: str, compat: str | None) -> str:
196+
if not compat:
197+
return name
198+
if name[-1].isdigit():
199+
return f"{name}_{compat}"
200+
return f"{name}{compat}"
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
Name: python-urllib3_2
2+
Version: 2.3.0
3+
Release: %autorelease
4+
# Fill in the actual package summary to submit package to Fedora
5+
Summary: HTTP library with thread-safe connection pooling, file post, and more.
6+
7+
# Check if the automatically generated License and its spelling is correct for Fedora
8+
# https://docs.fedoraproject.org/en-US/packaging-guidelines/LicensingGuidelines/
9+
License: MIT
10+
URL: https://github.com/urllib3/urllib3/blob/main/CHANGES.rst
11+
Source: %{pypi_source urllib3}
12+
13+
BuildArch: noarch
14+
BuildRequires: python3-devel
15+
16+
17+
# Fill in the actual package description to submit package to Fedora
18+
%global _description %{expand:
19+
This is package 'urllib3' generated automatically by pyp2spec.}
20+
21+
%description %_description
22+
23+
%package -n python3-urllib3_2
24+
Summary: %{summary}
25+
26+
Conflicts: python3-urllib3
27+
Provides: deprecated()
28+
29+
%description -n python3-urllib3 %_description
30+
31+
# For official Fedora packages, review which extras should be actually packaged
32+
# See: https://docs.fedoraproject.org/en-US/packaging-guidelines/Python/#Extras
33+
%pyproject_extras_subpkg -n python3-urllib3 brotli,h2,socks,zstd
34+
35+
36+
%prep
37+
%autosetup -p1 -n urllib3-%{version}
38+
39+
40+
%generate_buildrequires
41+
# Keep only those extras which you actually want to package or use during tests
42+
%pyproject_buildrequires -x brotli,h2,socks,zstd
43+
44+
45+
%build
46+
%pyproject_wheel
47+
48+
49+
%install
50+
%pyproject_install
51+
# Add top-level Python module names here as arguments, you can use globs
52+
%pyproject_save_files -l ...
53+
54+
55+
%check
56+
%pyproject_check_import
57+
58+
59+
%files -n python3-urllib3_2 -f %{pyproject_files}
60+
61+
62+
%changelog
63+
%autochangelog

tests/test_conf2spec.py

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ def test_archful_flag_is_loaded(config_dir, conf, expected):
5050
"default_python3.9-pello.conf", # custom Python version
5151
"default_python-pytest7.2.conf", # compat version
5252
"default_python-pytest7.conf", # compat version - lower granularity
53+
"default_python-urllib3_2.conf", # compat version - pkgname with a digit
5354
]
5455
)
5556
def test_default_generated_specfile(file_regression, config_dir, conf):
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
archful = false
2+
archive_name = "urllib3-2.3.0.tar.gz"
3+
compat = "2"
4+
extras = [
5+
"brotli",
6+
"h2",
7+
"socks",
8+
"zstd",
9+
]
10+
license = "MIT"
11+
license_files_present = true
12+
pypi_name = "urllib3"
13+
pypi_version = "2.3.0"
14+
python_name = "python-urllib3"
15+
source = "PyPI"
16+
summary = "HTTP library with thread-safe connection pooling, file post, and more."
17+
url = "https://github.com/urllib3/urllib3/blob/main/CHANGES.rst"

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_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_name(name, compat, expected):
193+
assert create_compat_name(name, compat) == expected

0 commit comments

Comments
 (0)