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 667C2138359 for ; Thu, 6 Aug 2020 21:22:51 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 835C7E0830; Thu, 6 Aug 2020 21:22:50 +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 664F1E082B for ; Thu, 6 Aug 2020 21:22:50 +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 0F5EA34F0A4 for ; Thu, 6 Aug 2020 21:22:49 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 83AF02FC for ; Thu, 6 Aug 2020 21:22:47 +0000 (UTC) From: "Sergei Trofimovich" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sergei Trofimovich" Message-ID: <1596748956.74e203a8b1b244a7a9984724af924bdef16c5078.slyfox@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/diskdev_cmds/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r2.ebuild X-VCS-Directories: sys-fs/diskdev_cmds/ X-VCS-Committer: slyfox X-VCS-Committer-Name: Sergei Trofimovich X-VCS-Revision: 74e203a8b1b244a7a9984724af924bdef16c5078 X-VCS-Branch: master Date: Thu, 6 Aug 2020 21:22:47 +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: ef4f03aa-4373-4db8-abf9-26ddb3726af8 X-Archives-Hash: 3b4b9841eb6c29a259a7c78ac25b875c commit: 74e203a8b1b244a7a9984724af924bdef16c5078 Author: Sergei Trofimovich gentoo org> AuthorDate: Thu Aug 6 21:17:03 2020 +0000 Commit: Sergei Trofimovich gentoo org> CommitDate: Thu Aug 6 21:22:36 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74e203a8 sys-fs/diskdev_cmds: drop old Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Sergei Trofimovich gentoo.org> .../diskdev_cmds/diskdev_cmds-332.14_p1-r2.ebuild | 49 ---------------------- 1 file changed, 49 deletions(-) diff --git a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r2.ebuild b/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r2.ebuild deleted file mode 100644 index 7262c18fcab..00000000000 --- a/sys-fs/diskdev_cmds/diskdev_cmds-332.14_p1-r2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit toolchain-funcs - -MY_PV=${PV%_p*} - -DESCRIPTION="HFS and HFS+ utils ported from OSX, supplies mkfs and fsck" -HOMEPAGE="http://opendarwin.org" -SRC_URI="http://darwinsource.opendarwin.org/tarballs/apsl/diskdev_cmds-${MY_PV}.tar.gz - mirror://gentoo/diskdev_cmds-${PV}.patch.bz2" -LICENSE="APSL-2" -SLOT="0" -KEYWORDS="amd64 ~arm ppc ppc64 x86" -IUSE="" -DEPEND="dev-libs/openssl" -RDEPEND="${DEPEND}" - -S="${WORKDIR}/${PN}-${MY_PV}" - -PATCHES=( - "${WORKDIR}"/diskdev_cmds-${PV}.patch - "${FILESDIR}"/diskdev_cmds-respect-cflags.patch -) - -src_compile() { - emake -f Makefile.lnx AR="$(tc-getAR)" CC="$(tc-getCC)" -} - -src_install() { - into / - - dosbin fsck_hfs.tproj/fsck_hfs - dosbin newfs_hfs.tproj/newfs_hfs - - dosym newfs_hfs /sbin/mkfs.hfs - dosym newfs_hfs /sbin/mkfs.hfsplus - dosym fsck_hfs /sbin/fsck.hfs - dosym fsck_hfs /sbin/fsck.hfsplus - doman newfs_hfs.tproj/newfs_hfs.8 - - newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfs.8 - newman newfs_hfs.tproj/newfs_hfs.8 mkfs.hfsplus.8 - doman fsck_hfs.tproj/fsck_hfs.8 - newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfs.8 - newman fsck_hfs.tproj/fsck_hfs.8 fsck.hfsplus.8 -}