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 DF9131382C5 for ; Sun, 20 May 2018 11:56:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 3D717E0A43; Sun, 20 May 2018 11:56:21 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 1A3D5E0A43 for ; Sun, 20 May 2018 11:56:21 +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 B397F335CD7 for ; Sun, 20 May 2018 11:56:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 738DC2A3 for ; Sun, 20 May 2018 11:56:17 +0000 (UTC) From: "Johannes Huber" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Johannes Huber" Message-ID: <1526817360.cab6b82d09e3fac4ea22e38326040c04005641ef.johu@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/hello/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/hello/Manifest app-misc/hello/hello-2.9.ebuild X-VCS-Directories: app-misc/hello/ X-VCS-Committer: johu X-VCS-Committer-Name: Johannes Huber X-VCS-Revision: cab6b82d09e3fac4ea22e38326040c04005641ef X-VCS-Branch: master Date: Sun, 20 May 2018 11:56: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-Archives-Salt: c24867b0-428e-403d-bf76-ca77e591f71e X-Archives-Hash: 53b566b8e72d7b48b031db6cf6b642d3 commit: cab6b82d09e3fac4ea22e38326040c04005641ef Author: Johannes Huber gentoo org> AuthorDate: Sun May 20 11:56:00 2018 +0000 Commit: Johannes Huber gentoo org> CommitDate: Sun May 20 11:56:00 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cab6b82d app-misc/hello: Remove 2.9 Uses deprecated EAPI 4 and overshadowed by 2.10. Package-Manager: Portage-2.3.38, Repoman-2.3.9 app-misc/hello/Manifest | 1 - app-misc/hello/hello-2.9.ebuild | 27 --------------------------- 2 files changed, 28 deletions(-) diff --git a/app-misc/hello/Manifest b/app-misc/hello/Manifest index 785d241d2cc..8691849a485 100644 --- a/app-misc/hello/Manifest +++ b/app-misc/hello/Manifest @@ -1,2 +1 @@ DIST hello-2.10.tar.gz 725946 BLAKE2B 0af5a3890191dff6e570e2297c20f72c8d0598cadfc2b291e2fe3612e73f7eca48b3b63032c883f11a8a5764c757625c4a736904d756d451ad0516578040290f SHA512 e301d785135c52575a8b4c35994c0316f8d366451f604eb5e74c1f907077502aebd5a1a32cd1e26cd7ca32c22f4de5623a335f8ae7e735ac977420df664f01de -DIST hello-2.9.tar.gz 723645 BLAKE2B 5188d88d73c6308a2675502c1b29c9dd5aa27ea6c7e9c76727adf2440c19457d579b4c86b35278e137092d3057148e6a0234d36053b4ae3455e541cb75a7aaa7 SHA512 b2be91f436d8ebbf431af7f2bb9b61453cfcd336e2745971be48c2c94d7b6ea615e05ef0526fc25f235377d3f7073e1c432c0d522891a8978252267a61aeec86 diff --git a/app-misc/hello/hello-2.9.ebuild b/app-misc/hello/hello-2.9.ebuild deleted file mode 100644 index 93153540fb5..00000000000 --- a/app-misc/hello/hello-2.9.ebuild +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="4" - -DESCRIPTION="GNU \"Hello, world\" application" -HOMEPAGE="https://www.gnu.org/software/hello/" -SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" - -LICENSE="FDL-1.3 GPL-3" -SLOT="0" -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux" -IUSE="nls" - -DOCS=(AUTHORS ChangeLog ChangeLog.O NEWS README THANKS TODO contrib/evolution.txt) - -src_configure() { - econf $(use_enable nls) -} - -src_install() { - default - - for x in contrib man doc po tests src; do - newdoc $x/ChangeLog ChangeLog.$x || die "newdoc failed" - done -}