dev-java/scram: new package, add 2.1

Signed-off-by: Volkmar W. Pogatzki <gentoo@pogatzki.net>
Signed-off-by: Florian Schmaus <flow@gentoo.org>
This commit is contained in:
Volkmar W. Pogatzki
2022-06-15 13:11:31 +02:00
committed by Florian Schmaus
parent 5917335f38
commit a7cbb74c1a
3 changed files with 112 additions and 0 deletions

1
dev-java/scram/Manifest Normal file
View File

@@ -0,0 +1 @@
DIST scram-2.1.tar.gz 64263 BLAKE2B 59b71ee0faa32d2478e38e4275b7c83efb3f7a3ede0c068a8c0a6fe970248d22b539c50b97127b1b757839758d119b395fedd85d85425bd019e0972c2df20ef4 SHA512 e0757b306db03c56f03fa0907e46693337854c152a321cae1b109a1c16b0cb5be2482a92d64a420432a3ea31371990cbac444f965abde89c04083005b30012ef

View File

@@ -0,0 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
<maintainer type="project">
<email>java@gentoo.org</email>
</maintainer>
</pkgmetadata>

View File

@@ -0,0 +1,104 @@
# Copyright 1999-2022 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
# Skeleton command:
# java-ebuilder --generate-ebuild --workdir . --pom common/pom.xml --download-uri https://gitlab.com/ongresinc/scram/-/archive/2.1/scram-2.1.tar.gz --slot 0 --keywords "~amd64 ~ppc64 ~x86" --ebuild scram-2.1.ebuild
EAPI=8
JAVA_PKG_IUSE="doc source test"
MAVEN_ID="com.ongres.scram:common:2.1"
JAVA_TESTING_FRAMEWORKS="junit-4"
inherit java-pkg-2 java-pkg-simple
DESCRIPTION="Java Implementation of the Salted Challenge Response Authentication Mechanism"
HOMEPAGE="https://gitlab.com/ongresinc/scram"
SRC_URI="https://gitlab.com/ongresinc/${PN}/-/archive/${PV}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
# Common dependencies
# POM: common/pom.xml
# com.ongres.stringprep:saslprep:1.1 -> >=dev-java/stringprep-2.0:0
CP_DEPEND="
dev-java/saslprep:0
"
# Compile dependencies
# POM: common/pom.xml
# com.google.code.findbugs:annotations:3.0.1 -> !!!artifactId-not-found!!!
# com.google.code.findbugs:jsr305:3.0.1 -> >=dev-java/jsr305-3.0.2:0
# POM: common/pom.xml
# test? junit:junit:4.12 -> >=dev-java/junit-4.13.2:4
DEPEND="
>=virtual/jdk-1.8:*
${CP_DEPEND}
dev-java/findbugs-annotations:0
dev-java/jsr305:0
test? ( dev-java/stringprep:0 )
"
RDEPEND="
>=virtual/jre-1.8:*
${CP_DEPEND}"
DOCS=( CHANGELOG NOTICE README.md )
S="${WORKDIR}/${P}"
JAVA_CLASSPATH_EXTRA="findbugs-annotations,jsr305"
JAVA_TEST_GENTOO_CLASSPATH="junit-4,stringprep"
src_compile() {
einfo "Compiling module common"
JAVA_SRC_DIR="common/src/main/java"
JAVA_JAR_FILENAME="common.jar"
java-pkg-simple_src_compile
JAVA_GENTOO_CLASSPATH_EXTRA+=":common.jar"
rm -r target || die
einfo "Compiling module client"
JAVA_SRC_DIR="client/src/main/java"
JAVA_JAR_FILENAME="client.jar"
java-pkg-simple_src_compile
JAVA_GENTOO_CLASSPATH_EXTRA+=":client.jar"
rm -r target || die
if use doc; then
einfo "Compiling javadocs"
JAVA_SRC_DIR=(
"common/src/main/java"
"client/src/main/java"
)
JAVA_JAR_FILENAME="ignoreme.jar"
java-pkg-simple_src_compile
fi
}
src_test() {
einfo "Testing module common"
JAVA_TEST_SRC_DIR="common/src/test/java"
java-pkg-simple_src_test
einfo "Testing module cwclientcommon"
JAVA_TEST_SRC_DIR="client/src/test/java"
java-pkg-simple_src_test
}
src_install() {
default
java-pkg_dojar "common.jar"
java-pkg_dojar "client.jar"
if use doc; then
java-pkg_dojavadoc target/api
fi
if use source; then
java-pkg_dosrc "common/src/main/java/*"
java-pkg_dosrc "client/src/main/java/*"
fi
}