diff options
author | V3n3RiX <venerix@koprulu.sector> | 2022-07-17 14:31:38 +0100 |
---|---|---|
committer | V3n3RiX <venerix@koprulu.sector> | 2022-07-17 14:31:38 +0100 |
commit | 9c26151d84a72781f240cc7ca3e2f0ab4ba60f74 (patch) | |
tree | 4ac39398cd519351bf12c6357e7474c508f19d13 /dev-util/heaptrack | |
parent | b99d693f4d27fe2eb2237a0fe7e9c3b87d4d6df5 (diff) |
gentoo auto-resync : 17:07:2022 - 14:31:38
Diffstat (limited to 'dev-util/heaptrack')
-rw-r--r-- | dev-util/heaptrack/Manifest | 1 | ||||
-rw-r--r-- | dev-util/heaptrack/files/heaptrack-1.3.0-cmake.patch | 58 |
2 files changed, 0 insertions, 59 deletions
diff --git a/dev-util/heaptrack/Manifest b/dev-util/heaptrack/Manifest index 01f3eeb8bd94..3a8b566e7b2e 100644 --- a/dev-util/heaptrack/Manifest +++ b/dev-util/heaptrack/Manifest @@ -1,4 +1,3 @@ -AUX heaptrack-1.3.0-cmake.patch 2070 BLAKE2B 9e84e46f1d10507e337323a18418b248edae02375a2f3184331dc638e57688b78ef84bcf88ef3c7f239b3bd4225950cb99a611bc8fb124b5af2478d58eb892bc SHA512 3786d8edb7485710ef2255ce2a82bf82f23734989fac67ec2cdb77a821dc33e00415a2d398b25a12505922bbf3e575b885007c125ff7f2c1881cdf1de5ca216f DIST heaptrack-1.4.0.tar.xz 5526100 BLAKE2B ffb912bc080cf966d670fcafcce682ddc5793878b73b8480b40aaf6b3c9596e892b646f9ca2ce40c195ed32d595e265e9c3a49095ac725b95a0845b2c4a7a81a SHA512 8d34356c9ecf2f9901e15ff7f24e6772e35d31ea9634d7b3ce5615df6f4f7ed024a7a4336f3b6fca648632c4c1693411641782fe60bf4cfeeb1d07d8607636a4 EBUILD heaptrack-1.4.0.ebuild 1459 BLAKE2B a9377704453202afe63e037a8581cd9757e6166b1c85ab1342ca3553dad6296b29d787b6827eb7eb2e0acad91946bca1798e47a6e80580b8d7d557a4df25af2f SHA512 6841c2ba49a38d9729f31948206630747b3312d0d85495d88153e21ae40a81e1dcbdd71c3ffede5e9dca76874b0787ea4c31721a591a73e40704edefd3760c7c EBUILD heaptrack-9999.ebuild 1399 BLAKE2B 1d36fff2ac6fea32412151c4d623b2cb1edbfd7fc3be37368009ad9aa7f18c4ccc9bc8b667cc186e950a55df853fc96049e3618523ba3b4120f4094a59c4aac6 SHA512 2c6e3899e70386372c851d23cc0e6a0e2e3077e12782300d4b802811a364fcecdf3945ddfef295853ee8bc55cb52006d47ea5234cc94a2cd8d765b0edb8e9cf0 diff --git a/dev-util/heaptrack/files/heaptrack-1.3.0-cmake.patch b/dev-util/heaptrack/files/heaptrack-1.3.0-cmake.patch deleted file mode 100644 index fe4cfd6fed93..000000000000 --- a/dev-util/heaptrack/files/heaptrack-1.3.0-cmake.patch +++ /dev/null @@ -1,58 +0,0 @@ -From 24d593624a41488416116057fc36e9962a548477 Mon Sep 17 00:00:00 2001 -From: Andreas Sturmlechner <asturm@gentoo.org> -Date: Mon, 20 Dec 2021 11:43:26 +0100 -Subject: [PATCH] Let releaseme know to skip po install - -Since KF5I18n is optional AND dependent on HEAPTRACK_BUILD_GUI, we -have to call ki18n_install(po) conditionally on our own and in -addition tell releaseme not to touch CMakeLists.txt to do the same. - -Otherwise releaseme adds the following code unconditionally at the -end of the file: - - find_package(KF5I18n CONFIG REQUIRED) - ki18n_install(po) - -ki18n_install checks for existence of po subdir and returns silently -if none found, so it is safe for git sources too. - -* asturmlechner 2021-12-20: Modified for 1.3.0 release. - -Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> ---- - CMakeLists.txt | 4 ++++ - src/analyze/CMakeLists.txt | 3 +++ - 2 files changed, 7 insertions(+) - -diff --git a/CMakeLists.txt b/CMakeLists.txt -index 4ccfc88..06c43cf 100644 ---- a/CMakeLists.txt -+++ b/CMakeLists.txt -@@ -169,7 +169,8 @@ - add_subdirectory(src) - add_subdirectory(tests) - --feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -+# Let releaseme know about this: -+# SKIP_PO_INSTALL -+# (KF5I18n is optional in src/analyze/CMakeLists.txt...) - --find_package(KF5I18n CONFIG REQUIRED) --ki18n_install(po) -+feature_summary(WHAT ALL FATAL_ON_MISSING_REQUIRED_PACKAGES) -diff --git a/src/analyze/CMakeLists.txt b/src/analyze/CMakeLists.txt -index 592f337..763c671 100644 ---- a/src/analyze/CMakeLists.txt -+++ b/src/analyze/CMakeLists.txt -@@ -41,6 +41,9 @@ if(HEAPTRACK_BUILD_GUI) - find_package(KF5 ${REQUIRED_IN_APPIMAGE} COMPONENTS CoreAddons I18n ItemModels ThreadWeaver ConfigWidgets KIO IconThemes) - find_package(KChart ${REQUIRED_IN_APPIMAGE} "2.6.0") - set_package_properties(KChart PROPERTIES TYPE RECOMMENDED PURPOSE "Required for the heaptrack_gui executable. Get it from the kdiagram module.") -+ if(KF5I18n_FOUND) -+ ki18n_install(../../po) -+ endif() - endif() - endif() - --- -2.34.1 |