Skip to content

Commit 407980a

Browse files
committed
Ensure PKG-INFO in sdists
GitLab tar balls are not valid Python sdists because they are missing a `PKG-INFO` file. The file is required for `setuptools-scm` and for latest Twine. `ensure_pkg_info` helper ensures that a source tree has a minimal `PKG-INFO`. Signed-off-by: Christian Heimes <[email protected]>
1 parent d4cd709 commit 407980a

5 files changed

+61
-0
lines changed

e2e/test_bootstrap_git_url.sh

+3
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ for pattern in $EXPECTED_FILES; do
5454
done
5555

5656
$pass
57+
58+
twine check $OUTDIR/sdists-repo/builds/*.tar.gz
59+
twine check $OUTDIR/wheels-repo/downloads/*.whl

e2e/test_bootstrap_git_url_tag.sh

+3
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,6 @@ for pattern in $EXPECTED_FILES; do
5454
done
5555

5656
$pass
57+
58+
twine check $OUTDIR/sdists-repo/builds/*.tar.gz
59+
twine check $OUTDIR/wheels-repo/downloads/*.whl

e2e/test_pep517_build_sdist.sh

+2
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,5 @@ for pattern in $EXPECTED_FILES; do
6060
done
6161

6262
$pass
63+
64+
twine check $OUTDIR/sdists-repo/builds/*.tar.gz

requirements-test.txt

+2
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@ pytest
33
requests-mock
44
setuptools_scm>=8
55
setuptools>=64
6+
# Twine 6.1.0 added strict metadata validation
7+
twine>=6.1.0

src/fromager/sources.py

+51
Original file line numberDiff line numberDiff line change
@@ -653,6 +653,13 @@ def default_build_sdist(
653653
sdist_filename = ctx.sdists_builds / f"{req.name}-{version}.tar.gz"
654654
if sdist_filename.exists():
655655
sdist_filename.unlink()
656+
ensure_pkg_info(
657+
ctx=ctx,
658+
req=req,
659+
version=version,
660+
sdist_root_dir=sdist_root_dir,
661+
build_dir=build_dir,
662+
)
656663
# The format argument is specified based on
657664
# https://peps.python.org/pep-0517/#build-sdist.
658665
with tarfile.open(sdist_filename, "x:gz", format=tarfile.PAX_FORMAT) as sdist:
@@ -681,3 +688,47 @@ def pep517_build_sdist(
681688
)
682689
sdist_filename = hook_caller.build_sdist(ctx.sdists_builds)
683690
return ctx.sdists_builds / sdist_filename
691+
692+
693+
PKG_INFO_CONTENT = """\
694+
Metadata-Version: 1.0
695+
Name: {name}
696+
Version: {version}
697+
Summary: Fromage stub PKG-INFO
698+
"""
699+
700+
701+
def ensure_pkg_info(
702+
*,
703+
ctx: context.WorkContext,
704+
req: Requirement,
705+
version: Version,
706+
sdist_root_dir: pathlib.Path,
707+
build_dir: pathlib.Path | None = None,
708+
) -> bool:
709+
"""Ensure that sdist has a PKG-INFO file
710+
711+
Returns True if PKG-INFO was presence, False if file was missing. The
712+
function also updates build_dir if package has a non-standard build
713+
directory. Every sdist must have a PKG-INFO file in the first directory.
714+
The additional PKG-INFO file in build_dir is required for projects
715+
with non-standard layout and setuptools-scm.
716+
"""
717+
had_pkg_info = True
718+
directories = [sdist_root_dir]
719+
if build_dir is not None and build_dir != sdist_root_dir:
720+
directories.append(build_dir)
721+
for directory in directories:
722+
pkg_info_file = directory / "PKG-INFO"
723+
if not pkg_info_file.is_file():
724+
logger.warning(
725+
f"{req.name}: PKG-INFO file is missing from {directory}, creating stub file"
726+
)
727+
pkg_info_file.write_text(
728+
PKG_INFO_CONTENT.format(
729+
name=req.name,
730+
version=str(version),
731+
)
732+
)
733+
had_pkg_info = False
734+
return had_pkg_info

0 commit comments

Comments
 (0)