libelf: move url to fossies.org (#10815)

* libelf: move url to fossies.org

Libelf is no longer maintained and the original mr511.de web site no
longer exists.  The final release, 0.8.13 from Nov 2009 is still
archived at fossies.org.

Fixes #10757.

* Change the homepage to the FSF entry.
This commit is contained in:
Mark W. Krentel 2019-03-06 13:42:44 -06:00 committed by Todd Gamblin
parent 10b0251af0
commit edecdc3ace

View File

@ -10,13 +10,19 @@ class Libelf(AutotoolsPackage):
"""libelf lets you read, modify or create ELF object files in an """libelf lets you read, modify or create ELF object files in an
architecture-independent way. The library takes care of size architecture-independent way. The library takes care of size
and endian issues, e.g. you can process a file for SPARC and endian issues, e.g. you can process a file for SPARC
processors on an Intel-based system.""" processors on an Intel-based system. Note: libelf is no longer
maintained and packages that depend on libelf should migrate to
elfutils."""
homepage = "http://www.mr511.de/software/english.html" # The original homepage no longer exists, but the tar file is
url = "http://www.mr511.de/software/libelf-0.8.13.tar.gz" # archived at fossies.org.
# homepage = "http://www.mr511.de/software/english.html"
homepage = "https://directory.fsf.org/wiki/Libelf"
url = "https://fossies.org/linux/misc/old/libelf-0.8.13.tar.gz"
version('0.8.13', '4136d7b4c04df68b686570afa26988ac') version('0.8.13', '4136d7b4c04df68b686570afa26988ac')
version('0.8.12', 'e21f8273d9f5f6d43a59878dc274fec7') # version('0.8.12', 'e21f8273d9f5f6d43a59878dc274fec7')
provides('elf@0') provides('elf@0')