diff --git a/var/spack/repos/builtin/packages/hpctoolkit/package.py b/var/spack/repos/builtin/packages/hpctoolkit/package.py
index 2347e3bb6a117ba21896eb73982639c2face78c1..fef2ec7b3e812ef33eca74339a6f9e29726660a7 100644
--- a/var/spack/repos/builtin/packages/hpctoolkit/package.py
+++ b/var/spack/repos/builtin/packages/hpctoolkit/package.py
@@ -19,7 +19,6 @@ class Hpctoolkit(AutotoolsPackage):
     maintainers = ['mwkrentel']
 
     version('master', branch='master')
-    version('gpu', branch='gpu')
     version('2019.12.28', commit='b4e1877ff96069fd8ed0fdf0e36283a5b4b62240')
     version('2019.08.14', commit='6ea44ed3f93ede2d0a48937f288a2d41188a277c')
     version('2018.12.28', commit='8dbf0d543171ffa9885344f32f23cc6f7f6e39bc')
@@ -53,7 +52,7 @@ class Hpctoolkit(AutotoolsPackage):
             'for the compute nodes.')
 
     variant('cuda', default=False,
-            description='Support CUDA on NVIDIA GPUs (master or gpu branch).')
+            description='Support CUDA on NVIDIA GPUs (master branch).')
 
     boost_libs = (
         '+atomic +chrono +date_time +filesystem +system +thread +timer'
@@ -69,7 +68,7 @@ class Hpctoolkit(AutotoolsPackage):
     depends_on('libdwarf')
     depends_on('libmonitor+hpctoolkit')
     depends_on('libmonitor+bgq', when='+bgq')
-    depends_on('libunwind@2018.10.0:')
+    depends_on('libunwind@1.4:')
     depends_on('mbedtls+pic')
     depends_on('xerces-c transcoder=iconv')
     depends_on('xz', type='link')
@@ -84,14 +83,11 @@ class Hpctoolkit(AutotoolsPackage):
     conflicts('%gcc@:4.7.99', when='^dyninst@10.0.0:',
               msg='hpctoolkit requires gnu gcc 4.8.x or later')
 
-    conflicts('%gcc@:4.99.99', when='@gpu',
-              msg='the gpu branch requires gnu gcc 5.x or later')
-
     conflicts('%gcc@:4.99.99', when='@master',
               msg='the master branch requires gnu gcc 5.x or later')
 
     conflicts('+cuda', when='@2018.0.0:2019.99.99',
-              msg='cuda is only available on the master or gpu branches')
+              msg='cuda is only available on the master branch')
 
     flag_handler = AutotoolsPackage.build_system_flags