Gentoo Archives: gentoo-commits

From: Florian Schmaus <flow@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/java:master commit in: dev-java/smoothmetal/
Date: Wed, 30 Jun 2021 09:36:02
Message-Id: 1625045729.490753cfbc788399e9d725203c4d17646cc57e4f.flow@gentoo
1 commit: 490753cfbc788399e9d725203c4d17646cc57e4f
2 Author: Florian Schmaus <flow <AT> gentoo <DOT> org>
3 AuthorDate: Wed Jun 30 09:34:50 2021 +0000
4 Commit: Florian Schmaus <flow <AT> gentoo <DOT> org>
5 CommitDate: Wed Jun 30 09:35:29 2021 +0000
6 URL: https://gitweb.gentoo.org/proj/java.git/commit/?id=490753cf
7
8 dev-java/smoothmetal: treeclean
9
10 Reason: failed sourcing ebuild: eutils: EAPI 0 not supported, (eutils.eclass, line
11 32: called die)
12
13 Bug: https://bugs.gentoo.org/759889
14 Signed-off-by: Florian Schmaus <flow <AT> gentoo.org>
15
16 dev-java/smoothmetal/Manifest | 1 -
17 dev-java/smoothmetal/metadata.xml | 8 -------
18 dev-java/smoothmetal/smoothmetal-1.1.ebuild | 34 -----------------------------
19 3 files changed, 43 deletions(-)
20
21 diff --git a/dev-java/smoothmetal/Manifest b/dev-java/smoothmetal/Manifest
22 deleted file mode 100644
23 index c3422013..00000000
24 --- a/dev-java/smoothmetal/Manifest
25 +++ /dev/null
26 @@ -1 +0,0 @@
27 -DIST smoothmetal-1.1.zip 771816 SHA256 287484dba6cf87b67272ff7c2167b66455739b909be52cc589d7f1a8e6f55cb6
28
29 diff --git a/dev-java/smoothmetal/metadata.xml b/dev-java/smoothmetal/metadata.xml
30 deleted file mode 100644
31 index 2444066a..00000000
32 --- a/dev-java/smoothmetal/metadata.xml
33 +++ /dev/null
34 @@ -1,8 +0,0 @@
35 -<?xml version="1.0" encoding="UTF-8"?>
36 -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
37 -<pkgmetadata>
38 -<maintainer type="project">
39 - <email>java@g.o</email>
40 - <name>Java</name>
41 -</maintainer>
42 -</pkgmetadata>
43
44 diff --git a/dev-java/smoothmetal/smoothmetal-1.1.ebuild b/dev-java/smoothmetal/smoothmetal-1.1.ebuild
45 deleted file mode 100644
46 index 83d0fd6b..00000000
47 --- a/dev-java/smoothmetal/smoothmetal-1.1.ebuild
48 +++ /dev/null
49 @@ -1,34 +0,0 @@
50 -# Copyright 1999-2015 Gentoo Foundation
51 -# Distributed under the terms of the GNU General Public License v2
52 -# $Id$
53 -
54 -JAVA_PKG_IUSE="doc source"
55 -inherit eutils java-pkg-2 java-ant-2
56 -
57 -DESCRIPTION="A wrapper for some of Sun's Java Look and Feels to enable anti-aliasing."
58 -HOMEPAGE="http://smoothmetal.sourceforge.net/"
59 -SRC_URI="mirror://sourceforge/${PN}/${P}.zip"
60 -
61 -LICENSE="MIT"
62 -SLOT="0"
63 -KEYWORDS="~x86"
64 -IUSE=""
65 -EANT_BUILD_TARGET="dist"
66 -S=${WORKDIR}
67 -
68 -RDEPEND=">=virtual/jre-1.4"
69 -DEPEND=">=virtual/jdk-1.4
70 - app-arch/unzip"
71 -
72 -src_unpack() {
73 - unpack ${A}
74 - cd ${S}
75 - rm -rf dist
76 - rm -rf docs
77 -}
78 -
79 -src_install() {
80 - java-pkg_dojar dist/smoothmetal.jar
81 - use doc && java-pkg_dohtml -r docs/api
82 - use source && java-pkg_dosrc src/*
83 -}