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 C06F71382C5 for ; Sun, 20 May 2018 00:33:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B7EFAE0997; Sun, 20 May 2018 00:33:25 +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 927D3E0997 for ; Sun, 20 May 2018 00:33:25 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 72FC6335CC6 for ; Sun, 20 May 2018 00:33:24 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 525232A9 for ; Sun, 20 May 2018 00:33:21 +0000 (UTC) From: "Aaron Bauman" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aaron Bauman" Message-ID: <1526776276.7b3107f4fc9b60b0d78a0e56513f900870f3b9d5.bman@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/mvcase/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/mvcase/mvcase-0.1-r1.ebuild X-VCS-Directories: app-misc/mvcase/ X-VCS-Committer: bman X-VCS-Committer-Name: Aaron Bauman X-VCS-Revision: 7b3107f4fc9b60b0d78a0e56513f900870f3b9d5 X-VCS-Branch: master Date: Sun, 20 May 2018 00:33:21 +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: f5946154-3380-4689-b2bc-7ecb8eb409b1 X-Archives-Hash: dd9003b007aab7222c8e4925bf43b388 commit: 7b3107f4fc9b60b0d78a0e56513f900870f3b9d5 Author: Michael Mair-Keimberger gmail com> AuthorDate: Sat May 19 06:54:14 2018 +0000 Commit: Aaron Bauman gentoo org> CommitDate: Sun May 20 00:31:16 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b3107f4 app-misc/mvcase: remove old Closes: https://github.com/gentoo/gentoo/pull/8467 app-misc/mvcase/mvcase-0.1-r1.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/app-misc/mvcase/mvcase-0.1-r1.ebuild b/app-misc/mvcase/mvcase-0.1-r1.ebuild deleted file mode 100644 index 817386ef378..00000000000 --- a/app-misc/mvcase/mvcase-0.1-r1.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI="2" - -inherit eutils toolchain-funcs - -DESCRIPTION="A modified version of mv, used to convert filenames to lower/upper case" -HOMEPAGE="http://www.ibiblio.org/pub/Linux/utils/file" -SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc x86" -IUSE="" - -DEPEND="dev-libs/shhopt" -RDEPEND="${DEPEND}" - -src_prepare() { - epatch "${FILESDIR}"/${P}-includes.patch \ - "${FILESDIR}"/${P}-flags.patch -} - -src_compile() { - tc-export CC - emake || die -} - -src_install() { - dobin mvcase || die - doman mvcase.1 - dodoc INSTALL -}