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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 943AF138351 for ; Sun, 3 May 2020 09:49:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 98049E09CA; Sun, 3 May 2020 09:49:20 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 4182DE09CA for ; Sun, 3 May 2020 09:49:20 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 37B9734F21D for ; Sun, 3 May 2020 09:49:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B67F81C8 for ; Sun, 3 May 2020 09:49:15 +0000 (UTC) From: "Pacho Ramos" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Pacho Ramos" Message-ID: <1588499346.73581e1095aa6df83f46de376faeb962c08254ba.pacho@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/cdparanoia/files/, media-sound/cdparanoia/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild media-sound/cdparanoia/files/cdparanoia-missing-sys_types_h.patch X-VCS-Directories: media-sound/cdparanoia/files/ media-sound/cdparanoia/ X-VCS-Committer: pacho X-VCS-Committer-Name: Pacho Ramos X-VCS-Revision: 73581e1095aa6df83f46de376faeb962c08254ba X-VCS-Branch: master Date: Sun, 3 May 2020 09:49:15 +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: ae2f1d09-2ae2-4c1e-8951-69b44ff0f576 X-Archives-Hash: f2b6bbceed09f600c417f7b47bad314f commit: 73581e1095aa6df83f46de376faeb962c08254ba Author: Pacho Ramos gentoo org> AuthorDate: Sun May 3 09:27:50 2020 +0000 Commit: Pacho Ramos gentoo org> CommitDate: Sun May 3 09:49:06 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73581e10 media-sound/cdparanoia: Fix missing musl includes Thanks-to: Toralf Förster Thanks-to: Michael 'veremitz' Everitt Closes: https://bugs.gentoo.org/713740 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Signed-off-by: Pacho Ramos gentoo.org> media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild | 4 +++- .../files/cdparanoia-missing-sys_types_h.patch | 24 ++++++++++++++++++++++ 2 files changed, 27 insertions(+), 1 deletion(-) diff --git a/media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild b/media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild index 38d07ee8cf0..afbbe92e3f8 100644 --- a/media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild +++ b/media-sound/cdparanoia/cdparanoia-3.10.2-r7.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2019 Gentoo Authors +# Copyright 1999-2020 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 @@ -27,6 +27,8 @@ src_prepare() { # Patches from previus patchset + Fedora + Debian eapply "${WORKDIR}"/patches/*.patch + eapply "${FILESDIR}"/${PN}-missing-sys_types_h.patch #713740 + mv configure.guess config.guess mv configure.sub config.sub diff --git a/media-sound/cdparanoia/files/cdparanoia-missing-sys_types_h.patch b/media-sound/cdparanoia/files/cdparanoia-missing-sys_types_h.patch new file mode 100644 index 00000000000..010ed4a844c --- /dev/null +++ b/media-sound/cdparanoia/files/cdparanoia-missing-sys_types_h.patch @@ -0,0 +1,24 @@ +diff -Naur cdparanoia-III-10.2.orig/interface/utils.h cdparanoia-III-10.2/interface/utils.h +--- cdparanoia-III-10.2.orig/interface/utils.h 2008-08-14 06:56:20.000000000 -0700 ++++ cdparanoia-III-10.2/interface/utils.h 2016-05-30 14:35:57.071615252 -0700 +@@ -3,6 +3,8 @@ + #include + #include + ++#include ++ + /* I wonder how many alignment issues this is gonna trip in the + future... it shouldn't trip any... I guess we'll find out :) */ + +diff -Naur cdparanoia-III-10.2.orig/utils.h cdparanoia-III-10.2/utils.h +--- cdparanoia-III-10.2.orig/utils.h 2008-08-22 02:39:06.000000000 -0700 ++++ cdparanoia-III-10.2/utils.h 2016-05-30 14:35:33.101409747 -0700 +@@ -4,6 +4,8 @@ + #include + #include + ++#include ++ + extern long buffering_write(int outf, char *buffer, long num); + extern int buffering_close(int fd); +