From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: <gentoo-commits+bounces-735957-garchives=archives.gentoo.org@lists.gentoo.org> Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id B421313838B for <garchives@archives.gentoo.org>; Mon, 6 Oct 2014 05:56:41 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CFD66E0A88; Mon, 6 Oct 2014 05:56:40 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 68D55E0A83 for <gentoo-commits@lists.gentoo.org>; Mon, 6 Oct 2014 05:56:40 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 8B37B34028A for <gentoo-commits@lists.gentoo.org>; Mon, 6 Oct 2014 05:56:39 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D6C0D71A4 for <gentoo-commits@lists.gentoo.org>; Mon, 6 Oct 2014 05:56:37 +0000 (UTC) From: "Justin Lecher" <jlec@gentoo.org> 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" <jlec@gentoo.org> Message-ID: <1411816207.0cc5ee5acce2af5afeacb555efb5f1aa3a64c379.jlec@gentoo> Subject: [gentoo-commits] proj/sci:master commit in: sci-libs/openblas/ X-VCS-Repository: proj/sci X-VCS-Files: sci-libs/openblas/ChangeLog sci-libs/openblas/openblas-9999.ebuild X-VCS-Directories: sci-libs/openblas/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 0cc5ee5acce2af5afeacb555efb5f1aa3a64c379 X-VCS-Branch: master Date: Mon, 6 Oct 2014 05:56:37 +0000 (UTC) Precedence: bulk List-Post: <mailto:gentoo-commits@lists.gentoo.org> List-Help: <mailto:gentoo-commits+help@lists.gentoo.org> List-Unsubscribe: <mailto:gentoo-commits+unsubscribe@lists.gentoo.org> List-Subscribe: <mailto:gentoo-commits+subscribe@lists.gentoo.org> List-Id: Gentoo Linux mail <gentoo-commits.gentoo.org> X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 60677a9f-a280-4ecd-a210-d693afbc6747 X-Archives-Hash: e72bcbab7a961a94ab28d2b90f9fb42a commit: 0cc5ee5acce2af5afeacb555efb5f1aa3a64c379 Author: gienah <gienah <AT> gentoo <DOT> org> AuthorDate: Wed Feb 19 10:16:43 2014 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Sat Sep 27 11:10:07 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0cc5ee5a Thanks to sfabbro: dodoc should be outside the function, they do not change --- sci-libs/openblas/ChangeLog | 3 +++ sci-libs/openblas/openblas-9999.ebuild | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/sci-libs/openblas/ChangeLog b/sci-libs/openblas/ChangeLog index b4f5886..68e0955 100644 --- a/sci-libs/openblas/ChangeLog +++ b/sci-libs/openblas/ChangeLog @@ -2,6 +2,9 @@ # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 # $Header: $ + 19 Feb 2014; Mark Wright <gienah@gentoo.org> openblas-9999.ebuild: + Thanks to sfabbro: dodoc should be outside the function, they do not change + 18 Feb 2014; Mark Wright <gienah@gentoo.org> openblas-9999.ebuild: multibuild openblas when USE=int64 is specified. diff --git a/sci-libs/openblas/openblas-9999.ebuild b/sci-libs/openblas/openblas-9999.ebuild index 3bd158a..3e3cd52 100644 --- a/sci-libs/openblas/openblas-9999.ebuild +++ b/sci-libs/openblas/openblas-9999.ebuild @@ -158,9 +158,6 @@ src_install() { doins ${pcfile} done - dodoc GotoBLAS_{01Readme,03FAQ,04FAQ,05LargePage,06WeirdPerformance}.txt - dodoc *md Changelog.txt - if [[ ${CHOST} == *-darwin* ]] ; then cd "${ED}"/usr/$(get_libdir) local d @@ -172,4 +169,7 @@ src_install() { fi } multibuild_foreach_variant run_in_build_dir my_src_install + + dodoc GotoBLAS_{01Readme,03FAQ,04FAQ,05LargePage,06WeirdPerformance}.txt + dodoc *md Changelog.txt }