public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2012-03-08 20:34 Martin Mokrejs
  0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2012-03-08 20:34 UTC (permalink / raw
  To: gentoo-commits

commit:     c92db9a7db8bd35da45cf28647a7e3b0d287989c
Author:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Mar  8 20:34:01 2012 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Mar  8 20:34:01 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=c92db9a7

sys-cluster/blcr: update SRC_HOME, SRC_URI and added a check for kernel version <2.6.30, resp. <2.6.38, a version bump

(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)

---
 sys-cluster/blcr/ChangeLog                         |    9 ++++++++-
 sys-cluster/blcr/blcr-0.8.2.ebuild                 |   18 +++++++++++++++---
 .../blcr/{blcr-0.8.2.ebuild => blcr-0.8.4.ebuild}  |   20 +++++++++++++++++---
 3 files changed, 40 insertions(+), 7 deletions(-)

diff --git a/sys-cluster/blcr/ChangeLog b/sys-cluster/blcr/ChangeLog
index 903ea18..e115f4a 100644
--- a/sys-cluster/blcr/ChangeLog
+++ b/sys-cluster/blcr/ChangeLog
@@ -1,7 +1,14 @@
 # ChangeLog for sys-cluster/blcr
-# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*blcr-0.8.4 (08 Mar 2012)
+
+  08 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> blcr-0.8.2.ebuild,
+  +blcr-0.8.4.ebuild:
+  update SRC_HOME, SRC_URI and added a check for kernel version <2.6.30, resp.
+  <2.6.38, a version bump
+
   26 Jan 2010; Tim Cera <tim@cerazone.net> -blcr-0.6.5.ebuild:
   Removed old ebuild. Updated copyright years.
 

diff --git a/sys-cluster/blcr/blcr-0.8.2.ebuild b/sys-cluster/blcr/blcr-0.8.2.ebuild
index c877c39..fe229e3 100644
--- a/sys-cluster/blcr/blcr-0.8.2.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.2.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 inherit linux-mod
 
 DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
-HOMEPAGE="http://ftg.lbl.gov/CheckpointRestart/CheckpointRestart.shtml"
-SRC_URI="http://ftg.lbl.gov/CheckpointRestart/downloads/${P}.tar.gz"
+HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
+SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/"${PN}"-"${PV}".tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -18,6 +18,18 @@ RDEPEND=""
 MAKEOPTS="${MAKEOPTS} -j1"
 
 pkg_setup() {
+	local msg
+	linux-info_pkg_setup
+
+	# kernel version check
+	if kernel_is gt 2 6 30
+	then
+		eerror "${PN} is being developed and tested up to linux-2.6.30."
+		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}"
+	fi
+
 	linux-mod_pkg_setup
 	MODULE_NAMES="blcr(blcr::${S}/cr_module/kbuild)
 		blcr_imports(blcr::${S}/blcr_imports/kbuild)"

diff --git a/sys-cluster/blcr/blcr-0.8.2.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
similarity index 64%
copy from sys-cluster/blcr/blcr-0.8.2.ebuild
copy to sys-cluster/blcr/blcr-0.8.4.ebuild
index c877c39..a362519 100644
--- a/sys-cluster/blcr/blcr-0.8.2.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -1,12 +1,12 @@
-# Copyright 1999-2010 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
 inherit linux-mod
 
 DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
-HOMEPAGE="http://ftg.lbl.gov/CheckpointRestart/CheckpointRestart.shtml"
-SRC_URI="http://ftg.lbl.gov/CheckpointRestart/downloads/${P}.tar.gz"
+HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
+SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/"${PN}"-"${PV}".tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -17,7 +17,21 @@ RDEPEND=""
 
 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}"
