From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1398210-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3857E158090 for <garchives@archives.gentoo.org>; Wed, 18 May 2022 14:02:55 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2EEC1E0898; Wed, 18 May 2022 14:02:54 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10825E0898 for <gentoo-commits@lists.gentoo.org>; Wed, 18 May 2022 14:02:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B075F341C5B for <gentoo-commits@lists.gentoo.org>; Wed, 18 May 2022 14:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8BE523B8 for <gentoo-commits@lists.gentoo.org>; Wed, 18 May 2022 14:02:50 +0000 (UTC) From: "Andreas Sturmlechner" <asturm@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" <asturm@gentoo.org> Message-ID: <1652882550.d7fd510ec2f70db9fa51c26234075cdcb4072a80.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-cdr/isoimagewriter/files/, app-cdr/isoimagewriter/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-cdr/isoimagewriter/files/isoimagewriter-0.9-missing-headers.patch app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild X-VCS-Directories: app-cdr/isoimagewriter/ app-cdr/isoimagewriter/files/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: d7fd510ec2f70db9fa51c26234075cdcb4072a80 X-VCS-Branch: master Date: Wed, 18 May 2022 14:02:50 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 2c9418e3-294b-43e5-81cf-1ef4615c5b8b X-Archives-Hash: 40d2f5ef6b510f65cd62a172b5a567e1 commit: d7fd510ec2f70db9fa51c26234075cdcb4072a80 Author: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> AuthorDate: Wed May 18 14:02:30 2022 +0000 Commit: Andreas Sturmlechner <asturm <AT> gentoo <DOT> org> CommitDate: Wed May 18 14:02:30 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7fd510e app-cdr/isoimagewriter: Fix build with dev-qt/qtnetwork[-ssl] Closes: https://bugs.gentoo.org/842657 Package-Manager: Portage-3.0.30, Repoman-3.0.3 Signed-off-by: Andreas Sturmlechner <asturm <AT> gentoo.org> .../files/isoimagewriter-0.9-missing-headers.patch | 30 ++++++++++++++++++++++ app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild | 2 ++ 2 files changed, 32 insertions(+) diff --git a/app-cdr/isoimagewriter/files/isoimagewriter-0.9-missing-headers.patch b/app-cdr/isoimagewriter/files/isoimagewriter-0.9-missing-headers.patch new file mode 100644 index 000000000000..edff650a6a93 --- /dev/null +++ b/app-cdr/isoimagewriter/files/isoimagewriter-0.9-missing-headers.patch @@ -0,0 +1,30 @@ +From fad0ba93445e512e81c56e872b77d9e5b9d56fa9 Mon Sep 17 00:00:00 2001 +From: Andreas Sturmlechner <asturm@gentoo.org> +Date: Wed, 18 May 2022 15:57:26 +0200 +Subject: [PATCH] Add missing headers + +Downstream bug: https://bugs.gentoo.org/842657 + +Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org> +--- + isoimagewriter/fetchisojob.cpp | 2 ++ + 1 file changed, 2 insertions(+) + +diff --git a/isoimagewriter/fetchisojob.cpp b/isoimagewriter/fetchisojob.cpp +index 42c71c1..e5ced11 100644 +--- a/isoimagewriter/fetchisojob.cpp ++++ b/isoimagewriter/fetchisojob.cpp +@@ -5,8 +5,10 @@ + */ + + #include "fetchisojob.h" ++#include <QDebug> + #include <QDir> + #include <QNetworkReply> ++#include <QSharedPointer> + #include <QStandardPaths> + + FetchIsoJob::FetchIsoJob(QObject *parent) +-- +2.35.1 + diff --git a/app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild b/app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild index 5eaf2976fc89..3eb06b7e4d5b 100644 --- a/app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild +++ b/app-cdr/isoimagewriter/isoimagewriter-0.9.ebuild @@ -32,3 +32,5 @@ DEPEND=" >=kde-frameworks/solid-${KFMIN}:5 " RDEPEND="${DEPEND}" + +PATCHES=( "${FILESDIR}/${P}-missing-headers.patch" ) # bug 842657