commit: 91750b09c03c5f54728552e41ef3451ada43455c Author: Justin Lecher <jlec <AT> gentoo <DOT> org> AuthorDate: Tue Sep 22 08:19:11 2015 +0000 Commit: Justin Lecher <jlec <AT> gentoo <DOT> org> CommitDate: Tue Sep 22 08:19:11 2015 +0000 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=91750b09
Drop obsolete broken ebuild Signed-off-by: Justin Lecher <jlec <AT> gentoo.org> sci-mathematics/pest/ChangeLog | 44 -------------------- sci-mathematics/pest/metadata.xml | 13 ------ sci-mathematics/pest/pest-12.2.ebuild | 78 ----------------------------------- 3 files changed, 135 deletions(-) diff --git a/sci-mathematics/pest/ChangeLog b/sci-mathematics/pest/ChangeLog deleted file mode 100644 index c7dbe46..0000000 --- a/sci-mathematics/pest/ChangeLog +++ /dev/null @@ -1,44 +0,0 @@ -# ChangeLog for sci-mathematics/pest -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Id$ - -*pest-12.2 (13 Sep 2011) - - 13 Sep 2011; Tim Cera <[email protected]> -pest-12.1.ebuild, - +pest-12.2.ebuild: - Version bump. - - 21 Jun 2011; Justin Lecher <[email protected]> pest-12.1.ebuild: - Added fortran-2.eclass support - - 16 Dec 2010; Justin Lecher <[email protected]> pest-12.1.ebuild: - Removal of fortran.eclass, #348851 - - 17 Nov 2010; Tim Cera <[email protected]> pest-12.1.ebuild: - Fixed come code for some of the utility programs. - -*pest-12.1 (16 Nov 2010) - - 16 Nov 2010; Tim Cera <[email protected]> -pest-12.0.ebuild, - +pest-12.1.ebuild: - sci-mathematics/pest: Version bump and minor changes. - -*pest-12.0 (26 Jan 2010) - - 26 Jan 2010; Tim Cera <[email protected]> -pest-11.3.ebuild, - -pest-11.11.ebuild, +pest-12.0.ebuild: - Version bump. Better upstream naming convention for the download. - Removed old ebuilds that wouldn't work. - -*pest-11.11 (26 Aug 2009) - - 26 Aug 2009; Tim Cera <[email protected]> +pest-11.11.ebuild: - Version bump to 11.11. New web site and SRC_URI. - - 09 Jul 2008; Tim Cera <[email protected]> pest-11.3.ebuild: - Forced MAKEOPTS to include '-j1' because some compile jobs were running out - of order. - - 14 May 2008; Tim Cera <[email protected]> +pest-11.3.ebuild, +metadata.xml: - Initial import. - diff --git a/sci-mathematics/pest/metadata.xml b/sci-mathematics/pest/metadata.xml deleted file mode 100644 index ca3408f..0000000 --- a/sci-mathematics/pest/metadata.xml +++ /dev/null @@ -1,13 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>sci-mathematics</herd> -<maintainer> -<email>[email protected]</email> -<name>Tim Cera</name> -</maintainer> -<longdescription lang="en"> -PEST is a Parameter ESTimation tool that can optimize the input parameters for a -simulation. -</longdescription> -</pkgmetadata> diff --git a/sci-mathematics/pest/pest-12.2.ebuild b/sci-mathematics/pest/pest-12.2.ebuild deleted file mode 100644 index 9de0a28..0000000 --- a/sci-mathematics/pest/pest-12.2.ebuild +++ /dev/null @@ -1,78 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=2 - -inherit fortran-2 toolchain-funcs versionator - -MY_P="${P/-/}" - -DESCRIPTION="Model-independent Parameter ESTimation for calibration and predictive uncertainty analysis" -HOMEPAGE="http://www.pesthomepage.org/" -SRC_URI=" - http://www.pesthomepage.org/getfiles.php?file=${MY_P}.tar.zip -> ${P}.tar.zip - doc? ( - http://www.pesthomepage.org/files/pestman.pdf - http://www.pesthomepage.org/files/addendum.pdf )" - -# License is poorly specified on the SSPA web site. It only says that -# Pest is freeware. -LICENSE="public-domain" -SLOT="0" -KEYWORDS="~amd64" -IUSE="doc" - -DEPEND="app-arch/unzip" -RDEPEND="" - -FORTRAN_STANDARD="90" - -MAKEOPTS="${MAKEOPTS} -j1" - -S="${WORKDIR}/${PN}" - -src_unpack() { - mkdir "${S}" && cd "${S}" - unpack "${P}.tar.zip" - unpack ./"${MY_P}.tar" -} - -src_prepare() { - # I decided it was cleaner to make all edits with sed, rather than a patch. - sed -i \ - -e "s;^F90=.*;F90=$(tc-getFC);" \ - -e "s;^LD=.*;LD=$(tc-getFC);" \ - *.mak makefile - sed -i \ - -e "s;^FFLAGS=.*;FFLAGS=${FFLAGS:--O2} -c;" \ - *.mak - sed -i \ - -e "s;^INSTALLDIR=.*;INSTALLDIR=${D}/usr/bin;" \ - -e 's;^install :;install :\n\tinstall -d $(INSTALLDIR);' \ - makefile -} - -src_compile() { - emake cppp || die "cppp emake failed" - for mfile in pest.mak ppest.mak pestutl1.mak pestutl2.mak pestutl3.mak pestutl4.mak pestutl5.mak pestutl6.mak sensan.mak mpest.mak - do - emake -f ${mfile} all || die "${mfile} emake failed" - done -} - -src_install() { - emake install || die "emake install failed" - - if use doc ; then - dodoc "${DISTDIR}"/pestman.pdf - dodoc "${DISTDIR}"/addendum.pdf - fi - -} - -src_test() { - ebegin "Running d_test" - make d_test || die "make d_test failed" - eend $? -}
