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 58670138359 for ; Thu, 7 May 2020 06:14:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 7A57AE09AB; Thu, 7 May 2020 06:14:22 +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 590FDE09AB for ; Thu, 7 May 2020 06:14:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 DD77534F573 for ; Thu, 7 May 2020 06:14:19 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C5B631F2 for ; Thu, 7 May 2020 06:14:17 +0000 (UTC) From: "Jeroen Roovers" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jeroen Roovers" Message-ID: <1588832053.a7791493c006dabbcc39c9dfe512dcc0b1d24d73.jer@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-portage/euses/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-portage/euses/Manifest app-portage/euses/euses-2.6.0.ebuild X-VCS-Directories: app-portage/euses/ X-VCS-Committer: jer X-VCS-Committer-Name: Jeroen Roovers X-VCS-Revision: a7791493c006dabbcc39c9dfe512dcc0b1d24d73 X-VCS-Branch: master Date: Thu, 7 May 2020 06:14:17 +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: e689418e-54f6-4938-8b64-cbaa4069e3a8 X-Archives-Hash: b433bf8ca95fbca685734baa07ea55b4 commit: a7791493c006dabbcc39c9dfe512dcc0b1d24d73 Author: Jeroen Roovers gentoo org> AuthorDate: Thu May 7 06:13:06 2020 +0000 Commit: Jeroen Roovers gentoo org> CommitDate: Thu May 7 06:14:13 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7791493 app-portage/euses: Version 2.6.0 Package-Manager: Portage-2.3.99, Repoman-2.3.22 Closes: https://bugs.gentoo.org/show_bug.cgi?id=720350 Signed-off-by: Jeroen Roovers gentoo.org> app-portage/euses/Manifest | 1 + app-portage/euses/euses-2.6.0.ebuild | 20 ++++++++++++++++++++ 2 files changed, 21 insertions(+) diff --git a/app-portage/euses/Manifest b/app-portage/euses/Manifest index 48b516b8a1b..3ff7df3748f 100644 --- a/app-portage/euses/Manifest +++ b/app-portage/euses/Manifest @@ -1 +1,2 @@ DIST euses-2.5.9.tar.bz2 44281 BLAKE2B 2da1309f8eeb5b4999212ddb0b2fb59a8fbd17c49f2c8e7bbfa64bba5c7831f84289ef833d9787506ed735ea1be92dc1f0ab765501b30f123a7f2f168da42c60 SHA512 afbacdcb73bc10548b32050bc38f71e9ac8613277d2cd961f2f96e32e7fa1827c5a208e68a6994efdcaa9e4a64a581138daadab2296a5e60c5e29677dbbd9ef8 +DIST euses-2.6.0.tar.bz2 44315 BLAKE2B 90db468c60f439366c7a4bf1a111af48a67f6bc0a10a391563e79db926be34da423fcd5bf667359a9b6426882e95a240742555fe62de71fcca8fa92fa307df8d SHA512 b7f81b171380b2abd6d4b00f4294f7d6ef86e5b0ba8dc5b735bc389deed4b24c3d6cd45ec70f5a01e37182ca09e5798385a93afff413d4fd71841dc12ea3e86c diff --git a/app-portage/euses/euses-2.6.0.ebuild b/app-portage/euses/euses-2.6.0.ebuild new file mode 100644 index 00000000000..f5a95611896 --- /dev/null +++ b/app-portage/euses/euses-2.6.0.ebuild @@ -0,0 +1,20 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="look up USE flag descriptions fast" +HOMEPAGE="https://www.xs4all.nl/~rooversj/gentoo" +SRC_URI="https://www.xs4all.nl/~rooversj/gentoo/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86" + +S=${WORKDIR} + +src_install() { + dobin ${PN} + doman ${PN}.1 + dodoc ChangeLog +}