From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C853A15ACFB for ; Tue, 25 Apr 2023 19:02:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 26643E09DE; Tue, 25 Apr 2023 19:02:34 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 0D742E09DE for ; Tue, 25 Apr 2023 19:02:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 29774340EDF for ; Tue, 25 Apr 2023 19:02:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id BCB5D8AC for ; Tue, 25 Apr 2023 19:02:31 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1682449342.b7cfd017933a1a2d9eb86fec0ab79625e0abb016.ulm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/pdfpc/, app-misc/pdfpc/files/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/pdfpc/files/pdfpc-4.6.0-vala-0.56.7.patch app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild X-VCS-Directories: app-misc/pdfpc/files/ app-misc/pdfpc/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: b7cfd017933a1a2d9eb86fec0ab79625e0abb016 X-VCS-Branch: master Date: Tue, 25 Apr 2023 19:02:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c9dddcaf-52c1-4241-b4e8-e6cf1f9bbded X-Archives-Hash: 32ec2ee2ab1319ab9e882911f7ca4b36 commit: b7cfd017933a1a2d9eb86fec0ab79625e0abb016 Author: Ulrich Müller gentoo org> AuthorDate: Tue Apr 25 19:00:25 2023 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Tue Apr 25 19:02:22 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7cfd017 app-misc/pdfpc: Fix build failure with vala-0.56.7 Closes: https://bugs.gentoo.org/904970 Signed-off-by: Ulrich Müller gentoo.org> app-misc/pdfpc/files/pdfpc-4.6.0-vala-0.56.7.patch | 31 ++++++++++++++++++++++ app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild | 5 +++- 2 files changed, 35 insertions(+), 1 deletion(-) diff --git a/app-misc/pdfpc/files/pdfpc-4.6.0-vala-0.56.7.patch b/app-misc/pdfpc/files/pdfpc-4.6.0-vala-0.56.7.patch new file mode 100644 index 000000000000..9aff761b471f --- /dev/null +++ b/app-misc/pdfpc/files/pdfpc-4.6.0-vala-0.56.7.patch @@ -0,0 +1,31 @@ +https://github.com/pdfpc/pdfpc/issues/686 +https://bugs.gentoo.org/904970 + +commit 18beaecbbcc066e0d4c889b3aa3ecaa7351f7768 +Author: Evgeny Stambulchik +Date: Tue, 25 Apr 2023 16:11:25 +0300 + + Create Lists of nullable types + +--- a/src/classes/drawings/drawing_commands.vala ++++ b/src/classes/drawings/drawing_commands.vala +@@ -54,8 +54,8 @@ + } + + public void clear() { +- this.drawing_commands = new List(); +- this.redo_commands = new List(); ++ this.drawing_commands = new List(); ++ this.redo_commands = new List(); + } + + public void add_line(bool is_eraser, +@@ -70,7 +70,7 @@ + + // After adding a new line you can no longer redo the old + // path. +- this.redo_commands = new List(); // clear ++ this.redo_commands = new List(); // clear + + bool new_path = true; + double epsilon = 1e-4; // Less than 0.1 pixel for a 1000x1000 img diff --git a/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild b/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild index c5e511d5a6f4..0b9adbde79e7 100644 --- a/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild +++ b/app-misc/pdfpc/pdfpc-4.6.0-r1.ebuild @@ -55,7 +55,10 @@ RDEPEND=" DEPEND="${RDEPEND}" BDEPEND="$(vala_depend)" -PATCHES=("${FILESDIR}/${P}-no-movies.patch") +PATCHES=( + "${FILESDIR}/${P}-no-movies.patch" + "${FILESDIR}/${P}-vala-0.56.7.patch" +) DOCS=( CHANGELOG.rst