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 5AB101382C5 for ; Wed, 23 Dec 2020 02:09:32 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B25E0E0986; Wed, 23 Dec 2020 02:09:31 +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 9E999E0986 for ; Wed, 23 Dec 2020 02:09:31 +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 138D234181F for ; Wed, 23 Dec 2020 02:09:29 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AC22142F for ; Wed, 23 Dec 2020 02:09:27 +0000 (UTC) From: "Aisha Tammy" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Aisha Tammy" Message-ID: <1608689361.48ea16c97d24238a69b94084fef157295126bf76.epsilon-0@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-apps/ndctl/ X-VCS-Repository: proj/sci X-VCS-Files: sys-apps/ndctl/ndctl-70.ebuild X-VCS-Directories: sys-apps/ndctl/ X-VCS-Committer: epsilon-0 X-VCS-Committer-Name: Aisha Tammy X-VCS-Revision: 48ea16c97d24238a69b94084fef157295126bf76 X-VCS-Branch: master Date: Wed, 23 Dec 2020 02:09:27 +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: 41b3f92f-9214-48ed-bd8a-0486d87921a3 X-Archives-Hash: 667caa099efc0216079c25b2a4b6326b commit: 48ea16c97d24238a69b94084fef157295126bf76 Author: Aisha Tammy aisha cc> AuthorDate: Wed Dec 23 02:09:21 2020 +0000 Commit: Aisha Tammy aisha cc> CommitDate: Wed Dec 23 02:09:21 2020 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=48ea16c9 sys-apps/ndctl: drop old version Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Aisha Tammy aisha.cc> sys-apps/ndctl/ndctl-70.ebuild | 60 ------------------------------------------ 1 file changed, 60 deletions(-) diff --git a/sys-apps/ndctl/ndctl-70.ebuild b/sys-apps/ndctl/ndctl-70.ebuild deleted file mode 100644 index 60cc559bf..000000000 --- a/sys-apps/ndctl/ndctl-70.ebuild +++ /dev/null @@ -1,60 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools bash-completion-r1 linux-info systemd - -DESCRIPTION="utility for managing the nvdimm sub-system in the linux kernel" -HOMEPAGE="https://pmem.io" - -if [[ ${PV} == 9999 ]]; then - inherit git-r3 - EGIT_REPO_URI="https://github.com/pmem/ndctl" -else - SRC_URI="https://github.com/pmem/ndctl/archive/v${PV}.tar.gz -> ${P}.tar.gz" - KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86" -fi - -LICENSE="LGPL-2.1" -SLOT="0" -RESTRICT="test" - -RDEPEND=" - dev-libs/json-c - sys-apps/keyutils - sys-apps/kmod - sys-apps/util-linux - virtual/udev -" -DEPEND="${RDEPEND}" -BDEPEND=" - app-text/asciidoc - app-text/xmlto - virtual/pkgconfig -" - -CONFIG_CHECK="~BLK_DEV_RAM_DAX ~FS_DAX ~X86_PMEM_LEGACY ~LIBNVDIMM ~BLK_DEV_PMEM \ -~ARCH_HAS_PMEM_API ~TRANSPARENT_HUGEPAGE ~MEMORY_HOTPLUG ~MEMORY_HOTREMOVE \ -~ZONE_DEVICE ~FS_DAX_PMD" - -src_prepare() { - "${S}"/git-version-gen - default - eautoreconf -} - -src_configure() { - econf \ - --disable-asciidoctor \ - --without-bash \ - --without-systemd \ - --with-keyutils -} - -src_install() { - emake DESTDIR="${D}" install - - dobashcomp contrib/${PN} - systemd_dounit ${PN}/ndctl-monitor.service -}