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 8596C138334 for ; Fri, 8 Nov 2019 00:44:00 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 94687E09BD; Fri, 8 Nov 2019 00:43:59 +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 75E68E09BD for ; Fri, 8 Nov 2019 00:43:59 +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 E86D934CA3F for ; Fri, 8 Nov 2019 00:43:57 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 77B4C88E for ; Fri, 8 Nov 2019 00:43:55 +0000 (UTC) From: "Robin H. Johnson" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Robin H. Johnson" Message-ID: <1573173817.e35496a92c76888f64aed8c64075bfc955626c82.robbat2@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-block/scsiping/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-block/scsiping/scsiping-0.0.1-r1.ebuild X-VCS-Directories: sys-block/scsiping/ X-VCS-Committer: robbat2 X-VCS-Committer-Name: Robin H. Johnson X-VCS-Revision: e35496a92c76888f64aed8c64075bfc955626c82 X-VCS-Branch: master Date: Fri, 8 Nov 2019 00:43:55 +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: 9debd5c1-49d1-4530-90be-58ee121cee91 X-Archives-Hash: 76012aaf86f482281f56f3101a5e5327 commit: e35496a92c76888f64aed8c64075bfc955626c82 Author: Robin H. Johnson gentoo org> AuthorDate: Fri Nov 8 00:43:23 2019 +0000 Commit: Robin H. Johnson gentoo org> CommitDate: Fri Nov 8 00:43:37 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e35496a9 sys-block/scsiping: EAPI7 bump Fixes: https://bugs.gentoo.org/show_bug.cgi?id=697200 Package-Manager: Portage-2.3.78, Repoman-2.3.17 Signed-off-by: Robin H. Johnson gentoo.org> sys-block/scsiping/scsiping-0.0.1-r1.ebuild | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/sys-block/scsiping/scsiping-0.0.1-r1.ebuild b/sys-block/scsiping/scsiping-0.0.1-r1.ebuild new file mode 100644 index 00000000000..4879d3b7f73 --- /dev/null +++ b/sys-block/scsiping/scsiping-0.0.1-r1.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +DESCRIPTION="SCSIPing pings a host on the SCSI-chain" +HOMEPAGE="https://www.vanheusden.com/Linux/" +SRC_URI="https://www.vanheusden.com/Linux/${P}.tgz" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" +RDEPEND="" +DEPEND="${RDEPEND}" + +src_prepare() { + sed -i -e '/strip scsiping/d' "${S}"/Makefile + default +} + +src_compile() { + emake DEBUG='' CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" +} + +src_install() { + dosbin scsiping +} + +pkg_postinst() { + ewarn "WARNING: using scsiping on a device with mounted partitions may be hazardous to your system!" +}