From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-1047026-garchives=archives.gentoo.org@lists.gentoo.org> 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 56746138335 for <garchives@archives.gentoo.org>; Sat, 15 Sep 2018 15:41:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 28277E0BDA; Sat, 15 Sep 2018 15:41:08 +0000 (UTC) Received: from smtp.gentoo.org (dev.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 F0868E0BD7 for <gentoo-commits@lists.gentoo.org>; Sat, 15 Sep 2018 15:41:07 +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 1C0DE335CD8 for <gentoo-commits@lists.gentoo.org>; Sat, 15 Sep 2018 15:41:06 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0C4693D5 for <gentoo-commits@lists.gentoo.org>; Sat, 15 Sep 2018 15:41:04 +0000 (UTC) From: "Mikle Kolyada" <zlogene@gentoo.org> To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mikle Kolyada" <zlogene@gentoo.org> Message-ID: <1537026046.d309b10b71593e8c9de7edcf3775ea6bb2656b57.zlogene@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/mbr/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/mbr/mbr-1.1.11.ebuild X-VCS-Directories: sys-boot/mbr/ X-VCS-Committer: zlogene X-VCS-Committer-Name: Mikle Kolyada X-VCS-Revision: d309b10b71593e8c9de7edcf3775ea6bb2656b57 X-VCS-Branch: master Date: Sat, 15 Sep 2018 15:41:04 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 1027c24f-12a0-450b-8bfd-b7e304f52d1c X-Archives-Hash: 8ac0bbb728c049bb6ccb2c161530119a commit: d309b10b71593e8c9de7edcf3775ea6bb2656b57 Author: Mikle Kolyada <zlogene <AT> gentoo <DOT> org> AuthorDate: Sat Sep 15 15:40:46 2018 +0000 Commit: Mikle Kolyada <zlogene <AT> gentoo <DOT> org> CommitDate: Sat Sep 15 15:40:46 2018 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d309b10b sys-boot/mbr: Drop old Package-Manager: Portage-2.3.40, Repoman-2.3.9 sys-boot/mbr/mbr-1.1.11.ebuild | 34 ---------------------------------- 1 file changed, 34 deletions(-) diff --git a/sys-boot/mbr/mbr-1.1.11.ebuild b/sys-boot/mbr/mbr-1.1.11.ebuild deleted file mode 100644 index b1c9a61b214..00000000000 --- a/sys-boot/mbr/mbr-1.1.11.ebuild +++ /dev/null @@ -1,34 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -DESCRIPTION="A replacement master boot record for IBM-PC compatible computers" -HOMEPAGE="http://www.chiark.greenend.org.uk/~neilt/mbr/" -SRC_URI="http://www.chiark.greenend.org.uk/~neilt/mbr/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="-alpha amd64 -ppc -sparc x86" -IUSE="test" - -DEPEND="sys-devel/bin86 - test? ( dev-vcs/rcs )" -RDEPEND="" - -src_unpack() { - unpack ${A} - cd "${S}" - # do not treat warnings as errors - sed -i -e "s: -Werror::" {,harness/}Makefile.{in,am} -} - -src_install() { - dosbin install-mbr - doman install-mbr.8 - dodoc AUTHORS ChangeLog install-mbr.8 NEWS README TODO -} - -pkg_postinst() { - elog "To install the MBR, run /sbin/install-mbr" -}