diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-01-19 01:02:03 +0100 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2020-03-12 04:57:41 +0100 |
commit | 7247b841954f941df47d482a8c39f2c9851a6c2d (patch) | |
tree | 9773e996776b8524e5b065a25131fa6d6654ce72 /gnu | |
parent | 32df41beef12af9a64f079788ac77a167fb3e5ab (diff) | |
download | patches-7247b841954f941df47d482a8c39f2c9851a6c2d.tar patches-7247b841954f941df47d482a8c39f2c9851a6c2d.tar.gz |
gnu: ephoto: Update source and home page URIs.
* gnu/packages/enlightenment.scm (ephoto)[source]: Remove dead URI.
[home-page]: Follow (HTTPS) redirection.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/enlightenment.scm | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/gnu/packages/enlightenment.scm b/gnu/packages/enlightenment.scm index d79ca949f2..4a65c55af9 100644 --- a/gnu/packages/enlightenment.scm +++ b/gnu/packages/enlightenment.scm @@ -515,15 +515,12 @@ and in creating applications based on the Enlightenment Foundation Library suite (name "ephoto") (version "1.5") (source - (origin - (method url-fetch) - (uri (list (string-append "http://www.smhouston.us/stuff/ephoto-" - version ".tar.xz") - (string-append "https://download.enlightenment.org/rel/" - "apps/ephoto/ephoto-" version ".tar.xz"))) - (sha256 - (base32 - "1q7v9abjp9jrs08xc7pqaac64yzax24dk1snjb9rciarzzh3mlzy")))) + (origin + (method url-fetch) + (uri (string-append "https://download.enlightenment.org/rel/" + "apps/ephoto/ephoto-" version ".tar.xz")) + (sha256 + (base32 "1q7v9abjp9jrs08xc7pqaac64yzax24dk1snjb9rciarzzh3mlzy")))) (build-system gnu-build-system) (arguments '(#:phases @@ -536,7 +533,7 @@ and in creating applications based on the Enlightenment Foundation Library suite ("pkg-config" ,pkg-config))) (inputs `(("efl" ,efl))) - (home-page "http://smhouston.us/ephoto/") + (home-page "https://smhouston.us/projects/ephoto/") (synopsis "EFL image viewer/editor/manipulator/slideshow creator") (description "Ephoto is an image viewer and editor written using the @dfn{Enlightenment Foundation Libraries} (EFL). It focuses on simplicity and |