* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2012-09-14 13:50 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2012-09-14 13:50 UTC (permalink / raw
To: gentoo-commits
commit: eb42c7140b0f6f50fa97f1aca60da5c0a318d297
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 14 13:50:26 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 13:50:26 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=eb42c714
sci-chemistry/curvefit: New addition
(Portage version: 2.2.0_alpha128/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-chemistry/curvefit/ChangeLog | 10 +++++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 53 +++++++++++++++++++++++++++
sci-chemistry/curvefit/metadata.xml | 5 +++
3 files changed, 68 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
new file mode 100644
index 0000000..f3b1d46
--- /dev/null
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -0,0 +1,10 @@
+# ChangeLog for sci-chemistry/curvefit
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: $
+
+*curvefit-1.40 (14 Sep 2012)
+
+ 14 Sep 2012; Justin Lecher <jlec@gentoo.org> +curvefit-1.40.ebuild,
+ +metadata.xml:
+ New addition
+
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
new file mode 100644
index 0000000..7c9c514
--- /dev/null
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2012 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=4
+
+inherit multilib
+
+DESCRIPTION="Linear and non-linear least squares fitting"
+HOMEPAGE="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curvefit.html"
+SRC_URI="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curvefit.linux.tar.gz"
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples"
+
+RDEPEND="
+ sci-libs/blas-reference
+ sys-devel/gcc:4.1"
+DEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"/linux
+
+QA_PREBUILT="opt/bin/.*"
+
+src_install() {
+ local _exe
+ sed \
+ -e 's: xmgr : xmgrace :g' \
+ -i batch_curve curveplot || die
+
+ exeinto /opt/bin
+ if use x86; then
+ _exe=./linux_32/curvefit
+ elif use amd64; then
+ _exe=./linux_64/curvefit
+ fi
+
+ patchelf --set-rpath "${EPREFIX}/opt/${PN}" ${_exe}
+
+ doexe batch_curve curveplot ${_exe}
+
+ dosym ../../usr/$(get_libdir)/libblas.so /opt/${PN}/libblas.so.3
+
+ dodoc Versions
+ dohtml curvefit_manual.html
+
+ if use examples; then
+ insinto /usr/share/${PN}/examples/
+ doins sample*
+ fi
+}
diff --git a/sci-chemistry/curvefit/metadata.xml b/sci-chemistry/curvefit/metadata.xml
new file mode 100644
index 0000000..d369d06
--- /dev/null
+++ b/sci-chemistry/curvefit/metadata.xml
@@ -0,0 +1,5 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
+<pkgmetadata>
+ <herd>sci</herd>
+</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2012-09-14 13:56 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2012-09-14 13:56 UTC (permalink / raw
To: gentoo-commits
commit: 0a37535f9aa55b89a660256fce41b10f96bb4e91
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 14 13:55:51 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 13:55:51 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=0a37535f
sci-chemistry/curvefit: Also include gcc-4.1 libdir in rpath
(Portage version: 2.2.0_alpha128/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index f3b1d46..7c506e1 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Also include gcc-4.1 libdir in rpath
+
*curvefit-1.40 (14 Sep 2012)
14 Sep 2012; Justin Lecher <jlec@gentoo.org> +curvefit-1.40.ebuild,
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index 7c9c514..5d75662 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -37,7 +37,7 @@ src_install() {
_exe=./linux_64/curvefit
fi
- patchelf --set-rpath "${EPREFIX}/opt/${PN}" ${_exe}
+ patchelf --set-rpath "${EPREFIX}/opt/${PN}:${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe}
doexe batch_curve curveplot ${_exe}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2012-09-14 14:15 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2012-09-14 14:15 UTC (permalink / raw
To: gentoo-commits
commit: 783b3d7fa6f77ded320f46e89b68debb3751f3f8
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 14 14:15:13 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 14:15:13 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=783b3d7f
sci-chemistry/curvefit: We have ls in usr/bin
(Portage version: 2.2.0_alpha128/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 1 +
2 files changed, 4 insertions(+), 0 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 7c506e1..d0b3b88 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ We have ls in usr/bin
+
+ 14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
Also include gcc-4.1 libdir in rpath
*curvefit-1.40 (14 Sep 2012)
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index 5d75662..cd3b3ab 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -28,6 +28,7 @@ src_install() {
local _exe
sed \
-e 's: xmgr : xmgrace :g' \
+ -e 's:/bin/ls:/usr/bin/ls:g' \
-i batch_curve curveplot || die
exeinto /opt/bin
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2012-09-14 14:17 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2012-09-14 14:17 UTC (permalink / raw
To: gentoo-commits
commit: cc61c0a5da30959f4c6f835437c5f60fd76c3f2b
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 14 14:17:36 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 14:17:36 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=cc61c0a5
sci-chemistry/curvefit: And it sits in EPREFIX
(Portage version: 2.2.0_alpha128/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index d0b3b88..49703fb 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ And it sits in EPREFIX
+
+ 14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
We have ls in usr/bin
14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index cd3b3ab..c34d6c6 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -28,7 +28,7 @@ src_install() {
local _exe
sed \
-e 's: xmgr : xmgrace :g' \
- -e 's:/bin/ls:/usr/bin/ls:g' \
+ -e 's: /bin/ls:${EPREFIX}/bin/ls:g' \
-i batch_curve curveplot || die
exeinto /opt/bin
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2012-09-14 14:19 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2012-09-14 14:19 UTC (permalink / raw
To: gentoo-commits
commit: a57d4f752cfb5eb038e669176f76bef07b597982
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Fri Sep 14 14:19:04 2012 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Fri Sep 14 14:19:04 2012 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=a57d4f75
sci-chemistry/curvefit: Quote sed correctly
(Portage version: 2.2.0_alpha128/git/Linux x86_64, RepoMan options: --force, unsigned Manifest commit)
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 49703fb..8f46e69 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -3,6 +3,9 @@
# $Header: $
14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Quote sed correctly
+
+ 14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
And it sits in EPREFIX
14 Sep 2012; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index c34d6c6..5429531 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -28,7 +28,7 @@ src_install() {
local _exe
sed \
-e 's: xmgr : xmgrace :g' \
- -e 's: /bin/ls:${EPREFIX}/bin/ls:g' \
+ -e "s: /bin/ls:${EPREFIX}/bin/ls:g" \
-i batch_curve curveplot || die
exeinto /opt/bin
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2013-05-15 6:18 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2013-05-15 6:18 UTC (permalink / raw
To: gentoo-commits
commit: 7c8f5d5c7aeb909b1280d4c825f7e9c386a09093
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Wed May 15 06:18:12 2013 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed May 15 06:18:12 2013 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=7c8f5d5c
sci-chemistry/curvefit: Add missing eclass inherit
Package-Manager: portage-2.2.0_alpha174
RepoMan-Options: --force
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 6 +++---
2 files changed, 6 insertions(+), 3 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index d972ffb..4be6a2c 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 15 May 2013; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Add missing eclass inherit
+
03 Mar 2013; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild,
metadata.xml:
Correct lib name of ref blas
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index 0e0c6ce..30ec272 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -4,7 +4,7 @@
EAPI=5
-inherit multilib
+inherit fortran-2 multilib
DESCRIPTION="Linear and non-linear least squares fitting"
HOMEPAGE="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curvefit.html"
@@ -33,9 +33,9 @@ src_install() {
exeinto /opt/bin
if use x86; then
- _exe=./linux_32/curvefit
+ _exe=./linux_32/${PN}
elif use amd64; then
- _exe=./linux_64/curvefit
+ _exe=./linux_64/${PN}
fi
patchelf --set-rpath "${EPREFIX}/opt/${PN}:${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2014-08-11 10:41 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2014-08-11 10:41 UTC (permalink / raw
To: gentoo-commits
commit: 49fb1d8e898c8cc5e0ba651ecbcc9e2a61871a28
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 11 10:41:01 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 10:41:01 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=49fb1d8e
sci-chemistry/curvefit: Fix missing libs on prefix
Package-Manager: portage-2.2.11-r1
RepoMan-Options: --force
---
sci-chemistry/curvefit/ChangeLog | 5 ++++-
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 4be6a2c..0d518f9 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/curvefit
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 11 Aug 2014; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Fix missing libs on prefix
+
15 May 2013; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
Add missing eclass inherit
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index f992ec9..b4c11fc 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -38,7 +38,7 @@ src_install() {
_exe=./linux_64/${PN}
fi
- patchelf --set-rpath "${EPREFIX}/opt/${PN}:${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe}
+ patchelf --set-rpath "${EPREFIX}/opt/${PN}:$(gcc-config -L):${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe} || die
doexe batch_curve curveplot ${_exe}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2014-08-19 21:51 Christoph Junghans
0 siblings, 0 replies; 11+ messages in thread
From: Christoph Junghans @ 2014-08-19 21:51 UTC (permalink / raw
To: gentoo-commits
commit: 49fb1d8e898c8cc5e0ba651ecbcc9e2a61871a28
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Aug 11 10:41:01 2014 +0000
Commit: Christoph Junghans <ottxor <AT> gentoo <DOT> org>
CommitDate: Mon Aug 11 10:41:01 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=49fb1d8e
sci-chemistry/curvefit: Fix missing libs on prefix
Package-Manager: portage-2.2.11-r1
RepoMan-Options: --force
---
sci-chemistry/curvefit/ChangeLog | 5 ++++-
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 4be6a2c..0d518f9 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/curvefit
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 11 Aug 2014; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Fix missing libs on prefix
+
15 May 2013; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
Add missing eclass inherit
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index f992ec9..b4c11fc 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -38,7 +38,7 @@ src_install() {
_exe=./linux_64/${PN}
fi
- patchelf --set-rpath "${EPREFIX}/opt/${PN}:${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe}
+ patchelf --set-rpath "${EPREFIX}/opt/${PN}:$(gcc-config -L):${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe} || die
doexe batch_curve curveplot ${_exe}
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2014-11-13 13:15 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2014-11-13 13:15 UTC (permalink / raw
To: gentoo-commits
commit: f28550c338f799457890ae6c4c413a380120e6a8
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Thu Nov 13 13:14:45 2014 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Thu Nov 13 13:14:45 2014 +0000
URL: http://sources.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=f28550c3
sci-chemistry/curvefit: Drop all KEYWORDS due to broken revdeps
Package-Manager: portage-2.2.14
---
sci-chemistry/curvefit/ChangeLog | 3 +++
sci-chemistry/curvefit/curvefit-1.40.ebuild | 2 +-
2 files changed, 4 insertions(+), 1 deletion(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 0d518f9..88972cd 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -2,6 +2,9 @@
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 13 Nov 2014; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ Drop all KEYWORDS due to broken revdeps
+
11 Aug 2014; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
Fix missing libs on prefix
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index b4c11fc..8ac1975 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curv
SLOT="0"
LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS=""
IUSE="examples"
RDEPEND="
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2015-03-30 6:03 Justin Lecher
0 siblings, 0 replies; 11+ messages in thread
From: Justin Lecher @ 2015-03-30 6:03 UTC (permalink / raw
To: gentoo-commits
commit: a7b3559d7188cd0f4a4cd7ed10aa9e6ca93d47a0
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Mon Mar 30 05:58:37 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Mar 30 05:58:37 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=a7b3559d
sci-chemistry/curvefit: Fix for new gcc slotting
Package-Manager: portage-2.2.18
sci-chemistry/curvefit/ChangeLog | 6 ++++--
sci-chemistry/curvefit/curvefit-1.40.ebuild | 4 ++--
2 files changed, 6 insertions(+), 4 deletions(-)
diff --git a/sci-chemistry/curvefit/ChangeLog b/sci-chemistry/curvefit/ChangeLog
index 88972cd..f19c166 100644
--- a/sci-chemistry/curvefit/ChangeLog
+++ b/sci-chemistry/curvefit/ChangeLog
@@ -1,7 +1,10 @@
# ChangeLog for sci-chemistry/curvefit
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
# $Header: $
+ 30 Mar 2015; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
+ sci-chemistry/curvefit: Fix for new gcc slotting
+
13 Nov 2014; Justin Lecher <jlec@gentoo.org> curvefit-1.40.ebuild:
Drop all KEYWORDS due to broken revdeps
@@ -32,4 +35,3 @@
14 Sep 2012; Justin Lecher <jlec@gentoo.org> +curvefit-1.40.ebuild,
+metadata.xml:
New addition
-
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
index 8ac1975..2bfb1b5 100644
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ b/sci-chemistry/curvefit/curvefit-1.40.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
@@ -17,7 +17,7 @@ IUSE="examples"
RDEPEND="
sci-libs/blas-reference
- sys-devel/gcc:4.1"
+ =sys-devel/gcc-4.1*"
DEPEND="dev-util/patchelf"
S="${WORKDIR}"/linux
^ permalink raw reply related [flat|nested] 11+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/
@ 2021-01-10 18:25 Andrew Ammerlaan
0 siblings, 0 replies; 11+ messages in thread
From: Andrew Ammerlaan @ 2021-01-10 18:25 UTC (permalink / raw
To: gentoo-commits
commit: 996e6854a341344055957c91bb4d207e3f819b53
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sun Jan 10 18:24:53 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sun Jan 10 18:24:53 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=996e6854
sci-chemistry/curvefit: remove pack, 404, no alternative link
redirects to:
https://www.biochem.cumc.columbia.edu/research-labs/palmer-lab
unable to find any downloadlink whatsoever
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-chemistry/curvefit/curvefit-1.40.ebuild | 53 -----------------------------
sci-chemistry/curvefit/metadata.xml | 8 -----
2 files changed, 61 deletions(-)
diff --git a/sci-chemistry/curvefit/curvefit-1.40.ebuild b/sci-chemistry/curvefit/curvefit-1.40.ebuild
deleted file mode 100644
index 225325523..000000000
--- a/sci-chemistry/curvefit/curvefit-1.40.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit fortran-2 multilib
-
-DESCRIPTION="Linear and non-linear least squares fitting"
-HOMEPAGE="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curvefit.html"
-SRC_URI="http://cpmcnet.columbia.edu/dept/gsas/biochem/labs/palmer/software/curvefit.linux.tar.gz"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS=""
-IUSE="examples"
-
-RDEPEND="
- sci-libs/blas-reference
- =sys-devel/gcc-4.1*"
-DEPEND="dev-util/patchelf"
-
-S="${WORKDIR}"/linux
-
-QA_PREBUILT="opt/bin/.*"
-
-src_install() {
- local _exe
- sed \
- -e 's: xmgr : xmgrace :g' \
- -e "s: /bin/ls:${EPREFIX}/bin/ls:g" \
- -i batch_curve curveplot || die
-
- exeinto /opt/bin
- if use x86; then
- _exe=./linux_32/${PN}
- elif use amd64; then
- _exe=./linux_64/${PN}
- fi
-
- patchelf --set-rpath "${EPREFIX}/opt/${PN}:$(gcc-config -L):${EPREFIX}/usr/$(get_libdir)/gcc/x86_64-pc-linux-gnu/4.1.2/" ${_exe} || die
-
- doexe batch_curve curveplot ${_exe}
-
- dosym ../../usr/$(get_libdir)/librefblas.so /opt/${PN}/libblas.so.3
-
- dodoc Versions
- dohtml curvefit_manual.html
-
- if use examples; then
- insinto /usr/share/${PN}/examples/
- doins sample*
- fi
-}
diff --git a/sci-chemistry/curvefit/metadata.xml b/sci-chemistry/curvefit/metadata.xml
deleted file mode 100644
index da36ecbfc..000000000
--- a/sci-chemistry/curvefit/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sci-chemistry@gentoo.org</email>
- <name>Gentoo Chemistry Project</name>
- </maintainer>
-</pkgmetadata>
^ permalink raw reply related [flat|nested] 11+ messages in thread
end of thread, other threads:[~2021-01-10 18:25 UTC | newest]
Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-08-19 21:51 [gentoo-commits] proj/sci:master commit in: sci-chemistry/curvefit/ Christoph Junghans
-- strict thread matches above, loose matches on Subject: below --
2021-01-10 18:25 Andrew Ammerlaan
2015-03-30 6:03 Justin Lecher
2014-11-13 13:15 Justin Lecher
2014-08-11 10:41 Justin Lecher
2013-05-15 6:18 Justin Lecher
2012-09-14 14:19 Justin Lecher
2012-09-14 14:17 Justin Lecher
2012-09-14 14:15 Justin Lecher
2012-09-14 13:56 Justin Lecher
2012-09-14 13:50 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox