2019-11-28 18:54:57 +00:00
|
|
|
# -*- coding: utf-8; mode: makefile-gmake -*-
|
|
|
|
|
2019-12-04 15:48:36 +00:00
|
|
|
export GIT_URL=https://github.com/asciimoo/searx
|
|
|
|
export SEARX_URL=https://searx.me
|
2019-12-13 15:08:34 +00:00
|
|
|
export DOCS_URL=https://asciimoo.github.io/searx
|
2019-12-04 15:48:36 +00:00
|
|
|
|
2019-11-28 18:54:57 +00:00
|
|
|
PYOBJECTS = searx
|
2019-12-12 11:10:32 +00:00
|
|
|
DOC = docs
|
2019-11-28 18:54:57 +00:00
|
|
|
PY_SETUP_EXTRAS ?= \[test\]
|
|
|
|
|
2019-12-18 15:11:05 +00:00
|
|
|
PYDIST=./dist/py
|
|
|
|
PYBUILD=./build/py
|
|
|
|
|
2019-11-28 18:54:57 +00:00
|
|
|
include utils/makefile.include
|
|
|
|
include utils/makefile.python
|
2019-12-12 11:10:32 +00:00
|
|
|
include utils/makefile.sphinx
|
2019-11-28 18:54:57 +00:00
|
|
|
|
|
|
|
all: clean install
|
|
|
|
|
|
|
|
PHONY += help
|
|
|
|
help:
|
2019-11-28 19:05:29 +00:00
|
|
|
@echo ' test - run developer tests'
|
2019-12-12 11:10:32 +00:00
|
|
|
@echo ' docs - build documentation'
|
|
|
|
@echo ' docs-live - autobuild HTML documentation while editing'
|
2019-11-28 18:54:57 +00:00
|
|
|
@echo ' run - run developer instance'
|
|
|
|
@echo ' install - developer install (./local)'
|
|
|
|
@echo ' uninstall - uninstall (./local)'
|
2019-12-12 13:15:41 +00:00
|
|
|
@echo ' gh-pages - build docs & deploy on gh-pages branch'
|
2019-12-18 15:11:05 +00:00
|
|
|
@echo ' clean - drop builds and environments'
|
2020-03-01 06:56:46 +00:00
|
|
|
@echo ' project - re-build generic files of the searx project'
|
2020-03-30 10:23:01 +00:00
|
|
|
@echo ' buildenv - re-build environment files (aka brand)'
|
2020-03-25 13:09:47 +00:00
|
|
|
@echo ' themes - re-build build the source of the themes'
|
2020-03-25 13:50:39 +00:00
|
|
|
@echo ' docker - build Docker image'
|
2020-03-25 15:38:52 +00:00
|
|
|
@echo ' node.env - download & install npm dependencies locally'
|
2019-11-28 18:54:57 +00:00
|
|
|
@echo ''
|
|
|
|
@$(MAKE) -s -f utils/makefile.include make-help
|
|
|
|
@echo ''
|
|
|
|
@$(MAKE) -s -f utils/makefile.python python-help
|
|
|
|
|
|
|
|
PHONY += install
|
2020-03-30 10:23:01 +00:00
|
|
|
install: buildenv pyenvinstall
|
2019-11-28 18:54:57 +00:00
|
|
|
|
|
|
|
PHONY += uninstall
|
|
|
|
uninstall: pyenvuninstall
|
|
|
|
|
|
|
|
PHONY += clean
|
2020-03-26 17:41:45 +00:00
|
|
|
clean: pyclean node.clean test.clean
|
2019-11-28 18:54:57 +00:00
|
|
|
$(call cmd,common_clean)
|
|
|
|
|
|
|
|
PHONY += run
|
2020-03-30 10:23:01 +00:00
|
|
|
run: buildenv pyenvinstall
|
2019-11-28 18:54:57 +00:00
|
|
|
$(Q) ( \
|
|
|
|
sed -i -e "s/debug : False/debug : True/g" ./searx/settings.yml ; \
|
|
|
|
sleep 2 ; \
|
|
|
|
xdg-open http://127.0.0.1:8888/ ; \
|
|
|
|
sleep 3 ; \
|
|
|
|
sed -i -e "s/debug : True/debug : False/g" ./searx/settings.yml ; \
|
|
|
|
) &
|
|
|
|
$(PY_ENV)/bin/python ./searx/webapp.py
|
|
|
|
|
2019-12-12 11:10:32 +00:00
|
|
|
# docs
|
|
|
|
# ----
|
|
|
|
|
|
|
|
PHONY += docs
|
2020-03-30 10:23:01 +00:00
|
|
|
docs: buildenv pyenvinstall sphinx-doc
|
2019-12-12 11:10:32 +00:00
|
|
|
$(call cmd,sphinx,html,docs,docs)
|
|
|
|
|
|
|
|
PHONY += docs-live
|
2020-03-30 10:23:01 +00:00
|
|
|
docs-live: buildenv pyenvinstall sphinx-live
|
2019-12-12 11:10:32 +00:00
|
|
|
$(call cmd,sphinx_autobuild,html,docs,docs)
|
|
|
|
|
2019-12-13 11:58:46 +00:00
|
|
|
$(GH_PAGES)::
|
|
|
|
@echo "doc available at --> $(DOCS_URL)"
|
2019-12-12 11:10:32 +00:00
|
|
|
|
2020-03-01 06:56:46 +00:00
|
|
|
# update project files
|
|
|
|
# --------------------
|
|
|
|
|
2020-03-30 10:23:01 +00:00
|
|
|
PHONY += project engines.languages useragents.update buildenv
|
2020-03-01 06:56:46 +00:00
|
|
|
|
2020-03-30 10:23:01 +00:00
|
|
|
project: buildenv useragents.update engines.languages
|
2020-03-01 06:56:46 +00:00
|
|
|
|
2020-03-26 12:32:08 +00:00
|
|
|
engines.languages: pyenvinstall
|
|
|
|
$(Q)echo "fetch languages .."
|
|
|
|
$(Q)$(PY_ENV_ACT); python utils/fetch_languages.py
|
|
|
|
$(Q)echo "update searx/data/engines_languages.json"
|
|
|
|
$(Q)mv engines_languages.json searx/data/engines_languages.json
|
|
|
|
$(Q)echo "update searx/languages.py"
|
|
|
|
$(Q)mv languages.py searx/languages.py
|
|
|
|
|
|
|
|
useragents.update: pyenvinstall
|
|
|
|
$(Q)echo "Update searx/data/useragents.json with the most recent versions of Firefox."
|
|
|
|
$(Q)$(PY_ENV_ACT); python utils/fetch_firefox_version.py
|
2020-03-01 06:56:46 +00:00
|
|
|
|
2020-03-30 10:23:01 +00:00
|
|
|
buildenv:
|
2020-03-25 10:49:33 +00:00
|
|
|
$(Q)echo "build searx/brand.py"
|
|
|
|
$(Q)echo "GIT_URL = '$(GIT_URL)'" > searx/brand.py
|
2020-03-26 09:58:25 +00:00
|
|
|
$(Q)echo "ISSUE_URL = 'https://github.com/asciimoo/searx/issues'" >> searx/brand.py
|
2020-03-25 10:49:33 +00:00
|
|
|
$(Q)echo "SEARX_URL = '$(SEARX_URL)'" >> searx/brand.py
|
|
|
|
$(Q)echo "DOCS_URL = '$(DOCS_URL)'" >> searx/brand.py
|
|
|
|
$(Q)echo "PUBLIC_INSTANCES = 'https://searx.space'" >> searx/brand.py
|
2020-03-29 09:41:59 +00:00
|
|
|
$(Q)echo "build utils/brand.env"
|
|
|
|
$(Q)echo "export GIT_URL='$(GIT_URL)'" > utils/brand.env
|
|
|
|
$(Q)echo "export ISSUE_URL='https://github.com/asciimoo/searx/issues'" >> utils/brand.env
|
|
|
|
$(Q)echo "export SEARX_URL='$(SEARX_URL)'" >> utils/brand.env
|
|
|
|
$(Q)echo "export DOCS_URL='$(DOCS_URL)'" >> utils/brand.env
|
|
|
|
$(Q)echo "export PUBLIC_INSTANCES='https://searx.space'" >> utils/brand.env
|
|
|
|
|
2020-03-25 10:49:33 +00:00
|
|
|
|
2020-03-25 15:38:52 +00:00
|
|
|
# node / npm
|
|
|
|
# ----------
|
|
|
|
|
2020-03-30 10:23:01 +00:00
|
|
|
node.env: buildenv
|
2020-03-25 15:38:52 +00:00
|
|
|
$(Q)./manage.sh npm_packages
|
|
|
|
|
|
|
|
node.clean:
|
|
|
|
$(Q)echo "CLEAN locally installed npm dependencies"
|
|
|
|
$(Q)rm -rf \
|
|
|
|
./node_modules \
|
|
|
|
./package-lock.json \
|
|
|
|
./searx/static/themes/oscar/package-lock.json \
|
|
|
|
./searx/static/themes/oscar/node_modules \
|
|
|
|
./searx/static/themes/simple/package-lock.json \
|
|
|
|
./searx/static/themes/simple/node_modules
|
|
|
|
|
2020-03-25 13:09:47 +00:00
|
|
|
# build themes
|
|
|
|
# ------------
|
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
PHONY += themes.bootstrap themes themes.oscar themes.simple themes.legacy themes.courgette themes.pixart
|
2020-03-30 10:23:01 +00:00
|
|
|
themes: buildenv themes.bootstrap themes.oscar themes.simple themes.legacy themes.courgette themes.pixart
|
2020-03-25 13:09:47 +00:00
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
quiet_cmd_lessc = LESSC $3
|
|
|
|
cmd_lessc = PATH="$$(npm bin):$$PATH" \
|
|
|
|
lessc --clean-css="--s1 --advanced --compatibility=ie9" "searx/static/$2" "searx/static/$3"
|
2020-03-25 13:09:47 +00:00
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
quiet_cmd_grunt = GRUNT $2
|
|
|
|
cmd_grunt = PATH="$$(npm bin):$$PATH" \
|
|
|
|
grunt --gruntfile "$2"
|
2020-03-26 17:00:07 +00:00
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.oscar:
|
|
|
|
$(Q)echo '[!] build oscar theme'
|
|
|
|
$(call cmd,grunt,searx/static/themes/oscar/gruntfile.js)
|
2020-03-26 17:00:07 +00:00
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.simple:
|
|
|
|
$(Q)echo '[!] build simple theme'
|
|
|
|
$(call cmd,grunt,searx/static/themes/simple/gruntfile.js)
|
2020-03-26 17:00:07 +00:00
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.legacy:
|
|
|
|
$(Q)echo '[!] build legacy theme'
|
2020-03-26 17:00:07 +00:00
|
|
|
$(call cmd,lessc,themes/legacy/less/style-rtl.less,themes/legacy/css/style-rtl.css)
|
|
|
|
$(call cmd,lessc,themes/legacy/less/style.less,themes/legacy/css/style.css)
|
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.courgette:
|
|
|
|
$(Q)echo '[!] build courgette theme'
|
2020-03-26 17:00:07 +00:00
|
|
|
$(call cmd,lessc,themes/courgette/less/style.less,themes/courgette/css/style.css)
|
|
|
|
$(call cmd,lessc,themes/courgette/less/style-rtl.less,themes/courgette/css/style-rtl.css)
|
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.pixart:
|
|
|
|
$(Q)echo '[!] build pixart theme'
|
2020-03-26 17:00:07 +00:00
|
|
|
$(call cmd,lessc,themes/pix-art/less/style.less,themes/pix-art/css/style.css)
|
|
|
|
|
2020-03-29 09:29:57 +00:00
|
|
|
themes.bootstrap:
|
2020-03-26 17:00:07 +00:00
|
|
|
$(call cmd,lessc,less/bootstrap/bootstrap.less,css/bootstrap.min.css)
|
|
|
|
|
|
|
|
|
2020-03-25 13:50:39 +00:00
|
|
|
# docker
|
|
|
|
# ------
|
|
|
|
|
|
|
|
PHONY += docker
|
2020-03-30 10:23:01 +00:00
|
|
|
docker: buildenv
|
2020-03-25 13:50:39 +00:00
|
|
|
$(Q)./manage.sh docker_build
|
|
|
|
|
2020-03-31 09:59:54 +00:00
|
|
|
docker.push: buildenv
|
|
|
|
$(Q)./manage.sh docker_build push
|
|
|
|
|
2020-03-26 17:41:45 +00:00
|
|
|
# gecko
|
|
|
|
# -----
|
|
|
|
|
|
|
|
PHONY += gecko.driver
|
|
|
|
gecko.driver:
|
|
|
|
$(PY_ENV_ACT); ./manage.sh install_geckodriver
|
2020-03-25 13:50:39 +00:00
|
|
|
|
2019-11-28 19:05:29 +00:00
|
|
|
# test
|
|
|
|
# ----
|
|
|
|
|
2020-03-26 17:41:45 +00:00
|
|
|
PHONY += test test.pylint test.pep8 test.unit test.coverage test.robot
|
2019-11-28 19:05:29 +00:00
|
|
|
|
2020-03-30 10:23:01 +00:00
|
|
|
test: buildenv test.pylint test.pep8 test.unit gecko.driver test.robot
|
2020-02-23 19:52:00 +00:00
|
|
|
|
2020-04-01 17:20:52 +00:00
|
|
|
ifeq ($(PY),2)
|
|
|
|
test.pylint:
|
|
|
|
@echo "LINT skip liniting py2"
|
|
|
|
else
|
2019-11-28 19:07:10 +00:00
|
|
|
# TODO: balance linting with pylint
|
2020-02-24 07:14:09 +00:00
|
|
|
test.pylint: pyenvinstall
|
2020-03-26 17:41:45 +00:00
|
|
|
$(call cmd,pylint,\
|
|
|
|
searx/preferences.py \
|
|
|
|
searx/testing.py \
|
|
|
|
)
|
2020-04-01 17:20:52 +00:00
|
|
|
endif
|
2020-03-26 17:41:45 +00:00
|
|
|
|
|
|
|
# ignored rules:
|
|
|
|
# E402 module level import not at top of file
|
|
|
|
# W503 line break before binary operator
|
2019-11-28 19:05:29 +00:00
|
|
|
|
|
|
|
test.pep8: pyenvinstall
|
2020-03-26 17:41:45 +00:00
|
|
|
@echo "TEST pep8"
|
|
|
|
$(Q)$(PY_ENV_ACT); pep8 --exclude=searx/static --max-line-length=120 --ignore "E402,W503" searx tests
|
2019-11-28 19:05:29 +00:00
|
|
|
|
|
|
|
test.unit: pyenvinstall
|
2020-03-26 17:41:45 +00:00
|
|
|
@echo "TEST tests/unit"
|
|
|
|
$(Q)$(PY_ENV_ACT); python -m nose2 -s tests/unit
|
|
|
|
|
|
|
|
test.coverage: pyenvinstall
|
|
|
|
@echo "TEST unit test coverage"
|
|
|
|
$(Q)$(PY_ENV_ACT); \
|
|
|
|
python -m nose2 -C --log-capture --with-coverage --coverage searx -s tests/unit \
|
|
|
|
&& coverage report \
|
|
|
|
&& coverage html \
|
|
|
|
|
|
|
|
test.robot: pyenvinstall gecko.driver
|
|
|
|
@echo "TEST robot"
|
|
|
|
$(Q)$(PY_ENV_ACT); PYTHONPATH=. python searx/testing.py robot
|
|
|
|
|
|
|
|
test.clean:
|
|
|
|
@echo "CLEAN intermediate test stuff"
|
|
|
|
$(Q)rm -rf geckodriver.log .coverage coverage/
|
2019-11-28 19:05:29 +00:00
|
|
|
|
2020-04-01 13:45:01 +00:00
|
|
|
|
|
|
|
# travis
|
|
|
|
# ------
|
|
|
|
|
|
|
|
travis.codecov:
|
|
|
|
$(Q)$(PY_ENV_BIN)/python -m pip install codecov
|
|
|
|
|
2019-11-28 18:54:57 +00:00
|
|
|
.PHONY: $(PHONY)
|