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 3A4B4138359 for ; Mon, 21 Sep 2020 13:53:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 67495E0814; Mon, 21 Sep 2020 13:53:27 +0000 (UTC) Received: from smtp.gentoo.org (mail.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 4BF43E0814 for ; Mon, 21 Sep 2020 13:53:27 +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 F35A9340E18 for ; Mon, 21 Sep 2020 13:53:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 6EEBA31A for ; Mon, 21 Sep 2020 13:53:24 +0000 (UTC) From: "Andrey Utkin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andrey Utkin" Message-ID: <1600696380.476a7c075c689161a076e520f50a7ec0bdc76d2a.andrey_utkin@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libstrophe/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libstrophe/libstrophe-0.9.2.ebuild dev-libs/libstrophe/libstrophe-0.9.3.ebuild X-VCS-Directories: dev-libs/libstrophe/ X-VCS-Committer: andrey_utkin X-VCS-Committer-Name: Andrey Utkin X-VCS-Revision: 476a7c075c689161a076e520f50a7ec0bdc76d2a X-VCS-Branch: master Date: Mon, 21 Sep 2020 13:53:24 +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: f71899aa-1b6a-421d-96dc-67297952cfc1 X-Archives-Hash: 74cc79ab5a303663df0bb0165b2b346f commit: 476a7c075c689161a076e520f50a7ec0bdc76d2a Author: Jakov Smolic sartura hr> AuthorDate: Mon Sep 7 19:56:55 2020 +0000 Commit: Andrey Utkin gentoo org> CommitDate: Mon Sep 21 13:53:00 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476a7c07 dev-libs/libstrophe: remove .a files Closes: https://bugs.gentoo.org/724898 Package-Manager: Portage-3.0.4, Repoman-3.0.1 Signed-off-by: Jakov Smolic sartura.hr> Signed-off-by: Andrey Utkin gentoo.org> dev-libs/libstrophe/libstrophe-0.9.2.ebuild | 4 ++-- dev-libs/libstrophe/libstrophe-0.9.3.ebuild | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dev-libs/libstrophe/libstrophe-0.9.2.ebuild b/dev-libs/libstrophe/libstrophe-0.9.2.ebuild index f95cbfb67f5..e370927cb13 100644 --- a/dev-libs/libstrophe/libstrophe-0.9.2.ebuild +++ b/dev-libs/libstrophe/libstrophe-0.9.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 @@ -42,5 +42,5 @@ src_compile() { src_install() { default use doc && dodoc -r examples - find "${D}" -name '*.la' -delete || die + find "${D}" -name '*.la' -o -name '*.a' -delete || die } diff --git a/dev-libs/libstrophe/libstrophe-0.9.3.ebuild b/dev-libs/libstrophe/libstrophe-0.9.3.ebuild index 5323315dc71..be09401f2e9 100644 --- a/dev-libs/libstrophe/libstrophe-0.9.3.ebuild +++ b/dev-libs/libstrophe/libstrophe-0.9.3.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 @@ -41,5 +41,5 @@ src_compile() { src_install() { default use doc && dodoc -r examples - find "${D}" -name '*.la' -delete || die + find "${D}" -name '*.la' -o -name '*.a' -delete || die }