Skip to content

Commit e0b0254

Browse files
committed
pypi-importlib_metadata: Autospec creation for update from version 6.2.0 to version 6.3.0
Jason R. Coombs (16): Mark test as xfail as it's about to fail. Ref #442. 👹 Feed the hobgoblins (delint). Prefer all when asserting all. Filter non-identifiers from module names. Fixes #442. Relax assertion that all names in packages_distributions are identifiers. Expand test to include importable names that aren't identifiers and honor that expectation. Capture expectation that 'dist-info' should not appear in inferred top-level names. Ref #442. Update changelog. Revert "test_packages_distributions_all_module_types: Create valid import names" Revert "test_packages_distributions_all_module_types() must create existing files for all the entries in RECORD" Vendor jaraco.path.build from jaraco.path 3.5 Generate the files definition with the mod_files. Use 'build_record' to build the metadata RECORD from the files definition. Consolidate construction of files list, causing creation of the module files. ⚫ Fade to black. Refactor to avoid missed coverage Update changelog. Johan Herland (16): tests/fixtures: Fix FilesDef type to include bytes values Add tests for egg-info package with no installed modules Distribution.files: Prefer *.egg-info/installed-files.txt to SOURCES.txt Add tests for egg-info package with .files from inaccurate SOURCES.txt Distribution.files: Only return files that actually exist squash! Add tests for egg-info package with no installed modules Add test case demonstrating inferring module names from installed-files.txt Fix issues with inferring module names from installed-files.txt squash! Add tests for egg-info package with .files from inaccurate SOURCES.txt squash! Add tests for egg-info package with no installed modules squash! Distribution.files: Only return files that actually exist Refactor logic for skipping missing files out of magic_files() Rewrite docstrings to clarify the expected output format, and why we need quoting test_packages_distributions_all_module_types() must create existing files for all the entries in RECORD test_packages_distributions_all_module_types: Create valid import names Add test capturing missed expectation. Ref #442.
1 parent da24339 commit e0b0254

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PKG_NAME := pypi-importlib_metadata
2-
URL = https://files.pythonhosted.org/packages/3f/24/69442c79335591a2dfe3c9b796ae79348c49bc50c8f2886063d1b0e1e5f3/importlib_metadata-6.2.0.tar.gz
2+
URL = https://files.pythonhosted.org/packages/c2/84/ab374b7e05fbdeecf867294660ac0fdb23aa286aca68a31d587f67d181ad/importlib_metadata-6.3.0.tar.gz
33
ARCHIVES =
44

55
include ../common/Makefile.common

options.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = pypi-importlib_metadata
3-
url = https://files.pythonhosted.org/packages/3f/24/69442c79335591a2dfe3c9b796ae79348c49bc50c8f2886063d1b0e1e5f3/importlib_metadata-6.2.0.tar.gz
3+
url = https://files.pythonhosted.org/packages/c2/84/ab374b7e05fbdeecf867294660ac0fdb23aa286aca68a31d587f67d181ad/importlib_metadata-6.3.0.tar.gz
44
archives =
55
giturl = https://github.com/python/importlib_metadata/
66
domain =

pypi-importlib_metadata.spec

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
# Using build pattern: pyproject
55
#
66
Name : pypi-importlib_metadata
7-
Version : 6.2.0
8-
Release : 103
9-
URL : https://files.pythonhosted.org/packages/3f/24/69442c79335591a2dfe3c9b796ae79348c49bc50c8f2886063d1b0e1e5f3/importlib_metadata-6.2.0.tar.gz
10-
Source0 : https://files.pythonhosted.org/packages/3f/24/69442c79335591a2dfe3c9b796ae79348c49bc50c8f2886063d1b0e1e5f3/importlib_metadata-6.2.0.tar.gz
7+
Version : 6.3.0
8+
Release : 104
9+
URL : https://files.pythonhosted.org/packages/c2/84/ab374b7e05fbdeecf867294660ac0fdb23aa286aca68a31d587f67d181ad/importlib_metadata-6.3.0.tar.gz
10+
Source0 : https://files.pythonhosted.org/packages/c2/84/ab374b7e05fbdeecf867294660ac0fdb23aa286aca68a31d587f67d181ad/importlib_metadata-6.3.0.tar.gz
1111
Summary : Read metadata from Python packages
1212
Group : Development/Tools
1313
License : Apache-2.0
@@ -59,19 +59,19 @@ python3 components for the pypi-importlib_metadata package.
5959

6060

6161
%prep
62-
%setup -q -n importlib_metadata-6.2.0
63-
cd %{_builddir}/importlib_metadata-6.2.0
62+
%setup -q -n importlib_metadata-6.3.0
63+
cd %{_builddir}/importlib_metadata-6.3.0
6464
%patch1 -p1
6565
pushd ..
66-
cp -a importlib_metadata-6.2.0 buildavx2
66+
cp -a importlib_metadata-6.3.0 buildavx2
6767
popd
6868

6969
%build
7070
export http_proxy=http://127.0.0.1:9/
7171
export https_proxy=http://127.0.0.1:9/
7272
export no_proxy=localhost,127.0.0.1,0.0.0.0
7373
export LANG=C.UTF-8
74-
export SOURCE_DATE_EPOCH=1680908732
74+
export SOURCE_DATE_EPOCH=1681144204
7575
export GCC_IGNORE_WERROR=1
7676
export CFLAGS="$CFLAGS -fdebug-types-section -femit-struct-debug-baseonly -fno-lto -g1 -gno-column-info -gno-variable-location-views -gz "
7777
export FCFLAGS="$FFLAGS -fdebug-types-section -femit-struct-debug-baseonly -fno-lto -g1 -gno-column-info -gno-variable-location-views -gz "

release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
103
1+
104

upstream

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
7c057e1abf625d0e8d0d46383d89183d45e814eb/importlib_metadata-6.2.0.tar.gz
1+
568d0aed6c084ce7e0aa213ba2b03a038e8d788b/importlib_metadata-6.3.0.tar.gz

0 commit comments

Comments
 (0)