Gentoo Archives: gentoo-commits

From: Aisha Tammy <gentoo@×××××.cc>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sci-astronomy/topcat/
Date: Sun, 27 Sep 2020 12:43:27
Message-Id: 1601210577.174d212f2ceead9b249b90446be6d432b7ffc5f5.epsilon-0@gentoo
1 commit: 174d212f2ceead9b249b90446be6d432b7ffc5f5
2 Author: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
3 AuthorDate: Sun Sep 27 12:42:57 2020 +0000
4 Commit: Aisha Tammy <gentoo <AT> aisha <DOT> cc>
5 CommitDate: Sun Sep 27 12:42:57 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/sci.git/commit/?id=174d212f
7
8 sci-astronomy/topcat: drop package
9
10 prebuilt starlink dependency, which got removed
11
12 Package-Manager: Portage-3.0.8, Repoman-3.0.1
13 Signed-off-by: Aisha Tammy <gentoo <AT> aisha.cc>
14
15 sci-astronomy/topcat/metadata.xml | 17 ----------------
16 sci-astronomy/topcat/topcat-4.0.1.ebuild | 35 --------------------------------
17 2 files changed, 52 deletions(-)
18
19 diff --git a/sci-astronomy/topcat/metadata.xml b/sci-astronomy/topcat/metadata.xml
20 deleted file mode 100644
21 index 65b998b7d..000000000
22 --- a/sci-astronomy/topcat/metadata.xml
23 +++ /dev/null
24 @@ -1,17 +0,0 @@
25 -<?xml version="1.0" encoding="UTF-8"?>
26 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
27 -<pkgmetadata>
28 - <maintainer type="project">
29 - <email>sci-astronomy@g.o</email>
30 - <name>Gentoo Astronomy Project</name>
31 - </maintainer>
32 - <longdescription lang="en">
33 -Tool for OPerations on Catalogues And Tables is an interactive
34 -graphical viewer and editor for tabular data. Its aim is to provide
35 -most of the facilities that astronomers need for analysis and
36 -manipulation of source catalogues and other tables, though it can be
37 -used for non-astronomical data as well. It understands a number of
38 -different astronomically important formats (including FITS and
39 -VOTable) and more formats can be added.
40 -</longdescription>
41 -</pkgmetadata>
42
43 diff --git a/sci-astronomy/topcat/topcat-4.0.1.ebuild b/sci-astronomy/topcat/topcat-4.0.1.ebuild
44 deleted file mode 100644
45 index 9695a4f2d..000000000
46 --- a/sci-astronomy/topcat/topcat-4.0.1.ebuild
47 +++ /dev/null
48 @@ -1,35 +0,0 @@
49 -# Copyright 1999-2014 Gentoo Foundation
50 -# Distributed under the terms of the GNU General Public License v2
51 -
52 -EAPI=5
53 -
54 -inherit java-pkg-2 versionator
55 -MYPV=$(replace_version_separator 2 '-')
56 -
57 -DESCRIPTION="Interactive graphical viewer and editor for astronomical tables"
58 -HOMEPAGE="http://www.star.bris.ac.uk/~mbt/topcat/"
59 -SRC_COM="ftp://andromeda.star.bris.ac.uk/pub/star/${PN}/v${MYPV}"
60 -SRC_URI="${SRC_COM}/${PN}-lite.jar -> ${P}-lite.jar
61 - !minimal? ( ${SRC_COM}/${PN}-full.jar -> ${P}-full.jar )"
62 -
63 -LICENSE="GPL-2"
64 -SLOT="0"
65 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
66 -IUSE="+minimal"
67 -
68 -RDEPEND=">=virtual/jre-1.5"
69 -DEPEND=""
70 -
71 -S="${WORKDIR}"
72 -
73 -src_install() {
74 - java-pkg_newjar "${DISTDIR}"/${P}-lite.jar ${PN}-lite.jar
75 - java-pkg_dolauncher ${PN}-lite
76 - if use minimal; then
77 - dosym ${PN}-lite /usr/bin/${PN}
78 - else
79 - java-pkg_newjar "${DISTDIR}"/${P}-full.jar
80 - java-pkg_dolauncher ${PN}-full
81 - dosym ${PN}-full /usr/bin/${PN}
82 - fi
83 -}