From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 3E1BA13835A for ; Fri, 14 Aug 2020 20:28:35 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6F2B0E0855; Fri, 14 Aug 2020 20:28:34 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 571A2E0855 for ; Fri, 14 Aug 2020 20:28:34 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id D0AE134F349 for ; Fri, 14 Aug 2020 20:28:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 45B48315 for ; Fri, 14 Aug 2020 20:28:31 +0000 (UTC) From: "William Hubbs" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "William Hubbs" Message-ID: <1597436819.f67faee656398651831a653abb3774e8655aa08a.williamh@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/go-mtpfs/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/go-mtpfs/go-mtpfs-9999.ebuild X-VCS-Directories: sys-fs/go-mtpfs/ X-VCS-Committer: williamh X-VCS-Committer-Name: William Hubbs X-VCS-Revision: f67faee656398651831a653abb3774e8655aa08a X-VCS-Branch: master Date: Fri, 14 Aug 2020 20:28:31 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: a7662edc-9da6-4d64-a05f-943bf007b536 X-Archives-Hash: 744ca28bf8d465855fe510b5cf7847ba commit: f67faee656398651831a653abb3774e8655aa08a Author: William Hubbs gentoo org> AuthorDate: Fri Aug 14 20:23:33 2020 +0000 Commit: William Hubbs gentoo org> CommitDate: Fri Aug 14 20:26:59 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67faee6 sys-fs/go-mtpfs: remove old live ebuild Signed-off-by: William Hubbs gentoo.org> sys-fs/go-mtpfs/go-mtpfs-9999.ebuild | 48 ------------------------------------ 1 file changed, 48 deletions(-) diff --git a/sys-fs/go-mtpfs/go-mtpfs-9999.ebuild b/sys-fs/go-mtpfs/go-mtpfs-9999.ebuild deleted file mode 100644 index e197761b32a..00000000000 --- a/sys-fs/go-mtpfs/go-mtpfs-9999.ebuild +++ /dev/null @@ -1,48 +0,0 @@ -# Copyright 1999-2020 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=5 - -inherit git-r3 flag-o-matic toolchain-funcs - -DESCRIPTION="a simple FUSE filesystem for mounting Android devices as a MTP device" -HOMEPAGE="https://github.com/hanwen/go-mtpfs" -EGIT_REPO_URI="https://github.com/hanwen/go-mtpfs.git" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="" -IUSE="" - -COMMON_DEPEND="virtual/libusb:1 - virtual/udev" -DEPEND="${COMMON_DEPEND} - dev-libs/go-fuse - dev-libs/go-usb - dev-lang/go - media-libs/libmtp" - -RDEPEND="${COMMON_DEPEND}" - -#Tests require a connected mtp device -RESTRICT="test" - -GO_PN="github.com/hanwen/${PN}" -EGIT_CHECKOUT_DIR="${S}/src/${GO_PN}" -QA_FLAGS_IGNORED=usr/bin/go-mtpfs - -export GOPATH="${S}" - -src_compile() { - go build -ldflags '-extldflags=-fno-PIC' -v -x -work ${GO_PN} || die -} - -src_test() { - go test -ldflags '-extldflags=-fno-PIC' ${GO_PN}/fs || die - go test -ldflags '-extldflags=-fno-PIC' ${GO_PN}/usb || die - go test -ldflags '-extldflags=-fno-PIC' ${GO_PN}/mtp || die -} - -src_install() { - dobin go-mtpfs -}