sci-libs/vecmath-objectclub: Remove last-rited pkg
authorMichał Górny <mgorny@gentoo.org>
Mon, 3 Feb 2020 06:00:04 +0000 (07:00 +0100)
committerMichał Górny <mgorny@gentoo.org>
Mon, 3 Feb 2020 06:03:30 +0000 (07:03 +0100)
Closes: https://bugs.gentoo.org/568364
Signed-off-by: Michał Górny <mgorny@gentoo.org>
profiles/package.mask
sci-libs/vecmath-objectclub/Manifest [deleted file]
sci-libs/vecmath-objectclub/metadata.xml [deleted file]
sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild [deleted file]

index e3553a116dcb9df827b4eac67e089c08717c323c..cb66de8bd65d17a5e5c077a5a23986a91e5c7aee 100644 (file)
@@ -801,7 +801,6 @@ sci-libs/jmol-acme
 sci-libs/libcore
 sci-libs/naga
 sci-libs/spooles
-sci-libs/vecmath-objectclub
 
 # Tomáš Mózes <hydrapolic@gentoo.org> (2019-12-19)
 # Needs more testing.
diff --git a/sci-libs/vecmath-objectclub/Manifest b/sci-libs/vecmath-objectclub/Manifest
deleted file mode 100644 (file)
index 1de8862..0000000
+++ /dev/null
@@ -1 +0,0 @@
-DIST vecmath1.2-1.14.tar.gz 75291 BLAKE2B 4201dd1f24404e557d79d797e29587fc1351005cfe0da7f396614263d26cc2753385eefdd86437315ca30da2ed4ed34e0aebe700f43d32c3287da8c31173e23d SHA512 b61c60c4c8341327a7494475da380685220a6ecf193f4005bbe9ac2b9c98b5f587607c136ac8ba19425ba57c9d19d2994c1f474ca4cfa3f5a06cebb7d1c5c020
diff --git a/sci-libs/vecmath-objectclub/metadata.xml b/sci-libs/vecmath-objectclub/metadata.xml
deleted file mode 100644 (file)
index 6eb27f1..0000000
+++ /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@gentoo.org</email>
-  <name>Gentoo Science Project</name>
-</maintainer>
-<longdescription lang="en">
-  This is unofficial implementation(java source code) of the
-  javax.vecmath package specified in the Java(TM) 3D API 1.2
-  The package includes classes for 3-space vector/point, 4-space vector,
-  4x4, 3x3 matrix, quaternion, axis-angle combination and etc. which are
-  often utilized for computer graphics mathematics. Most of the classes
-  have single and double precision versions. Generic matrices' LU and SV
-  decomposition are also there.
-</longdescription>
-</pkgmetadata>
diff --git a/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild b/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
deleted file mode 100644 (file)
index 8d0a098..0000000
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit java-pkg-2
-
-MY_PN="${PN/-objectclub/1.2}"
-
-DESCRIPTION="Unofficial free implementation of Sun javax.vecmath by Kenji Hiranabe"
-HOMEPAGE="http://www.objectclub.jp/download/vecmath_e"
-SRC_URI="http://www.objectclub.jp/download/files/vecmath/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE=""
-
-DEPEND=">=virtual/jdk-1.4"
-RDEPEND=">=virtual/jre-1.4"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-src_prepare() {
-       mkdir classes
-}
-
-src_compile() {
-       find javax/ -name "*.java" > "${T}/src.list"
-       ejavac -d "${S}/classes" "@${T}/src.list"
-
-       cd classes
-       jar -cf "${S}"/${PN}.jar * || die "failed to create jar"
-}
-
-src_install() {
-       java-pkg_dojar ${PN}.jar
-       dodoc README
-}