diff options
author | 2010-12-01 16:45:04 +0000 | |
---|---|---|
committer | 2010-12-01 16:45:04 +0000 | |
commit | 57c2402dd80e3824f6c64298233b1ef20cc0f612 (patch) | |
tree | ace86035fa3131ecd9b25bbab136943e205e8a28 | |
parent | Version bumped. (diff) | |
download | gentoo-2-57c2402dd80e3824f6c64298233b1ef20cc0f612.tar.gz gentoo-2-57c2402dd80e3824f6c64298233b1ef20cc0f612.tar.bz2 gentoo-2-57c2402dd80e3824f6c64298233b1ef20cc0f612.zip |
Removed old
(Portage version: 2.1.9.25/cvs/Linux x86_64)
-rw-r--r-- | sci-libs/qrupdate/ChangeLog | 8 | ||||
-rw-r--r-- | sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch | 24 | ||||
-rw-r--r-- | sci-libs/qrupdate/files/qrupdate-1.1.0-darwin-dylib.patch | 51 | ||||
-rw-r--r-- | sci-libs/qrupdate/files/qrupdate-1.1.0-destdir.patch | 40 | ||||
-rw-r--r-- | sci-libs/qrupdate/qrupdate-1.0.1.ebuild | 48 | ||||
-rw-r--r-- | sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild | 52 | ||||
-rw-r--r-- | sci-libs/qrupdate/qrupdate-1.1.0.ebuild | 48 |
7 files changed, 7 insertions, 264 deletions
diff --git a/sci-libs/qrupdate/ChangeLog b/sci-libs/qrupdate/ChangeLog index 6dd5e168e9bc..8f48085de379 100644 --- a/sci-libs/qrupdate/ChangeLog +++ b/sci-libs/qrupdate/ChangeLog @@ -1,6 +1,12 @@ # 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.16 2010/07/09 09:37:36 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-libs/qrupdate/ChangeLog,v 1.17 2010/12/01 16:45:03 bicatali Exp $ + + 01 Dec 2010; Sébastien Fabbro <bicatali@gentoo.org> -qrupdate-1.0.1.ebuild, + -files/qrupdate-1.0.1-makefile.patch, -qrupdate-1.1.0.ebuild, + -qrupdate-1.1.0-r1.ebuild, -files/qrupdate-1.1.0-darwin-dylib.patch, + -files/qrupdate-1.1.0-destdir.patch: + Remove old 09 Jul 2010; Samuli Suominen <ssuominen@gentoo.org> qrupdate-1.1.0.ebuild: ppc64 stable wrt #318649 diff --git a/sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch b/sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch deleted file mode 100644 index fa8925fd8bb6..000000000000 --- a/sci-libs/qrupdate/files/qrupdate-1.0.1-makefile.patch +++ /dev/null @@ -1,24 +0,0 @@ -diff -Naur qrupdate-1.0.1/Makefile qrupdate-1.0.1.new/Makefile ---- qrupdate-1.0.1/Makefile 2009-02-06 04:12:00.000000000 -0500 -+++ qrupdate-1.0.1.new/Makefile 2009-09-10 09:55:32.000000000 -0400 -@@ -34,7 +34,7 @@ - lib: - make -C src/ lib - solib: -- make -C src/ solib -+ +make -C src/ solib - test: lib - make -C test/ - -diff -Naur qrupdate-1.0.1/src/Makefile qrupdate-1.0.1.new/src/Makefile ---- qrupdate-1.0.1/src/Makefile 2009-02-06 04:12:50.000000000 -0500 -+++ qrupdate-1.0.1.new/src/Makefile 2009-09-10 09:49:29.000000000 -0400 -@@ -40,7 +40,7 @@ - ar -cr $@ $(OBJS) - - ../libqrupdate.so: $(OBJS) -- $(FC) $(FFLAGS) -shared -o $@ -Wl,-soname=libqrupdate.so.$(MAJOR) $(OBJS) \ -+ $(FC) $(FFLAGS) $(LDFLAGS) -shared -o $@ -Wl,-soname=libqrupdate.so.$(MAJOR) $(OBJS) \ - $(BLAS) $(LAPACK) - - $(OBJS): %.o: %.f diff --git a/sci-libs/qrupdate/files/qrupdate-1.1.0-darwin-dylib.patch b/sci-libs/qrupdate/files/qrupdate-1.1.0-darwin-dylib.patch deleted file mode 100644 index b2e3f109d156..000000000000 --- a/sci-libs/qrupdate/files/qrupdate-1.1.0-darwin-dylib.patch +++ /dev/null @@ -1,51 +0,0 @@ -Add support for building Mach-O dylibs on Darwin. - -Applied upstream: -http://qrupdate.svn.sourceforge.net/viewvc/qrupdate?view=rev&revision=21 - ---- src/Makefile -+++ src/Makefile -@@ -36,7 +36,12 @@ - - lib: ../libqrupdate.a - --solib: ../libqrupdate.so -+ifeq ($(shell uname),Darwin) -+SOEXT=.dylib -+else -+SOEXT=.so -+endif -+solib: ../libqrupdate$(SOEXT) - - ../libqrupdate.a: $(OBJS) - ar -cr $@ $(OBJS) -@@ -45,6 +47,10 @@ - $(FC) $(FFLAGS) $(LDFLAGS) -shared -o $@ -Wl,-soname=libqrupdate.so.$(MAJOR) $(OBJS) \ - $(BLAS) $(LAPACK) - -+../libqrupdate.dylib: $(OBJS) -+ $(FC) $(FFLAGS) $(LDFLAGS) -dynamiclib -o $@ -install_name $(PREFIX)/$(LIBDIR)/libqrupdate.$(MAJOR).dylib $(OBJS) \ -+ $(BLAS) $(LAPACK) -+ - $(OBJS): %.o: %.f - $(FC) $(FFLAGS) $(FPICFLAGS) -c $< - -@@ -59,10 +63,17 @@ - - install: install-shlib install-staticlib - --install-shlib: ../libqrupdate.so -+install-shlib: ../libqrupdate$(SOEXT) install-lib$(SOEXT) -+ -+install-lib.so: - install -D -m644 ../libqrupdate.so $(PREFIX)/$(LIBDIR)/libqrupdate.so.$(VERSION) - ln -s libqrupdate.so.$(VERSION) $(PREFIX)/$(LIBDIR)/libqrupdate.so.$(MAJOR) - ln -s libqrupdate.so.$(VERSION) $(PREFIX)/$(LIBDIR)/libqrupdate.so - -+install-lib.dylib: -+ install -D -m644 ../libqrupdate.dylib $(PREFIX)/$(LIBDIR)/libqrupdate.$(VERSION).dylib -+ ln -s libqrupdate.$(VERSION).dylib $(PREFIX)/$(LIBDIR)/libqrupdate.$(MAJOR).dylib -+ ln -s libqrupdate.$(VERSION).dylib $(PREFIX)/$(LIBDIR)/libqrupdate.dylib -+ - install-staticlib: ../libqrupdate.a - install -D -m644 ../libqrupdate.a $(PREFIX)/$(LIBDIR)/libqrupdate.a diff --git a/sci-libs/qrupdate/files/qrupdate-1.1.0-destdir.patch b/sci-libs/qrupdate/files/qrupdate-1.1.0-destdir.patch deleted file mode 100644 index b0ff69b29d0f..000000000000 --- a/sci-libs/qrupdate/files/qrupdate-1.1.0-destdir.patch +++ /dev/null @@ -1,40 +0,0 @@ -Support DESTDIR installs - -http://qrupdate.svn.sourceforge.net/viewvc/qrupdate?view=rev&revision=22 - ---- Makeconf -+++ Makeconf -@@ -17,6 +17,9 @@ - # The default library dir - LIBDIR=lib - -+# Destination installation offset -+DESTDIR= -+ - # set default prefix to /usr/local - ifeq ($(strip $(PREFIX)),) - PREFIX=/usr/local ---- src/Makefile -+++ src/Makefile -@@ -65,14 +65,14 @@ - install-shlib: ../libqrupdate$(SOEXT) install-lib$(SOEXT) - - install-lib.so: -- install -D -m644 ../libqrupdate.so $(PREFIX)/$(LIBDIR)/libqrupdate.so.$(VERSION) -- ln -s libqrupdate.so.$(VERSION) $(PREFIX)/$(LIBDIR)/libqrupdate.so.$(MAJOR) -- ln -s libqrupdate.so.$(VERSION) $(PREFIX)/$(LIBDIR)/libqrupdate.so -+ install -D -m644 ../libqrupdate.so $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.so.$(VERSION) -+ ln -s libqrupdate.so.$(VERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.so.$(MAJOR) -+ ln -s libqrupdate.so.$(VERSION) $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.so - - install-lib.dylib: -- install -D -m644 ../libqrupdate.dylib $(PREFIX)/$(LIBDIR)/libqrupdate.$(VERSION).dylib -- ln -s libqrupdate.$(VERSION).dylib $(PREFIX)/$(LIBDIR)/libqrupdate.$(MAJOR).dylib -- ln -s libqrupdate.$(VERSION).dylib $(PREFIX)/$(LIBDIR)/libqrupdate.dylib -+ install -D -m644 ../libqrupdate.dylib $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.$(VERSION).dylib -+ ln -s libqrupdate.$(VERSION).dylib $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.$(MAJOR).dylib -+ ln -s libqrupdate.$(VERSION).dylib $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.dylib - - install-staticlib: ../libqrupdate.a -- install -D -m644 ../libqrupdate.a $(PREFIX)/$(LIBDIR)/libqrupdate.a -+ install -D -m644 ../libqrupdate.a $(DESTDIR)$(PREFIX)/$(LIBDIR)/libqrupdate.a diff --git a/sci-libs/qrupdate/qrupdate-1.0.1.ebuild b/sci-libs/qrupdate/qrupdate-1.0.1.ebuild deleted file mode 100644 index 16433c40f14f..000000000000 --- a/sci-libs/qrupdate/qrupdate-1.0.1.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# 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.0.1.ebuild,v 1.7 2010/01/12 05:16:13 markusle Exp $ - -EAPI="2" - -inherit eutils fortran - -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" -IUSE="" - -RDEPEND="virtual/blas - virtual/lapack" -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -FORTRAN="gfortran ifc g77" - -src_prepare() { - epatch "${FILESDIR}"/${P}-makefile.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}:" \ - || die "Failed to set up Makeconf" -} - -src_compile() { - emake solib || die "emake failed" -} - -src_install() { - dolib.so libqrupdate.so \ - || die "Failed to install libqrupdate.so" - - dodoc README ChangeLog || die "dodoc failed" -} diff --git a/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild b/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild deleted file mode 100644 index 120af96395ff..000000000000 --- a/sci-libs/qrupdate/qrupdate-1.1.0-r1.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# 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.2 2010/01/22 14:09:12 markusle 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" \ - -e "s:LIBDIR=lib:LIBDIR=$(get_libdir):" \ - || 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" -} diff --git a/sci-libs/qrupdate/qrupdate-1.1.0.ebuild b/sci-libs/qrupdate/qrupdate-1.1.0.ebuild deleted file mode 100644 index 3a9bf2d81aa0..000000000000 --- a/sci-libs/qrupdate/qrupdate-1.1.0.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# 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.ebuild,v 1.7 2010/07/09 09:37:36 ssuominen Exp $ - -EAPI="2" - -inherit eutils fortran - -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" -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 - - 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}:" \ - || die "Failed to set up Makeconf" -} - -src_compile() { - emake solib || die "emake failed" -} - -src_install() { - dolib.so libqrupdate.so \ - || die "Failed to install libqrupdate.so" - - dodoc README ChangeLog || die "dodoc failed" -} |