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 0CAD9158091 for ; Sun, 19 Jun 2022 08:49:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 44C7DE0919; Sun, 19 Jun 2022 08:49:28 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 230F5E0919 for ; Sun, 19 Jun 2022 08:49:28 +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) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 471A634185E for ; Sun, 19 Jun 2022 08:49:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A1DD5480 for ; Sun, 19 Jun 2022 08:49:25 +0000 (UTC) From: "Lars Wendler" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Lars Wendler" Message-ID: <1655628530.d3b3d13585838dfeaabd26b699c8fcf6bde84f60.polynomial-c@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-otr/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild x11-plugins/pidgin-otr/pidgin-otr-4.0.2.ebuild X-VCS-Directories: x11-plugins/pidgin-otr/ X-VCS-Committer: polynomial-c X-VCS-Committer-Name: Lars Wendler X-VCS-Revision: d3b3d13585838dfeaabd26b699c8fcf6bde84f60 X-VCS-Branch: master Date: Sun, 19 Jun 2022 08:49:25 +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: ca7e08ac-5505-4285-b91e-7018a451e14c X-Archives-Hash: 382284f0b5197efb7a5a9e52554f6e7f commit: d3b3d13585838dfeaabd26b699c8fcf6bde84f60 Author: Lars Wendler gentoo org> AuthorDate: Sun Jun 19 08:48:50 2022 +0000 Commit: Lars Wendler gentoo org> CommitDate: Sun Jun 19 08:48:50 2022 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3b3d135 x11-plugins/pidgin-otr: Revbump to remove useless .la files Closes: https://bugs.gentoo.org/853019 Signed-off-by: Lars Wendler gentoo.org> ...idgin-otr-4.0.2.ebuild => pidgin-otr-4.0.2-r1.ebuild} | 16 ++++++++++++---- 1 file changed, 12 insertions(+), 4 deletions(-) diff --git a/x11-plugins/pidgin-otr/pidgin-otr-4.0.2.ebuild b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild similarity index 73% rename from x11-plugins/pidgin-otr/pidgin-otr-4.0.2.ebuild rename to x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild index 13cd6b3ec41f..fce6c905d795 100644 --- a/x11-plugins/pidgin-otr/pidgin-otr-4.0.2.ebuild +++ b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r1.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2022 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=6 +EAPI=8 DESCRIPTION="(OTR) Messaging allows you to have private conversations over instant messaging" HOMEPAGE="http://www.cypherpunks.ca/otr/" @@ -16,8 +16,16 @@ RDEPEND="dev-libs/libgcrypt:0 net-im/pidgin[gtk] >=net-libs/libotr-4.0.0 x11-libs/gtk+:2" -DEPEND="${RDEPEND} +DEPEND="${RDEPEND}" +BDEPEND=" dev-util/intltool - virtual/pkgconfig" + virtual/pkgconfig +" DOCS=( AUTHORS ChangeLog NEWS README ) + +src_install() { + default + + find "${ED}" -type f -name "*.la" -delete || die +}