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 CFF96158086 for ; Tue, 14 Dec 2021 16:07:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3CFE22BC05A; Tue, 14 Dec 2021 16:07:35 +0000 (UTC) Received: from smtp.gentoo.org (mail.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 10A1B2BC04E for ; Tue, 14 Dec 2021 16:07:33 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 2E58D343772 for ; Tue, 14 Dec 2021 16:07:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E0C3323E for ; Tue, 14 Dec 2021 16:07:30 +0000 (UTC) From: "Jakov Smolić" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jakov Smolić" Message-ID: <1639498020.7587b9a9f8749e14beacec23a4a3bdc289e22245.jsmolic@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/epkg/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/epkg/epkg-0.4-r1.ebuild X-VCS-Directories: app-portage/epkg/ X-VCS-Committer: jsmolic X-VCS-Committer-Name: Jakov Smolić X-VCS-Revision: 7587b9a9f8749e14beacec23a4a3bdc289e22245 X-VCS-Branch: master Date: Tue, 14 Dec 2021 16:07: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: 3c52ad59-0d7b-451d-9498-46f6474dd76f X-Archives-Hash: 7720a55c1e0a1b0ed7fda340b2e191c8 commit: 7587b9a9f8749e14beacec23a4a3bdc289e22245 Author: Jakov Smolić gentoo org> AuthorDate: Tue Dec 14 16:07:00 2021 +0000 Commit: Jakov Smolić gentoo org> CommitDate: Tue Dec 14 16:07:00 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7587b9a9 app-portage/epkg: Drop EAPI-5 ebuild Signed-off-by: Jakov Smolić gentoo.org> app-portage/epkg/epkg-0.4-r1.ebuild | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/app-portage/epkg/epkg-0.4-r1.ebuild b/app-portage/epkg/epkg-0.4-r1.ebuild deleted file mode 100644 index 9d9ca1ddef1c..000000000000 --- a/app-portage/epkg/epkg-0.4-r1.ebuild +++ /dev/null @@ -1,24 +0,0 @@ -# Copyright 1999-2019 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -DESCRIPTION="A simple portage wrapper which works like other package managers" -HOMEPAGE="https://github.com/jdhore/epkg" -SRC_URI="https://github.com/jdhore/${PN}/archive/${P}.tar.gz" - -LICENSE="BSD-2" -SLOT="0" -KEYWORDS="amd64 x86" -IUSE="" - -S="${WORKDIR}/${PN}-${P}" -DEPEND="" -RDEPEND="app-portage/eix - app-portage/gentoolkit - sys-apps/portage" - -src_install() { - dobin epkg - doman doc/epkg.1 -}