rename import_path to go_import_path

This commit is contained in:
Dominik Honnef 2015-02-21 13:52:10 +01:00
parent 77e8751a93
commit bd75088422
4 changed files with 10 additions and 10 deletions

View File

@ -514,7 +514,7 @@ target can be overriden via `make_build_target` and the install target
via `make_install_target`. via `make_install_target`.
- `go` For programs written in Go that follow the standard package - `go` For programs written in Go that follow the standard package
structure. The variable `import_path` must be set to the package's structure. The variable `go_import_path` must be set to the package's
import path, e.g. `github.com/github/hub` for the `hub` program. If import path, e.g. `github.com/github/hub` for the `hub` program. If
the variable `go_get` is set to `yes`, the package will be the variable `go_get` is set to `yes`, the package will be
downloaded with `go get`. Otherwise (the default) it's expected that downloaded with `go get`. Otherwise (the default) it's expected that
@ -939,10 +939,10 @@ setting up cross compilation.
The following variables influence how Go packages are built: The following variables influence how Go packages are built:
- `import_path`: The import path of the package, as it would be used - `go_import_path`: The import path of the package, as it would be
with `go get`. For example, GitHub's `hub` program has the import used with `go get`. For example, GitHub's `hub` program has the
path `github.com/github/hub`. This variable is required. import path `github.com/github/hub`. This variable is required.
- `go_get`: If set to yes, the package specified via `import_path` - `go_get`: If set to yes, the package specified via `go_import_path`
will be downloaded with `go get`. Otherwise, a distfile has to be will be downloaded with `go get`. Otherwise, a distfile has to be
provided. This option should only be used with `-git` (or similar) provided. This option should only be used with `-git` (or similar)
packages; using a versioned distfile is prefered. packages; using a versioned distfile is prefered.

View File

@ -13,13 +13,13 @@ do_build() {
export GOPATH="/tmp/gopath" export GOPATH="/tmp/gopath"
if [[ "${go_get}" != "yes" ]]; then if [[ "${go_get}" != "yes" ]]; then
local path="${GOPATH}/src/${import_path}" local path="${GOPATH}/src/${go_import_path}"
mkdir -p "$(dirname ${path})" mkdir -p "$(dirname ${path})"
ln -fs $PWD "${path}" ln -fs $PWD "${path}"
fi fi
go get -d -v "${import_path}" go get -d -v "${go_import_path}"
go build -x "${import_path}" go build -x "${go_import_path}"
} }
do_install() { do_install() {

View File

@ -4,7 +4,7 @@ version=0.6.2
revision=2 revision=2
build_style=go build_style=go
hostmakedepends="git mercurial" hostmakedepends="git mercurial"
import_path="github.com/xyproto/gendesk" go_import_path="github.com/xyproto/gendesk"
short_desc="Utility to generate .desktop files and download icons" short_desc="Utility to generate .desktop files and download icons"
maintainer="Juan RP <xtraeme@gmail.com>" maintainer="Juan RP <xtraeme@gmail.com>"
license="MIT" license="MIT"

View File

@ -3,7 +3,7 @@ pkgname=hub
version=2.2.0 version=2.2.0
revision=2 revision=2
build_style=go build_style=go
import_path="github.com/github/hub" go_import_path="github.com/github/hub"
hostmakedepends="git" hostmakedepends="git"
homepage="http://hub.github.com/" homepage="http://hub.github.com/"
distfiles="https://github.com/github/hub/archive/v${version}.tar.gz" distfiles="https://github.com/github/hub/archive/v${version}.tar.gz"