2 # This file and its contents are supplied under the terms of the
3 # Common Development and Distribution License ("CDDL"), version 1.0.
4 # You may only use this file in accordance with the terms of version
7 # A full copy of the text of the CDDL should have accompanied this
8 # source. A copy of the CDDL is also available via the Internet at
9 # http://www.illumos.org/license/CDDL.
13 # Copyright 2023 Marcel Telka
16 %patch% 01-test-requirements.patch
19 # https://github.com/gitpython-developers/GitPython/pull/1743
20 DOWNLOAD_URL='https://github.com/gitpython-developers/GitPython/archive/refs/tags/$(HUMAN_VERSION).tar.gz'
24 COMPONENT_PRE_TEST_ACTION += ( \
25 $(RM) -r $(COMPONENT_TEST_DIR)/.git-test-tree ; \
26 git clone https://github.com/gitpython-developers/GitPython.git $(COMPONENT_TEST_DIR)/.git-test-tree ; \
27 cd $(COMPONENT_TEST_DIR)/.git-test-tree ; \
28 git tag __testing_point__ ; \
29 git checkout master ; \
30 git reset --hard HEAD~1 ; \
31 git reset --hard HEAD~1 ; \
32 git reset --hard HEAD~1 ; \
33 git reset --hard __testing_point__ ; \
34 git submodule update --init --recursive ; \
36 COMPONENT_TEST_ENV += GIT_PYTHON_TEST_GIT_REPO_BASE=$(COMPONENT_TEST_DIR)/.git-test-tree
38 # Testing is using /tmp/repos. We need to make sure it does not exists to get
39 # consistent test results.
40 COMPONENT_PRE_TEST_ACTION += $(RM) -r /tmp/repos ;
42 # Force no colors to override defaults in tox.ini
43 TOX_POSARGS += --color=no
45 # Manually added test dependencies
46 TEST_REQUIRED_PACKAGES += developer/versioning/git