All,

It turns out that we do need a second eclass for Go packages.

this eclass is meant to provide a common src_compile function for
packages written in the Go programming language.

Let me know what you think.

Thanks,

William

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

# @ECLASS: golang.eclass
# @MAINTAINER:
# William Hubbs <willi...@gentoo.org>
# @BLURB: Eclass for compiling go packages.
# @DESCRIPTION:
# This eclass provides a default src_compile function for software
# written in the Go programming language.

case "${EAPI:-0}" in
        5)
                ;;
        *)
                die "${ECLASS}: Unsupported eapi (EAPI=${EAPI})"
                ;;
esac

EXPORT_FUNCTIONS src_compile

if [[ -z ${_GOLANG} ]]; then

_GOLANG=1

DEPEND=">=dev-lang/go-1.4.2"

# @ECLASS-VARIABLE: EGO_PN
# @REQUIRED
# @DESCRIPTION:
# This is the import path for the go package(s). Please emerge dev-lang/go
# and read "go help importpath" for syntax.
#
# Example:
# @CODE
# EGO_PN="github.com/user/package"
# EGO_PN="github.com/user1/package1 github.com/user2/package2"
# @CODE

golang_src_compile() {
        debug-print-function ${FUNCNAME} "$@"

        [[ -z ${EGO_PN} ]] &&
                die "${ECLASS}: EGO_PN is not set"

        case "$GOPATH" in
                ${S}*) ;;
                *) export GOPATH="${S}:${GOPATH}" ;;
        esac

        set -- go build -d -v -work -x "${EGO_PN}"
        echo "$@"
        "$@" || die
}

fi

Attachment: signature.asc
Description: Digital signature

Reply via email to