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 21D7A139695 for ; Sun, 19 Feb 2017 17:53:12 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 60EDAE0DFE; Sun, 19 Feb 2017 17:53:11 +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-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 30D2DE0DFE for ; Sun, 19 Feb 2017 17:53:11 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0CD97340AC7 for ; Sun, 19 Feb 2017 17:53:10 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 75A6A4D7D for ; Sun, 19 Feb 2017 17:53:08 +0000 (UTC) From: "Justin Lecher" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Justin Lecher" Message-ID: <1487526783.e8b0fd48193d3c44f958c9695e7cc4f08310048e.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/ X-VCS-Repository: proj/sci X-VCS-Files: sys-cluster/blcr/blcr-0.8.4.ebuild sys-cluster/blcr/blcr-0.8.5.ebuild X-VCS-Directories: sys-cluster/blcr/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: e8b0fd48193d3c44f958c9695e7cc4f08310048e X-VCS-Branch: master Date: Sun, 19 Feb 2017 17:53:08 +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: 3b7456db-ed4f-418a-b658-9d0b16a14c90 X-Archives-Hash: e56b6c1c7f484f8852fac20390b3b22e commit: e8b0fd48193d3c44f958c9695e7cc4f08310048e Author: Justin Lecher gentoo org> AuthorDate: Sun Feb 19 17:31:43 2017 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sun Feb 19 17:53:03 2017 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e8b0fd48 sys-cluster/blcr: Bump to EAPI=6 drop old Package-Manager: Portage-2.3.3, Repoman-2.3.1 Signed-off-by: Justin Lecher gentoo.org> sys-cluster/blcr/blcr-0.8.4.ebuild | 58 -------------------------------------- sys-cluster/blcr/blcr-0.8.5.ebuild | 8 +++--- 2 files changed, 4 insertions(+), 62 deletions(-) diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild deleted file mode 100644 index 5fbfc13cd..000000000 --- a/sys-cluster/blcr/blcr-0.8.4.ebuild +++ /dev/null @@ -1,58 +0,0 @@ -# Copyright 1999-2016 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit linux-mod - -DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux" -HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart" -SRC_URI="https://crd.lbl.gov/assets/Uploads/FTG/Projects/CheckpointRestart/downloads/${P}.tar.gz" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="~amd64 ~x86" -IUSE="" - -MAKEOPTS="${MAKEOPTS} -j1" - -# up to kernel 2.6.38 - -pkg_setup() { - local msg - linux-info_pkg_setup - - # kernel version check - if kernel_is gt 2 6 38; then - eerror "${PN} is being developed and tested up to linux-2.6.38." - eerror "Make sure you have a proper kernel version and point" - eerror " /usr/src/linux symlink or env variable KERNEL_DIR to it!" - die "Wrong kernel version ${KV_FULL}" - fi - - linux-mod_pkg_setup - MODULE_NAMES="blcr(blcr::${S}/cr_module/kbuild) - blcr_imports(blcr::${S}/blcr_imports/kbuild)" - BUILD_TARGETS="clean all" - ECONF_PARAMS="--with-kernel=${KV_DIR}" -} - -src_install() { - dodoc README NEWS - cd "${S}"/util || die - default - cd "${S}"/libcr || die - default - cd "${S}"/man || die - default - cd "${S}"/include || die - default - linux-mod_src_install -} - -pkg_postinst() { - linux-mod_pkg_postinst - einfo "Be sure to add blcr to your modules.autoload.d to" - einfo "ensure that the modules get loaded on your next boot" -} diff --git a/sys-cluster/blcr/blcr-0.8.5.ebuild b/sys-cluster/blcr/blcr-0.8.5.ebuild index 4a4046c3e..21bb2c33f 100644 --- a/sys-cluster/blcr/blcr-0.8.5.ebuild +++ b/sys-cluster/blcr/blcr-0.8.5.ebuild @@ -1,8 +1,8 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ -EAPI=5 +EAPI=6 inherit linux-mod @@ -15,8 +15,6 @@ SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" -MAKEOPTS="${MAKEOPTS} -j1" - # up to kernel 2.6.38 pkg_setup() { @@ -37,6 +35,8 @@ pkg_setup() { blcr_imports(blcr::${S}/blcr_imports/kbuild)" BUILD_TARGETS="clean all" ECONF_PARAMS="--with-kernel=${KV_DIR}" + + MAKEOPTS+=" -j1" } src_install() {