From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 657DA59CAF for ; Sat, 2 Apr 2016 14:56:09 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D4A0921C007; Sat, 2 Apr 2016 14:56:08 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 6401021C007 for ; Sat, 2 Apr 2016 14:56:08 +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 53869340AB6 for ; Sat, 2 Apr 2016 14:56:07 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 06FE884 for ; Sat, 2 Apr 2016 14:56:05 +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: <1459608962.011d5c9fcf200f2f4d054f99a9d7e949d4b3d1a1.jlec@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/cblas-reference/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/cblas-reference/cblas-reference-20030223-r4.ebuild sci-libs/cblas-reference/cblas-reference-20030223-r5.ebuild X-VCS-Directories: sci-libs/cblas-reference/ X-VCS-Committer: jlec X-VCS-Committer-Name: Justin Lecher X-VCS-Revision: 011d5c9fcf200f2f4d054f99a9d7e949d4b3d1a1 X-VCS-Branch: master Date: Sat, 2 Apr 2016 14:56:05 +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: 213749a9-720e-4c7f-b9d1-dae0e30e2c01 X-Archives-Hash: 95d660e66a43b4aa9885faa62b481ab0 commit: 011d5c9fcf200f2f4d054f99a9d7e949d4b3d1a1 Author: Justin Lecher gentoo org> AuthorDate: Sat Apr 2 14:55:57 2016 +0000 Commit: Justin Lecher gentoo org> CommitDate: Sat Apr 2 14:56:02 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011d5c9f sci-libs/cblas-reference: Drop old obsoletes: Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=501042 Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=478602 Package-Manager: portage-2.2.27 Signed-off-by: Justin Lecher gentoo.org> .../cblas-reference-20030223-r4.ebuild | 63 -------------------- .../cblas-reference-20030223-r5.ebuild | 69 ---------------------- 2 files changed, 132 deletions(-) diff --git a/sci-libs/cblas-reference/cblas-reference-20030223-r4.ebuild b/sci-libs/cblas-reference/cblas-reference-20030223-r4.ebuild deleted file mode 100644 index 72164d8..0000000 --- a/sci-libs/cblas-reference/cblas-reference-20030223-r4.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -inherit autotools eutils fortran-2 multilib toolchain-funcs - -MyPN="${PN/-reference/}" - -DESCRIPTION="C wrapper interface to the F77 reference BLAS implementation" -HOMEPAGE="http://www.netlib.org/blas/" -SRC_URI="http://www.netlib.org/blas/blast-forum/${MyPN}.tgz" - -SLOT="0" -LICENSE="public-domain" -IUSE="" -KEYWORDS="alpha amd64 hppa ppc ppc64 s390 sparc x86 ~x86-fbsd" - -RDEPEND=" - virtual/blas - app-eselect/eselect-cblas" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -ESELECT_PROF=reference -S="${WORKDIR}/CBLAS" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-autotool.patch - eautoreconf -} - -src_compile() { - econf \ - --libdir=/usr/$(get_libdir)/blas/reference \ - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" - emake || die "emake failed" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README || die "failed to install docs" - insinto /usr/share/doc/${PF} - doins cblas_example*c || die "install examples failed" - eselect cblas add $(get_libdir) "${FILESDIR}"/eselect.cblas.reference ${ESELECT_PROF} -} - -pkg_postinst() { - local p=cblas - local current_lib=$(eselect ${p} show | cut -d' ' -f2) - if [[ ${current_lib} == ${ESELECT_PROF} || -z ${current_lib} ]]; then - # work around eselect bug #189942 - local configfile="${ROOT}"/etc/env.d/${p}/$(get_libdir)/config - [[ -e ${configfile} ]] && rm -f ${configfile} - eselect ${p} set ${ESELECT_PROF} - elog "${p} has been eselected to ${ESELECT_PROF}" - else - elog "Current eselected ${p} is ${current_lib}" - elog "To use ${p} ${ESELECT_PROF} implementation, you have to issue (as root):" - elog "\t eselect ${p} set ${ESELECT_PROF}" - fi -} diff --git a/sci-libs/cblas-reference/cblas-reference-20030223-r5.ebuild b/sci-libs/cblas-reference/cblas-reference-20030223-r5.ebuild deleted file mode 100644 index 6d0264b..0000000 --- a/sci-libs/cblas-reference/cblas-reference-20030223-r5.ebuild +++ /dev/null @@ -1,69 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="3" - -inherit autotools eutils fortran-2 multilib toolchain-funcs - -MyPN="${PN/-reference/}" - -DESCRIPTION="C wrapper interface to the F77 reference BLAS implementation" -HOMEPAGE="http://www.netlib.org/blas/" -SRC_URI="http://www.netlib.org/blas/blast-forum/${MyPN}.tgz" - -SLOT="0" -LICENSE="public-domain" -IUSE="" -KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos" - -RDEPEND=" - virtual/blas - app-eselect/eselect-cblas" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -ESELECT_PROF=reference -S="${WORKDIR}/CBLAS" - -src_prepare() { - epatch "${FILESDIR}"/${P}-autotool.patch - eautoreconf - - cp "${FILESDIR}"/eselect.cblas.reference "${T}"/ - sed -i -e "s:/usr:${EPREFIX}/usr:" "${T}"/eselect.cblas.reference || die - if [[ ${CHOST} == *-darwin* ]] ; then - sed -i -e 's/\.so\([\.0-9]\+\)\?/\1.dylib/g' \ - "${T}"/eselect.cblas.reference || die - fi -} - -src_configure() { - econf \ - --libdir="${EPREFIX}"/usr/$(get_libdir)/blas/reference \ - --with-blas="$($(tc-getPKG_CONFIG) --libs blas)" -} - -src_install() { - emake DESTDIR="${D}" install || die "emake install failed" - dodoc README || die "failed to install docs" - insinto /usr/share/doc/${PF} - doins cblas_example*c || die "install examples failed" - eselect cblas add $(get_libdir) "${T}"/eselect.cblas.reference ${ESELECT_PROF} -} - -pkg_postinst() { - local p=cblas - local current_lib=$(eselect ${p} show | cut -d' ' -f2) - if [[ ${current_lib} == ${ESELECT_PROF} || -z ${current_lib} ]]; then - # work around eselect bug #189942 - local configfile="${EROOT}"/etc/env.d/${p}/$(get_libdir)/config - [[ -e ${configfile} ]] && rm -f ${configfile} - eselect ${p} set ${ESELECT_PROF} - elog "${p} has been eselected to ${ESELECT_PROF}" - else - elog "Current eselected ${p} is ${current_lib}" - elog "To use ${p} ${ESELECT_PROF} implementation, you have to issue (as root):" - elog "\t eselect ${p} set ${ESELECT_PROF}" - fi -}