summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorVanessasaurus <814322+vsoch@users.noreply.github.com>2021-05-22 22:27:32 -0600
committerGitHub <noreply@github.com>2021-05-22 21:27:32 -0700
commitec00d68ba14fc782a7c9f654b5e5fc3980d209c1 (patch)
treed01d05f36cafbad596c61e6705a19393ed9a93c2 /var
parentd45674c1cbb726e1ad625f32d873ef79da92e90d (diff)
downloadspack-ec00d68ba14fc782a7c9f654b5e5fc3980d209c1.tar.gz
spack-ec00d68ba14fc782a7c9f654b5e5fc3980d209c1.tar.bz2
spack-ec00d68ba14fc782a7c9f654b5e5fc3980d209c1.tar.xz
spack-ec00d68ba14fc782a7c9f654b5e5fc3980d209c1.zip
updating debugedit to be built from its production repository (#23851)
Signed-off-by: vsoch <vsoch@users.noreply.github.com> Co-authored-by: vsoch <vsoch@users.noreply.github.com>
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/debugedit/package.py15
1 files changed, 9 insertions, 6 deletions
diff --git a/var/spack/repos/builtin/packages/debugedit/package.py b/var/spack/repos/builtin/packages/debugedit/package.py
index c677eb1242..2de86c648f 100644
--- a/var/spack/repos/builtin/packages/debugedit/package.py
+++ b/var/spack/repos/builtin/packages/debugedit/package.py
@@ -8,17 +8,20 @@ from spack import *
class Debugedit(AutotoolsPackage):
"""
- Debugedit was originally part of the rpm project, and is currently
- being refactored to be provided outside of it. This source will
- eventually be moved to sourceware or similar, as it is being maintained
- by RedHat.
+ Debugedit is a set of libraries and programs for creating and editing
+ debuginfo. It allows you to get build-ids and rewrite DWARF source paths.
+ Debugedit was originally part of the rpm project, and now exists
+ as its own separate project and is maintained by RedHat.
"""
- homepage = "https://code.wildebeest.org/git/user/mjw/debugedit"
- git = "git://code.wildebeest.org/user/mjw/debugedit"
+ homepage = "http://www.sourceware.org/debugedit/"
+ git = "git://sourceware.org/git/debugedit.git"
+ url = "https://sourceware.org/ftp/debugedit/0.2/debugedit-0.2.tar.xz"
version('develop', branch='main')
+ version('0.2', sha256="b78258240bb7ec5bbff109495092dcc111aa0393f135f2d2a4b43887ba26a942")
+ depends_on('help2man', type='build')
depends_on('pkgconfig', type='build')
depends_on('autoconf', type='build')
depends_on('automake', type='build')