williamh    15/06/25 17:21:45

  Modified:             go-crypto-9999.ebuild
  Log:
  Convert live ebuild to the new go eclasses
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
0x30C46538)

Revision  Changes    Path
1.6                  dev-go/go-crypto/go-crypto-9999.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild?r1=1.5&r2=1.6

Index: go-crypto-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- go-crypto-9999.ebuild       9 Jun 2015 03:22:30 -0000       1.5
+++ go-crypto-9999.ebuild       25 Jun 2015 17:21:45 -0000      1.6
@@ -1,27 +1,24 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild,v 
1.5 2015/06/09 03:22:30 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-go/go-crypto/go-crypto-9999.ebuild,v 
1.6 2015/06/25 17:21:45 williamh Exp $
 
 EAPI=5
-inherit git-r3
+inherit golang-build golang-vcs
+EGO_PN=golang.org/x/crypto/...
+EGO_SRC=golang.org/x/crypto
 
-KEYWORDS=""
 DESCRIPTION="Go supplementary cryptography libraries"
-GO_PN=golang.org/x/${PN##*-}
 HOMEPAGE="https://godoc.org/${GO_PN}";
-EGIT_REPO_URI="https://go.googlesource.com/${PN##*-}";
 LICENSE="BSD"
 SLOT="0"
 IUSE=""
-DEPEND=">=dev-lang/go-1.4"
+DEPEND=""
 RDEPEND=""
-S="${WORKDIR}/src/${GO_PN}"
-EGIT_CHECKOUT_DIR="${S}"
-STRIP_MASK="*.a"
 
 src_prepare() {
        # disable broken tests
-       sed -e 's:TestAgentForward(:_\0:' -i ssh/test/agent_unix_test.go || die
+       sed -e 's:TestAgentForward(:_\0:' \
+               -i src/${EGO_SRC}/ssh/test/agent_unix_test.go || die
        sed -e 's:TestRunCommandSuccess(:_\0:' \
                -e 's:TestRunCommandStdin(:_\0:' \
                -e 's:TestRunCommandStdinError(:_\0:' \
@@ -29,26 +26,5 @@
                -e 's:TestFuncLargeRead(:_\0:' \
                -e 's:TestKeyChange(:_\0:' \
                -e 's:TestValidTerminalMode(:_\0:' \
-               -i ssh/test/session_test.go || die
-}
-
-src_compile() {
-       # Create a writable GOROOT in order to avoid sandbox violations.
-       GOROOT="${WORKDIR}/goroot"
-       cp -sR "${EPREFIX}"/usr/lib/go "${GOROOT}" || die
-       rm -rf "${GOROOT}/src/${GO_PN%/*}" \
-               "${GOROOT}/pkg/linux_${ARCH}/${GO_PN%/*}" || die
-       GOROOT="${GOROOT}" GOPATH=${WORKDIR} go install -v -x -work 
${GO_PN}/... || die
-}
-
-src_test() {
-       GOROOT="${GOROOT}" GOPATH=${WORKDIR} \
-               go test -x -v ${GO_PN}/... || die $?
-}
-
-src_install() {
-       insinto /usr/lib/go
-       find "${WORKDIR}"/{pkg,src} -name '.git*' -exec rm -rf {} \; 2>/dev/null
-       insopts -m0644 -p # preserve timestamps for bug 551486
-       doins -r "${WORKDIR}"/{pkg,src}
+               -i src/${EGO_SRC}/ssh/test/session_test.go || die
 }




Reply via email to