-
-
Notifications
You must be signed in to change notification settings - Fork 269
/
Makefile
71 lines (57 loc) · 1.98 KB
/
Makefile
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
71
.ONESHELL:
SHELL := bash
# this is the upstream libcurl-impersonate version
VERSION := 0.8.2
CURL_VERSION := curl-8_7_1
$(CURL_VERSION):
curl -L https://github.com/curl/curl/archive/$(CURL_VERSION).zip -o curl.zip
unzip -q -o curl.zip
mv curl-$(CURL_VERSION) $(CURL_VERSION)
curl-impersonate-$(VERSION)/chrome/patches: $(CURL_VERSION)
curl -L "https://github.com/lexiforest/curl-impersonate/archive/refs/tags/v$(VERSION).tar.gz" \
-o "curl-impersonate-$(VERSION).tar.gz"
tar -xf curl-impersonate-$(VERSION).tar.gz
.preprocessed: curl-impersonate-$(VERSION)/chrome/patches
cd $(CURL_VERSION)
for p in $</curl-*.patch; do patch -p1 < ../$$p; done
# Re-generate the configure script
autoreconf -fi
mkdir -p ../include/curl
cp -R include/curl/* ../include/curl/
# Sentinel files: https://tech.davis-hansson.com/p/make/
touch .preprocessed
local-curl: $(CURL_VERSION)
cp /usr/local/lib/libcurl-impersonate-chrome* /Users/runner/work/_temp/install/lib/
cd $(CURL_VERSION)
for p in ../curl-impersonate/chrome/patches/curl-*.patch; do patch -p1 < ../$$p; done
# Re-generate the configure script
autoreconf -fi
mkdir -p ../include/curl
cp -R include/curl/* ../include/curl/
# Sentinel files: https://tech.davis-hansson.com/p/make/
touch .preprocessed
gen-const: .preprocessed
python scripts/generate_consts.py $(CURL_VERSION)
preprocess: .preprocessed
@echo generating patched libcurl header files
install-editable: .preprocessed
pip install -e .
build: .preprocessed
rm -rf dist/
pip install build
python -m build --wheel
lint:
ruff check
ruff format --diff
mypy --install-types --non-interactive .
format:
ruff check --fix
ruff format
test:
python -bb -m pytest tests/unittest
clean:
rm -rf build/ dist/ curl_cffi.egg-info/ $(CURL_VERSION)/ curl-impersonate-$(VERSION)/
rm -rf curl_cffi/*.o curl_cffi/*.so curl_cffi/_wrapper.c
rm -rf .preprocessed $(CURL_VERSION).tar.xz curl-impersonate-$(VERSION).tar.gz
rm -rf include/
.PHONY: clean build test install-editable preprocess gen-const