python3-GitPython: update to 3.1.27.

This commit is contained in:
Jan Christian Grünhage 2022-04-09 11:31:20 +02:00 committed by Leah Neukirchen
parent 9d7fd42a20
commit 2e7e1a640b

View file

@ -1,20 +1,15 @@
# Template file for 'python3-GitPython' # Template file for 'python3-GitPython'
pkgname=python3-GitPython pkgname=python3-GitPython
version=3.1.26 version=3.1.27
revision=1 revision=1
wrksrc="GitPython-${version}" wrksrc="GitPython-${version}"
build_style=python3-module build_style=python3-module
make_check_args="--deselect test/test_base.py::TestBase::test_with_rw_remote_and_rw_repo make_check_args="--deselect test/test_base.py::TestBase::test_with_rw_remote_and_rw_repo
--deselect test/test_git.py::TestGit::test_refresh --deselect test/test_git.py::TestGit::test_refresh
--deselect test/test_remote.py::TestRemote::test_base --deselect test/test_remote.py::TestRemote::test_base
--deselect test/test_diff.py::TestDiff::test_diff_with_staged_file --deselect test/test_git.py::TestGit::test_call_process_calls_execute"
--deselect test/test_docs.py::Tutorials::test_init_repo_object
--deselect test/test_docs.py::Tutorials::test_references_and_objects
--deselect test/test_refs.py::TestRefs::test_head_reset
--deselect test/test_repo.py::TestRepo::test_rebasing
--deselect test/test_submodule.py::TestSubmodule::test_git_submodules_and_add_sm_with_new_commit"
hostmakedepends="python3-setuptools" hostmakedepends="python3-setuptools"
depends="python3-gitdb" depends="python3-gitdb git"
checkdepends="${depends} python3-pytest-sugar python3-coverage python3-pytest-cov python3-toml checkdepends="${depends} python3-pytest-sugar python3-coverage python3-pytest-cov python3-toml
python3-mypy flake8 python3-ddt git python3-virtualenv" python3-mypy flake8 python3-ddt git python3-virtualenv"
short_desc="Library to interact with Git repositories (Python3)" short_desc="Library to interact with Git repositories (Python3)"
@ -22,7 +17,7 @@ maintainer="Jan Christian Grünhage <jan.christian@gruenhage.xyz>"
license="BSD-3-Clause" license="BSD-3-Clause"
homepage="https://github.com/gitpython-developers/GitPython" homepage="https://github.com/gitpython-developers/GitPython"
distfiles="https://github.com/gitpython-developers/GitPython/archive/refs/tags/${version}.tar.gz" distfiles="https://github.com/gitpython-developers/GitPython/archive/refs/tags/${version}.tar.gz"
checksum=47c82a6370a186bd426be2e8435ddbb60b254fb86f3fad2ed4028e6237e9d3d1 checksum=2ec5341b54aed19424696c933d705ddedcf2fe45f89d2fd0dbed06087ac5ed3c
post_install() { post_install() {
vlicense LICENSE vlicense LICENSE
@ -34,4 +29,7 @@ pre_check() {
git checkout ${version} git checkout ${version}
yes | ./init-tests-after-clone.sh yes | ./init-tests-after-clone.sh
export GIT_PYTHON_TEST_GIT_REPO_BASE="${PWD}" export GIT_PYTHON_TEST_GIT_REPO_BASE="${PWD}"
git config --global user.email "void@example.com"
git config --global user.name "void"
} }