X-Git-Url: https://git.m6w6.name/?p=m6w6%2Ftravis-pecl;a=blobdiff_plain;f=Makefile;h=e166eb8f69a5fb84204b30efdd3890ccf89e3573;hp=efe8378afc5ca7101399dc8185246c0412c7dc32;hb=8f5ffe6ca8ea6c15a2e47da5db75ca0d11acdd97;hpb=2d06b8b6eba14eb26f4e6b5d0eac19569ef1611c diff --git a/Makefile b/Makefile index efe8378..e166eb8 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ export PHP ?= 5.6 JOBS ?= 2 -PHP_MIRROR ?= http://us1.php.net/distributions/ +PHP_MIRROR ?= http://us2.php.net/distributions/ TMPDIR ?= /tmp tmpnam := $(TMPDIR)/php-$(PHP)-$(shell env |grep -E '^with_|^enable_' | tr -c '[a-zA-Z_]' -) @@ -39,15 +39,34 @@ PECL_VERSION ?= $(word 3,$(PECL_WORDS)) PECL_INI = $(with_config_file_scan_dir)/pecl.ini PECL_DIR := $(if $(filter ext ext%, $(MAKECMDGOALS)), $(curdir), $(srcdir)/pecl-$(PECL_EXTENSION)) -PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) -PHP_VERSIONS_JSON = $(srcdir)/php-versions$(PHP_VERSION_MAJOR).json -PHP_VERSION ?= $(shell test -e $(PHP_VERSIONS_JSON) && cat $(PHP_VERSIONS_JSON) | $(makdir)/php-version.php $(PHP)) +#PHP_VERSION_MAJOR = $(firstword $(subst ., ,$(PHP))) + +PHP_RELEASES = $(srcdir)/releases.tsv +PHP_VERSION ?= $(shell test -e $(PHP_RELEASES) && cat $(PHP_RELEASES) | awk -F "\t" '/^$(PHP)\t/{print $$2; exit}') + +CPPCHECK_STD ?= c89 +CPPCHECK_ENABLE ?= portability,style +CPPCHECK_EXITCODE ?= 42 +CPPCHECK_SUPPRESSIONS ?= $(makdir)/cppcheck.suppressions +CPPCHECK_INCLUDES ?= -I. $(shell test -f Makefile && awk -F= '/^CPPFLAGS|^INCLUDES/{print $$2}' $@ + curl -Ss "http://php.net/releases/index.php?json&version=7&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -Ss "http://php.net/releases/index.php?json&version=5&max=-1" | $(makdir)/php-version-url-dist.php >>$@ + curl -Ss "http://qa.php.net/api.php?type=qa-releases&format=json" | $(makdir)/php-version-url-qa.php >>$@ + ## -- PHP .PHONY: clean @@ -55,7 +74,7 @@ clean: @if test -d $(srcdir)/php-$(PHP_VERSION); then cd $(srcdir)/php-$(PHP_VERSION); make distclean || true; fi .PHONY: check -check: $(PHP_VERSIONS_JSON) +check: $(PHP_RELEASES) @if test -z "$(PHP)"; then echo "No php version specified, e.g. PHP=5.6"; exit 1; fi .PHONY: reconf @@ -71,23 +90,16 @@ php: check $(bindir)/php | $(PECL_INI) fi \ done -$(PHP_VERSIONS_JSON): $(makdir)/php-version.php | $(srcdir) - curl -Sso $@ "http://php.net/releases/index.php?json&version=$(PHP_VERSION_MAJOR)&max=-1" - -$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_VERSIONS_JSON) - if test $(PHP_VERSION) = "master"; then \ - cd $(srcdir) && git clone --depth 1 -b master https://github.com/php/php-src php-master && cd php-master && ./buildconf; \ - else \ - curl -Ss $(PHP_MIRROR)/php-$(PHP_VERSION).tar.bz2 | tar xj -C $(srcdir); \ - fi +$(srcdir)/php-$(PHP_VERSION)/configure: | $(PHP_RELEASES) + cd $(srcdir) && awk -F "\t" '/^$(PHP)\t/{exit system($$3)}' <$| -$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_VERSIONS_JSON) +$(srcdir)/php-$(PHP_VERSION)/Makefile: $(srcdir)/php-$(PHP_VERSION)/configure | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && ./configure --cache-file=config.cache --prefix=$(prefix) -$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_VERSIONS_JSON) +$(srcdir)/php-$(PHP_VERSION)/sapi/cli/php: $(srcdir)/php-$(PHP_VERSION)/Makefile | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make -j $(JOBS) || make -$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_VERSIONS_JSON) +$(bindir)/php: $(srcdir)/php-$(PHP_VERSION)/sapi/cli/php | $(PHP_RELEASES) cd $(srcdir)/php-$(PHP_VERSION) && make install $(srcdir) $(extdir) $(with_config_file_scan_dir): @@ -111,8 +123,12 @@ $(PECL_INI): | $(with_config_file_scan_dir) touch $@ $(PECL_DIR)/config.m4: - mkdir -p $(PECL_DIR) - curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(PECL_DIR) + if test -z "$(PECL_VERSION)" || expr + "$(PECL_VERSION)" : "[[:digit:]]\.[[:digit:]]"; then \ + mkdir -p $(PECL_DIR); \ + curl -Ss $(PECL_MIRROR)/$(PECL_EXTENSION)$(if $(PECL_VERSION),/$(PECL_VERSION)) | tar xz --strip-components 1 -C $(PECL_DIR); \ + else \ + git clone -b $(PECL_VERSION) $$(dirname $$(git remote get-url $$(git remote)))/$(PECL_EXTENSION) $(PECL_DIR); \ + fi $(PECL_DIR)/configure: $(PECL_DIR)/config.m4 cd $(PECL_DIR) && $(bindir)/phpize @@ -140,9 +156,21 @@ ext-rm: pecl-rm ext: pecl-check pecl $(makdir)/check-packagexml.php package.xml -.PHONY: php +.PHONY: test test: php REPORT_EXIT_STATUS=1 $(bindir)/php run-tests.php -q -p $(bindir)/php --set-timeout 300 --show-diff tests pharext/%: $(PECL_INI) php | $(srcdir)/../%.ext.phar for phar in $|; do $(bindir)/php $$phar --prefix=$(prefix) --ini=$(PECL_INI); done + +## -- CPPCHECK + +$(srcdir)/cppcheck-$(CPPCHECK_VERSION): + git clone https://github.com/danmar/cppcheck.git $@ && cd $@ && git checkout $(CPPCHECK_VERSION) + +$(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION) + cd $| && make -j $(JOBS) cppcheck + +.PHONY: cppcheck +cppcheck: | $(srcdir)/cppcheck-$(CPPCHECK_VERSION)/cppcheck + $| $(CPPCHECK_ARGS) .