Date: Saturday, October 22, 2022 @ 22:57:54
  Author: felixonmars
Revision: 458779

archrelease: copy trunk to extra-any

Added:
  python-setuptools/repos/extra-any/PKGBUILD
    (from rev 458778, python-setuptools/trunk/PKGBUILD)
  python-setuptools/repos/extra-any/system-validate-pyproject.patch
    (from rev 458778, python-setuptools/trunk/system-validate-pyproject.patch)
Deleted:
  python-setuptools/repos/extra-any/PKGBUILD
  python-setuptools/repos/extra-any/system-validate-pyproject.patch

---------------------------------+
 PKGBUILD                        |  190 +++++++++++++++++++-------------------
 system-validate-pyproject.patch |   62 ++++++------
 2 files changed, 126 insertions(+), 126 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD    2022-10-22 22:57:36 UTC (rev 458778)
+++ PKGBUILD    2022-10-22 22:57:54 UTC (rev 458779)
@@ -1,95 +0,0 @@
-# Maintainer: Angel Velasquez <[email protected]>
-# Maintainer: Felix Yan <[email protected]>
-# Contributor: Eli Schwartz <[email protected]>
-
-pkgname=python-setuptools
-pkgver=63.4.2
-pkgrel=1
-epoch=1
-pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
-arch=('any')
-license=('PSF')
-url="https://pypi.org/project/setuptools/";
-depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 
'python-ordered-set'
-         'python-packaging' 'python-pyparsing' 'python-tomli' 
'python-validate-pyproject')
-makedepends=('git' 'python-setuptools')
-checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-mock' 
'python-pip' 'python-pip-run'
-              'python-pytest-fixture-config' 'python-pytest-virtualenv' 
'python-wheel'
-              'python-pytest-enabler' 'python-pytest-mypy' 'python-sphinx' 
'python-build'
-              'python-ini2toml' 'python-tomli-w')
-provides=('python-distribute')
-replaces=('python-distribute')
-source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";
-        system-validate-pyproject.patch)
-sha512sums=('9c1fa30752a425bfdcaeff4e0ec6b7af2f916dc3f6189ad6827488bead96833af36331f96d93921c65ff88ceb0711f7e9038d3c3dcbcdfb294a31a3f78c8c29b'
-            
'390fea2c575a0042054f51d33e629b04a48f832f0a4a2dd07d34e23cdf330c382dba0f54bfb7c8a6a253bb248a4940f2a789672f715e4dc2aeb395fa185cae7a')
-
-export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
-
-prepare() {
-  cd setuptools-$pkgver
-
-  patch -p1 -i ../system-validate-pyproject.patch
-
-  rm -r {pkg_resources,setuptools}/{extern,_vendor} 
setuptools/config/_validate_pyproject
-
-  # Upstream devendoring logic is badly broken, see:
-  # https://bugs.archlinux.org/task/58670
-  # https://github.com/pypa/pip/issues/5429
-  # https://github.com/pypa/setuptools/issues/1383
-  # The simplest fix is to simply rewrite import paths to use the canonical
-  # location in the first place
-  for _module in setuptools pkg_resources '' ; do
-      find . -name \*.py -exec sed -i \
-          -e 's/from '$_module.extern' import/import/' \
-          -e 's/from '$_module.extern'\./from /' \
-          -e 's/import '$_module.extern'\./import /' \
-          -e "s/__import__('$_module.extern./__import__('/" \
-          -e 's/from \.\.extern\./from /' \
-          {} +
-  done
-
-  # Remove post-release tag since we are using stable tags
-  sed -e '/tag_build = .post/d' \
-      -e '/tag_date = 1/d' \
-      -i setup.cfg
-
-  # Fix shebang
-  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
-}
-
-build() {
-  cd setuptools-$pkgver
-  python setup.py build
-}
-
-check() { (
-  # Workaround UTF-8 tests by setting LC_CTYPE
-  export LC_CTYPE=en_US.UTF-8
-
-  # https://github.com/pypa/setuptools/pull/810
-  export PYTHONDONTWRITEBYTECODE=1
-
-  cd setuptools-$pkgver
-  # 1-7: skipping all tests using "setuptools_sdist", "setuptools_wheel" (or 
"venv" which uses the latter)
-  # 8-9: subtle difference introduced by devendoring
-  # 10-12: TODO
-  PRE_BUILT_SETUPTOOLS_SDIST="$PWD"/build/lib python -m pytest \
-    --deselect setuptools/tests/integration/test_pip_install_sdist.py \
-    --deselect setuptools/tests/test_distutils_adoption.py \
-    --deselect 
setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
-    --deselect setuptools/tests/test_virtualenv.py \
-    --deselect 
setuptools/tests/test_editable_install.py::test_editable_with_pyproject \
-    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_in_sdist
 \
-    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_not_in_wheel
 \
-    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg
 \
-    --deselect 
setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example \
-    --deselect setuptools/tests/test_dist_info.py::TestWheelCompatibility \
-    --deselect 
setuptools/tests/test_dist_info.py::TestDistInfo::test_invalid_version \
-    --deselect setuptools/tests/test_build.py
-)}
-
-package() {
-  cd setuptools-$pkgver
-  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
-}

Copied: python-setuptools/repos/extra-any/PKGBUILD (from rev 458778, 
python-setuptools/trunk/PKGBUILD)
===================================================================
--- PKGBUILD                            (rev 0)
+++ PKGBUILD    2022-10-22 22:57:54 UTC (rev 458779)
@@ -0,0 +1,95 @@
+# Maintainer: Angel Velasquez <[email protected]>
+# Maintainer: Felix Yan <[email protected]>
+# Contributor: Eli Schwartz <[email protected]>
+
+pkgname=python-setuptools
+pkgver=63.4.3
+pkgrel=1
+epoch=1
+pkgdesc="Easily download, build, install, upgrade, and uninstall Python 
packages"
+arch=('any')
+license=('PSF')
+url="https://pypi.org/project/setuptools/";
+depends=('python-appdirs' 'python-jaraco.text' 'python-more-itertools' 
'python-ordered-set'
+         'python-packaging' 'python-pyparsing' 'python-tomli' 
'python-validate-pyproject')
+makedepends=('git' 'python-setuptools')
+checkdepends=('python-jaraco.envs' 'python-jaraco.path' 'python-mock' 
'python-pip' 'python-pip-run'
+              'python-pytest-fixture-config' 'python-pytest-virtualenv' 
'python-wheel'
+              'python-pytest-enabler' 'python-pytest-mypy' 'python-sphinx' 
'python-build'
+              'python-ini2toml' 'python-tomli-w')
+provides=('python-distribute')
+replaces=('python-distribute')
+source=("$pkgname-$pkgver.tar.gz::https://github.com/pypa/setuptools/archive/v$pkgver.tar.gz";
+        system-validate-pyproject.patch)
+sha512sums=('039b72fc8b62c3dc27edb856c5c0f1fe01ccf813c2a5a446baf163c4560a6b819b309056681da9f811609b1e44c4787d4f0e18b2550428df19e9c24e790ade90'
+            
'390fea2c575a0042054f51d33e629b04a48f832f0a4a2dd07d34e23cdf330c382dba0f54bfb7c8a6a253bb248a4940f2a789672f715e4dc2aeb395fa185cae7a')
+
+export SETUPTOOLS_INSTALL_WINDOWS_SPECIFIC_FILES=0
+
+prepare() {
+  cd setuptools-$pkgver
+
+  patch -p1 -i ../system-validate-pyproject.patch
+
+  rm -r {pkg_resources,setuptools}/{extern,_vendor} 
setuptools/config/_validate_pyproject
+
+  # Upstream devendoring logic is badly broken, see:
+  # https://bugs.archlinux.org/task/58670
+  # https://github.com/pypa/pip/issues/5429
+  # https://github.com/pypa/setuptools/issues/1383
+  # The simplest fix is to simply rewrite import paths to use the canonical
+  # location in the first place
+  for _module in setuptools pkg_resources '' ; do
+      find . -name \*.py -exec sed -i \
+          -e 's/from '$_module.extern' import/import/' \
+          -e 's/from '$_module.extern'\./from /' \
+          -e 's/import '$_module.extern'\./import /' \
+          -e "s/__import__('$_module.extern./__import__('/" \
+          -e 's/from \.\.extern\./from /' \
+          {} +
+  done
+
+  # Remove post-release tag since we are using stable tags
+  sed -e '/tag_build = .post/d' \
+      -e '/tag_date = 1/d' \
+      -i setup.cfg
+
+  # Fix shebang
+  sed -i -e "s|^#\!.*/usr/bin/env python|#!/usr/bin/env python3|" 
setuptools/command/easy_install.py
+}
+
+build() {
+  cd setuptools-$pkgver
+  python setup.py build
+}
+
+check() { (
+  # Workaround UTF-8 tests by setting LC_CTYPE
+  export LC_CTYPE=en_US.UTF-8
+
+  # https://github.com/pypa/setuptools/pull/810
+  export PYTHONDONTWRITEBYTECODE=1
+
+  cd setuptools-$pkgver
+  # 1-7: skipping all tests using "setuptools_sdist", "setuptools_wheel" (or 
"venv" which uses the latter)
+  # 8-9: subtle difference introduced by devendoring
+  # 10-12: TODO
+  PRE_BUILT_SETUPTOOLS_SDIST="$PWD"/build/lib python -m pytest \
+    --deselect setuptools/tests/integration/test_pip_install_sdist.py \
+    --deselect setuptools/tests/test_distutils_adoption.py \
+    --deselect 
setuptools/tests/test_setuptools.py::test_its_own_wheel_does_not_contain_tests \
+    --deselect setuptools/tests/test_virtualenv.py \
+    --deselect 
setuptools/tests/test_editable_install.py::test_editable_with_pyproject \
+    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_in_sdist
 \
+    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::TestMeta::test_example_file_not_in_wheel
 \
+    --deselect 
setuptools/tests/config/test_apply_pyprojecttoml.py::test_apply_pyproject_equivalent_to_setupcfg
 \
+    --deselect 
setuptools/tests/config/test_pyprojecttoml.py::test_invalid_example \
+    --deselect setuptools/tests/test_dist_info.py::TestWheelCompatibility \
+    --deselect 
setuptools/tests/test_dist_info.py::TestDistInfo::test_invalid_version \
+    --deselect setuptools/tests/test_build.py
+)}
+
+package() {
+  cd setuptools-$pkgver
+  python setup.py install --prefix=/usr --root="$pkgdir" --optimize=1 
--skip-build
+}

Deleted: system-validate-pyproject.patch
===================================================================
--- system-validate-pyproject.patch     2022-10-22 22:57:36 UTC (rev 458778)
+++ system-validate-pyproject.patch     2022-10-22 22:57:54 UTC (rev 458779)
@@ -1,31 +0,0 @@
-diff --git a/setuptools/config/pyprojecttoml.py 
b/setuptools/config/pyprojecttoml.py
-index d4024956..2c3bd6bf 100644
---- a/setuptools/config/pyprojecttoml.py
-+++ b/setuptools/config/pyprojecttoml.py
-@@ -27,16 +27,22 @@ def load_file(filepath: _Path) -> dict:
- 
- 
- def validate(config: dict, filepath: _Path) -> bool:
--    from . import _validate_pyproject as validator
-+    import validate_pyproject.api, validate_pyproject.errors, 
validate_pyproject.cli, validate_pyproject.plugins
- 
--    trove_classifier = validator.FORMAT_FUNCTIONS.get("trove-classifier")
-+    trove_classifier = 
validate_pyproject.api.FORMAT_FUNCTIONS.get("trove-classifier")
-     if hasattr(trove_classifier, "_disable_download"):
-         # Improve reproducibility by default. See issue 31 for 
validate-pyproject.
-         trove_classifier._disable_download()  # type: ignore
- 
-+    plugins = validate_pyproject.plugins.list_from_entry_points()
-+    validator = validate_pyproject.api.Validator(
-+        validate_pyproject.cli.select_plugins(plugins, ('setuptools', 
'distutils'), ()),
-+        validate_pyproject.api.FORMAT_FUNCTIONS,
-+    )
-+
-     try:
--        return validator.validate(config)
--    except validator.ValidationError as ex:
-+        return validator(config)
-+    except validate_pyproject.errors.ValidationError as ex:
-         summary = f"configuration error: {ex.summary}"
-         if ex.name.strip("`") != "project":
-             # Probably it is just a field missing/misnamed, not worthy the 
verbosity...

Copied: python-setuptools/repos/extra-any/system-validate-pyproject.patch (from 
rev 458778, python-setuptools/trunk/system-validate-pyproject.patch)
===================================================================
--- system-validate-pyproject.patch                             (rev 0)
+++ system-validate-pyproject.patch     2022-10-22 22:57:54 UTC (rev 458779)
@@ -0,0 +1,31 @@
+diff --git a/setuptools/config/pyprojecttoml.py 
b/setuptools/config/pyprojecttoml.py
+index d4024956..2c3bd6bf 100644
+--- a/setuptools/config/pyprojecttoml.py
++++ b/setuptools/config/pyprojecttoml.py
+@@ -27,16 +27,22 @@ def load_file(filepath: _Path) -> dict:
+ 
+ 
+ def validate(config: dict, filepath: _Path) -> bool:
+-    from . import _validate_pyproject as validator
++    import validate_pyproject.api, validate_pyproject.errors, 
validate_pyproject.cli, validate_pyproject.plugins
+ 
+-    trove_classifier = validator.FORMAT_FUNCTIONS.get("trove-classifier")
++    trove_classifier = 
validate_pyproject.api.FORMAT_FUNCTIONS.get("trove-classifier")
+     if hasattr(trove_classifier, "_disable_download"):
+         # Improve reproducibility by default. See issue 31 for 
validate-pyproject.
+         trove_classifier._disable_download()  # type: ignore
+ 
++    plugins = validate_pyproject.plugins.list_from_entry_points()
++    validator = validate_pyproject.api.Validator(
++        validate_pyproject.cli.select_plugins(plugins, ('setuptools', 
'distutils'), ()),
++        validate_pyproject.api.FORMAT_FUNCTIONS,
++    )
++
+     try:
+-        return validator.validate(config)
+-    except validator.ValidationError as ex:
++        return validator(config)
++    except validate_pyproject.errors.ValidationError as ex:
+         summary = f"configuration error: {ex.summary}"
+         if ex.name.strip("`") != "project":
+             # Probably it is just a field missing/misnamed, not worthy the 
verbosity...

Reply via email to