Gentoo Archives: gentoo-commits

From: "Miroslav Šulc" <fordfrog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/jta/
Date: Wed, 28 Apr 2021 17:42:35
Message-Id: 1619631748.d3e69d61220970bded06187ae0204d134144db65.fordfrog@gentoo
1 commit: d3e69d61220970bded06187ae0204d134144db65
2 Author: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
3 AuthorDate: Wed Apr 28 17:42:21 2021 +0000
4 Commit: Miroslav Šulc <fordfrog <AT> gentoo <DOT> org>
5 CommitDate: Wed Apr 28 17:42:28 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e69d61
7
8 dev-java/jta: dropped obsolete 1.1
9
10 Package-Manager: Portage-3.0.18, Repoman-3.0.3
11 Signed-off-by: Miroslav Šulc <fordfrog <AT> gentoo.org>
12
13 dev-java/jta/jta-1.1.ebuild | 47 ---------------------------------------------
14 1 file changed, 47 deletions(-)
15
16 diff --git a/dev-java/jta/jta-1.1.ebuild b/dev-java/jta/jta-1.1.ebuild
17 deleted file mode 100644
18 index 6826cc091f2..00000000000
19 --- a/dev-java/jta/jta-1.1.ebuild
20 +++ /dev/null
21 @@ -1,47 +0,0 @@
22 -# Copyright 1999-2021 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI=5
26 -
27 -JTA_ZIP="jta-1_1-classes.zip"
28 -
29 -inherit java-pkg-2
30 -
31 -DESCRIPTION="The Java Transaction API"
32 -HOMEPAGE="http://www.oracle.com/technetwork/java/javaee/jta/index.html"
33 -SRC_URI="${JTA_ZIP}"
34 -LICENSE="sun-bcla-jta"
35 -SLOT=0
36 -KEYWORDS="amd64 ppc64 x86 ~amd64-linux ~x86-linux"
37 -
38 -DEPEND=" >=virtual/jdk-1.5"
39 -RDEPEND=">=virtual/jre-1.5"
40 -
41 -RESTRICT="fetch"
42 -
43 -S="${WORKDIR}"
44 -
45 -pkg_nofetch() {
46 - einfo
47 - einfo " Due to license restrictions, we cannot fetch the"
48 - einfo " distributables automagically."
49 - einfo
50 - einfo " 1. Visit ${HOMEPAGE}"
51 - einfo " 2. Select 'Java Transaction API Specification 1.1 Maintenance Release'"
52 - einfo " 3. Download ${JTA_ZIP}"
53 - einfo " 4. Move file to your DISTDIR directory"
54 - einfo " 5. Restart the emerge process"
55 - einfo
56 -}
57 -
58 -src_unpack() {
59 - unzip -qq "${DISTDIR}"/${JTA_ZIP} || die "failed to unpack"
60 -}
61 -
62 -src_compile() {
63 - jar cvf jta.jar javax/ || die "failed to create jar"
64 -}
65 -
66 -src_install() {
67 - java-pkg_dojar jta.jar
68 -}