diff options
author | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-28 11:05:25 +0200 |
---|---|---|
committer | Miroslav Šulc <fordfrog@gentoo.org> | 2021-04-28 11:05:25 +0200 |
commit | 861d16e6e8f48edb6a176649c806b6d1460b3f0e (patch) | |
tree | f9c827e3cfca12dd03b7c0e17737361dbb568fbe /dev-java | |
parent | dev-java/java-getopt: removed obsolete 1.0.14 (diff) | |
download | gentoo-861d16e6e8f48edb6a176649c806b6d1460b3f0e.tar.gz gentoo-861d16e6e8f48edb6a176649c806b6d1460b3f0e.tar.bz2 gentoo-861d16e6e8f48edb6a176649c806b6d1460b3f0e.zip |
dev-java/jansi: switched to slot 0 + eapi7/java 1.8 in 1.11
Closes: https://bugs.gentoo.org/783906
Package-Manager: Portage-3.0.18, Repoman-3.0.3
Signed-off-by: Miroslav Šulc <fordfrog@gentoo.org>
Diffstat (limited to 'dev-java')
-rw-r--r-- | dev-java/jansi/jansi-1.11-r2.ebuild (renamed from dev-java/jansi/jansi-1.11-r1.ebuild) | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/dev-java/jansi/jansi-1.11-r1.ebuild b/dev-java/jansi/jansi-1.11-r2.ebuild index 0d9a907524da..0c1149bbd7b2 100644 --- a/dev-java/jansi/jansi-1.11-r1.ebuild +++ b/dev-java/jansi/jansi-1.11-r2.ebuild @@ -1,7 +1,7 @@ -# Copyright 1999-2020 Gentoo Authors +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 -EAPI="5" +EAPI=7 # TODO: Get doc (missing classpath entries) working. JAVA_PKG_IUSE="source test" @@ -10,10 +10,10 @@ inherit vcs-snapshot java-pkg-2 java-ant-2 DESCRIPTION="A library that allows you to use ANSI escape sequences in your console output" HOMEPAGE="http://jansi.fusesource.org/" -SRC_URI="https://github.com/fusesource/${PN}/tarball/${PN}-project-${PV} -> ${P}.tar.gz" +SRC_URI="https://github.com/fusesource/${PN}/archive/${PN}-project-${PV}.tar.gz -> ${P}.tar.gz" LICENSE="Apache-2.0" -SLOT="1.11" +SLOT="0" KEYWORDS="amd64 ~arm64 ~ppc64 x86" CDEPEND="dev-java/jansi-native:0" @@ -23,10 +23,10 @@ DEPEND="${CDEPEND} dev-java/ant-junit4:0 dev-java/junit:4 ) - >=virtual/jdk-1.7" + >=virtual/jdk-1.8:*" RDEPEND="${CDEPEND} - >=virtual/jre-1.5" + >=virtual/jre-1.8:*" S="${WORKDIR}/${P}/jansi" @@ -34,7 +34,8 @@ EANT_GENTOO_CLASSPATH="jansi-native" JAVA_ANT_REWRITE_CLASSPATH="true" JAVA_SRC_DIR="src/main/java" -java_prepare() { +src_prepare() { + default cp "${FILESDIR}"/${P}-build.xml build.xml || die } |