zmedico 15/02/24 23:43:26 Modified: ChangeLog Added: go-fuse-0_p20140812-r1.ebuild Removed: go-fuse-0_p20140812.ebuild Log: Bumb revision for bug 541284, for anyone who may have it installed in the wrong place. (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0xAE5719A3)
Revision Changes Path 1.9 dev-libs/go-fuse/ChangeLog file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?rev=1.9&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?rev=1.9&content-type=text/plain diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/ChangeLog?r1=1.8&r2=1.9 Index: ChangeLog =================================================================== RCS file: /var/cvsroot/gentoo-x86/dev-libs/go-fuse/ChangeLog,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- ChangeLog 24 Feb 2015 23:39:29 -0000 1.8 +++ ChangeLog 24 Feb 2015 23:43:26 -0000 1.9 @@ -1,6 +1,13 @@ # 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.8 2015/02/24 23:39:29 zmedico Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/go-fuse/ChangeLog,v 1.9 2015/02/24 23:43:26 zmedico Exp $ + +*go-fuse-0_p20140812-r1 (24 Feb 2015) + + 24 Feb 2015; Zac Medico <[email protected]> +go-fuse-0_p20140812-r1.ebuild, + -go-fuse-0_p20140812.ebuild: + Bumb revision for bug 541284, for anyone who may have it installed in the + wrong place. 24 Feb 2015; Zac Medico <[email protected]> go-fuse-0_p20140812.ebuild: Install in src instead of src/pkg for go-1.4. Thanks to William Hubbs 1.1 dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild?rev=1.1&view=markup plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/go-fuse/go-fuse-0_p20140812-r1.ebuild?rev=1.1&content-type=text/plain Index: go-fuse-0_p20140812-r1.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_p20140812-r1.ebuild,v 1.1 2015/02/24 23:43:26 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="8c85ded140ac1889372a0e22d8d21e3d10a303bd" SRC_URI="https://${GO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz" LICENSE="BSD" SLOT="0" IUSE="" DEPEND=">=dev-lang/go-1.3" RDEPEND="" S=${WORKDIR} src_unpack() { default_src_unpack mkdir -p src/${GO_PN%/*} || die mv ${PN}-${EGIT_COMMIT} src/${GO_PN} || die } src_prepare() { sed -e "s:\(go \${target}\)\(.*\)$:\\1 -x \\2:" \ -e 's:^for target in "clean" "install" ; do$:for target in "install" ; do:' \ -e '17,26d' \ src/${GO_PN}/all.bash > src/${GO_PN}/all.bash.patched || die } src_compile() { # Create a filtered GOROOT tree out of symlinks, # excluding go-fuse, for bug #503324. cp -sR /usr/lib/go goroot || die rm -rf goroot/src/${GO_PN} || die rm -rf goroot/pkg/linux_${ARCH}/${GO_PN} || die CGO_CFLAGS="${CFLAGS}" GOROOT="${WORKDIR}/goroot" GOPATH="${WORKDIR}" \ bash src/${GO_PN}/all.bash.patched || die } src_install() { insinto /usr/lib/go doins -r pkg insinto /usr/lib/go/src rm src/${GO_PN}/all.bash.patched || die find src/${GO_PN} -name .gitignore -delete doins -r src/* }
