PortSystem 1.0
PortGroup           java 1.0

name                commons-lang3
version             3.11

categories          java
license             Apache-2
maintainers         nomaintainer
platforms           darwin

description         Apache Commons Lang
long_description    The Lang Component provides a host of helper utilities for \
                    the java.lang API, notably String manipulation methods, basic \
                    numerical methods, object reflection, creation and serialization, \
                    and System properties. Additionally it contains an inheritable \
                    enum type, an exception structure that supports multiple types \
                    of nested-Exceptions, basic enhancements to java.util.Date and \
                    a series of utlities dedicated to help with building methods, \
                    such as hashCode, toString and equals.
homepage            https://commons.apache.org/lang/
                
distname            ${name}-${version}-src
master_sites        apache:commons/lang/source/

checksums           rmd160  d622a496720e0a191a9cfbcccaca0e69ed47c47c \
                    sha256  b99459133bf215caf65d571a9445dea495dda370dc9ff50f2818f381330e1531 \
                    size    1054329

java.version        1.8+
# Use latest LTS Java as fallback
java.fallback       openjdk11

depends_build       bin:mvn3:maven3
                
use_configure       no

set maven_local_repository ${worksrcpath}/.m2/repository
pre-build {
    file mkdir ${maven_local_repository}
}

build.cmd           mvn3
build.target        site
build.pre_args      -Dmaven.repo.local=${maven_local_repository} \
                    -Drat.ignoreErrors=true \
                    -DskipTests

destroot {
    # Ensure needed directories
    xinstall -m 755 -d ${destroot}${prefix}/share/java \
        ${destroot}${prefix}/share/doc
        
    # Install jar
    xinstall -m 644 ${worksrcpath}/target/${name}-${version}.jar \
        ${destroot}${prefix}/share/java/${name}.jar
}

livecheck.type  regex
livecheck.url   https://commons.apache.org/proper/commons-lang/download_lang.cgi
livecheck.regex "${name}-(\\d+\\.\\d+(\\.\\d+)?)-src.tar.gz"
