diff options
author | William Hubbs <williamh@gentoo.org> | 2015-08-10 14:47:49 -0500 |
---|---|---|
committer | William Hubbs <williamh@gentoo.org> | 2015-08-10 14:47:49 -0500 |
commit | 82663bc8fabb0be483fd36a1b1108b086403cb28 (patch) | |
tree | 55bd4cd3515de31de8444a47fd4042c9472132e2 /dev-go/go-spew | |
parent | dev-go/go-snappy: convert to use go eclasses (diff) | |
download | gentoo-82663bc8fabb0be483fd36a1b1108b086403cb28.tar.gz gentoo-82663bc8fabb0be483fd36a1b1108b086403cb28.tar.bz2 gentoo-82663bc8fabb0be483fd36a1b1108b086403cb28.zip |
dev-go/go-spew: converted to use the go eclasses
Diffstat (limited to 'dev-go/go-spew')
-rw-r--r-- | dev-go/go-spew/go-spew-0_pre20150619.ebuild | 35 |
1 files changed, 1 insertions, 34 deletions
diff --git a/dev-go/go-spew/go-spew-0_pre20150619.ebuild b/dev-go/go-spew/go-spew-0_pre20150619.ebuild index 9b9367f2b3da..26f65ba85137 100644 --- a/dev-go/go-spew/go-spew-0_pre20150619.ebuild +++ b/dev-go/go-spew/go-spew-0_pre20150619.ebuild @@ -13,6 +13,7 @@ else KEYWORDS="~amd64" EGIT_COMMIT="2df174808ee097f90d259e432cc04442cf60be21" SRC_URI="https://${EGO_SRC}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" + inherit golang-vcs-snapshot fi inherit golang-build @@ -23,37 +24,3 @@ SLOT="0/${PV}" IUSE="" DEPEND="" RDEPEND="" - -if [[ ${PV} != *9999* ]]; then -src_unpack() { - local f - - for f in ${A} - do - case "${f}" in - *.tar|*.tar.gz|*.tar.bz2|*.tar.xz) - local destdir=${WORKDIR}/${P}/src/${EGO_SRC} - - debug-print "${FUNCNAME}: unpacking ${f} to ${destdir}" - - # XXX: check whether the directory structure inside is - # fine? i.e. if the tarball has actually a parent dir. - mkdir -p "${destdir}" || die - tar -C "${destdir}" -x --strip-components 1 \ - -f "${DISTDIR}/${f}" || die - ;; - *) - debug-print "${FUNCNAME}: falling back to unpack for ${f}" - - # fall back to the default method - unpack "${f}" - ;; - esac - done -} -fi - -src_install() { - rm -rf src/${EGO_SRC}/.git* || die - golang-build_src_install -} |