This is an automated email from the git hooks/post-receive script.

jgart pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 67bd4c0b3b gnu: Remove searx.
67bd4c0b3b is described below

commit 67bd4c0b3b67bc82c0d4ad6892b944e5d9d75535
Author: Sergey Trofimov <[email protected]>
AuthorDate: Wed Dec 25 14:42:05 2024 +0100

    gnu: Remove searx.
    
    * gnu/packages/search.scm (searx): Delete variable.
    
    Github repository has been archived by the owner on Sep 7, 2023. Build
    fails due to outdated dependencies.
    
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/search.scm | 47 -----------------------------------------------
 1 file changed, 47 deletions(-)

diff --git a/gnu/packages/search.scm b/gnu/packages/search.scm
index bd24d98639..1d7f350afd 100644
--- a/gnu/packages/search.scm
+++ b/gnu/packages/search.scm
@@ -263,53 +263,6 @@ files and directories.")
 command line tool for interacting with libtocc.")
     (license license:gpl3+)))
 
-(define-public searx
-  (package
-    (name "searx")
-    (version "1.0.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/searx/searx";)
-             (commit version)))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0ghkx8g8jnh8yd46p4mlbjn2zm12nx27v7qflr4c8xhlgi0px0mh"))))
-    (build-system python-build-system)
-    (arguments
-     `(#:tests? #f ;what tests do is make online requests to each engine
-       #:phases
-       (modify-phases %standard-phases
-         (add-after 'unpack 'relax-requirements
-           (lambda _
-             ;; Tests can run after build with 'searx-checker' tool in /bin.
-             ;; allow using a higher dependency version
-             (substitute* "requirements.txt"
-               (("==") ">="))))
-         (add-before 'sanity-check 'set-debug
-           (lambda _
-             ;; the user will need to change the secret key
-             ;; https://github.com/searx/searx/issues/2278
-             (setenv "SEARX_DEBUG" "1"))))))
-    (propagated-inputs
-     (list python-babel
-           python-certifi
-           python-dateutil
-           python-flask
-           python-flask-babel
-           python-idna
-           python-jinja2
-           python-langdetect
-           python-lxml
-           python-pygments
-           python-pyyaml
-           python-requests))
-    (home-page "https://searx.github.io/searx/";)
-    (synopsis "Privacy-respecting metasearch engine")
-    (description "Searx is a privacy-respecting, hackable metasearch engine.")
-    (license license:agpl3+)))
-
 (define-public bool
   (package
     (name "bool")

Reply via email to