* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2016-08-06 10:38 Pacho Ramos
0 siblings, 0 replies; 6+ messages in thread
From: Pacho Ramos @ 2016-08-06 10:38 UTC (permalink / raw
To: gentoo-commits
commit: 802a222c180889d29c9fed7ddcaa358c1bd7cfcb
Author: Pacho Ramos <pacho <AT> gentoo <DOT> org>
AuthorDate: Sat Aug 6 10:33:53 2016 +0000
Commit: Pacho Ramos <pacho <AT> gentoo <DOT> org>
CommitDate: Sat Aug 6 10:33:53 2016 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=802a222c
sci-biology/finchtv: Cleanup per bug #146900
Package-Manager: portage-2.3.0
sci-biology/finchtv/metadata.xml | 4 ----
1 file changed, 4 deletions(-)
diff --git a/sci-biology/finchtv/metadata.xml b/sci-biology/finchtv/metadata.xml
index 515d1db..a46ebf4 100644
--- a/sci-biology/finchtv/metadata.xml
+++ b/sci-biology/finchtv/metadata.xml
@@ -1,10 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <maintainer type="person">
- <email>je_fro@gentoo.org</email>
- <name>Jeff Gardner</name>
- </maintainer>
<maintainer type="project">
<email>sci-biology@gentoo.org</email>
<name>Gentoo Biology Project</name>
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2017-02-12 19:51 Justin Lecher
0 siblings, 0 replies; 6+ messages in thread
From: Justin Lecher @ 2017-02-12 19:51 UTC (permalink / raw
To: gentoo-commits
commit: 4cf3fe6662033dee34c33a2ed48246c9cdee6835
Author: Justin Lecher <jlec <AT> gentoo <DOT> org>
AuthorDate: Sun Feb 12 19:37:24 2017 +0000
Commit: Justin Lecher <jlec <AT> gentoo <DOT> org>
CommitDate: Sun Feb 12 19:51:50 2017 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cf3fe66
sci-biology/finchtv: Install icon
Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=608722
Package-Manager: Portage-2.3.3, Repoman-2.3.1
Signed-off-by: Justin Lecher <jlec <AT> gentoo.org>
sci-biology/finchtv/finchtv-1.3.1-r3.ebuild | 37 +++++++++++++++++++++++++++++
1 file changed, 37 insertions(+)
diff --git a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
new file mode 100644
index 0000000000..a08703a645
--- /dev/null
+++ b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+MY_PV="${PV//./_}"
+MY_P=${PN}_${MY_PV}
+
+DESCRIPTION="Graphical viewer for chromatogram files"
+HOMEPAGE="http://www.geospiza.com/finchtv/"
+SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
+
+LICENSE="finchtv"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+QA_PREBUILT="opt/bin/*"
+
+src_install() {
+ exeinto /opt/bin
+ doexe finchtv
+
+ dodoc ReleaseNotes.txt
+ docinto html
+ dodoc -r Help/*
+
+ insinto /usr/share/doc/${PN}
+ doins -r SampleData
+
+ newicon Help/media/FinchTV_Mac_App.png ${PN}.png
+}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2021-02-17 9:37 David Seifert
0 siblings, 0 replies; 6+ messages in thread
From: David Seifert @ 2021-02-17 9:37 UTC (permalink / raw
To: gentoo-commits
commit: ca3d7f1f668f4dcfa6f656e163bc4928419daca6
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Wed Feb 17 09:36:25 2021 +0000
Commit: David Seifert <soap <AT> gentoo <DOT> org>
CommitDate: Wed Feb 17 09:36:25 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca3d7f1f
sci-biology/finchtv: Port to EAPI 7
Closes: https://bugs.gentoo.org/731914
Bug: https://bugs.gentoo.org/770757
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: David Seifert <soap <AT> gentoo.org>
sci-biology/finchtv/finchtv-1.3.1-r3.ebuild | 17 +++++++++--------
1 file changed, 9 insertions(+), 8 deletions(-)
diff --git a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
index 09ab304a7a3..f37355307e2 100644
--- a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
+++ b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
@@ -1,9 +1,9 @@
-# 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 eutils
+inherit desktop
MY_PV="${PV//./_}"
MY_P=${PN}_${MY_PV}
@@ -15,7 +15,6 @@ SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
LICENSE="finchtv"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
S="${WORKDIR}/${MY_P}"
@@ -26,11 +25,13 @@ src_install() {
doexe finchtv
dodoc ReleaseNotes.txt
- docinto html
- dodoc -r Help/*
- insinto /usr/share/doc/${PN}
- doins -r SampleData
+ docinto examples
+ dodoc -r SampleData/.
+ docompress -x /usr/share/doc/${PF}/examples
+
+ docinto html
+ dodoc -r Help/.
newicon Help/media/FinchTV_Mac_App.png ${PN}.png
}
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2021-02-26 8:09 Agostino Sarubbo
0 siblings, 0 replies; 6+ messages in thread
From: Agostino Sarubbo @ 2021-02-26 8:09 UTC (permalink / raw
To: gentoo-commits
commit: 183f5ff5e3edd4144963e830d55a75b729f2c485
Author: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
AuthorDate: Fri Feb 26 08:08:52 2021 +0000
Commit: Agostino Sarubbo <ago <AT> gentoo <DOT> org>
CommitDate: Fri Feb 26 08:09:19 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=183f5ff5
sci-biology/finchtv: x86 stable wrt bug #770757
Package-Manager: Portage-3.0.13, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo <ago <AT> gentoo.org>
sci-biology/finchtv/finchtv-1.3.1-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
index f37355307e2..f3bd4c670a4 100644
--- a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
+++ b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
LICENSE="finchtv"
SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2021-02-27 16:16 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-02-27 16:16 UTC (permalink / raw
To: gentoo-commits
commit: 669a6d347747ab7ea446b889b8fab7b5937ba7bf
Author: Sam James <sam <AT> gentoo <DOT> org>
AuthorDate: Sat Feb 27 16:16:20 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 16:16:20 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=669a6d34
sci-biology/finchtv: Stabilize 1.3.1-r3 amd64, #770757
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-biology/finchtv/finchtv-1.3.1-r3.ebuild | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
index f3bd4c670a4..60608c9aff2 100644
--- a/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
+++ b/sci-biology/finchtv/finchtv-1.3.1-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
LICENSE="finchtv"
SLOT="0"
-KEYWORDS="~amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
S="${WORKDIR}/${MY_P}"
^ permalink raw reply related [flat|nested] 6+ messages in thread
* [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/
@ 2021-02-27 16:54 Sam James
0 siblings, 0 replies; 6+ messages in thread
From: Sam James @ 2021-02-27 16:54 UTC (permalink / raw
To: gentoo-commits
commit: a750b71b6083dc0d0182e3f1d7da4fbabb2a231d
Author: Jakov Smolic <jakov.smolic <AT> sartura <DOT> hr>
AuthorDate: Sat Feb 27 16:23:55 2021 +0000
Commit: Sam James <sam <AT> gentoo <DOT> org>
CommitDate: Sat Feb 27 16:53:49 2021 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a750b71b
sci-biology/finchtv: Remove old
Signed-off-by: Jakov Smolic <jakov.smolic <AT> sartura.hr>
Signed-off-by: Sam James <sam <AT> gentoo.org>
sci-biology/finchtv/finchtv-1.3.1-r2.ebuild | 29 -----------------------------
1 file changed, 29 deletions(-)
diff --git a/sci-biology/finchtv/finchtv-1.3.1-r2.ebuild b/sci-biology/finchtv/finchtv-1.3.1-r2.ebuild
deleted file mode 100644
index a08312d9033..00000000000
--- a/sci-biology/finchtv/finchtv-1.3.1-r2.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MY_PV="${PV//./_}"
-MY_P=${PN}_${MY_PV}
-
-DESCRIPTION="Graphical viewer for chromatogram files"
-HOMEPAGE="http://www.geospiza.com/finchtv/"
-SRC_URI="http://www.geospiza.com/finchtv/download/programs/linux/${MY_P}.tar.gz"
-
-LICENSE="finchtv"
-SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-S="${WORKDIR}/${MY_P}"
-
-QA_PREBUILT="opt/bin/*"
-
-src_install() {
- exeinto /opt/bin
- doexe finchtv
- dodoc ReleaseNotes.txt
- dohtml -r Help/*
- insinto /usr/share/doc/${PN}
- doins -r SampleData
-}
^ permalink raw reply related [flat|nested] 6+ messages in thread
end of thread, other threads:[~2021-02-27 16:54 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-12 19:51 [gentoo-commits] repo/gentoo:master commit in: sci-biology/finchtv/ Justin Lecher
-- strict thread matches above, loose matches on Subject: below --
2021-02-27 16:54 Sam James
2021-02-27 16:16 Sam James
2021-02-26 8:09 Agostino Sarubbo
2021-02-17 9:37 David Seifert
2016-08-06 10:38 Pacho Ramos
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox