update php mirrors
[m6w6/travis-pecl] / Makefile
1 export
2
3 PHP ?= 7.3
4 JOBS ?= 2
5 PHP_MIRROR ?= https://php.net/distributions/
6 TMPDIR ?= /tmp
7
8 makdir := $(dir $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
9
10 ifdef TRAVIS
11 prefix ?= $(HOME)/cache/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -)
12 else
13 prefix ?= $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -)
14 endif
15 exec_prefix ?= $(prefix)
16 bindir = $(exec_prefix)/bin
17 srcdir := $(prefix)/src
18 ifdef TRAVIS_BUILD_DIR
19 curdir ?= $(TRAVIS_BUILD_DIR)
20 else
21 # CURDIR is a make builtin
22 curdir ?= $(CURDIR)
23 endif
24
25 enable_maintainer_zts ?= no
26 enable_debug ?= no
27 enable_all ?= no
28 with_config_file_scan_dir ?= $(prefix)/etc/php.d
29
30 with_php_config ?= $(bindir)/php-config
31 extdir = $(shell test -x $(with_php_config) && $(with_php_config) --extension-dir)
32
33 PECL_MIRROR ?= http://pecl.php.net/get/
34 PECL_WORDS := $(subst :, ,$(PECL))
35 PECL_EXTENSION ?= $(word 1,$(PECL_WORDS))
36 PECL_SONAME ?= $(if $(word 2,$(PECL_WORDS)),$(word 2,$(PECL_WORDS)),$(PECL_EXTENSION))
37 PECL_VERSION ?= $(word 3,$(PECL_WORDS))
38 PECL_INI = $(with_config_file_scan_dir)/pecl.ini
39 PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION)-$(PECL_VERSION))
40
41 #PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP)))
42
43 PHP_RELEASES = $(srcdir)/releases.tsv
44 PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2; exit}')
45
46 CPPCHECK_STD ?= c89
47 CPPCHECK_ENABLE ?= portability,style
48 CPPCHECK_EXITCODE ?= 42
49 CPPCHECK_SUPPRESSIONS ?= $(makdir)/cppcheck.suppressions
50 CPPCHECK_INCLUDES ?= -I. $(shell test -f Makefile && awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}' <Makefile)
51 CPPCHECK_VERSION ?= 1.82
52 CPPCHECK_ARGS ?= -v -j $(JOBS) --std=$(CPPCHECK_STD) --enable=$(CPPCHECK_ENABLE) --error-exitcode=$(CPPCHECK_EXITCODE) --suppressions-list=$(CPPCHECK_SUPPRESSIONS) $(CPPCHECK_INCLUDES)
53
54 .SUFFIXES:
55
56 .PHONY: all
57 all: php
58
59 .PHONY: versions
60 versions: $(PHP_RELEASES)
61 grep "^$(PHP)" $< | cut -f1-2
62
63 $(PHP_RELEASES): $(makdir)/php-version-url-dist.php $(makdir)/php-version-url-qa.php | $(srcdir)
64 cd $(makdir) && printf "master\tmaster\t%s/fetch-master.sh\n" $$(pwd) >$@
65 curl -sSL "https://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@
66 curl -sSL "https://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@
67 curl -sSL "https://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@
68
69 ## -- PHP
70
71 .PHONY: clean
72 clean:
73 @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi
74
75 .PHONY: check
76 check: $(PHP_RELEASES)
77 @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi
78 if test -d $(srcdir)/php-$(PHP_VERSION)/.git; then cd $(srcdir)/php-$(PHP_VERSION)/; git pull; fi
79
80 .PHONY: reconf
81 reconf: check $(srcdir)/php-$(PHP_VERSION)/configure
82 cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) && rm -f sapi/cli/php
83
84 .PHONY: php
85 php: check $(bindir)/php | $(PECL_INI)
86 -for EXT_SONAME in $(extdir)/*.so; do \
87 EXT_SONAME=$$(basename $$EXT_SONAME); \
88 if test "$$EXT_SONAME" != "*.so" && ! grep -q extension=$$EXT_SONAME $(PECL_INI); then \
89 echo extension=$$EXT_SONAME >> $(PECL_INI); \
90 fi \
91 done
92
93 $(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES)
94 cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$|
95
96 $(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_RELEASES)
97 cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix)
98
99 $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_RELEASES)
100 cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make
101
102 $(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES)
103 cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) install INSTALL=install
104
105 $(srcdir) $(extdir) $(with_config_file_scan_dir):
106 mkdir -p $@
107
108 ## -- PECL
109
110 .PHONY: pecl-check
111 pecl-check:
112 @if test -z "$(PECL)"; then echo "No pecl extension specified, e.g. PECL=pecl_http:http"; exit 1; fi
113 if test -d $(PECL_DIR)/.git; then cd $(PECL_DIR)/; git pull; fi
114
115 .PHONY: pecl-clean
116 pecl-clean:
117 @if test -d $(PECL_DIR); then cd $(PECL_DIR); make distclean || true; fi
118
119 .PHONY: pecl-rm
120 pecl-rm:
121 rm -f $(extdir)/$(PECL_SONAME).so
122
123 $(PECL_INI): | $(with_config_file_scan_dir)
124 touch $@
125
126 $(PECL_DIR)/config.m4:
127 if test "$(PECL_VERSION)" = "master"; then \
128 if test -d $(PECL_DIR); then \
129 cd $(PECL_DIR); \
130 git pull; \
131 else \
132 git clone -b $(PECL_VERSION) \
133 $$(dirname $$(git remote get-url $$(git remote)))/$(PECL_EXTENSION) $(PECL_DIR); \
134 fi; \
135 else \
136 mkdir -p $(PECL_DIR); \
137 curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) \
138 | tar xz --strip-components 1 -C $(PECL_DIR); \
139 fi
140
141 $(PECL_DIR)/configure: $(PECL_DIR)/config.m4
142 cd $(PECL_DIR) && $(bindir)/phpize
143
144 $(PECL_DIR)/Makefile: $(PECL_DIR)/configure
145 cd $(PECL_DIR) && ./configure --cache-file=config.cache
146
147 $(PECL_DIR)/.libs/$(PECL_SONAME).so: $(PECL_DIR)/Makefile
148 cd $(PECL_DIR) && make -j $(JOBS) || make
149
150 $(extdir)/$(PECL_SONAME).so: $(PECL_DIR)/.libs/$(PECL_SONAME).so $(extdir)
151 cd $(PECL_DIR) && make -j $(JOBS) install INSTALL=install
152
153 .PHONY: pecl
154 pecl: pecl-check php $(extdir)/$(PECL_SONAME).so | $(PECL_INI)
155 grep -q extension=$(PECL_SONAME).so $(PECL_INI) || echo extension=$(PECL_SONAME).so >> $(PECL_INI)
156
157 .PHONY: ext-clean
158 ext-clean: pecl-clean
159
160 .PHONY: ext-rm
161 ext-rm: pecl-rm
162
163 .PHONY: ext
164 ext: pecl-check pecl
165 $(makdir)/check-packagexml.php package.xml
166
167 .PHONY: test
168 test: php
169 REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests
170
171 pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar
172 for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done
173
174 ## -- CPPCHECK
175
176 $(srcdir)/cppcheck-$(CPPCHECK_VERSION):
177 git clone https://github.com/danmar/cppcheck.git $@ && cd $@ && git checkout $(CPPCHECK_VERSION)
178
179 $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)
180 cd $| && make -j $(JOBS) cppcheck
181
182 .PHONY: cppcheck
183 cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck
184 $| $(CPPCHECK_ARGS) .