diff options
Diffstat (limited to 'www/py-searxng-devel')
-rw-r--r-- | www/py-searxng-devel/Makefile | 11 | ||||
-rw-r--r-- | www/py-searxng-devel/distinfo | 6 | ||||
-rw-r--r-- | www/py-searxng-devel/files/patch-searx_version.py | 18 |
3 files changed, 28 insertions, 7 deletions
diff --git a/www/py-searxng-devel/Makefile b/www/py-searxng-devel/Makefile index cfa0dc75f451..a2f8006c78c2 100644 --- a/www/py-searxng-devel/Makefile +++ b/www/py-searxng-devel/Makefile @@ -1,5 +1,5 @@ PORTNAME= searxng -DISTVERSION= 20250603 +DISTVERSION= 20250819 CATEGORIES= www python PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} PKGNAMESUFFIX= -devel @@ -23,7 +23,7 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=0:devel/py-babel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}isodate>=0:devel/py-isodate@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}Jinja2>=0:devel/py-Jinja2@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}langdetect>=0:textproc/py-langdetect@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}lxml>=0:devel/py-lxml@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}lxml5>=0:devel/py-lxml5@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}markdown-it-py>=0:textproc/py-markdown-it-py@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}msgspec>=0:devel/py-msgspec@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}pygments>=0:textproc/py-pygments@${PY_FLAVOR} \ @@ -34,12 +34,15 @@ RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}Babel>=0:devel/py-babel@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}requests>=0:www/py-requests@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}setproctitle>=0:devel/py-setproctitle@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}tomli>=0:textproc/py-tomli@${PY_FLAVOR} \ ${PYTHON_PKGNAMEPREFIX}typer>=0:devel/py-typer@${PY_FLAVOR} \ - ${PYTHON_PKGNAMEPREFIX}uvloop>=0:devel/py-uvloop@${PY_FLAVOR} + ${PYTHON_PKGNAMEPREFIX}uvloop>=0:devel/py-uvloop@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}valkey>=0:databases/py-valkey@${PY_FLAVOR} \ + ${PYTHON_PKGNAMEPREFIX}whitenoise>=0:www/py-whitenoise@${PY_FLAVOR} USES= python USE_GITHUB= yes -GH_TAGNAME= eb36de8d914aee7d3e9087b9046b83de705233dd +GH_TAGNAME= 25647c20d1904840d089892bb118390f46c66984 USE_PYTHON= autoplist distutils USE_RC_SUBR= searxng diff --git a/www/py-searxng-devel/distinfo b/www/py-searxng-devel/distinfo index 4dd6768f5703..aa0baa156201 100644 --- a/www/py-searxng-devel/distinfo +++ b/www/py-searxng-devel/distinfo @@ -1,3 +1,3 @@ -TIMESTAMP = 1749083075 -SHA256 (searxng-searxng-20250603-eb36de8d914aee7d3e9087b9046b83de705233dd_GH0.tar.gz) = 3e9767f47d435cc9635858f9a04bcccc569fab663b266afd96f2ad291576e901 -SIZE (searxng-searxng-20250603-eb36de8d914aee7d3e9087b9046b83de705233dd_GH0.tar.gz) = 5416813 +TIMESTAMP = 1755629208 +SHA256 (searxng-searxng-20250819-25647c20d1904840d089892bb118390f46c66984_GH0.tar.gz) = 9fa3831333cddfc27de8d5d1a20643669bbb4c2624133493ba6b40bbe13d5097 +SIZE (searxng-searxng-20250819-25647c20d1904840d089892bb118390f46c66984_GH0.tar.gz) = 5839091 diff --git a/www/py-searxng-devel/files/patch-searx_version.py b/www/py-searxng-devel/files/patch-searx_version.py new file mode 100644 index 000000000000..7b9b32f09608 --- /dev/null +++ b/www/py-searxng-devel/files/patch-searx_version.py @@ -0,0 +1,18 @@ +--- searx/version.py.orig 2025-08-19 19:13:19 UTC ++++ searx/version.py +@@ -91,15 +91,6 @@ def get_information(): + git_url = GIT_URL + git_branch = GIT_BRANCH + +- try: +- version_string, version_tag, docker_tag = get_git_version() +- except subprocess.CalledProcessError as ex: +- logger.error("Error while getting the version: %s", ex.stderr) +- try: +- git_url, git_branch = get_git_url_and_branch() +- except subprocess.CalledProcessError as ex: +- logger.error("Error while getting the git URL & branch: %s", ex.stderr) +- + return version_string, version_tag, docker_tag, git_url, git_branch + + |