* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-09-26 15:19 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-09-26 15:19 UTC (permalink / raw
To: gentoo-commits
commit: 6642669ecf748cd0dd9f3dbded89a44f425262eb
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sat Sep 26 15:19:27 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sat Sep 26 15:19:27 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=6642669e
sci-biology/spm: Fix SRC_URI to the original tarball
Closes GH #499
Package-Manager: portage-2.2.22
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-biology/spm/spm-12.ebuild | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/sci-biology/spm/spm-12.ebuild b/sci-biology/spm/spm-12.ebuild
index 4f69567..0e07e62 100644
--- a/sci-biology/spm/spm-12.ebuild
+++ b/sci-biology/spm/spm-12.ebuild
@@ -6,18 +6,16 @@ EAPI=5
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${PV}.zip"
+SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${PV}.0.zip"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
-RDEPEND=">=sci-mathematics/octave-3.8
- "
-
+RDEPEND=">=sci-mathematics/octave-3.8"
DEPEND="${RDEPEND}
app-arch/unzip
- "
+"
S="${WORKDIR}/${PN}${PV}/src"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-10-01 6:06 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-01 6:06 UTC (permalink / raw
To: gentoo-commits
commit: c0b5797205e836f50768f56bb706fc833e94b665
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sun Sep 27 15:16:53 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 15:16:53 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c0b57972
new patched version from upstream
sci-biology/spm/spm-12_p.ebuild | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/sci-biology/spm/spm-12_p.ebuild b/sci-biology/spm/spm-12_p.ebuild
new file mode 100644
index 0000000..27fbeaf
--- /dev/null
+++ b/sci-biology/spm/spm-12_p.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
+HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
+SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${PV}.zip"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=sci-mathematics/octave-3.8"
+DEPEND="${RDEPEND}
+ app-arch/unzip
+"
+
+S="${WORKDIR}/${PN}${PV}/src"
+
+src_prepare() {
+ emake distclean PLATFORM=octave
+}
+
+src_compile() {
+ emake -j1 PLATFORM=octave
+}
+
+src_install() {
+ emake install PLATFORM=octave
+ insinto "$(octave-config --m-site-dir)/${P}"
+ doins -r "${WORKDIR}/${PN}${PV}"/*
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-10-01 6:06 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-01 6:06 UTC (permalink / raw
To: gentoo-commits
commit: 9c1f6b09c161f4d1b8c643cd8abc036a13689a96
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sun Sep 27 16:05:09 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 16:05:09 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9c1f6b09
using upstream pckage version
sci-biology/spm/spm-12_p.ebuild | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/sci-biology/spm/spm-12_p.ebuild b/sci-biology/spm/spm-12_p.ebuild
index 27fbeaf..da1b1b0 100644
--- a/sci-biology/spm/spm-12_p.ebuild
+++ b/sci-biology/spm/spm-12_p.ebuild
@@ -4,9 +4,13 @@
EAPI=5
+inherit versionator
+
+MY_PV=$(get_major_version)
+
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${PV}.zip"
+SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip"
LICENSE="GPL-2+"
SLOT="0"
@@ -17,7 +21,7 @@ DEPEND="${RDEPEND}
app-arch/unzip
"
-S="${WORKDIR}/${PN}${PV}/src"
+S="${WORKDIR}/${PN}${MY_PV}/src"
src_prepare() {
emake distclean PLATFORM=octave
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-10-01 6:06 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-01 6:06 UTC (permalink / raw
To: gentoo-commits
commit: 642e6e9c7e7e5879c06d3192da2078809d844838
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sun Sep 27 17:09:56 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 17:09:56 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=642e6e9c
added patch number
sci-biology/spm/{spm-12_p.ebuild => spm-12_p6470.ebuild} | 0
1 file changed, 0 insertions(+), 0 deletions(-)
diff --git a/sci-biology/spm/spm-12_p.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
similarity index 100%
rename from sci-biology/spm/spm-12_p.ebuild
rename to sci-biology/spm/spm-12_p6470.ebuild
^ permalink raw reply [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-10-01 6:06 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-01 6:06 UTC (permalink / raw
To: gentoo-commits
commit: 25864b2932e7cbdf5b89762474dff27c8f7b1e21
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Sun Sep 27 17:57:09 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Sep 27 17:57:09 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=25864b29
saving archive as ${P}
sci-biology/spm/spm-12_p6470.ebuild | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index da1b1b0..308f8a7 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -10,8 +10,7 @@ MY_PV=$(get_major_version)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip"
-
+SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip -> ${P}"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
@@ -21,7 +20,7 @@ DEPEND="${RDEPEND}
app-arch/unzip
"
-S="${WORKDIR}/${PN}${MY_PV}/src"
+S="${WORKDIR}/${PN}${PV}/src"
src_prepare() {
emake distclean PLATFORM=octave
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2015-10-01 6:06 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2015-10-01 6:06 UTC (permalink / raw
To: gentoo-commits
commit: 140d75ac4a2bb39bde867f7eccf9bdb2bb8eb903
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Mon Sep 28 14:42:27 2015 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Mon Sep 28 14:42:44 2015 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=140d75ac
added name
sci-biology/spm/spm-12_p6470.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index 308f8a7..8a5c230 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -10,7 +10,7 @@ MY_PV=$(get_major_version)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip -> ${P}"
+SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip -> ${P}.zip"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2016-02-17 14:02 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2016-02-17 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 1aed578e432202c425de14419aace8497ad27b6f
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Wed Feb 17 02:31:55 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 02:31:55 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=1aed578e
sci-biology/spm: corrected sourcedir path
Package-Manager: portage-2.2.27
sci-biology/spm/spm-12_p6470.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index 8a5c230..3e417c2 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -20,7 +20,7 @@ DEPEND="${RDEPEND}
app-arch/unzip
"
-S="${WORKDIR}/${PN}${PV}/src"
+S="${WORKDIR}/${PN}${MY_PV}/src"
src_prepare() {
emake distclean PLATFORM=octave
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2016-02-17 14:02 Justin Lecher
0 siblings, 0 replies; 13+ messages in thread
From: Justin Lecher @ 2016-02-17 14:02 UTC (permalink / raw
To: gentoo-commits
commit: 9a3decc7058d382fb1a66738a35afa18df33889e
Author: Horea Christian <h.chr <AT> mail <DOT> ru>
AuthorDate: Wed Feb 17 03:35:33 2016 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 03:37:00 2016 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=9a3decc7
sci-biology/spm: corrected install dir
Package-Manager: portage-2.2.27
sci-biology/spm/spm-12_p6470.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index 3e417c2..06c6137 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -33,5 +33,5 @@ src_compile() {
src_install() {
emake install PLATFORM=octave
insinto "$(octave-config --m-site-dir)/${P}"
- doins -r "${WORKDIR}/${PN}${PV}"/*
+ doins -r "${WORKDIR}/${PN}${MY_PV}"/*
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2018-10-26 13:23 Horea Christian
0 siblings, 0 replies; 13+ messages in thread
From: Horea Christian @ 2018-10-26 13:23 UTC (permalink / raw
To: gentoo-commits
commit: 71bb477f72cd934fcfbf7dfec0ecc6ce611abeb4
Author: Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Sat Sep 15 07:30:36 2018 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Oct 26 13:20:44 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=71bb477f
sci-biology/spm: fix Manifest having wrong filesize
* update to EAPI 7
* update SRC_URI to point to GitHub
Package-Manager: Portage-2.3.49, Repoman-2.3.10
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
sci-biology/spm/spm-12_p6470.ebuild | 20 ++++++++++----------
1 file changed, 10 insertions(+), 10 deletions(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index 4b03aa133..0f8e8ec54 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -1,15 +1,13 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-EAPI=5
-
-inherit versionator
-
-MY_PV=$(get_major_version)
+EAPI=7
+MY_PV_MAJ=$(ver_cut 1)
+MY_PV_REL=$(ver_cut 3)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${MY_PV}.zip -> ${P}.zip"
+SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
@@ -19,18 +17,20 @@ DEPEND="${RDEPEND}
app-arch/unzip
"
-S="${WORKDIR}/${PN}${MY_PV}/src"
+MY_PN="${PN}${MY_PV_MAJ}-r${MY_PV_REL}"
+S="${WORKDIR}/${MY_PN}/src"
src_prepare() {
+ default
emake distclean PLATFORM=octave
}
src_compile() {
- emake -j1 PLATFORM=octave
+ emake PLATFORM=octave
}
src_install() {
emake install PLATFORM=octave
insinto "$(octave-config --m-site-dir)/${P}"
- doins -r "${WORKDIR}/${PN}${MY_PV}"/*
+ doins -r "${WORKDIR}/${MY_PN}"/*
}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2018-10-26 13:23 Horea Christian
0 siblings, 0 replies; 13+ messages in thread
From: Horea Christian @ 2018-10-26 13:23 UTC (permalink / raw
To: gentoo-commits
commit: 8f61c35b108346b7007c6a766435f9528fe89253
Author: Bernd Waibel <waebbl <AT> gmail <DOT> com>
AuthorDate: Thu Oct 25 18:31:45 2018 +0000
Commit: Horea Christian <horea.christ <AT> gmail <DOT> com>
CommitDate: Fri Oct 26 13:23:37 2018 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=8f61c35b
sci-biology/spm: bump to version 12_p7219
Signed-off-by: Bernd Waibel <waebbl <AT> gmail.com>
Package-Manager: Portage-2.3.51, Repoman-2.3.11
Signed-off-by: Horea Christian <horea.christ <AT> yandex.com>
sci-biology/spm/spm-12_p7219.ebuild | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/sci-biology/spm/spm-12_p7219.ebuild b/sci-biology/spm/spm-12_p7219.ebuild
new file mode 100644
index 000000000..1e8d15bbe
--- /dev/null
+++ b/sci-biology/spm/spm-12_p7219.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2018 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PV_MAJ=$(ver_cut 1)
+MY_PV_REL=$(ver_cut 3)
+DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
+HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
+SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND=">=sci-mathematics/octave-3.8"
+DEPEND="${RDEPEND}
+ app-arch/unzip
+"
+
+MY_PN="${PN}${MY_PV_MAJ}-r${MY_PV_REL}"
+S="${WORKDIR}/${MY_PN}/src"
+
+src_prepare() {
+ default
+ emake distclean PLATFORM=octave
+}
+
+src_compile() {
+ emake PLATFORM=octave
+}
+
+src_install() {
+ emake install PLATFORM=octave
+ insinto "$(octave-config --m-site-dir)/${P}"
+ doins -r "${WORKDIR}/${MY_PN}"/*
+}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2021-03-06 14:55 Andrew Ammerlaan
0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-03-06 14:55 UTC (permalink / raw
To: gentoo-commits
commit: b9054f07009ca02679912ac70bb2f990a320ec87
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 6 14:47:58 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 6 14:47:58 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=b9054f07
sci-biology/spm: cleanup old
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-biology/spm/spm-12.ebuild | 33 ---------------------------------
sci-biology/spm/spm-8.ebuild | 39 ---------------------------------------
2 files changed, 72 deletions(-)
diff --git a/sci-biology/spm/spm-12.ebuild b/sci-biology/spm/spm-12.ebuild
deleted file mode 100644
index a46cbff23..000000000
--- a/sci-biology/spm/spm-12.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/eldorado/${PN}${PV}.0.zip"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=sci-mathematics/octave-3.8"
-DEPEND="${RDEPEND}
- app-arch/unzip
-"
-
-S="${WORKDIR}/${PN}${PV}/src"
-
-src_prepare() {
- emake distclean PLATFORM=octave
-}
-
-src_compile() {
- emake -j1 PLATFORM=octave
-}
-
-src_install() {
- emake install PLATFORM=octave
- insinto "$(octave-config --m-site-dir)/${P}"
- doins -r "${WORKDIR}/${PN}${PV}"/*
-}
diff --git a/sci-biology/spm/spm-8.ebuild b/sci-biology/spm/spm-8.ebuild
deleted file mode 100644
index 55376a7f0..000000000
--- a/sci-biology/spm/spm-8.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="http://www.fil.ion.ucl.ac.uk/spm/download/restricted/idyll/${PN}${PV}.zip"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=sci-mathematics/octave-3.6.4
- "
-
-DEPEND="${RDEPEND}
- app-arch/unzip
- "
-
-S="${WORKDIR}/${PN}${PV}"
-
-src_prepare() {
- echo "MEXOPTS += -v" >> src/Makefile.var
- emake -C src distclean PLATFORM=octave
- emake -C src toolbox-distclean PLATFORM=octave
-}
-
-src_compile() {
- emake -C src -j1 PLATFORM=octave
- emake -C src toolbox PLATFORM=octave
-}
-
-src_install() {
- emake -C src -j1 install PLATFORM=octave
- emake -C src -j1 toolbox-install PLATFORM=octave
- insinto $(octave-config --m-site-dir)
- doins -r "${S}"/*.m
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2021-03-06 14:55 Andrew Ammerlaan
0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2021-03-06 14:55 UTC (permalink / raw
To: gentoo-commits
commit: c27581769f0d42eacba7abf87236b184de260433
Author: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
AuthorDate: Sat Mar 6 14:47:31 2021 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> riseup <DOT> net>
CommitDate: Sat Mar 6 14:47:31 2021 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=c2758176
sci-biology/spm: EAPI bump, version bump
Package-Manager: Portage-3.0.16, Repoman-3.0.2
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> riseup.net>
sci-biology/spm/spm-12_p6470.ebuild | 5 +++--
sci-biology/spm/spm-12_p7219.ebuild | 5 +++--
sci-biology/spm/{spm-12_p7219.ebuild => spm-12_p7771.ebuild} | 5 +++--
3 files changed, 9 insertions(+), 6 deletions(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
index 0f8e8ec54..86e2d5a0d 100644
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ b/sci-biology/spm/spm-12_p6470.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,8 +6,9 @@ EAPI=7
MY_PV_MAJ=$(ver_cut 1)
MY_PV_REL=$(ver_cut 3)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
+HOMEPAGE="https://www.fil.ion.ucl.ac.uk/spm/"
SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
+
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
diff --git a/sci-biology/spm/spm-12_p7219.ebuild b/sci-biology/spm/spm-12_p7219.ebuild
index 1e8d15bbe..86e2d5a0d 100644
--- a/sci-biology/spm/spm-12_p7219.ebuild
+++ b/sci-biology/spm/spm-12_p7219.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,8 +6,9 @@ EAPI=7
MY_PV_MAJ=$(ver_cut 1)
MY_PV_REL=$(ver_cut 3)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
+HOMEPAGE="https://www.fil.ion.ucl.ac.uk/spm/"
SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
+
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
diff --git a/sci-biology/spm/spm-12_p7219.ebuild b/sci-biology/spm/spm-12_p7771.ebuild
similarity index 89%
copy from sci-biology/spm/spm-12_p7219.ebuild
copy to sci-biology/spm/spm-12_p7771.ebuild
index 1e8d15bbe..86e2d5a0d 100644
--- a/sci-biology/spm/spm-12_p7219.ebuild
+++ b/sci-biology/spm/spm-12_p7771.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
@@ -6,8 +6,9 @@ EAPI=7
MY_PV_MAJ=$(ver_cut 1)
MY_PV_REL=$(ver_cut 3)
DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="http://www.fil.ion.ucl.ac.uk/spm/"
+HOMEPAGE="https://www.fil.ion.ucl.ac.uk/spm/"
SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
+
LICENSE="GPL-2+"
SLOT="0"
KEYWORDS="~amd64"
^ permalink raw reply related [flat|nested] 13+ messages in thread
* [gentoo-commits] proj/sci:master commit in: sci-biology/spm/
@ 2022-01-14 10:33 Andrew Ammerlaan
0 siblings, 0 replies; 13+ messages in thread
From: Andrew Ammerlaan @ 2022-01-14 10:33 UTC (permalink / raw
To: gentoo-commits
commit: 72086de903c08741c7008dc593533efedf6a2186
Author: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
AuthorDate: Fri Jan 14 10:33:04 2022 +0000
Commit: Andrew Ammerlaan <andrewammerlaan <AT> gentoo <DOT> org>
CommitDate: Fri Jan 14 10:33:04 2022 +0000
URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=72086de9
sci-biology/spm: cleanup old
Closes: https://github.com/gentoo/sci/issues/896
Signed-off-by: Andrew Ammerlaan <andrewammerlaan <AT> gentoo.org>
sci-biology/spm/spm-12_p6470.ebuild | 37 -------------------------------------
sci-biology/spm/spm-12_p7219.ebuild | 37 -------------------------------------
2 files changed, 74 deletions(-)
diff --git a/sci-biology/spm/spm-12_p6470.ebuild b/sci-biology/spm/spm-12_p6470.ebuild
deleted file mode 100644
index 86e2d5a0d..000000000
--- a/sci-biology/spm/spm-12_p6470.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV_MAJ=$(ver_cut 1)
-MY_PV_REL=$(ver_cut 3)
-DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="https://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=sci-mathematics/octave-3.8"
-DEPEND="${RDEPEND}
- app-arch/unzip
-"
-
-MY_PN="${PN}${MY_PV_MAJ}-r${MY_PV_REL}"
-S="${WORKDIR}/${MY_PN}/src"
-
-src_prepare() {
- default
- emake distclean PLATFORM=octave
-}
-
-src_compile() {
- emake PLATFORM=octave
-}
-
-src_install() {
- emake install PLATFORM=octave
- insinto "$(octave-config --m-site-dir)/${P}"
- doins -r "${WORKDIR}/${MY_PN}"/*
-}
diff --git a/sci-biology/spm/spm-12_p7219.ebuild b/sci-biology/spm/spm-12_p7219.ebuild
deleted file mode 100644
index 86e2d5a0d..000000000
--- a/sci-biology/spm/spm-12_p7219.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-MY_PV_MAJ=$(ver_cut 1)
-MY_PV_REL=$(ver_cut 3)
-DESCRIPTION="Analysis of brain imaging data sequences for Octave or Matlab"
-HOMEPAGE="https://www.fil.ion.ucl.ac.uk/spm/"
-SRC_URI="https://github.com/${PN}/${PN}${MY_PV_MAJ}/archive/r${MY_PV_REL}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND=">=sci-mathematics/octave-3.8"
-DEPEND="${RDEPEND}
- app-arch/unzip
-"
-
-MY_PN="${PN}${MY_PV_MAJ}-r${MY_PV_REL}"
-S="${WORKDIR}/${MY_PN}/src"
-
-src_prepare() {
- default
- emake distclean PLATFORM=octave
-}
-
-src_compile() {
- emake PLATFORM=octave
-}
-
-src_install() {
- emake install PLATFORM=octave
- insinto "$(octave-config --m-site-dir)/${P}"
- doins -r "${WORKDIR}/${MY_PN}"/*
-}
^ permalink raw reply related [flat|nested] 13+ messages in thread
end of thread, other threads:[~2022-01-14 10:33 UTC | newest]
Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-10-26 13:23 [gentoo-commits] proj/sci:master commit in: sci-biology/spm/ Horea Christian
-- strict thread matches above, loose matches on Subject: below --
2022-01-14 10:33 Andrew Ammerlaan
2021-03-06 14:55 Andrew Ammerlaan
2021-03-06 14:55 Andrew Ammerlaan
2018-10-26 13:23 Horea Christian
2016-02-17 14:02 Justin Lecher
2016-02-17 14:02 Justin Lecher
2015-10-01 6:06 Justin Lecher
2015-10-01 6:06 Justin Lecher
2015-10-01 6:06 Justin Lecher
2015-10-01 6:06 Justin Lecher
2015-10-01 6:06 Justin Lecher
2015-09-26 15:19 Justin Lecher
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox