blob: c4e009f9b41888eee411194e1a15667f03f8ef17 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
# Contributor: Galen Abell <galen@galenabell.com>
# Maintainer: Galen Abell <galen@galenabell.com>
pkgname=pre-commit
pkgver=2.15.0
pkgrel=0
pkgdesc="framework for managing and maintaining multi-language pre-commit hooks"
url="https://pre-commit.com"
arch="noarch !mips64" # blocked by npm
license="MIT"
depends="
python3
py3-cfgv
py3-identify
py3-nodeenv
py3-yaml
py3-toml
py3-virtualenv
"
makedepends="py3-setuptools"
checkdepends="
py3-pytest
py3-pytest-env
py3-re-assert
py3-distlib
ruby
npm
git
"
options="net"
source="$pkgname-$pkgver.tar.gz::https://github.com/pre-commit/pre-commit/archive/refs/tags/v$pkgver.tar.gz
fix-importlib-metadata.patch
"
prepare() {
default_prepare
sed -i "s|%%PKGVER%%|'$pkgver'|g" pre_commit/constants.py
}
build() {
python3 setup.py build
}
check() {
export PYTHONPATH="."
# setup for some of the integration tests
git init
git config user.email "test@alpinelinux.org"
git config user.name "Alpine Linux"
export GIT_AUTHOR_NAME="Alpine Linux"
export GIT_COMMITTER_NAME="Alpine Linux"
export GIT_AUTHOR_EMAIL="test@alpinelinux.org"
export GIT_COMMITTER_EMAIL="test@alpinelinux.org"
export PRE_COMMIT_NO_CONCURRENCY=1
# skip some of the tests since they depend on non-packaged tools
PYTHONPATH="$PWD"/build/lib pytest -v \
--ignore tests/repository_test.py \
--deselect tests/languages/ruby_test.py::test_install_ruby_with_version \
--deselect tests/commands/install_uninstall_test.py::test_installed_from_venv
}
package() {
python3 setup.py install --prefix=/usr --root="$pkgdir"
}
sha512sums="
b87985aa625509d7a21e31e5774f259c264ec74fef88fc5e290cbac0326cdbadc37ab54b5bf3048d815cf9bc6d4adb71619fcb84c955c1bc9741da8dfd34251c pre-commit-2.15.0.tar.gz
f89d337677d0dba903cb2b9441c5879ca14bd41854913b30e6a92f4310f5565f4777d4bd9a6939ce410699d0e2de40da8527d3f297a58992953c783f4139b733 fix-importlib-metadata.patch
"
|