* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2012-07-14 22:45 Christoph Junghans
0 siblings, 0 replies; 10+ messages in thread
From: Christoph Junghans @ 2012-07-14 22:45 UTC (permalink / raw
To: gentoo-commits
commit: 2215c2d2a12d1558773ec7379568d95882f97dae
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Sat Jul 14 21:45:14 2012 +0000
Commit: Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Sat Jul 14 21:45:14 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2215c2d2
initial commit
(Portage version: 2.2.0_alpha118/git/Linux i686, unsigned Manifest commit)
---
dev-util/f90cache/ChangeLog | 9 ++++++
dev-util/f90cache/f90cache-0.93.7.ebuild | 42 ++++++++++++++++++++++++++++++
dev-util/f90cache/metadata.xml | 8 +++++
3 files changed, 59 insertions(+), 0 deletions(-)
diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
new file mode 100644
index 0000000..4c8e463
--- /dev/null
+++ b/dev-util/f90cache/ChangeLog
@@ -0,0 +1,9 @@
+# ChangeLog for dev-util/f90cache
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*f90cache-0.93.7 (14 Jul 2012)
+
+ 14 Jul 2012; Christoph Junghans <ottxor@gentoo.org> +f90cache-0.93.7.ebuild,
+ +metadata.xml:
+ initial commit
diff --git a/dev-util/f90cache/f90cache-0.93.7.ebuild b/dev-util/f90cache/f90cache-0.93.7.ebuild
new file mode 100644
index 0000000..443ad58
--- /dev/null
+++ b/dev-util/f90cache/f90cache-0.93.7.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-3.1.7.ebuild,v 1.9 2012/07/01 16:39:59 armin76 Exp $
+
+EAPI="4"
+
+inherit multilib toolchain-funcs
+
+DESCRIPTION="a compiler cache for fortran"
+HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
+SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86"
+IUSE=""
+
+DEPEND="virtual/fortran"
+RDEPEND="${DEPEND}
+ dev-util/ccache"
+
+src_prepare() {
+ sed -i -e '/^CFLAGS/d' -e 's/CFLAGS/LDFLAGS/' Makefile.in || die
+}
+
+src_install() {
+ #make install does too much magic
+ dodoc README CHANGES
+ doman f90cache.1
+ dohtml web/*
+ dobin f90cache
+
+ #we depend on ccache, put links in there so that portage uses them
+ #TODO improve this
+ dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+}
+
+pkg_postinst() {
+ elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
+ elog "to your make.conf otherwise f90cache files end up in"
+ elog "home of the user executing portage"
+}
diff --git a/dev-util/f90cache/metadata.xml b/dev-util/f90cache/metadata.xml
new file mode 100644
index 0000000..745b9e1
--- /dev/null
+++ b/dev-util/f90cache/metadata.xml
@@ -0,0 +1,8 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <maintainer>
+ <email>ottxor@gentoo.org</email>
+ <name>Christoph Junghans</name>
+ </maintainer>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2012-10-29 11:00 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2012-10-29 11:00 UTC (permalink / raw
To: gentoo-commits
commit: 2a14d7309852ba62a57fdf8a3a4f3af2c4d3c0b4
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Oct 25 16:21:48 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Oct 25 16:21:48 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=2a14d730
dev-util/f90cache: Use fortran-2.eclass
Package-Manager: portage-2.2.0_alpha141
---
dev-util/f90cache/ChangeLog | 3 +++
dev-util/f90cache/f90cache-0.93.7.ebuild | 11 +++++------
2 files changed, 8 insertions(+), 6 deletions(-)
diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
index 4c8e463..1f7352e 100644
--- a/dev-util/f90cache/ChangeLog
+++ b/dev-util/f90cache/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 25 Oct 2012; Justin Lecher <jlec@gentoo.org> f90cache-0.93.7.ebuild:
+ Use fortran-2.eclass
+
*f90cache-0.93.7 (14 Jul 2012)
14 Jul 2012; Christoph Junghans <ottxor@gentoo.org> +f90cache-0.93.7.ebuild,
diff --git a/dev-util/f90cache/f90cache-0.93.7.ebuild b/dev-util/f90cache/f90cache-0.93.7.ebuild
index 443ad58..16fcd3a 100644
--- a/dev-util/f90cache/f90cache-0.93.7.ebuild
+++ b/dev-util/f90cache/f90cache-0.93.7.ebuild
@@ -1,10 +1,10 @@
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/ccache/ccache-3.1.7.ebuild,v 1.9 2012/07/01 16:39:59 armin76 Exp $
+# $Header: $
-EAPI="4"
+EAPI=5
-inherit multilib toolchain-funcs
+inherit fortran-2 multilib toolchain-funcs
DESCRIPTION="a compiler cache for fortran"
HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
@@ -15,9 +15,8 @@ SLOT="0"
KEYWORDS="~x86"
IUSE=""
-DEPEND="virtual/fortran"
-RDEPEND="${DEPEND}
- dev-util/ccache"
+DEPEND=""
+RDEPEND="dev-util/ccache"
src_prepare() {
sed -i -e '/^CFLAGS/d' -e 's/CFLAGS/LDFLAGS/' Makefile.in || die
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2012-12-24 22:43 Christoph Junghans
0 siblings, 0 replies; 10+ messages in thread
From: Christoph Junghans @ 2012-12-24 22:43 UTC (permalink / raw
To: gentoo-commits
commit: a1df0c911aa7aae726b545ac535b27c1a4d1ee22
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Mon Dec 24 22:43:20 2012 +0000
Commit: Christoph Junghans <kleiner_otti <AT> gmx <DOT> de>
CommitDate: Mon Dec 24 22:43:20 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a1df0c91
version bump
Package-Manager: portage-2.2.0_alpha149
---
dev-util/f90cache/ChangeLog | 6 ++++++
...f90cache-0.93.7.ebuild => f90cache-0.94.ebuild} | 11 ++++-------
2 files changed, 10 insertions(+), 7 deletions(-)
diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
index 1f7352e..4b14c0a 100644
--- a/dev-util/f90cache/ChangeLog
+++ b/dev-util/f90cache/ChangeLog
@@ -2,6 +2,12 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*f90cache-0.94 (24 Dec 2012)
+
+ 24 Dec 2012; Christoph Junghans <ottxor@gentoo.org> +f90cache-0.94.ebuild,
+ -f90cache-0.93.7.ebuild:
+ version bump
+
25 Oct 2012; Justin Lecher <jlec@gentoo.org> f90cache-0.93.7.ebuild:
Use fortran-2.eclass
diff --git a/dev-util/f90cache/f90cache-0.93.7.ebuild b/dev-util/f90cache/f90cache-0.94.ebuild
similarity index 75%
rename from dev-util/f90cache/f90cache-0.93.7.ebuild
rename to dev-util/f90cache/f90cache-0.94.ebuild
index 16fcd3a..00fe456 100644
--- a/dev-util/f90cache/f90cache-0.93.7.ebuild
+++ b/dev-util/f90cache/f90cache-0.94.ebuild
@@ -12,24 +12,21 @@ SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
LICENSE="GPL-3"
SLOT="0"
-KEYWORDS="~x86"
+KEYWORDS="~x86 ~amd64"
IUSE=""
DEPEND=""
RDEPEND="dev-util/ccache"
src_prepare() {
- sed -i -e '/^CFLAGS/d' -e 's/CFLAGS/LDFLAGS/' Makefile.in || die
+ sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
}
src_install() {
- #make install does too much magic
- dodoc README CHANGES
- doman f90cache.1
+ default
dohtml web/*
- dobin f90cache
- #we depend on ccache, put links in there so that portage uses them
+ #we depend on ccache, put links in there so that portage fined it
#TODO improve this
dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2015-05-23 15:53 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2015-05-23 15:53 UTC (permalink / raw
To: gentoo-commits
commit: fd3a64680d8762571179527265cc4c0422c9492a
Author: Marius Brehler <marbre <AT> linux <DOT> sungazer <DOT> de>
AuthorDate: Tue May 19 07:32:00 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Tue May 19 07:32:00 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=fd3a6468
dev-util/f90cache: Version bump
Package-Manager: portage-2.2.18
dev-util/f90cache/ChangeLog | 7 ++++++-
dev-util/f90cache/f90cache-0.95.ebuild | 38 ++++++++++++++++++++++++++++++++++
2 files changed, 44 insertions(+), 1 deletion(-)
diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
index 4b14c0a..6994547 100644
--- a/dev-util/f90cache/ChangeLog
+++ b/dev-util/f90cache/ChangeLog
@@ -1,7 +1,12 @@
# ChangeLog for dev-util/f90cache
-# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+*f90cache-0.95 (19 May 2015)
+
+ 19 May 2015; Marius Brehler <marbre@linux.sungazer.de> +f90cache-0.95.ebuild:
+ Version bump
+
*f90cache-0.94 (24 Dec 2012)
24 Dec 2012; Christoph Junghans <ottxor@gentoo.org> +f90cache-0.94.ebuild,
diff --git a/dev-util/f90cache/f90cache-0.95.ebuild b/dev-util/f90cache/f90cache-0.95.ebuild
new file mode 100644
index 0000000..43e04c2
--- /dev/null
+++ b/dev-util/f90cache/f90cache-0.95.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=5
+
+inherit fortran-2 multilib toolchain-funcs
+
+DESCRIPTION="a compiler cache for fortran"
+HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
+SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="dev-util/ccache"
+
+src_prepare() {
+ sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
+}
+
+src_install() {
+ default
+ dohtml web/*
+
+ #we depend on ccache, put links in there so that portage fined it
+ #TODO improve this
+ dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+}
+
+pkg_postinst() {
+ elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
+ elog "to your make.conf otherwise f90cache files end up in"
+ elog "home of the user executing portage"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2015-09-25 22:47 Christoph Junghans
0 siblings, 0 replies; 10+ messages in thread
From: Christoph Junghans @ 2015-09-25 22:47 UTC (permalink / raw
To: gentoo-commits
commit: 735bc70f773e67f83453ee712048d863f938f095
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 25 22:46:31 2015 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Fri Sep 25 22:47:05 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=735bc70f
dev-util/f90cache: version bump (fixes #497 gh)
Package-Manager: portage-2.2.20.1
dev-util/f90cache/ChangeLog | 5 +++++
dev-util/f90cache/f90cache-0.96.ebuild | 37 ++++++++++++++++++++++++++++++++++
2 files changed, 42 insertions(+)
diff --git a/dev-util/f90cache/ChangeLog b/dev-util/f90cache/ChangeLog
index 533cb6e..dc24cf7 100644
--- a/dev-util/f90cache/ChangeLog
+++ b/dev-util/f90cache/ChangeLog
@@ -2,6 +2,11 @@
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Id$
+*f90cache-0.96 (25 Sep 2015)
+
+ 25 Sep 2015; Christoph Junghans <ottxor@gentoo.org> +f90cache-0.96.ebuild:
+ dev-util/f90cache: version bump (fixes #497 gh)
+
*f90cache-0.95 (19 May 2015)
19 May 2015; Marius Brehler <marbre@linux.sungazer.de> +f90cache-0.95.ebuild:
diff --git a/dev-util/f90cache/f90cache-0.96.ebuild b/dev-util/f90cache/f90cache-0.96.ebuild
new file mode 100644
index 0000000..f7c5ab4
--- /dev/null
+++ b/dev-util/f90cache/f90cache-0.96.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit fortran-2 multilib toolchain-funcs
+
+DESCRIPTION="a compiler cache for fortran"
+HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
+SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="dev-util/ccache"
+
+src_prepare() {
+ sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
+}
+
+src_install() {
+ default
+
+ #we depend on ccache, put links in there so that portage find it
+ #TODO improve this
+ dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+}
+
+pkg_postinst() {
+ elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
+ elog "to your make.conf otherwise f90cache files end up in"
+ elog "home of the user executing portage"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2017-04-12 2:19 Christoph Junghans
0 siblings, 0 replies; 10+ messages in thread
From: Christoph Junghans @ 2017-04-12 2:19 UTC (permalink / raw
To: gentoo-commits
commit: e91665803f697f31dc3b36b90ad20a3c9320c67c
Author: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
AuthorDate: Wed Apr 12 02:19:09 2017 +0000
Commit: Christoph Junghans <junghans <AT> gentoo <DOT> org>
CommitDate: Wed Apr 12 02:19:27 2017 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=e9166580
dev-util/f90cache: version bump
Package-Manager: Portage-2.3.3, Repoman-2.3.1
dev-util/f90cache/f90cache-0.99.ebuild | 37 ++++++++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/dev-util/f90cache/f90cache-0.99.ebuild b/dev-util/f90cache/f90cache-0.99.ebuild
new file mode 100644
index 000000000..6012e0ae6
--- /dev/null
+++ b/dev-util/f90cache/f90cache-0.99.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit fortran-2 multilib toolchain-funcs
+
+DESCRIPTION="a compiler cache for fortran"
+HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
+SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~x86 ~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="dev-util/ccache"
+
+src_prepare() {
+ default
+ sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
+}
+
+src_install() {
+ default
+
+ #we depend on ccache, put links in there so that portage find it
+ #TODO improve this
+ dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+}
+
+pkg_postinst() {
+ elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
+ elog "to your make.conf otherwise f90cache files end up in"
+ elog "home of the user executing portage"
+}
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2017-11-18 19:49 Justin Lecher
0 siblings, 0 replies; 10+ messages in thread
From: Justin Lecher @ 2017-11-18 19:49 UTC (permalink / raw
To: gentoo-commits
commit: c0f3402ab97996b743e480528eacd7ae8aad19be
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Nov 18 18:22:35 2017 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Nov 18 19:49:16 2017 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c0f3402a
dev-util/f90cache: Fix repoman warnings
* Drop old
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
Package-Manager: Portage-2.3.14, Repoman-2.3.6
dev-util/f90cache/f90cache-0.94.ebuild | 37 ----------------------------------
dev-util/f90cache/f90cache-0.95.ebuild | 37 ----------------------------------
dev-util/f90cache/f90cache-0.96.ebuild | 36 ---------------------------------
dev-util/f90cache/f90cache-0.99.ebuild | 4 ++--
4 files changed, 2 insertions(+), 112 deletions(-)
diff --git a/dev-util/f90cache/f90cache-0.94.ebuild b/dev-util/f90cache/f90cache-0.94.ebuild
deleted file mode 100644
index ccdfc22f2..000000000
--- a/dev-util/f90cache/f90cache-0.94.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit fortran-2 multilib toolchain-funcs
-
-DESCRIPTION="a compiler cache for fortran"
-HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
-SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-util/ccache"
-
-src_prepare() {
- sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
-}
-
-src_install() {
- default
- dohtml web/*
-
- #we depend on ccache, put links in there so that portage fined it
- #TODO improve this
- dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
-}
-
-pkg_postinst() {
- elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
- elog "to your make.conf otherwise f90cache files end up in"
- elog "home of the user executing portage"
-}
diff --git a/dev-util/f90cache/f90cache-0.95.ebuild b/dev-util/f90cache/f90cache-0.95.ebuild
deleted file mode 100644
index 6698b217e..000000000
--- a/dev-util/f90cache/f90cache-0.95.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit fortran-2 multilib toolchain-funcs
-
-DESCRIPTION="a compiler cache for fortran"
-HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
-SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-util/ccache"
-
-src_prepare() {
- sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
-}
-
-src_install() {
- default
- dohtml web/*
-
- #we depend on ccache, put links in there so that portage fined it
- #TODO improve this
- dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
-}
-
-pkg_postinst() {
- elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
- elog "to your make.conf otherwise f90cache files end up in"
- elog "home of the user executing portage"
-}
diff --git a/dev-util/f90cache/f90cache-0.96.ebuild b/dev-util/f90cache/f90cache-0.96.ebuild
deleted file mode 100644
index 52bc38341..000000000
--- a/dev-util/f90cache/f90cache-0.96.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit fortran-2 multilib toolchain-funcs
-
-DESCRIPTION="a compiler cache for fortran"
-HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
-SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="dev-util/ccache"
-
-src_prepare() {
- sed -i -e '/OBJS/s/CFLAGS/LDFLAGS/' -e '/strip/d' Makefile.in || die
-}
-
-src_install() {
- default
-
- #we depend on ccache, put links in there so that portage find it
- #TODO improve this
- dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
-}
-
-pkg_postinst() {
- elog "Please add F90CACHE_DIR=\"${ROOT%/}/var/tmp/f90cache\""
- elog "to your make.conf otherwise f90cache files end up in"
- elog "home of the user executing portage"
-}
diff --git a/dev-util/f90cache/f90cache-0.99.ebuild b/dev-util/f90cache/f90cache-0.99.ebuild
index 6012e0ae6..fad4d4013 100644
--- a/dev-util/f90cache/f90cache-0.99.ebuild
+++ b/dev-util/f90cache/f90cache-0.99.ebuild
@@ -5,7 +5,7 @@ EAPI=6
inherit fortran-2 multilib toolchain-funcs
-DESCRIPTION="a compiler cache for fortran"
+DESCRIPTION="Compiler cache for fortran"
HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
@@ -27,7 +27,7 @@ src_install() {
#we depend on ccache, put links in there so that portage find it
#TODO improve this
- dosym "/usr/bin/f90cache" "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+ dosym ../../../bin/f90cache "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2021-01-16 10:54 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-01-16 10:54 UTC (permalink / raw
To: gentoo-commits
commit: 4bfa76a52d92efdf0a850e119b7681e0e8eea529
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Jan 16 10:53:37 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Jan 16 10:53:37 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=4bfa76a5
dev-util/f90cache: version bump, fix fetch, fix homepage
Package-Manager: Portage-3.0.13, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
.../f90cache/{f90cache-0.99.ebuild => f90cache-0.99c.ebuild} | 10 ++++------
1 file changed, 4 insertions(+), 6 deletions(-)
diff --git a/dev-util/f90cache/f90cache-0.99.ebuild b/dev-util/f90cache/f90cache-0.99c.ebuild
similarity index 79%
rename from dev-util/f90cache/f90cache-0.99.ebuild
rename to dev-util/f90cache/f90cache-0.99c.ebuild
index 1bc36389a..196930087 100644
--- a/dev-util/f90cache/f90cache-0.99.ebuild
+++ b/dev-util/f90cache/f90cache-0.99c.ebuild
@@ -1,20 +1,18 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
-EAPI=6
+EAPI=7
inherit fortran-2 multilib toolchain-funcs
DESCRIPTION="Compiler cache for fortran"
-HOMEPAGE="http://people.irisa.fr/Edouard.Canot/f90cache/"
-SRC_URI="http://people.irisa.fr/Edouard.Canot/${PN}/${P}.tar.bz2"
+HOMEPAGE="https://perso.univ-rennes1.fr/edouard.canot//f90cache/"
+SRC_URI="https://perso.univ-rennes1.fr/edouard.canot//f90cache/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
-IUSE=""
-DEPEND=""
RDEPEND="dev-util/ccache"
src_prepare() {
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2021-03-19 11:08 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-03-19 11:08 UTC (permalink / raw
To: gentoo-commits
commit: 13cba0212dd8d43db28db034ad60c5876e199b61
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Fri Mar 19 10:53:37 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Fri Mar 19 10:53:37 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=13cba021
dev-util/f90cache: fix MisplacedVariable
Package-Manager: Portage-3.0.17, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
dev-util/f90cache/f90cache-0.99c.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/f90cache/f90cache-0.99c.ebuild b/dev-util/f90cache/f90cache-0.99c.ebuild
index bb2a72471..c3a5b82ec 100644
--- a/dev-util/f90cache/f90cache-0.99c.ebuild
+++ b/dev-util/f90cache/f90cache-0.99c.ebuild
@@ -25,7 +25,7 @@ src_install() {
#we depend on ccache, put links in there so that portage find it
#TODO improve this
- dosym ../../../bin/f90cache "${ROOT}/usr/$(get_libdir)/ccache/bin/gfortran"
+ dosym ../../../bin/f90cache "/usr/$(get_libdir)/ccache/bin/gfortran"
}
pkg_postinst() {
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/
@ 2021-12-16 11:07 Andrew Ammerlaan
0 siblings, 0 replies; 10+ messages in thread
From: Andrew Ammerlaan @ 2021-12-16 11:07 UTC (permalink / raw
To: gentoo-commits
commit: 28ee78f4e9a36ba644fa2399e28408b48c634d9c
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Thu Dec 16 11:03:31 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Thu Dec 16 11:03:31 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=28ee78f4
dev-util/f90cache: drop UnusedInherits
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
dev-util/f90cache/f90cache-0.99c.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dev-util/f90cache/f90cache-0.99c.ebuild b/dev-util/f90cache/f90cache-0.99c.ebuild
index a4fcfe0e0..cc5024c91 100644
--- a/dev-util/f90cache/f90cache-0.99c.ebuild
+++ b/dev-util/f90cache/f90cache-0.99c.ebuild
@@ -3,7 +3,7 @@
EAPI=7
-inherit fortran-2 multilib
+inherit fortran-2
DESCRIPTION="Compiler cache for fortran"
HOMEPAGE="https://perso.univ-rennes1.fr/edouard.canot//f90cache/"
^ permalink raw reply related [flat|nested] 10+ messages in thread
end of thread, other threads:[~2021-12-16 11:07 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-29 11:00 [gentoo-commits] proj/sci:master commit in: dev-util/f90cache/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2021-12-16 11:07 Andrew Ammerlaan
2021-03-19 11:08 Andrew Ammerlaan
2021-01-16 10:54 Andrew Ammerlaan
2017-11-18 19:49 Justin Lecher
2017-04-12 2:19 Christoph Junghans
2015-09-25 22:47 Christoph Junghans
2015-05-23 15:53 Justin Lecher
2012-12-24 22:43 Christoph Junghans
2012-07-14 22:45 Christoph Junghans
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox