public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in sci-libs/qrupdate: qrupdate-1.1.0-r1.ebuild ChangeLog
@ 2010-01-21 19:04 Fabian Groffen (grobian)
  0 siblings, 0 replies; 2+ messages in thread
From: Fabian Groffen (grobian) @ 2010-01-21 19:04 UTC (permalink / raw
  To: gentoo-commits

grobian     10/01/21 19:04:57

  Modified:             ChangeLog
  Added:                qrupdate-1.1.0-r1.ebuild
  Log:
  Revbump to add Prefix awareness, fix up buildsystem to properly support DESTDIR installs, fix shared libs install for Darwin hosts.  Both patches got accepted and committed upstream.  Bug #301437
  (Portage version: 2.2.00.15200-prefix/cvs/Darwin powerpc)

Revision  Changes    Path
1.8                  sci-libs/qrupdate/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog	12 Jan 2010 05:16:13 -0000	1.7
+++ ChangeLog	21 Jan 2010 19:04:57 -0000	1.8
@@ -1,6 +1,15 @@
 # ChangeLog for sci-libs/qrupdate
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v 1.7 2010/01/12 05:16:13 markusle Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v 1.8 2010/01/21 19:04:57 grobian Exp $
+
+*qrupdate-1.1.0-r1 (21 Jan 2010)
+
+  21 Jan 2010; Fabian Groffen <grobian@gentoo.org>
+  +qrupdate-1.1.0-r1.ebuild, +files/qrupdate-1.1.0-darwin-dylib.patch,
+  +files/qrupdate-1.1.0-destdir.patch:
+  Revbump to add Prefix awareness, fix up buildsystem to properly support
+  DESTDIR installs, fix shared libs install for Darwin hosts. Both patches
+  got accepted and committed upstream.
 
 *qrupdate-1.1.0 (12 Jan 2010)
 



1.1                  sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: qrupdate-1.1.0-r1.ebuild
===================================================================
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild,v 1.1 2010/01/21 19:04:57 grobian Exp $

EAPI="2"

inherit eutils fortran multilib

DESCRIPTION="A library for fast updating of QR and Cholesky decompositions"
HOMEPAGE="http://sourceforge.net/projects/qrupdate"
SRC_URI="mirror://sourceforge/qrupdate/${P}.tar.gz"

LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
IUSE=""

RDEPEND="virtual/blas
		virtual/lapack"
DEPEND="${RDEPEND}
		dev-util/pkgconfig"

FORTRAN="gfortran ifc g77"

src_prepare() {
	epatch "${FILESDIR}"/${PN}-1.0.1-makefile.patch
	# both patches below are already in upstream SVN
	epatch "${FILESDIR}"/${PN}-1.1.0-darwin-dylib.patch
	epatch "${FILESDIR}"/${PN}-1.1.0-destdir.patch

	local BLAS_LIBS="$(pkg-config --libs blas)"
	local LAPACK_LIBS="$(pkg-config --libs lapack)"

	sed -i Makeconf \
		-e "s:gfortran:${FORTRANC}:g" \
		-e "s:FFLAGS=.*:FFLAGS=${FFLAGS}:" \
		-e "s:BLAS=.*:BLAS=${BLAS_LIBS}:" \
		-e "s:LAPACK=.*:LAPACK=${LAPACK_LIBS}:" \
		-e "/^LIBDIR=/a\PREFIX=${EPREFIX}/usr" \
		|| die "Failed to set up Makeconf"
}

src_compile() {
	emake solib || die "emake failed"
}

src_install() {
	emake DESTDIR="${D}" install-shlib || die "emake install failed"

	dodoc README ChangeLog || die "dodoc failed"
}






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

* [gentoo-commits] gentoo-x86 commit in sci-libs/qrupdate: qrupdate-1.1.0-r1.ebuild ChangeLog
@ 2010-01-22 14:09 Markus Dittrich (markusle)
  0 siblings, 0 replies; 2+ messages in thread
From: Markus Dittrich (markusle) @ 2010-01-22 14:09 UTC (permalink / raw
  To: gentoo-commits

markusle    10/01/22 14:09:12

  Modified:             qrupdate-1.1.0-r1.ebuild ChangeLog
  Log:
  Made qrupdate multilib-strict safe (fixes #301838).
  (Portage version: 2.1.7.16/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild?r1=1.1&r2=1.2

Index: qrupdate-1.1.0-r1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qrupdate-1.1.0-r1.ebuild	21 Jan 2010 19:04:57 -0000	1.1
+++ qrupdate-1.1.0-r1.ebuild	22 Jan 2010 14:09:12 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2010 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild,v 1.1 2010/01/21 19:04:57 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild,v 1.2 2010/01/22 14:09:12 markusle Exp $
 
 EAPI="2"
 
@@ -37,6 +37,7 @@
 		-e "s:BLAS=.*:BLAS=${BLAS_LIBS}:" \
 		-e "s:LAPACK=.*:LAPACK=${LAPACK_LIBS}:" \
 		-e "/^LIBDIR=/a\PREFIX=${EPREFIX}/usr" \
+		-e "s:LIBDIR=lib:LIBDIR=$(get_libdir):" \
 		|| die "Failed to set up Makeconf"
 }
 



1.9                  sci-libs/qrupdate/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sci-libs/qrupdate/ChangeLog?r1=1.8&r2=1.9

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- ChangeLog	21 Jan 2010 19:04:57 -0000	1.8
+++ ChangeLog	22 Jan 2010 14:09:12 -0000	1.9
@@ -1,6 +1,10 @@
 # ChangeLog for sci-libs/qrupdate
 # Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v 1.8 2010/01/21 19:04:57 grobian Exp $
+# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v 1.9 2010/01/22 14:09:12 markusle Exp $
+
+  22 Jan 2010; Markus Dittrich <markusle@gentoo.org>
+  qrupdate-1.1.0-r1.ebuild:
+  Made qrupdate multilib-strict safe (fixes #301838).
 
 *qrupdate-1.1.0-r1 (21 Jan 2010)
 






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

end of thread, other threads:[~2010-01-22 14:09 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-01-22 14:09 [gentoo-commits] gentoo-x86 commit in sci-libs/qrupdate: qrupdate-1.1.0-r1.ebuild ChangeLog Markus Dittrich (markusle)
  -- strict thread matches above, loose matches on Subject: below --
2010-01-21 19:04 Fabian Groffen (grobian)

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