+	fi
+
 	linux-mod_pkg_setup
 	MODULE_NAMES="blcr(blcr::${S}/cr_module/kbuild)
 		blcr_imports(blcr::${S}/blcr_imports/kbuild)"



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2012-03-15 20:36 Martin Mokrejs
  0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2012-03-15 20:36 UTC (permalink / raw
  To: gentoo-commits

commit:     6b50df5497378190f4ba5f096f1ad71e8022237f
Author:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Thu Mar 15 20:35:25 2012 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Thu Mar 15 20:35:25 2012 +0000
URL:        http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=6b50df54

sys-cluster/blcr: added ' || die' calls

(Portage version: 2.1.10.49/git/Linux x86_64, unsigned Manifest commit)

---
 sys-cluster/blcr/ChangeLog         |    4 ++++
 sys-cluster/blcr/blcr-0.8.2.ebuild |    8 ++++----
 sys-cluster/blcr/blcr-0.8.4.ebuild |    9 +++++----
 3 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/sys-cluster/blcr/ChangeLog b/sys-cluster/blcr/ChangeLog
index e115f4a..3d7eb52 100644
--- a/sys-cluster/blcr/ChangeLog
+++ b/sys-cluster/blcr/ChangeLog
@@ -2,6 +2,10 @@
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  15 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> blcr-0.8.2.ebuild,
+  blcr-0.8.4.ebuild:
+  added ' || die' calls blcr-0.8.2.ebuild blcr-0.8.4.ebuild
+
 *blcr-0.8.4 (08 Mar 2012)
 
   08 Mar 2012; Martin Mokrejs <mmokrejs@fold.natur.cuni.cz> blcr-0.8.2.ebuild,

diff --git a/sys-cluster/blcr/blcr-0.8.2.ebuild b/sys-cluster/blcr/blcr-0.8.2.ebuild
index fe229e3..f32d04c 100644
--- a/sys-cluster/blcr/blcr-0.8.2.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.2.ebuild
@@ -39,13 +39,13 @@ pkg_setup() {
 
 src_install() {
 	dodoc README NEWS
-	cd "${S}"/util
+	cd "${S}"/util || die
 	emake DESTDIR="${D}" install || die "binaries install failed"
-	cd "${S}"/libcr
+	cd "${S}"/libcr || die
 	emake DESTDIR="${D}" install || die "libcr install failed"
-	cd "${S}"/man
+	cd "${S}"/man || die
 	emake DESTDIR="${D}" install || die "man install failed"
-	cd "${S}"/include
+	cd "${S}"/include || die
 	emake DESTDIR="${D}" install || die "headers install failed"
 	linux-mod_src_install
 }

diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
index a362519..899bb5c 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -39,15 +39,16 @@ pkg_setup() {
 	ECONF_PARAMS="--with-kernel=${KV_DIR}"
 }
 
+
 src_install() {
 	dodoc README NEWS
-	cd "${S}"/util
+	cd "${S}"/util || die
 	emake DESTDIR="${D}" install || die "binaries install failed"
-	cd "${S}"/libcr
+	cd "${S}"/libcr || die
 	emake DESTDIR="${D}" install || die "libcr install failed"
-	cd "${S}"/man
+	cd "${S}"/man || die
 	emake DESTDIR="${D}" install || die "man install failed"
-	cd "${S}"/include
+	cd "${S}"/include || die
 	emake DESTDIR="${D}" install || die "headers install failed"
 	linux-mod_src_install
 }



^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2014-11-13  0:15 Christoph Junghans
  0 siblings, 0 replies; 8+ messages in thread
From: Christoph Junghans @ 2014-11-13  0:15 UTC (permalink / raw
  To: gentoo-commits

commit:     ed5de2490975d8809e955c335664b5090012b613
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 12 10:18:08 2014 +0000
Commit:     Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Wed Nov 12 10:18:08 2014 +0000
URL:        http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=ed5de249

sys-cluster/blcr: Bump to EAPI=5; drop old

Package-Manager: portage-2.2.14

---
 sys-cluster/blcr/ChangeLog         |  6 +++-
 sys-cluster/blcr/blcr-0.8.2.ebuild | 57 --------------------------------------
 sys-cluster/blcr/blcr-0.8.4.ebuild | 19 ++++++-------
 3 files changed, 14 insertions(+), 68 deletions(-)

diff --git a/sys-cluster/blcr/ChangeLog b/sys-cluster/blcr/ChangeLog
index 8b36645..e8b87ca 100644
--- a/sys-cluster/blcr/ChangeLog
+++ b/sys-cluster/blcr/ChangeLog
@@ -1,7 +1,11 @@
 # ChangeLog for sys-cluster/blcr
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+  12 Nov 2014; Justin Lecher <jlec@gentoo.org> -blcr-0.8.2.ebuild,
+  blcr-0.8.4.ebuild:
+  Bump to EAPI=5; drop old
+
   03 Mar 2013; Justin Lecher <jlec@gentoo.org> blcr-0.8.4.ebuild, metadata.xml:
   Drop useless blank line
 

diff --git a/sys-cluster/blcr/blcr-0.8.2.ebuild b/sys-cluster/blcr/blcr-0.8.2.ebuild
deleted file mode 100644
index d461f5a..0000000
--- a/sys-cluster/blcr/blcr-0.8.2.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-inherit linux-mod
-
-DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
-HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
-SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/"${PN}"-"${PV}".tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND=""
-RDEPEND=""
-
-MAKEOPTS="${MAKEOPTS} -j1"
-
-pkg_setup() {
-	local msg
-	linux-info_pkg_setup
-
-	# kernel version check
-	if kernel_is gt 2 6 30
-	then
-		eerror "${PN} is being developed and tested up to linux-2.6.30."
-		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}"
-	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
-	emake DESTDIR="${D}" install || die "binaries install failed"
-	cd "${S}"/libcr || die
-	emake DESTDIR="${D}" install || die "libcr install failed"
-	cd "${S}"/man || die
-	emake DESTDIR="${D}" install || die "man install failed"
-	cd "${S}"/include || die
-	emake DESTDIR="${D}" install || die "headers install failed"
-	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.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
index 05c3e0d..3c30562 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -2,18 +2,18 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Header: $
 
+EAPI=5
+
 inherit linux-mod
 
 DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
 HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
-SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/"${PN}"-"${PV}".tar.gz"
+SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
-DEPEND=""
-RDEPEND=""
 
 MAKEOPTS="${MAKEOPTS} -j1"
 
@@ -24,12 +24,11 @@ pkg_setup() {
 	linux-info_pkg_setup
 
 	# kernel version check
-	if kernel_is gt 2 6 38
-	then
+	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}"
+		die "Wrong kernel version ${KV_FULL}"
 	fi
 
 	linux-mod_pkg_setup
@@ -42,13 +41,13 @@ pkg_setup() {
 src_install() {
 	dodoc README NEWS
 	cd "${S}"/util || die
-	emake DESTDIR="${D}" install || die "binaries install failed"
+	emake DESTDIR="${D}" install
 	cd "${S}"/libcr || die
-	emake DESTDIR="${D}" install || die "libcr install failed"
+	emake DESTDIR="${D}" install
 	cd "${S}"/man || die
-	emake DESTDIR="${D}" install || die "man install failed"
+	emake DESTDIR="${D}" install
 	cd "${S}"/include || die
-	emake DESTDIR="${D}" install || die "headers install failed"
+	emake DESTDIR="${D}" install
 	linux-mod_src_install
 }
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2015-09-23 12:48 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2015-09-23 12:48 UTC (permalink / raw
  To: gentoo-commits

commit:     e0e7af2e3f62a9959094f1a2857597d69f929d3a
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed Sep 23 12:02:21 2015 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Sep 23 12:02:21 2015 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e0e7af2e

sys-cluster/blcr: Use default functions

Package-Manager: portage-2.2.21
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>

 sys-cluster/blcr/blcr-0.8.4.ebuild | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
index feaff9b..8145dd0 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -41,13 +41,13 @@ pkg_setup() {
 src_install() {
 	dodoc README NEWS
 	cd "${S}"/util || die
-	emake DESTDIR="${D}" install
+	default
 	cd "${S}"/libcr || die
-	emake DESTDIR="${D}" install
+	default
 	cd "${S}"/man || die
-	emake DESTDIR="${D}" install
+	default
 	cd "${S}"/include || die
-	emake DESTDIR="${D}" install
+	default
 	linux-mod_src_install
 }
 


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2016-11-21 15:39 Martin Mokrejs
  0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2016-11-21 15:39 UTC (permalink / raw
  To: gentoo-commits

commit:     e46f2838ad27048594b5eee0a484162f43e68b56
Author:     Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Mon Nov 21 15:38:51 2016 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Mon Nov 21 15:38:51 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=e46f2838

sys-cluster/blcr: version bump to Jan 2013 version

Package-Manager: portage-2.3.2

 sys-cluster/blcr/blcr-0.8.4.ebuild                        | 2 +-
 sys-cluster/blcr/{blcr-0.8.4.ebuild => blcr-0.8.5.ebuild} | 9 +++++----
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
index 8145dd0..ddea68f 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.5.ebuild
similarity index 79%
copy from sys-cluster/blcr/blcr-0.8.4.ebuild
copy to sys-cluster/blcr/blcr-0.8.5.ebuild
index 8145dd0..4a4046c 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -8,7 +8,7 @@ inherit linux-mod
 
 DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
 HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
-SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/${P}.tar.gz"
+SRC_URI="https://crd.lbl.gov/assets/Uploads/FTG/Projects/CheckpointRestart/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
@@ -24,8 +24,9 @@ pkg_setup() {
 	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."
+	if kernel_is gt 3 8; then
+		eerror "${PN} is being developed and tested up to linux-3.7.x."
+		eerror "It is known not to work with 3.8.x kernels"
 		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}"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2016-11-21 15:48 Martin Mokrejs
  0 siblings, 0 replies; 8+ messages in thread
From: Martin Mokrejs @ 2016-11-21 15:48 UTC (permalink / raw
  To: gentoo-commits

commit:     a09a65298f35c44051e698b7a95f45fdcadaf886
Author:     Martin Mokrejš <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
AuthorDate: Mon Nov 21 15:48:03 2016 +0000
Commit:     Martin Mokrejs <mmokrejs <AT> fold <DOT> natur <DOT> cuni <DOT> cz>
CommitDate: Mon Nov 21 15:48:03 2016 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=a09a6529

sys-cluster/blcr: update SRC_URI

Package-Manager: portage-2.3.2

 sys-cluster/blcr/blcr-0.8.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/blcr/blcr-0.8.4.ebuild b/sys-cluster/blcr/blcr-0.8.4.ebuild
index ddea68f..5fbfc13 100644
--- a/sys-cluster/blcr/blcr-0.8.4.ebuild
+++ b/sys-cluster/blcr/blcr-0.8.4.ebuild
@@ -8,7 +8,7 @@ inherit linux-mod
 
 DESCRIPTION="Berkeley Lab Checkpoint/Restart for Linux"
 HOMEPAGE="https://ftg.lbl.gov/projects/CheckpointRestart"
-SRC_URI="https://ftg.lbl.gov/assets/projects/CheckpointRestart/downloads/${P}.tar.gz"
+SRC_URI="https://crd.lbl.gov/assets/Uploads/FTG/Projects/CheckpointRestart/downloads/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2017-02-19 17:53 Justin Lecher
  0 siblings, 0 replies; 8+ messages in thread
From: Justin Lecher @ 2017-02-19 17:53 UTC (permalink / raw
  To: gentoo-commits

commit:     e8b0fd48193d3c44f958c9695e7cc4f08310048e
Author:     Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 19 17:31:43 2017 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> 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 <jlec <AT> 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() {


^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/
@ 2020-09-26  1:19 Aisha Tammy
  0 siblings, 0 replies; 8+ messages in thread
From: Aisha Tammy @ 2020-09-26  1:19 UTC (permalink / raw
  To: gentoo-commits

commit:     5a8b75424b6962ebff34211d1ad39e94ab0f6e04
Author:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
AuthorDate: Sat Sep 26 01:19:36 2020 +0000
Commit:     Aisha Tammy <gentoo <AT> aisha <DOT> cc>
CommitDate: Sat Sep 26 01:19:36 2020 +0000
URL:        https://gitweb.gentoo.org/proj/sci.git/commit/?id=5a8b7542

sys-cluster/blcr: drop dead package

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>

 sys-cluster/blcr/blcr-0.8.5.ebuild | 58 --------------------------------------
 sys-cluster/blcr/metadata.xml      | 11 --------
 2 files changed, 69 deletions(-)

diff --git a/sys-cluster/blcr/blcr-0.8.5.ebuild b/sys-cluster/blcr/blcr-0.8.5.ebuild
deleted file mode 100644
index 87880e460..000000000
--- a/sys-cluster/blcr/blcr-0.8.5.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-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=""
-
-# up to kernel 2.6.38
-
-pkg_setup() {
-	local msg
-	linux-info_pkg_setup
-
-	# kernel version check
-	if kernel_is gt 3 8; then
-		eerror "${PN} is being developed and tested up to linux-3.7.x."
-		eerror "It is known not to work with 3.8.x kernels"
-		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}"
-
-	MAKEOPTS+=" -j1"
-}
-
-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/metadata.xml b/sys-cluster/blcr/metadata.xml
deleted file mode 100644
index 76dfb6d1d..000000000
--- a/sys-cluster/blcr/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
-	<maintainer type="project">
-		<email>cluster@gentoo.org</email>
-		<name>Gentoo Cluster Project</name>
-	</maintainer>
-	<longdescription>
-Berkeley Lab Checkpoint/Restart for Linux
-</longdescription>
-</pkgmetadata>


^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2020-09-26  1:20 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-09-23 12:48 [gentoo-commits] proj/sci:master commit in: sys-cluster/blcr/ Justin Lecher
  -- strict thread matches above, loose matches on Subject: below --
2020-09-26  1:19 Aisha Tammy
2017-02-19 17:53 Justin Lecher
2016-11-21 15:48 Martin Mokrejs
2016-11-21 15:39 Martin Mokrejs
2014-11-13  0:15 Christoph Junghans
2012-03-15 20:36 Martin Mokrejs
2012-03-08 20:34 Martin Mokrejs

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox