[arch-commits] Commit in python-pre-commit/repos/community-any (PKGBUILD PKGBUILD)

Felix Yan felixonmars at archlinux.org
Sat Feb 6 20:53:16 UTC 2021


    Date: Saturday, February 6, 2021 @ 20:53:16
  Author: felixonmars
Revision: 847344

archrelease: copy trunk to community-any

Added:
  python-pre-commit/repos/community-any/PKGBUILD
    (from rev 847342, python-pre-commit/trunk/PKGBUILD)
Deleted:
  python-pre-commit/repos/community-any/PKGBUILD

----------+
 PKGBUILD |  113 ++++++++++++++++++++++++++++++-------------------------------
 1 file changed, 56 insertions(+), 57 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-02-06 20:53:14 UTC (rev 847343)
+++ PKGBUILD	2021-02-06 20:53:16 UTC (rev 847344)
@@ -1,57 +0,0 @@
-# Maintainer: Felix Yan <felixonmars at archlinux.org>
-
-pkgname=python-pre-commit
-pkgver=2.8.1
-pkgrel=1
-pkgdesc="A framework for managing and maintaining multi-language pre-commit hooks"
-url="https://github.com/pre-commit/pre-commit"
-license=('MIT')
-arch=('any')
-depends=('python-cfgv' 'python-identify' 'python-nodeenv' 'python-yaml' 'python-toml'
-         'python-virtualenv')
-makedepends=('python-setuptools')
-checkdepends=('python-pytest-runner' 'python-re-assert' 'dotnet-sdk' 'git' 'go' 'nodejs' 'npm' 'python2' 'rubygems' 'rust')
-source=("https://github.com/pre-commit/pre-commit/archive/v$pkgver/$pkgname-$pkgver.tar.gz"
-        pre-commit-pythonpath-fix.patch::https://github.com/pre-commit/pre-commit/pull/1369.patch)
-sha512sums=('ac9ab201f9b83478a49daf7bfdb3b51a49b4046b5ae1b0e324e909834d8e42d85bbeb1871189abe22c500786e4a91d5b3ddf6aa01bd51d7e3cb1f02a4c667bf8'
-            '9bafce326138c5e7a5b73a2fd10ac8b3dec2fae4eed93224210cb6f466effa2074dc3dbadeb16d997319b4e2f58f6fef47e05877fbfd06296f6868a4265b0fa7')
-
-prepare() {
-  cd pre-commit-$pkgver
-  patch -p1 -i ../pre-commit-pythonpath-fix.patch
-}
-
-build() {
-  cd pre-commit-$pkgver
-  python setup.py build
-}
-
-check() {
-  cd pre-commit-$pkgver
-  git config --global user.email "pony at arch"
-  git config --global user.name "Lucky Pony"
-  git init
-  export GIT_AUTHOR_NAME="Lucky Pony"
-  export GIT_COMMITTER_NAME="Lucky Pony"
-  export GIT_AUTHOR_EMAIL="pony at arch"
-  export GIT_COMMITTER_EMAIL="pony at arch"
-  export VIRTUALENV_NO_DOWNLOAD=1
-  export PRE_COMMIT_NO_CONCURRENCY=1
-
-  # Deselect conda because we don't have it!
-  # test_run_a_ruby_hook: https://github.com/pre-commit/pre-commit/issues/1368
-  # test_local_golang_additional_dependencies: https://github.com/pre-commit/pre-commit/pull/1769
-  python setup.py pytest --addopts "--deselect tests/repository_test.py::test_conda_hook \
-                                    --deselect tests/repository_test.py::test_conda_with_additional_dependencies_hook \
-                                    --deselect tests/repository_test.py::test_local_conda_additional_dependencies \
-                                    --deselect tests/repository_test.py::test_run_a_ruby_hook \
-                                    --deselect tests/repository_test.py::test_switch_language_versions_doesnt_clobber \
-                                    --deselect tests/repository_test.py::test_local_golang_additional_dependencies"
-}
-
-package() {
-  cd pre-commit-$pkgver
-  python setup.py install --root="$pkgdir" --optimize=1
-
-  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
-}

Copied: python-pre-commit/repos/community-any/PKGBUILD (from rev 847342, python-pre-commit/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-02-06 20:53:16 UTC (rev 847344)
@@ -0,0 +1,56 @@
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+
+pkgname=python-pre-commit
+pkgver=2.10.0
+pkgrel=1
+pkgdesc="A framework for managing and maintaining multi-language pre-commit hooks"
+url="https://github.com/pre-commit/pre-commit"
+license=('MIT')
+arch=('any')
+depends=('python-cfgv' 'python-identify' 'python-nodeenv' 'python-yaml' 'python-toml'
+         'python-virtualenv')
+makedepends=('python-setuptools')
+checkdepends=('python-pytest' 'python-re-assert' 'dotnet-sdk' 'git' 'go' 'nodejs' 'npm' 'python2' 'rubygems' 'rust')
+source=("https://github.com/pre-commit/pre-commit/archive/v$pkgver/$pkgname-$pkgver.tar.gz")
+sha512sums=('9a9003232d2f74e0b52c190c65286b5ef5ebf32b50ab26d48fd83c55f4ebbab3d71b05a633801eee97afbc0f3d605b2b2eacc6d469a0643313ff1a2132d746cd')
+
+build() {
+  cd pre-commit-$pkgver
+  python setup.py build
+}
+
+check() {
+  cd pre-commit-$pkgver
+  git init
+  git config user.email "pony at arch"
+  git config user.name "Lucky Pony"
+  export GIT_AUTHOR_NAME="Lucky Pony"
+  export GIT_COMMITTER_NAME="Lucky Pony"
+  export GIT_AUTHOR_EMAIL="pony at arch"
+  export GIT_COMMITTER_EMAIL="pony at arch"
+  export VIRTUALENV_NO_DOWNLOAD=1
+  export PRE_COMMIT_NO_CONCURRENCY=1
+
+  # Empty venv so that `importlib` picks up the local "pre-commit" package
+  python -m venv --system-site-packages venv
+  source "$PWD/venv/bin/activate"
+  python setup.py develop
+
+  # Deselect conda because we don't have it!
+  # test_install_ruby_with_version,test_run_a_ruby_hook: https://github.com/pre-commit/pre-commit/issues/1368
+  python -m pytest --deselect tests/repository_test.py::test_conda_hook \
+                   --deselect tests/repository_test.py::test_conda_with_additional_dependencies_hook \
+                   --deselect tests/repository_test.py::test_local_conda_additional_dependencies \
+                   --deselect tests/repository_test.py::test_run_a_ruby_hook \
+                   --deselect tests/languages/ruby_test.py::test_install_ruby_with_version \
+                   --deselect tests/repository_test.py::test_switch_language_versions_doesnt_clobber
+
+  deactivate
+}
+
+package() {
+  cd pre-commit-$pkgver
+  python setup.py install --root="$pkgdir" --optimize=1
+
+  install -Dm644 LICENSE -t "$pkgdir"/usr/share/licenses/$pkgname/
+}



More information about the arch-commits mailing list