From 45510f4cbdc457abed11f2f2e86347b6e2ac7ee2 Mon Sep 17 00:00:00 2001 From: Andreas Enge Date: Wed, 29 Oct 2025 11:02:13 +0100 Subject: [PATCH] gnu: Remove epour. * gnu/packages/enlightenment.scm (epour): Delete variable. Fixes: guix/guix#3014 Change-Id: Ibe4fa24e0805231f5a189c1eb6e235990cc3e7ae --- gnu/packages/enlightenment.scm | 32 -------------------------------- 1 file changed, 32 deletions(-) diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index 4cb04d3110db86247a92cc6d48061a6be42c8266..df2617544a65baf7cb922b0eae48c844fc737d67 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -519,35 +519,3 @@ directories. "This is a process monitor and system monitor using the @dfn{Enlightenment Foundation Libraries} (EFL).") (license license:bsd-2))) - -;; XXX: See: . -(define-public epour - (package - (name "epour") - (version "0.7.0") - (source - (origin - (method url-fetch) - (uri (string-append "https://download.enlightenment.org/rel/apps/epour" - "/epour-" version ".tar.xz")) - (sha256 - (base32 "0g9f9p01hsq6dcf4cs1pwq95g6fpkyjgwqlvdjk1km1i5gj5ygqw")))) - (build-system pyproject-build-system) - (arguments - (list - #:tests? #f ;no test target - #:phases - #~(modify-phases %standard-phases - (add-after 'unpack 'find-theme-dir - (lambda _ - (substitute* "epour/gui/__init__.py" - (("join\\(data_path") - (string-append "join(\"" #$output "/share/epour\"")))))))) - (native-inputs (list intltool python-distutils-extra python-setuptools-67 - python-wheel-0.40)) - (inputs (list libtorrent-rasterbar-1.2 python-dbus python-efl python-pyxdg)) - (home-page "https://www.enlightenment.org") - (synopsis "EFL Bittorrent client") - (description "Epour is a BitTorrent client based on the @dfn{Enlightenment -Foundation Libraries} (EFL) and rb-libtorrent.") - (license license:gpl3+)))