You are not logged in.
Any idea if Qt has deleted or moved the repo?
$ paru -S qt5-webengine
:: Resolving dependencies...
:: Calculating conflicts...
:: Calculating inner conflicts...
:: marked out of date: qt5-webengine
:: orphans: qt5-webengine
Aur (1) qt5-webengine-5.15.19-4
:: Proceed to review? [Y/n]:
:: Downloading PKGBUILDs...
PKGBUILDs up to date
nothing new to review
fetching devel info...
error: timed out looking for devel update: [url]https://code.qt.io/qt/qtwebengine-chromium.git[/url]
error: failed to lookup: qt5-webengine:
==> Making package: qt5-webengine 5.15.19-4 (Sun 09 Nov 2025 12:03:40 PM PDT)
==> Retrieving sources...
-> Cloning kde-qtwebengine git repo...
Cloning into bare repository '/home/korimitsu/.cache/paru/clone/qt5-webengine/kde-qtwebengine'...
fatal: unable to access '[url]https://code.qt.io/qt/qtwebengine.git/[/url]': Failed to connect to code.qt.io port 443 after 133597 ms: Could not connect to server
==> ERROR: Failure while downloading kde-qtwebengine git repo
Aborting...
error: failed to download sources for 'qt5-webengine-5.15.19-4':
error: packages failed to build: qt5-webengine-5.15.19-4Offline
And here we are again trying to build old, obsolete software with known vulnerabilities. Same question as last time, do you *actually* need it?
ETA: https://lists.archlinux.org/archives/li … GGFFXCULV/
Last edited by Scimmia (2025-11-09 20:41:21)
Offline
https://aur.archlinux.org/packages/qt5- … =1#pkgreqs - seems DaVinci depends on it.
The code.qt.io status is probably (better… hopefully) intermittent.
If you actually need it as real dependency for something you cannot substitute, wait and/or fetch an old build from the ALA.
Seems DVR just released an update, you should research whether they actually still depend on Qt5
Offline
It's required by notepadqq now uninstalled since don't need it anymore with its dependencies:
qt5-webengine notepadqq qt5-webview
Offline
Please always remember to mark resolved threads by editing your initial posts subject - so others will know that there's no task left, but maybe a solution to find.
Thanks.
Offline
I don't think it's solved. Doesn't compile yet.
Offline
I thought you opted for dropping notepadqq…
Either way: you'll have to wait for code.qt.io to return or pick a version from the ALA.
Offline
I don't think it's solved. Doesn't compile yet.
Compile or do you mean code.qt.io still being down?
diff --git a/PKGBUILD b/PKGBUILD
index b992a39..6c8efd9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -15,8 +15,8 @@ makedepends=('git' 'python' 'gperf' 'jsoncpp' 'ninja' 'qt5-tools' 'poppler' 'pip
optdepends=('pipewire: WebRTC desktop sharing under Wayland')
groups=('qt5')
_pkgfqn=${pkgname/5-/}
-source=(kde-$_pkgfqn::git+https://code.qt.io/qt/qtwebengine.git#tag=v${pkgver}-lts
- git+https://code.qt.io/qt/qtwebengine-chromium.git
+source=(kde-$_pkgfqn::git+https://github.com/qt/qtwebengine.git#tag=v${pkgver}-lts
+ git+https://github.com/qt/qtwebengine-chromium.git
qt5-webengine-pipewire-0.3.patch
qt5-webengine-icu-75.patch
qt5-webengine-ninja-1.12.patchOffline
Compile or do you mean code.qt.io still being down?
Anything that prevents the package from compiling. In this case it's the git server.
I've noticed that the server looked like online some hours ago. The package should switch to some tarball when the git fails.
Offline
loqs wrote:Compile or do you mean code.qt.io still being down?
Anything that prevents the package from compiling. In this case it's the git server.
Failure to download and failure to compile are not the same.
I've noticed that the server looked like online some hours ago. The package should switch to some tarball when the git fails.
That is outside the scope of a PKGBUILD. Perhaps you want to add a feature to makepkg providing that.
Why not contact the current package maintainer and ask them to change the source after they fix the package not building with icu78? Or you could provide fixes for both.
Offline
http://code.qt.io/ is still dead for me.
Offline
I had to manually edit the pkgbuild before grabbing source. Changed "https://" to "git://" which worked, because the https:// git url was returning document not found.
Offline
I had to manually edit the pkgbuild before grabbing source. Changed "https://" to "git://" which worked, because the https:// git url was returning document not found.
Can you please give more detailed instructions on how to do this?
I really need to install this package.
Thanks a lot.
Offline
With the text editor of your choice.
https://wiki.archlinux.org/title/Arch_U … g_packages
Offline
With the text editor of your choice.
https://wiki.archlinux.org/title/Arch_U … g_packages
i mean where in PKGBUILD should i change https:// go git://, to compile qt5-webengine?
Offline
If you're using an AUR manager like paru, look into an option such as "--fm," where you can specify a text file manager to use - I used nnn for this purpose - and at that point, if you select the PKGBUILD file, you can edit it to change this:
source=(kde-$_pkgfqn::git+https://code.qt.io/qt/qtwebengine.git#tag=v${pkgver}-lts
git+https://code.qt.io/qt/qtwebengine-chromium.gitto this:
source=(kde-$_pkgfqn::git+git://code.qt.io/qt/qtwebengine.git#tag=v${pkgver}-lts
git+git://code.qt.io/qt/qtwebengine-chromium.gitAt that point, save the file, close it, and proceed with the remainder of the package building.
I will warn you I was not able to successfully compile and I do not know enough to tell you why. Failed during build process. Other users note failure in the AUR page. I tried installing the AUR icu75 package first, but I don't know enough about building qt5-webengine to know if I need to take additional steps to link to it, or if that's even the issue causing my failure.
See discussion of the --fm flag.
EDIT: You just posted right before me, I see. Provided what to edit above.
Last edited by NYI (2025-11-11 20:22:55)
Offline
i mean where in PKGBUILD should i change https:// go git://, to compile qt5-webengine?
See post #8 to switch from code.qt.io to qt's github mirror.
Last edited by loqs (2025-11-11 20:22:47)
Offline
The source array? Where else?
I don't think this will work, though - see https://bbs.archlinux.org/viewtopic.php … 1#p2272021 and get the sources from github.
code.qt.io is still down.
Edit: ![]()
Last edited by seth (2025-11-11 20:25:24)
Offline
Hasn't been fixed yet:
paru -S qt5-webengine
:: Resolving dependencies...
:: Calculating conflicts...
:: Calculating inner conflicts...
Aur (1) qt5-webengine-5.15.19-4
:: Proceed to review? [Y/n]:
:: Downloading PKGBUILDs...
PKGBUILDs up to date
nothing new to review
fetching devel info...
==> Making package: qt5-webengine 5.15.19-4 (Tue 11 Nov 2025 04:36:44 PM PDT)
==> Retrieving sources...
-> Updating kde-qtwebengine git repo...
remote: Enumerating objects: 25, done.
remote: Counting objects: 100% (25/25), done.
remote: Compressing objects: 100% (13/13), done.
remote: Total 13 (delta 10), reused 1 (delta 0), pack-reused 0
Unpacking objects: 100% (13/13), 1.24 KiB | 1.24 MiB/s, done.
From [url]https://code.qt.io/qt/qtwebengine[/url]
dc4c5de16..e432eacd5 dev -> dev
-> Cloning qtwebengine-chromium git repo...
Cloning into bare repository '/home/korimitsu/.cache/paru/clone/qt5-webengine/qtwebengine-chromium'...
error: RPC failed; HTTP 503 curl 22 The requested URL returned error: 503
fatal: expected flush after ref listing
==> ERROR: Failure while downloading qtwebengine-chromium git repo
Aborting...
error: failed to download sources for 'qt5-webengine-5.15.19-4':
error: packages failed to build: qt5-webengine-5.15.19-4Offline
Nobody here is gonna fix code.qt.io being down, welcome to the internet in the fucking AI era, and until Qt gets their server back into shape you've been given multiple alternatives to deal with that situation.
Offline
Not to dog pile but it is also a dependency of zoom and teamviewer, so fallout is a bit larger. I don't know what was in the old repo but I found:
https://github.com/qt/qtwebengine
I'm not sure if substituting it would work? I don't have my old build files so I guess if someone who does can compare and see if the repos are similar enough (it was last updated 9 hours ago so I don't expect it to be identical).
Offline
I don't know what was in the old repo but I found:
See post #8.
Offline
This is why people have a hard time getting into linux, not sure why make a new person life that hard.
If you are having this issue, yes you can switch to the github URL.
Post #8 only shows a diff file (that non developers don't even understand) and new folks don't know where that file even is.
If using yay:
1. Navigate to
cd ~/.cache/yay/qt5-webengine2. Edit the file PKGBUILD
3. Change the ocurrence of
code.qt.ioto
github.com4. Delete the folder
kde-webengineif it exists
Run makepkg -si on that same folder
Last edited by dlopes7 (2025-11-17 17:29:51)
Offline
Post #8 only shows a diff file (that non developers don't even understand)...
Then how can such a user determine if the patch applied in the PKGBUILD itself is safe?
...and new folks don't know where that file even is.
If using yay:
If yay is preventing a user from knowing where the PKGBUILD is that not a reason to stop using yay? Along with perhaps wondering why a new user is installing an unmaintained package with know vulnerabilities.
Offline
This is why people have a hard time getting into linux
Pfeeewww… and I already thought it's because I'm such a dick.
why make a new person life that hard
Who is making who's life hard? By what?
Delete the folder kde-webengine if it exists
Why would there be a kde-webengine directory anywhere inside the qt5-webengine clone?
If using yay
And if not? This is the first time yay is brought up by anyone.
Navigate to
And if the hypothetical yay user isn't using this as build dir?
non developers don't even understand … and new folks don't know where that file even is
So … https://en.wikipedia.org/wiki/Psychological_projection ?
Offline