# Copyright 1999-2021 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2

# Skeleton command:
# java-ebuilder --generate-ebuild --workdir . --pom /var/lib/java-ebuilder/poms/curator-recipes-2.8.0.pom --download-uri https://repo1.maven.org/maven2/org/apache/curator/curator-recipes/2.8.0/curator-recipes-2.8.0-sources.jar --slot 0 --keywords "~amd64" --ebuild curator-recipes-2.8.0-r1.ebuild

EAPI=7

JAVA_PKG_IUSE="doc source test binary"
MAVEN_ID="org.apache.curator:curator-recipes:2.8.0"
JAVA_TESTING_FRAMEWORKS="pkgdiff"

inherit java-pkg-2 java-pkg-simple java-pkg-maven

DESCRIPTION="All of the recipes listed on the ZooKeeper recipes doc"
HOMEPAGE="https://curator.apache.org/curator-recipes"
SRC_URI="
	https://repo1.maven.org/maven2/org/apache/curator/${PN}/${PV}/${P}-sources.jar
	https://repo1.maven.org/maven2/org/apache/curator/${PN}/${PV}/${P}.jar -> ${P}-bin.jar
"
LICENSE="Apache-2.0"
SLOT="0"
KEYWORDS="~amd64"

# Common dependencies
# POM: /var/lib/java-ebuilder/poms/${P}.pom
# com.google.guava:guava:16.0.1 -> >=dev-java/guava-29.0:0
# org.apache.curator:curator-framework:2.7.1 -> >=dev-java/curator-framework-2.7.1:0
# org.apache.zookeeper:zookeeper:3.4.6 -> >=dev-java/zookeeper-3.4.6:0

CDEPEND="
	>=dev-java/curator-framework-2.7.1:0
	>=dev-java/zookeeper-3.4.6:0
	>=dev-java/guava-29.0:0
"

BDEPEND="
	app-arch/unzip
"

DEPEND="
	>=virtual/jdk-1.8:*
	!binary? ( ${CDEPEND} )
"

RDEPEND="
	>=virtual/jre-1.8:*
	${CDEPEND}
"

S="${WORKDIR}"

JAVA_GENTOO_CLASSPATH="guava,curator-framework,zookeeper"
JAVA_SRC_DIR="src/main/java"
JAVA_BINJAR_FILENAME="${P}-bin.jar"

src_prepare() {
	if ! use binary; then
		eapply "${FILESDIR}/${P}-Guava-removed-method.patch"
	fi

	eapply_user
}