From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C4906138334 for ; Wed, 6 Nov 2019 09:56:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DDE08E09E9; Wed, 6 Nov 2019 09:56:10 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id C5139E09E9 for ; Wed, 6 Nov 2019 09:56:10 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 49FBA34C95B for ; Wed, 6 Nov 2019 09:56:09 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3496C89D for ; Wed, 6 Nov 2019 09:56:07 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1573032804.8271f9d5a6ae102e197f58c87e9555e54bf50ea1.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-lang/cfortran/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-lang/cfortran/cfortran-4.4-r2.ebuild X-VCS-Directories: dev-lang/cfortran/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8271f9d5a6ae102e197f58c87e9555e54bf50ea1 X-VCS-Branch: master Date: Wed, 6 Nov 2019 09:56:07 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 0ce3ffbd-9037-443d-b8b8-f23748f9fc75 X-Archives-Hash: 832acf2c45dbe139eaddc9131be3c2ea commit: 8271f9d5a6ae102e197f58c87e9555e54bf50ea1 Author: Michał Górny gentoo org> AuthorDate: Wed Nov 6 09:33:24 2019 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Nov 6 09:33:24 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8271f9d5 dev-lang/cfortran: Drop old (EAPI 0) Signed-off-by: Michał Górny gentoo.org> dev-lang/cfortran/cfortran-4.4-r2.ebuild | 39 -------------------------------- 1 file changed, 39 deletions(-) diff --git a/dev-lang/cfortran/cfortran-4.4-r2.ebuild b/dev-lang/cfortran/cfortran-4.4-r2.ebuild deleted file mode 100644 index 6b13ce65940..00000000000 --- a/dev-lang/cfortran/cfortran-4.4-r2.ebuild +++ /dev/null @@ -1,39 +0,0 @@ -# Copyright 1999-2018 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=0 - -inherit eutils - -DEB_PR="14" - -DESCRIPTION="Header file allowing to call Fortran routines from C and C++" -SRC_URI="mirror://debian/pool/main/c/${PN}/${PN}_${PV}.orig.tar.gz - mirror://debian/pool/main/c/${PN}/${PN}_${PV}-${DEB_PR}.diff.gz" -HOMEPAGE="https://www-zeus.desy.de/~burow/cfortran/" -KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~x86-macos" -LICENSE="LGPL-2" -IUSE="examples" -SLOT="0" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${WORKDIR}"/${PN}_${PV}-${DEB_PR}.diff - if use examples; then - tar xfz cfortran.examples.tar.gz - mv eg examples - ln -sfn sz1.c examples/sz1/sz1.C - ln -sfn pz.c examples/pz/pz.C - fi -} - -src_install() { - insinto /usr/include/cfortran - doins cfortran.h || die - dosym cfortran/cfortran.h /usr/include/cfortran.h || die - dodoc cfortran.doc debian/{NEWS,changelog,copyright} - insinto /usr/share/doc/${PF} - doins cfortran.html index.htm cfortest.c cfortex.f - use examples && doins -r examples -}