Github messages for voidlinux
 help / color / mirror / Atom feed
* [PR PATCH] qt6-tools: build with llvm18
@ 2024-07-08 13:06 Calandracas606
  2024-07-08 14:16 ` Calandracas606
  2024-07-08 14:16 ` Calandracas606
  0 siblings, 2 replies; 3+ messages in thread
From: Calandracas606 @ 2024-07-08 13:06 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 1349 bytes --]

There is a new pull request by Calandracas606 against master on the void-packages repository

https://github.com/Calandracas606/void-packages qt6-tools-llvm18
https://github.com/void-linux/void-packages/pull/51147

qt6-tools: build with llvm18
<!-- Uncomment relevant sections and delete options which are not applicable -->

#### Testing the changes
- I tested the changes in this PR: **briefly**

<!--
#### New package
- This new package conforms to the [package requirements](https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#package-requirements): **YES**|**NO**
-->

<!-- Note: If the build is likely to take more than 2 hours, please add ci skip tag as described in
https://github.com/void-linux/void-packages/blob/master/CONTRIBUTING.md#continuous-integration
and test at least one native build and, if supported, at least one cross build.
Ignore this section if this PR is not skipping CI.
-->

#### Local build testing
- I built this PR locally for my native architecture, x86_64-glibc
- I built this PR locally for these architectures (if supported. mark crossbuilds):
  - x86_64-musl
  - i686
  - aarch64 (cross)
  - aarch64-musl (cross)
  - armv7l (cross)
  - armv7l-musl (cross)
  - armv6l (cross)
  - armv6l-musl (cross)


A patch file from https://github.com/void-linux/void-packages/pull/51147.patch is attached

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: github-pr-qt6-tools-llvm18-51147.patch --]
[-- Type: text/x-diff, Size: 1699 bytes --]

From 5e829774332cce9b9c25061993729f3a3776d79d Mon Sep 17 00:00:00 2001
From: Daniel Martinez <danielmartinez@cock.li>
Date: Mon, 8 Jul 2024 09:05:04 -0400
Subject: [PATCH] qt6-tools: build with llvm18

---
 srcpkgs/qt6-tools/template | 10 +++-------
 1 file changed, 3 insertions(+), 7 deletions(-)

diff --git a/srcpkgs/qt6-tools/template b/srcpkgs/qt6-tools/template
index 5fde45439cdc4a..8128c88a0550a9 100644
--- a/srcpkgs/qt6-tools/template
+++ b/srcpkgs/qt6-tools/template
@@ -1,16 +1,16 @@
 # Template file for 'qt6-tools'
 pkgname=qt6-tools
 version=6.7.2
-revision=1
+revision=2
 build_style=cmake
 configure_args="-DEXTERNAL_GUMBO=ON -DLITEHTML_UTF8=ON -DUSE_ICU=ON
  -DQT_BUILD_SHARED_LIBS=ON -DQT_FEATURE_assistant=ON
  -DQT_FEATURE_pixeltool=ON -DLITEHTML_BUILD_TESTING=OFF
  -DQT_FEATURE_distancefieldgenerator=ON"
-hostmakedepends="qt6-base perl qt6-plugin-sqlite clang17 clang-tools-extra17
+hostmakedepends="qt6-base perl qt6-plugin-sqlite clang-tools-extra18
  qt6-declarative-host-tools"
 makedepends="qt6-base-private-devel qt6-plugin-sqlite qt6-declarative-private-devel
- gumbo-parser-devel icu-devel llvm17-devel"
+ gumbo-parser-devel icu-devel llvm18-devel"
 short_desc="Cross-platform application and UI framework (QT6) - qt6-tools component"
 maintainer="John <me@johnnynator.dev>"
 license="custom:GPL-3.0-only-with-Qt-GPL-exception-1.0, LGPL-3.0-only, GPL-2.0-or-later"
@@ -22,10 +22,6 @@ if [ "$CROSS_BUILD" ]; then
 	configure_args+=" -DQT_FORCE_BUILD_TOOLS=TRUE"
 	hostmakedepends+=" qt6-tools"
 fi
-case "$XBPS_TARGET_MACHINE" in
-	x86_64*|aarch64*)
-		makedepends+=" libomp-devel" ;;
-esac
 
 if [ "$XBPS_CHECK_PKGS" ]; then
 	configure_args+=" -DQT_BUILD_TESTS=ON"

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: qt6-tools: build with llvm18
  2024-07-08 13:06 [PR PATCH] qt6-tools: build with llvm18 Calandracas606
@ 2024-07-08 14:16 ` Calandracas606
  2024-07-08 14:16 ` Calandracas606
  1 sibling, 0 replies; 3+ messages in thread
From: Calandracas606 @ 2024-07-08 14:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 214 bytes --]

New comment by Calandracas606 on void-packages repository

https://github.com/void-linux/void-packages/pull/51147#issuecomment-2214203767

Comment:
checked succeed on my local machine, not sure why they fail in CI

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: qt6-tools: build with llvm18
  2024-07-08 13:06 [PR PATCH] qt6-tools: build with llvm18 Calandracas606
  2024-07-08 14:16 ` Calandracas606
@ 2024-07-08 14:16 ` Calandracas606
  1 sibling, 0 replies; 3+ messages in thread
From: Calandracas606 @ 2024-07-08 14:16 UTC (permalink / raw)
  To: ml

[-- Attachment #1: Type: text/plain, Size: 213 bytes --]

New comment by Calandracas606 on void-packages repository

https://github.com/void-linux/void-packages/pull/51147#issuecomment-2214203767

Comment:
checks succeed on my local machine, not sure why they fail in CI

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-07-08 14:16 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-07-08 13:06 [PR PATCH] qt6-tools: build with llvm18 Calandracas606
2024-07-08 14:16 ` Calandracas606
2024-07-08 14:16 ` Calandracas606

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).