From fdf44522fc1dc8df5c06865fb1a8d6e0a14e535a Mon Sep 17 00:00:00 2001 From: Sam James Date: Thu, 15 Apr 2021 03:23:28 +0100 Subject: [PATCH] dev-libs/go-usb: multilib--, style fix Signed-off-by: Sam James --- dev-libs/go-usb/go-usb-9999.ebuild | 15 ++++++--------- 1 file changed, 6 insertions(+), 9 deletions(-) diff --git a/dev-libs/go-usb/go-usb-9999.ebuild b/dev-libs/go-usb/go-usb-9999.ebuild index 7c84be80dbe48..1cc0b177b86e0 100644 --- a/dev-libs/go-usb/go-usb-9999.ebuild +++ b/dev-libs/go-usb/go-usb-9999.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2021 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=5 -inherit git-r3 multilib +inherit git-r3 DESCRIPTION="CGO bindings for libusb" HOMEPAGE="https://github.com/hanwen/usb" @@ -11,22 +11,19 @@ EGIT_REPO_URI="https://github.com/hanwen/usb.git" LICENSE="BSD" SLOT="0" -KEYWORDS="" -IUSE="" DEPEND=">=dev-lang/go-1.4" -RDEPEND="" # Tests require a connected mtp device RESTRICT="test" GO_PN="/usr/lib/go/src/github.com/hanwen/usb" +src_test() { + go test -ldflags '-extldflags=-fno-PIC' ${GO_PN} || die +} + src_install() { insinto "${GO_PN}" doins *.go LICENSE } - -src_test() { - go test -ldflags '-extldflags=-fno-PIC' ${GO_PN} || die -}