# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4

PortSystem          1.0
PortGroup           java 1.0

name                commons-lang3
version             3.18.0

checksums           rmd160  94cd94f05acb947927a0cbff450d6c027c016b1f \
                    sha256  4a94ddeb6a5819c5d0aa5678d16cf97a672b06398b93a0e4f90594032ca991f7 \
                    size    1236581

categories          java
license             Apache-2
maintainers         nomaintainer
platforms           any
supported_archs     noarch

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/

java.version        11+
# 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"
