aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-09-27 12:42:57 +0000
committerAisha Tammy <gentoo@aisha.cc>2020-09-27 12:42:57 +0000
commit174d212f2ceead9b249b90446be6d432b7ffc5f5 (patch)
tree99684941ff7a4603b43c4f3d69eab5a5450e7766 /sci-astronomy
parentsci-astronomy/stilts: drop package (diff)
downloadsci-174d212f2ceead9b249b90446be6d432b7ffc5f5.tar.gz
sci-174d212f2ceead9b249b90446be6d432b7ffc5f5.tar.bz2
sci-174d212f2ceead9b249b90446be6d432b7ffc5f5.zip
sci-astronomy/topcat: drop package
prebuilt starlink dependency, which got removed Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Diffstat (limited to 'sci-astronomy')
-rw-r--r--sci-astronomy/topcat/Manifest2
-rw-r--r--sci-astronomy/topcat/metadata.xml17
-rw-r--r--sci-astronomy/topcat/topcat-4.0.1.ebuild35
3 files changed, 0 insertions, 54 deletions
diff --git a/sci-astronomy/topcat/Manifest b/sci-astronomy/topcat/Manifest
deleted file mode 100644
index 62ab2d457..000000000
--- a/sci-astronomy/topcat/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST topcat-4.0.1-full.jar 26377995 BLAKE2B a56af802e17f0377a33e57272e7b84f592b51489f6fc35ae05a6a97965527c849d28d79cc732608db65ba65424f622b17345f30ffe9fa70d96f076a63f9143e6 SHA512 112876a177a2a2de3a086a8b72f4100472608733f9701360e4f25376907b6803550fc79e0567405165daafb739bd7bb077f3e0928a36637ab5443f9dfaa15e55
-DIST topcat-4.0.1-lite.jar 19636175 BLAKE2B ea9fd114457d87060a20cb487d7bd1b051fad8e58d2e7e8daf16f790beb2c25f5c2522395c43ae09423807048437b598624d7243ad2902e394cfbedfd2ce304a SHA512 9e88a859fec50dcd97b546acc5d24179f0652e3f6335403357bb832ce29c51aa23143da086a60bb5fae35884870ce161e22ecca02aaaff23dd58f60f0b3fa2e4
diff --git a/sci-astronomy/topcat/metadata.xml b/sci-astronomy/topcat/metadata.xml
deleted file mode 100644
index 65b998b7d..000000000
--- a/sci-astronomy/topcat/metadata.xml
+++ /dev/null
@@ -1,17 +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-astronomy@gentoo.org</email>
- <name>Gentoo Astronomy Project</name>
- </maintainer>
- <longdescription lang="en">
-Tool for OPerations on Catalogues And Tables is an interactive
-graphical viewer and editor for tabular data. Its aim is to provide
-most of the facilities that astronomers need for analysis and
-manipulation of source catalogues and other tables, though it can be
-used for non-astronomical data as well. It understands a number of
-different astronomically important formats (including FITS and
-VOTable) and more formats can be added.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-astronomy/topcat/topcat-4.0.1.ebuild b/sci-astronomy/topcat/topcat-4.0.1.ebuild
deleted file mode 100644
index 9695a4f2d..000000000
--- a/sci-astronomy/topcat/topcat-4.0.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit java-pkg-2 versionator
-MYPV=$(replace_version_separator 2 '-')
-
-DESCRIPTION="Interactive graphical viewer and editor for astronomical tables"
-HOMEPAGE="http://www.star.bris.ac.uk/~mbt/topcat/"
-SRC_COM="ftp://andromeda.star.bris.ac.uk/pub/star/${PN}/v${MYPV}"
-SRC_URI="${SRC_COM}/${PN}-lite.jar -> ${P}-lite.jar
- !minimal? ( ${SRC_COM}/${PN}-full.jar -> ${P}-full.jar )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="+minimal"
-
-RDEPEND=">=virtual/jre-1.5"
-DEPEND=""
-
-S="${WORKDIR}"
-
-src_install() {
- java-pkg_newjar "${DISTDIR}"/${P}-lite.jar ${PN}-lite.jar
- java-pkg_dolauncher ${PN}-lite
- if use minimal; then
- dosym ${PN}-lite /usr/bin/${PN}
- else
- java-pkg_newjar "${DISTDIR}"/${P}-full.jar
- java-pkg_dolauncher ${PN}-full
- dosym ${PN}-full /usr/bin/${PN}
- fi
-}