zmedico     15/05/13 06:12:19

  Modified:             ChangeLog
  Added:                go-fuse-0_p20150422.ebuild
  Log:
  0_p20150422 version bump
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
FDE8EF85AE5719A3)

Revision  Changes    Path
1.11                 dev-libs/go-fuse/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/go-fuse/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   11 May 2015 16:21:27 -0000      1.10
+++ ChangeLog   13 May 2015 06:12:19 -0000      1.11
@@ -1,6 +1,11 @@
 # ChangeLog for dev-libs/go-fuse
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/go-fuse/ChangeLog,v 1.10 
2015/05/11 16:21:27 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/go-fuse/ChangeLog,v 1.11 
2015/05/13 06:12:19 zmedico Exp $
+
+*go-fuse-0_p20150422 (13 May 2015)
+
+  13 May 2015; Zac Medico <[email protected]> +go-fuse-0_p20150422.ebuild:
+  0_p20150422 version bump
 
   11 May 2015; Michał Górny <[email protected]> go-fuse-9999.ebuild:
   Fix installation location as needed for sys-fs/go-mtpfs, bug #541274. Part of



1.1                  dev-libs/go-fuse/go-fuse-0_p20150422.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild?rev=1.1&content-type=text/plain

Index: go-fuse-0_p20150422.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/go-fuse/go-fuse-0_p20150422.ebuild,v 1.1 
2015/05/13 06:12:19 zmedico Exp $

EAPI=5

KEYWORDS="~amd64"
RESTRICT="strip"
DESCRIPTION="FUSE bindings for Go"
GO_PN=github.com/hanwen/${PN}
HOMEPAGE="https://${GO_PN}";
EGIT_COMMIT="ffed29ec8b88f61c1b8954134cc48ef03bb26ce1"
SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""

DEPEND=">=dev-lang/go-1.3"
RDEPEND=""

src_unpack() {
        default_src_unpack
        mkdir -p "${S}/src/${GO_PN%/*}" || die
        mv ${PN}-${EGIT_COMMIT} "${S}/src/${GO_PN}" || die
        find "${S}" -name .gitignore -delete || die
}

call_go() {
        local d
        for d in fuse fuse/pathfs zipfs unionfs; do
                GOROOT="${GOROOT}" GOPATH="${S}" \
                        go "${1}" -v -x -work ${GO_PN}/${d} || die
        done
}

src_compile() {
        # Create a filtered GOROOT tree out of symlinks,
        # excluding go-fuse, for bug #503324.
        GOROOT="${WORKDIR}/goroot"
        cp -sR /usr/lib/go "${GOROOT}" || die
        rm -rf "${GOROOT}/src/${GO_PN}" || die
        rm -rf "${GOROOT}/pkg/linux_${ARCH}/${GO_PN}" || die
        call_go build
}

src_install() {
        call_go install
        insinto /usr/lib/go
        doins -r pkg src
}




Reply via email to