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 BE38B138334 for ; Sat, 16 Nov 2019 10:10:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 07563E07D7; Sat, 16 Nov 2019 10:10:35 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 E1898E07D7 for ; Sat, 16 Nov 2019 10:10:34 +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 BDE5134CEAD for ; Sat, 16 Nov 2019 10:10:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 15A6285C for ; Sat, 16 Nov 2019 10:10:32 +0000 (UTC) From: "Miroslav Šulc" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Miroslav Šulc" Message-ID: <1573899024.fd2b348551bff38b6493b40a7061683339e27a93.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-sound/linuxsampler/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-sound/linuxsampler/linuxsampler-2.1.1.ebuild X-VCS-Directories: media-sound/linuxsampler/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: fd2b348551bff38b6493b40a7061683339e27a93 X-VCS-Branch: master Date: Sat, 16 Nov 2019 10:10:32 +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: cfbd8726-f2a7-42ff-ac54-c6c057c31a82 X-Archives-Hash: b265d97c9a901f2385ac6f539a3142aa commit: fd2b348551bff38b6493b40a7061683339e27a93 Author: Miroslav Šulc gentoo org> AuthorDate: Sat Nov 16 10:10:10 2019 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Sat Nov 16 10:10:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd2b3485 media-sound/linuxsampler-2.1.1: fixed #700222 + removed -j1 tested several times without -j1 on -j9 and others and does not fail anymore Closes: https://bugs.gentoo.org/700222 Package-Manager: Portage-2.3.79, Repoman-2.3.18 Signed-off-by: Miroslav Šulc gentoo.org> media-sound/linuxsampler/linuxsampler-2.1.1.ebuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild b/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild index cb7d364ca29..0bde237a6cd 100644 --- a/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild +++ b/media-sound/linuxsampler/linuxsampler-2.1.1.ebuild @@ -16,7 +16,7 @@ IUSE="alsa doc jack lv2 sf2 sqlite" REQUIRED_USE="|| ( alsa jack )" RDEPEND=" - >=media-libs/libgig-4.1.0 + >=media-libs/libgig-4.2.0 media-libs/libsndfile[-minimal] alsa? ( media-libs/alsa-lib ) jack? ( virtual/jack ) @@ -61,7 +61,7 @@ src_configure() { } src_compile() { - emake -j1 # fails with parallel jobs, bug #666738 + emake use doc && emake docs }