aboutsummaryrefslogtreecommitdiff
blob: 7df27dc747e1a6a1b2e53482b4e8f688d8e24e52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
#!/bin/bash
# start from the root of a maven artifact and recursively resolve its
# dependencies.

source /etc/java-ebuilder.conf

mkdir -p "${POMDIR}"

gebd() {
    case ${MA} in
        weld-osgi-bundle)
            # 1.1.0.Final no longer exist
            [[ ${MV} = 1.1.0.Final ]] && MV=1.1.33.Final
            ;;
    esac

    local WORKDIR=${PG//./\/}/${MA} MID
    local MID=${PG}:${MA}:${MV}
    # .Final .GA .v20121024 means nothing
    local PV=${MV%.[a-zA-Z]*} PA SLOT

    case ${MA} in
        opengl-api)
            [[ ${MV} = 2.1.1 ]] && MV=gl1.1-android-2.1_r1
            ;;
    esac

    # plexus-container-default 1.0-alpha-9-stable-1
    PV=${PV/-stable-*/}
    PV=${PV/-alpha-/_alpha}
    # wagon-provider-api 1.0-beta-7
    PV=${PV/-beta-/_beta}
    # aopalliance-repackaged 2.5.0-b16
    PV=${PV/-b/_beta}
    # cdi-api 1.0-SP4
    PV=${PV/-SP/_p}
    # javax.xml.stream:stax-api:1.0-2
    PV=${PV//-/.}

    # spark-launcher_2.11 for scala 2.11
    eval $(sed -nr 's,([^_]*)(_(.*))?,PA=\1 SLOT=\3,p' <<< ${MA})
    [[ -z "${SLOT}" ]] && eval $(sed -nr 's,(.*)-(([0-9]+\.)?[0-9]+),PA=\1 SLOT=\2,p' <<< ${MA})
    [[ -z "${SLOT}" ]] && PA=${MA}
    PA=${PA//./-}
    PA=${PA//_/-}

    local M=${MA}-${MV}
    local SRC_URI="http://central.maven.org/maven2/${WORKDIR}/${MV}/${M}-sources.jar"

    if [[ ! -f "${POMDIR}"/${M}.pom ]]; then
        pushd "${POMDIR}"
        wget ${SRC_URI/-sources.jar/.pom}

        # 3rd party plugin not needed here
        # distributionManagement is invalid for maven 3
        # net.sf.jtidy:jtidy:r938 version is not maven-compliant
        sed -e '/<packaging>bundle/d' \
            -e '/<distributionManagement>/,/<\/distributionManagement>/d' \
            -e '/<build>/,/<\/build>/d' \
            -e '/<modules>/,/<\/modules>/d' \
            -e 's,<version>r938</version>,<version>1.0</version>,' \
            -i ${M}.pom
        popd
    fi

    if ! wget -q --spider ${SRC_URI}; then
        SRC_URI=${SRC_URI/-sources.jar/.jar}
        PA=${PA}-bin
    fi
    local P=${PA}-${PV}
    local ebd="${MAVEN_OVERLAY_DIR}"/app-maven/${PA}/${P}.ebuild

    line=app-maven:${PA}:${PV}:${SLOT:-0}::${MID}
    if ! grep -q ${line} "${CACHEDIR}"/maven-cache 2>/dev/null ; then
        pushd "${CACHEDIR}" > /dev/null
        echo ${line} >> maven-cache
        cat cache.{0,1} maven-cache > cache
        popd > /dev/null
    fi

    if [[ ! -f "${ebd}" ]]; then
        mkdir -p $(dirname ${ebd})
        java-ebuilder -p "${POMDIR}"/${M}.pom -e "${ebd}" -g --workdir . \
                      -u ${SRC_URI} --slot ${SLOT:-0} --keywords ~amd64 \
                      --cache-file "${CACHEDIR}"/cache

        # empty parent artifacts
        # FIXME, this should be removed in poms
        sed -e '/app-maven\/jsch-agentproxy-bin/d' \
            -e '/JAVA_GENTOO_CLASSPATH/s|jsch-agentproxy-bin,||' \
            -i "${ebd}"
    fi

    if [[ -z "${MAVEN_NODEP}" ]] && mfill "${ebd}"; then
        java-ebuilder -p "${POMDIR}"/${M}.pom -e "${ebd}" -g --workdir . \
                      -u ${SRC_URI} --slot ${SLOT:-0} --keywords ~amd64 \
                      --cache-file "${CACHEDIR}"/cache

        # empty parent artifacts
        # FIXME, this should be removed in poms
        sed -e '/app-maven\/jsch-agentproxy-bin-[0-9]/d' \
            -e '/JAVA_GENTOO_CLASSPATH/s|jsch-agentproxy-bin,||' \
            -i "${ebd}"
    fi

    [[ ${SRC_URI} = *-sources.jar ]] || sed -i "/inherit/s/java-pkg-simple/java-pkg-binjar/" "${ebd}"
}

mfill() {
    # recursively fill missing dependencies
    arts=$(sed -n -r 's,# (test\? )?(.*)-> !!!.*-not-found!!!,\2,p' < $1)
    if [[ -z "${arts}" ]]; then
        false # no need to java-ebuilder again
    else
        for a in ${arts}; do
            eval $(awk -F":" '{print "PG="$1, "MA="$2, "MV="$3}' <<< ${a})
            gebd
        done
        return
    fi
}

if [[ $1 == *.ebuild ]]; then
    eval $(grep MAVEN_ID $1)
    rm -f $1
else
    MAVEN_ID=$1
fi
eval $(awk -F":" '{print "PG="$1, "MA="$2, "MV="$3}' <<< ${MAVEN_ID})
gebd