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 DFDC1158086 for ; Thu, 21 Oct 2021 12:18:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1E64AE0898; Thu, 21 Oct 2021 12:18:33 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DCABBE0898 for ; Thu, 21 Oct 2021 12:18:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B1A633435D3 for ; Thu, 21 Oct 2021 12:18:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4F43C8F for ; Thu, 21 Oct 2021 12:18:30 +0000 (UTC) From: "Florian Schmaus" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Florian Schmaus" Message-ID: <1634818705.747a84acf7d8cfbe7f3054958dfb0baadda1a266.flow@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-gpg/ X-VCS-Repository: repo/gentoo X-VCS-Files: x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild X-VCS-Directories: x11-plugins/pidgin-gpg/ X-VCS-Committer: flow X-VCS-Committer-Name: Florian Schmaus X-VCS-Revision: 747a84acf7d8cfbe7f3054958dfb0baadda1a266 X-VCS-Branch: master Date: Thu, 21 Oct 2021 12:18:30 +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: a2f0f0d9-9201-48bc-a8de-648105b673c5 X-Archives-Hash: c36c14f49bd82df697bd3024c1295d69 commit: 747a84acf7d8cfbe7f3054958dfb0baadda1a266 Author: Azamat H. Hackimov gmail com> AuthorDate: Thu Oct 21 11:55:03 2021 +0000 Commit: Florian Schmaus gentoo org> CommitDate: Thu Oct 21 12:18:25 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=747a84ac x11-plugins/pidgin-gpg: bump to EAPI 8 Migrate to EAPI=8, update license to GPL-3+, ebuild cleanup. Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Azamat H. Hackimov gmail.com> Closes: https://github.com/gentoo/gentoo/pull/22655 Closes: https://bugs.gentoo.org/819147 Signed-off-by: Florian Schmaus gentoo.org> x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild b/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild index 83b3d544c2d..05c290348af 100644 --- a/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild +++ b/x11-plugins/pidgin-gpg/pidgin-gpg-0.9.3.ebuild @@ -1,7 +1,7 @@ # Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI=5 +EAPI=8 inherit autotools @@ -9,19 +9,19 @@ DESCRIPTION="Pidgin GPG/OpenPGP (XEP-0027) plugin" HOMEPAGE="https://github.com/Draghtnod/Pidgin-GPG" SRC_URI="https://github.com/Draghtnod/Pidgin-GPG/archive/v${PV}.tar.gz -> ${P}.tar.gz" -LICENSE="GPL-3" +LICENSE="GPL-3+" SLOT="0" KEYWORDS="~amd64 ~riscv ~x86" -IUSE="" RDEPEND="app-crypt/gpgme net-im/pidgin" -DEPEND="${RDEPEND} - virtual/pkgconfig" +DEPEND="${RDEPEND}" +BDEPEND="virtual/pkgconfig" S="${WORKDIR}/Pidgin-GPG-${PV}" src_prepare() { + default eautoreconf }