Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/vecmath-objectclub/, profiles/
Date: Mon, 03 Feb 2020 06:06:26
Message-Id: 1580709810.765fd34f5b58a9b9bf31b5002515314e5aee2879.mgorny@gentoo
1 commit: 765fd34f5b58a9b9bf31b5002515314e5aee2879
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Mon Feb 3 06:00:04 2020 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Mon Feb 3 06:03:30 2020 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765fd34f
7
8 sci-libs/vecmath-objectclub: Remove last-rited pkg
9
10 Closes: https://bugs.gentoo.org/568364
11 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
12
13 profiles/package.mask | 1 -
14 sci-libs/vecmath-objectclub/Manifest | 1 -
15 sci-libs/vecmath-objectclub/metadata.xml | 17 ----------
16 .../vecmath-objectclub-1.14.ebuild | 39 ----------------------
17 4 files changed, 58 deletions(-)
18
19 diff --git a/profiles/package.mask b/profiles/package.mask
20 index e3553a116dc..cb66de8bd65 100644
21 --- a/profiles/package.mask
22 +++ b/profiles/package.mask
23 @@ -801,7 +801,6 @@ sci-libs/jmol-acme
24 sci-libs/libcore
25 sci-libs/naga
26 sci-libs/spooles
27 -sci-libs/vecmath-objectclub
28
29 # Tomáš Mózes <hydrapolic@g.o> (2019-12-19)
30 # Needs more testing.
31
32 diff --git a/sci-libs/vecmath-objectclub/Manifest b/sci-libs/vecmath-objectclub/Manifest
33 deleted file mode 100644
34 index 1de8862ddce..00000000000
35 --- a/sci-libs/vecmath-objectclub/Manifest
36 +++ /dev/null
37 @@ -1 +0,0 @@
38 -DIST vecmath1.2-1.14.tar.gz 75291 BLAKE2B 4201dd1f24404e557d79d797e29587fc1351005cfe0da7f396614263d26cc2753385eefdd86437315ca30da2ed4ed34e0aebe700f43d32c3287da8c31173e23d SHA512 b61c60c4c8341327a7494475da380685220a6ecf193f4005bbe9ac2b9c98b5f587607c136ac8ba19425ba57c9d19d2994c1f474ca4cfa3f5a06cebb7d1c5c020
39
40 diff --git a/sci-libs/vecmath-objectclub/metadata.xml b/sci-libs/vecmath-objectclub/metadata.xml
41 deleted file mode 100644
42 index 6eb27f16c30..00000000000
43 --- a/sci-libs/vecmath-objectclub/metadata.xml
44 +++ /dev/null
45 @@ -1,17 +0,0 @@
46 -<?xml version="1.0" encoding="UTF-8"?>
47 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
48 -<pkgmetadata>
49 -<maintainer type="project">
50 - <email>sci@g.o</email>
51 - <name>Gentoo Science Project</name>
52 -</maintainer>
53 -<longdescription lang="en">
54 - This is unofficial implementation(java source code) of the
55 - javax.vecmath package specified in the Java(TM) 3D API 1.2
56 - The package includes classes for 3-space vector/point, 4-space vector,
57 - 4x4, 3x3 matrix, quaternion, axis-angle combination and etc. which are
58 - often utilized for computer graphics mathematics. Most of the classes
59 - have single and double precision versions. Generic matrices' LU and SV
60 - decomposition are also there.
61 -</longdescription>
62 -</pkgmetadata>
63
64 diff --git a/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild b/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
65 deleted file mode 100644
66 index 8d0a0986818..00000000000
67 --- a/sci-libs/vecmath-objectclub/vecmath-objectclub-1.14.ebuild
68 +++ /dev/null
69 @@ -1,39 +0,0 @@
70 -# Copyright 1999-2012 Gentoo Foundation
71 -# Distributed under the terms of the GNU General Public License v2
72 -
73 -EAPI=4
74 -
75 -inherit java-pkg-2
76 -
77 -MY_PN="${PN/-objectclub/1.2}"
78 -
79 -DESCRIPTION="Unofficial free implementation of Sun javax.vecmath by Kenji Hiranabe"
80 -HOMEPAGE="http://www.objectclub.jp/download/vecmath_e"
81 -SRC_URI="http://www.objectclub.jp/download/files/vecmath/${MY_PN}-${PV}.tar.gz"
82 -
83 -LICENSE="HPND"
84 -SLOT="0"
85 -KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
86 -IUSE=""
87 -
88 -DEPEND=">=virtual/jdk-1.4"
89 -RDEPEND=">=virtual/jre-1.4"
90 -
91 -S="${WORKDIR}/${MY_PN}-${PV}"
92 -
93 -src_prepare() {
94 - mkdir classes
95 -}
96 -
97 -src_compile() {
98 - find javax/ -name "*.java" > "${T}/src.list"
99 - ejavac -d "${S}/classes" "@${T}/src.list"
100 -
101 - cd classes
102 - jar -cf "${S}"/${PN}.jar * || die "failed to create jar"
103 -}
104 -
105 -src_install() {
106 - java-pkg_dojar ${PN}.jar
107 - dodoc README
108 -}