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 A5A57138359 for ; Tue, 29 Sep 2020 17:36:49 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A87D9E08C4; Tue, 29 Sep 2020 17:36:48 +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 89332E08C4 for ; Tue, 29 Sep 2020 17:36:48 +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 98752335D9E for ; Tue, 29 Sep 2020 17:36:46 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E1D63385 for ; Tue, 29 Sep 2020 17:36:44 +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: <1601400983.66a75e647cefce3dffc23f81f9ec6ca7799d774d.fordfrog@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/maven-bin/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/maven-bin/maven-bin-3.6.2.ebuild X-VCS-Directories: dev-java/maven-bin/ X-VCS-Committer: fordfrog X-VCS-Committer-Name: Miroslav Šulc X-VCS-Revision: 66a75e647cefce3dffc23f81f9ec6ca7799d774d X-VCS-Branch: master Date: Tue, 29 Sep 2020 17:36:44 +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: d62904ff-f4df-4185-be28-2eb402f9aa81 X-Archives-Hash: 7c67374a4a73072ac128ce3269cb08ab commit: 66a75e647cefce3dffc23f81f9ec6ca7799d774d Author: Miroslav Šulc gentoo org> AuthorDate: Tue Sep 29 17:36:23 2020 +0000 Commit: Miroslav Šulc gentoo org> CommitDate: Tue Sep 29 17:36:23 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66a75e64 dev-java/maven-bin: fixed qa and removed useless files in 3.6.2 Closes: https://bugs.gentoo.org/734908 Closes: https://bugs.gentoo.org/734906 Closes: https://bugs.gentoo.org/704618 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Miroslav Šulc gentoo.org> dev-java/maven-bin/maven-bin-3.6.2.ebuild | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/dev-java/maven-bin/maven-bin-3.6.2.ebuild b/dev-java/maven-bin/maven-bin-3.6.2.ebuild index 622589dbd25..e6cf194b761 100644 --- a/dev-java/maven-bin/maven-bin-3.6.2.ebuild +++ b/dev-java/maven-bin/maven-bin-3.6.2.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 @@ -30,6 +30,11 @@ S="${WORKDIR}/${MY_P}" MAVEN="${PN}-${SLOT}" MAVEN_SHARE="/usr/share/${MAVEN}" +QA_FLAGS_IGNORED=( + "${MAVEN_SHARE}/lib/jansi-native/linux32/libjansi.so" + "${MAVEN_SHARE}/lib/jansi-native/linux64/libjansi.so" +) + # TODO: # We should use jars from packages, instead of what is bundled. src_install() { @@ -48,6 +53,9 @@ src_install() { # See bug #342901. echo "CONFIG_PROTECT=\"${MAVEN_SHARE}/conf\"" > "${T}/25${MAVEN}" || die doenvd "${T}/25${MAVEN}" + + # remove broken useless files (bug #734906 and #704618) + rm -r "${ED}"/${MAVEN_SHARE}/lib/jansi-native/freebsd* || die "Failed to remove FreeBSD files" } pkg_postinst() {