summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2024-05-29 18:33:04 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2024-05-29 18:33:04 +0100
commitba204d542ef2d7795d41124b76fb3d584672ee29 (patch)
treed95917bf114fa35ceeb997de8eab2f26ba7f5807
parentBump hotspot bugfix to 1.5.1 (diff)
downloadkdab-ba204d542ef2d7795d41124b76fb3d584672ee29.tar.bz2
kdab-ba204d542ef2d7795d41124b76fb3d584672ee29.tar.xz
kdab-ba204d542ef2d7795d41124b76fb3d584672ee29.zip
Fix hotspot bump build, missed the deps
-rw-r--r--dev-util/hotspot/Manifest4
-rw-r--r--dev-util/hotspot/hotspot-1.5.1.ebuild14
2 files changed, 15 insertions, 3 deletions
diff --git a/dev-util/hotspot/Manifest b/dev-util/hotspot/Manifest
index b8a7df3..1870b3f 100644
--- a/dev-util/hotspot/Manifest
+++ b/dev-util/hotspot/Manifest
@@ -1,3 +1,5 @@
+DIST 6e86393f546429113e4ee78f7702eb820b21a0d2.tar.gz 21451 BLAKE2B b9fd7d8710a38a63c5e00d5569dbbc67a93b5e549e47a5dd71bcf88b06ea2428f51867183a15745f1bcbb915fd1c23f37a59f6dad1fcc4211b2d23ea030694a6 SHA512 9e61c27bcd45eb0bdf5f524fc09fa2d6021ab62f2f6d4716c9cf7861a84e0fb69c677196e6238307384973bc6037e85ee11e037a5318dfa47a9a701c2a1e0026
+DIST 851ebf0a033e73854c934d150a120f013bae2a66.tar.gz 3340835 BLAKE2B 5c23c5c0ef5e67d9aa540e017e754787345f68a0cd59c2ac3a5b0534c10a3eca6450aeac18bae283fddc6ec9d989fb4466936a38a4b55221cd4a17c3aa27572b SHA512 8039bbf6cde0cd8f897867da72cf1c9687a9b9468776de097992347c8d1eb2aeb7a14d2b4f335c25cb3d7524aa917a4199debb0f8285d32c9f110dd9ba7eaeca
DIST hotspot-v1.3.0.tar.gz 3330348 BLAKE2B 8d7031c2821e79ff4ff78379e5556b7d78ac94fff9615abf63f75461de2735bc0965802ced0e19702823cf65dc1600e7b4ed5c15978fb13ed8fdf7b474c6ec49 SHA512 8aa89f71cb85c5a73c8265eec27acf35fcc21612af33581c7d8804edbc8565cd587ab79906e85781f2c6db9d7747ba4371a7e10253e21052f280717d5dc1fbd4
DIST hotspot-v1.4.1.tar.gz 5530260 BLAKE2B 89fd5e6858af41ec24f3875b5845b1d2754b6547ef721877c9120f6d40aaa8b5ff70039c452ce144acec996c575c08a33f8ea1a2518cc264eb223d074051e38d SHA512 309878d2bc973b436135089f9caee5e81d32a34f838406838480aa49cf4e617aca3768e47b86cd7e5945c793c30beb8a33b62fa48a78b3576a6414661697beb5
-DIST hotspot-v1.5.1.tar.gz 12198866 BLAKE2B 1751e115213af409210d7fd35a4113d1d528a9bb04be12fa7b05ce56523c447e7c12b21651a863e00734f2fed65403000d889e3005d083e37dc71a025e61a0cb SHA512 dbd79505373290f8a666c0c7a837db0f5c97b8568b44d9c1120c7ba9e1cfce4a1932c74f7b1148f3ccb509788ba907339bb90c613f158cf0e35b824641b5bf4e
+DIST v1.5.1.tar.gz 3612212 BLAKE2B 0a21c9690c54a84eae1c37f2af3a60fc3b74d17d96775599aa2fd8ba9ad15cb32da9bfe8d354f2437a7bed7883db1532eb1ab4dfcb414864a3351c55237584a1 SHA512 64c966ae6deb19b90d3eb12e4911a29f3be042bfd6e7183b8e511222a015df02341bd6c1d535a8669d3edfec5315de9a2dc2773c51f8704f67f7de4f933a4d1f
diff --git a/dev-util/hotspot/hotspot-1.5.1.ebuild b/dev-util/hotspot/hotspot-1.5.1.ebuild
index d114a98..aa16faf 100644
--- a/dev-util/hotspot/hotspot-1.5.1.ebuild
+++ b/dev-util/hotspot/hotspot-1.5.1.ebuild
@@ -8,7 +8,12 @@ RESTRICT="mirror"
DESCRIPTION="Hotspot - the Linux perf GUI for performance analysis"
HOMEPAGE="https://github.com/KDAB/hotspot"
-SRC_URI="https://github.com/KDAB/hotspot/releases/download/v${PV}/${PN}-v${PV}.tar.gz"
+vperfparser="851ebf0a033e73854c934d150a120f013bae2a66"
+vprefixticklabels="6e86393f546429113e4ee78f7702eb820b21a0d2"
+SRC_URI="https://github.com/KDAB/${PN}/archive/refs/tags/v${PV}.tar.gz
+ https://github.com/KDAB/perfparser/archive/${vperfparser}.tar.gz
+ https://github.com/koenpoppe/PrefixTickLabels/archive/${vprefixticklabels}.tar.gz
+"
LICENSE="GPL-2"
SLOT="0"
@@ -42,4 +47,9 @@ RDEPEND="
DEPEND="${RDEPEND}"
-S="${WORKDIR}/${PN}-v${PV}"
+src_unpack() {
+ default
+ rmdir ${S}/3rdparty/perfparser ${S}/3rdparty/PrefixTickLabels
+ ln -sf ${WORKDIR}/perfparser-${vperfparser} ${S}/3rdparty/perfparser
+ ln -sf ${WORKDIR}/PrefixTickLabels-${vprefixticklabels} ${S}/3rdparty/PrefixTickLabels
+}