public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Justin Lecher" <jlec@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/scikits_learn/
Date: Wed,  6 Jan 2016 15:07:46 +0000 (UTC)	[thread overview]
Message-ID: <1452079223.260a6942b72d13517252f72eee279f78ffea2a23.jlec@gentoo> (raw)

commit:     260a6942b72d13517252f72eee279f78ffea2a23
Author:     Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Wed Jan  6 11:20:23 2016 +0000
Commit:     Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Jan  6 11:20:23 2016 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=260a6942

sci-libs/scikits_learn: Add missing dies

Package-Manager: portage-2.2.26

 sci-libs/scikits_learn/scikits_learn-0.14.1.ebuild | 6 +++---
 sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild | 6 +++---
 sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild | 6 +++---
 sci-libs/scikits_learn/scikits_learn-0.16.1.ebuild | 4 ++--
 sci-libs/scikits_learn/scikits_learn-0.17.ebuild   | 6 +++---
 5 files changed, 14 insertions(+), 14 deletions(-)

diff --git a/sci-libs/scikits_learn/scikits_learn-0.14.1.ebuild b/sci-libs/scikits_learn/scikits_learn-0.14.1.ebuild
index 3e380b4..0b2c983 100644
--- a/sci-libs/scikits_learn/scikits_learn-0.14.1.ebuild
+++ b/sci-libs/scikits_learn/scikits_learn-0.14.1.ebuild
@@ -73,15 +73,15 @@ python_compile() {
 
 python_compile_all() {
 	if use doc; then
-		cd "${S}/doc"
+		cd "${S}/doc" || die
 		local d="${BUILD_DIR}"/lib
 		ln -s "${S}"/sklearn/datasets/{data,descr,images} \
-			"${d}"/sklearn/datasets
+			"${d}"/sklearn/datasets || die
 		VARTEXFONTS="${T}"/fonts \
 			MPLCONFIGDIR="${BUILD_DIR}" \
 			PYTHONPATH="${d}" \
 			emake html
-		rm -r "${d}"/sklearn/datasets/{data,desr,images}
+		rm -r "${d}"/sklearn/datasets/{data,desr,images} || die
 	fi
 }
 

diff --git a/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild b/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild
index fbd1831..c50ed8a 100644
--- a/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild
+++ b/sci-libs/scikits_learn/scikits_learn-0.15.1.ebuild
@@ -73,15 +73,15 @@ python_compile() {
 
 python_compile_all() {
 	if use doc; then
-		cd "${S}/doc"
+		cd "${S}/doc" || die
 		local d="${BUILD_DIR}"/lib
 		ln -s "${S}"/sklearn/datasets/{data,descr,images} \
-			"${d}"/sklearn/datasets
+			"${d}"/sklearn/datasets || die
 		VARTEXFONTS="${T}"/fonts \
 			MPLCONFIGDIR="${BUILD_DIR}" \
 			PYTHONPATH="${d}" \
 			emake html
-		rm -r "${d}"/sklearn/datasets/{data,desr,images}
+		rm -r "${d}"/sklearn/datasets/{data,desr,images} || die
 	fi
 }
 

diff --git a/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild b/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild
index fbd1831..c50ed8a 100644
--- a/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild
+++ b/sci-libs/scikits_learn/scikits_learn-0.15.2.ebuild
@@ -73,15 +73,15 @@ python_compile() {
 
 python_compile_all() {
 	if use doc; then
-		cd "${S}/doc"
+		cd "${S}/doc" || die
 		local d="${BUILD_DIR}"/lib
 		ln -s "${S}"/sklearn/datasets/{data,descr,images} \
-			"${d}"/sklearn/datasets
+			"${d}"/sklearn/datasets || die
 		VARTEXFONTS="${T}"/fonts \
 			MPLCONFIGDIR="${BUILD_DIR}" \
 			PYTHONPATH="${d}" \
 			emake html
-		rm -r "${d}"/sklearn/datasets/{data,desr,images}
+		rm -r "${d}"/sklearn/datasets/{data,desr,images} || die
 	fi
 }
 

diff --git a/sci-libs/scikits_learn/scikits_learn-0.16.1.ebuild b/sci-libs/scikits_learn/scikits_learn-0.16.1.ebuild
index 98e179d..46432a1 100644
--- a/sci-libs/scikits_learn/scikits_learn-0.16.1.ebuild
+++ b/sci-libs/scikits_learn/scikits_learn-0.16.1.ebuild
@@ -72,7 +72,7 @@ python_compile() {
 
 python_compile_all() {
 	if use doc; then
-		cd "${S}/doc"
+		cd "${S}/doc" || die
 		local d="${BUILD_DIR}"/lib
 		ln -s "${S}"/sklearn/datasets/{data,descr,images} \
 			"${d}"/sklearn/datasets
@@ -80,7 +80,7 @@ python_compile_all() {
 			MPLCONFIGDIR="${BUILD_DIR}" \
 			PYTHONPATH="${d}" \
 			emake html
-		rm -r "${d}"/sklearn/datasets/{data,desr,images}
+		rm -r "${d}"/sklearn/datasets/{data,desr,images} || die
 	fi
 }
 

diff --git a/sci-libs/scikits_learn/scikits_learn-0.17.ebuild b/sci-libs/scikits_learn/scikits_learn-0.17.ebuild
index 79808a6..b7c3bcd 100644
--- a/sci-libs/scikits_learn/scikits_learn-0.17.ebuild
+++ b/sci-libs/scikits_learn/scikits_learn-0.17.ebuild
@@ -81,15 +81,15 @@ python_compile() {
 
 python_compile_all() {
 	if use doc; then
-		cd "${S}/doc"
+		cd "${S}/doc" || die
 		local d="${BUILD_DIR}"/lib
 		ln -s "${S}"/sklearn/datasets/{data,descr,images} \
-			"${d}"/sklearn/datasets
+			"${d}"/sklearn/datasets || die
 		VARTEXFONTS="${T}"/fonts \
 			MPLCONFIGDIR="${BUILD_DIR}" \
 			PYTHONPATH="${d}" \
 			emake html
-		rm -r "${d}"/sklearn/datasets/{data,desr,images}
+		rm -r "${d}"/sklearn/datasets/{data,desr,images} || die
 	fi
 }
 


             reply	other threads:[~2016-01-06 15:07 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-01-06 15:07 Justin Lecher [this message]
  -- strict thread matches above, loose matches on Subject: below --
2020-11-13  1:14 [gentoo-commits] repo/gentoo:master commit in: sci-libs/scikits_learn/ Sam James
2020-06-01  6:41 Georgy Yakovlev
2020-05-09 11:24 Mikle Kolyada
2020-05-09 11:24 Mikle Kolyada
2020-04-08  6:56 Patrick McLean
2020-04-03  3:30 Patrick McLean
2020-01-28  8:24 Joonas Niilola
2020-01-16  7:03 Michał Górny
2020-01-16  7:03 Michał Górny
2019-08-03 20:36 Alexey Shvetsov
2019-02-27  4:25 Aaron Bauman
2017-08-16 18:12 Sebastien Fabbro
2017-08-03 17:33 Sebastien Fabbro
2017-06-28  4:02 Sebastien Fabbro
2017-02-14 11:33 Benda XU
2017-02-14  6:47 Benda XU
2017-02-14  6:47 Benda XU
2016-08-13 18:48 David Seifert
2016-01-26 19:09 Justin Lecher
2016-01-26 19:09 Justin Lecher
2016-01-06 15:07 Justin Lecher
2016-01-06 15:07 Justin Lecher
2015-11-06 16:22 Justin Lecher

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1452079223.260a6942b72d13517252f72eee279f78ffea2a23.jlec@gentoo \
    --to=jlec@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox