Date: Friday, April 7, 2023 @ 05:52:01
Author: felixonmars
Revision: 1440671
archrelease: copy trunk to community-staging-any
Added:
python-isort/repos/community-staging-any/
python-isort/repos/community-staging-any/PKGBUILD
(from rev 1440669, python-isort/trunk/PKGBUILD)
----------+
PKGBUILD | 95 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 95 insertions(+)
Copied: python-isort/repos/community-staging-any/PKGBUILD (from rev 1440669,
python-isort/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD (rev 0)
+++ community-staging-any/PKGBUILD 2023-04-07 05:52:01 UTC (rev 1440671)
@@ -0,0 +1,95 @@
+# Maintainer: Caleb Maclennan <[email protected]>
+# Contributor: Felix Yan <[email protected]>
+# Contributor: Yaron de Leeuw <[email protected]>
+
+_pyname=isort
+pkgname=python-$_pyname
+pkgver=5.12.0
+pkgrel=2
+pkgdesc='A Python utility / library to sort Python imports'
+arch=(any)
+url="https://github.com/PyCQA/$_pyname"
+license=(MIT)
+_pydeps=(toml
+ tomli)
+depends=(python
+ "${_pydeps[@]/#/python-}")
+makedepends=(python-{build,installer,wheel}
+ python-poetry-core)
+_pycheckdeps=(black
+ hypothesis
+ hypothesis-auto
+ hypothesmith
+ libcst
+ natsort
+ ## deps that make it harder not easier to tell if things work
+ # pip
+ # pip-api
+ # pipreqs
+ pytest
+ pytest-mock
+ requirementslib)
+# Besides the overflowing plethora of specific test problems as noted in the
+# check() function --dselects, the switch from dephell to poetry broke a whole
+# batch more tests related to output formatting. There are a bunch of lines
where
+# the expected output has whitespace and the actual output does not any more.
+# checkdepends=(git
+# pylama
+# "${_pycheckdeps[@]/#/python-}")
+_archive="$_pyname-$pkgver"
+source=("$url/archive/$pkgver/$_archive.tar.gz")
+sha256sums=('00eef77c312dc08606d72b6c38a5330632caca4f9bf8e86b7b373ed760ae29b8')
+
+prepare() {
+ cd "$_archive"
+
+ # Devendor toml
+ rm -r isort/_vendored
+ sed -i 's/from ._vendored //' isort/settings.py
+
+ ## Skipping example integration tests
+ # for _plugin in example_*; do
+ # pushd $_plugin
+ # dephell deps convert --from pyproject.toml --to setup.py
+ # popd
+ # done
+}
+
+build() {
+ cd "$_archive"
+ python -m build -wn
+}
+
+# check() {
+# cd "$_archive"
+# ## Skipping example integration tests
+# # python setup.py install --root="$PWD/tmp_install" --optimize=1
+# # for _plugin in example_*; do
+# # pushd $_plugin
+# # python setup.py install --root="$srcdir/isort-$pkgver/tmp_install"
--optimize=1
+# # popd
+# # done
+# #
PYTHONPATH="$PWD/example_isort_formatting_plugin:$PWD/example_shared_isort_profile:$PWD/tmp_install/usr/lib/python3.11/site-packages"
PATH="$PWD/tmp_install/usr/bin:$PATH" \
+# python -m pytest -p no:warnings \
+# --deselect
tests/unit/test_deprecated_finders.py::TestRequirementsFinder::test_requirements_dir
$(: having pip in ruins other tests ) \
+# --deselect
tests/unit/test_deprecated_finders.py::test_requirements_finder $(: having pip
in ruins other tests ) \
+# --deselect
tests/unit/test_deprecated_finders.py::test_pipfile_finder $(: having pip in
ruins other tests ) \
+# --deselect
tests/unit/test_isort.py::test_settings_path_skip_issue_909 $(: example
integrations ) \
+# --deselect tests/unit/test_isort.py::test_skip_paths_issue_938 $(:
example integrations ) \
+# --deselect
tests/unit/test_ticketed_features.py::test_isort_supports_shared_profiles_issue_970
$(: example integrations ) \
+# --deselect tests/unit/test_literal.py::test_value_assignment_list
$(: unknown) \
+# --deselect
tests/unit/test_ticketed_features.py::test_isort_supports_formatting_plugins_issue_1353
$(: unknown) \
+# --deselect
tests/unit/test_ticketed_features.py::test_isort_literals_issue_1358 $(:
unknown ) \
+# --deselect
tests/unit/test_ticketed_features.py::test_sort_configurable_sort_issue_1732
$(: unknown ) \
+# --deselect tests/integration/test_setting_combinations.py $(:
unknown ) \
+# --deselect
tests/integration/test_projects_using_isort.py::test_typeshed $(: requires
network ) \
+# --deselect tests/test_importable.py::test_importable $(: just weird
) \
+# --deselect tests/benchmark/test_api.py $(: no benchmarks thanks )
+# }
+
+package() {
+ cd "$_archive"
+ python -m installer -d "$pkgdir" dist/*.whl
+ rm -f "$pkgdir"/usr/lib/python*/site-packages/{LICENSE,CHANGELOG.md}
+ install -Dm0644 -t "$pkgdir/usr/share/licenses/$pkgname/" LICENSE
+}