1
1
# Some simple testing tasks (sorry, UNIX only).
2
2
3
- to-md5 = $1 $(addsuffix .md5,$1)
3
+ to-hash-one = $(dir $1) .hash/$(addsuffix .hash,$(notdir $1) )
4
+ to-hash = $(foreach fname,$1,$(call to-hash-one,$(fname ) ) )
4
5
5
- CYS = $(wildcard aiohttp/* .pyx) $(wildcard aiohttp/* .pyi) $(wildcard aiohttp/* .pxd)
6
- PYXS = $(wildcard aiohttp/* .pyx)
7
- CS = $(wildcard aiohttp/* .c)
8
- PYS = $(wildcard aiohttp/* .py)
9
- REQS = $(wildcard requirements/* .txt)
10
- SRC = aiohttp examples tests setup.py
6
+ CYS : = $(wildcard aiohttp/* .pyx) $(wildcard aiohttp/* .pyi) $(wildcard aiohttp/* .pxd)
7
+ PYXS : = $(wildcard aiohttp/* .pyx)
8
+ CS : = $(wildcard aiohttp/* .c)
9
+ PYS : = $(wildcard aiohttp/* .py)
10
+ REQS : = $(wildcard requirements/* .txt)
11
+ ALLS := $( sort $( CYS ) $( CS ) $( PYS ) $( REQS ) )
11
12
12
13
.PHONY : all
13
14
all : test
14
15
15
- # Recipe from https://www.cmcrossroads.com/article/rebuilding-when-files-checksum-changes
16
- % .md5 : FORCE
17
- @$(if $(filter-out $(shell cat $@ 2>/dev/null) ,$(shell md5sum $* ) ) ,md5sum $* > $@ )
16
+ tst :
17
+ @echo $(call to-hash,requirements/cython.txt)
18
+ @echo $(call to-hash,aiohttp/% .pyx)
19
+
18
20
21
+ # Recipe from https://www.cmcrossroads.com/article/rebuilding-when-files-checksum-changes
19
22
FORCE :
20
23
24
+ # check_sum.py works perfectly fine but slow when called for every file from $(ALLS)
25
+ # (perhaps even several times for each file).
26
+ # That is why much less readable but faster solution exists
27
+ ifneq (, $(shell which sha256sum) )
28
+ % .hash : FORCE
29
+ $(eval $@ _ABS := $(abspath $@ ) )
30
+ $(eval $@ _NAME := $($@ _ABS) )
31
+ $(eval $@ _HASHDIR := $(dir $($@ _ABS) ) )
32
+ $(eval $@ _TMP := $($@ _HASHDIR) ../$(notdir $($@ _ABS) ) )
33
+ $(eval $@ _ORIG := $(subst /.hash/../,/,$(basename $($@ _TMP) ) ) )
34
+ @# echo ==== $($@_ABS) $($@_HASHDIR) $($@_NAME) $($@_TMP) $($@_ORIG)
35
+ @if ! (sha256sum --check $( $@ _ABS) 1> /dev/null 2> /dev/null); then \
36
+ mkdir -p $($@ _HASHDIR) ; \
37
+ echo re-hash $($@ _ORIG) ; \
38
+ sha256sum $($@ _ORIG) > $($@ _ABS) ; \
39
+ fi
40
+ else
41
+ % .hash : FORCE
42
+ @./tools/check_sum.py $@ # --debug
43
+ endif
44
+
21
45
# Enumerate intermediate files to don't remove them automatically.
22
- # The target must exist, no need to execute it.
23
- .PHONY : _keep-intermediate-files
24
- _keep-intermediate-files : $(addsuffix .md5,$(CYS ) ) \
25
- $(addsuffix .md5,$(CS))\
26
- $(addsuffix .md5,$(PYS))\
27
- $(addsuffix .md5,$(REQS))
28
-
29
- .install-cython : $(call to-md5,requirements/cython.txt)
46
+ .SECONDARY : $(call to-hash,$(ALLS ) )
47
+
48
+
49
+ .install-cython : $(call to-hash,requirements/cython.txt)
30
50
pip install -r requirements/cython.txt
31
51
@touch .install-cython
32
52
33
- aiohttp/_find_header.c : $(call to-md5 ,aiohttp/hdrs.py)
53
+ aiohttp/_find_header.c : $(call to-hash ,aiohttp/hdrs.py ./tools/gen .py)
34
54
./tools/gen.py
35
55
36
56
# _find_headers generator creates _headers.pyi as well
37
- aiohttp/% .c : $(call to-md5,aiohttp/ % .pyx ) aiohttp/_find_header.c
57
+ aiohttp/% .c : aiohttp/ % .pyx $(call to-hash, $( CYS ) ) aiohttp/_find_header.c
38
58
cython -3 -o $@ $< -I aiohttp
39
59
40
60
41
61
.PHONY : cythonize
42
62
cythonize : .install-cython $(PYXS:.pyx=.c )
43
63
44
- .install-deps : .install-cython $(PYXS:.pyx=.c ) $(call to-md5 ,$(CYS ) $(REQS ) )
64
+ .install-deps : .install-cython $(PYXS:.pyx=.c ) $(call to-hash ,$(CYS ) $(REQS ) )
45
65
pip install -r requirements/dev.txt
46
66
@touch .install-deps
47
67
@@ -56,7 +76,7 @@ fmt format:
56
76
mypy :
57
77
mypy aiohttp
58
78
59
- .develop : .install-deps $(call to-md5 ,$(PYS ) $(CYS ) $(CS ) )
79
+ .develop : .install-deps $(call to-hash ,$(PYS ) $(CYS ) $(CS ) )
60
80
pip install -e .
61
81
@touch .develop
62
82
@@ -68,16 +88,23 @@ test: .develop
68
88
vtest : .develop
69
89
@pytest -s -v
70
90
91
+ .PHONY : vvtest
92
+ vvtest : .develop
93
+ @pytest -vv
94
+
71
95
.PHONY : clean
72
96
clean :
73
97
@rm -rf ` find . -name __pycache__`
98
+ @rm -rf ` find . -name .hash`
99
+ @rm -rf ` find . -name .md5` # old styling
74
100
@rm -f ` find . -type f -name ' *.py[co]' `
75
101
@rm -f ` find . -type f -name ' *~' `
76
102
@rm -f ` find . -type f -name ' .*~' `
77
103
@rm -f ` find . -type f -name ' @*' `
78
104
@rm -f ` find . -type f -name ' #*#' `
79
105
@rm -f ` find . -type f -name ' *.orig' `
80
106
@rm -f ` find . -type f -name ' *.rej' `
107
+ @rm -f ` find . -type f -name ' *.md5' ` # old styling
81
108
@rm -f .coverage
82
109
@rm -rf htmlcov
83
110
@rm -rf build
0 commit comments