net-proxy/obfs4proxy: remove the live ebuild
authorMarek Szuba <marecki@gentoo.org>
Thu, 28 Mar 2019 10:50:27 +0000 (10:50 +0000)
committerMarek Szuba <marecki@gentoo.org>
Thu, 28 Mar 2019 10:51:04 +0000 (10:51 +0000)
On the one hand the latest release is now relatively close to the
master, on the other I suspect live ebuilds + vendoring = trouble.

Signed-off-by: Marek Szuba <marecki@gentoo.org>
Package-Manager: Portage-2.3.62, Repoman-2.3.11

net-proxy/obfs4proxy/obfs4proxy-9999.ebuild [deleted file]

diff --git a/net-proxy/obfs4proxy/obfs4proxy-9999.ebuild b/net-proxy/obfs4proxy/obfs4proxy-9999.ebuild
deleted file mode 100644 (file)
index d3b71a9..0000000
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit golang-build
-
-EGO_SRC=git.torproject.org/pluggable-transports/obfs4.git
-EGO_PN=${EGO_SRC}/...
-
-if [[ ${PV} == "9999" ]];
-then
-       inherit golang-vcs
-else
-       KEYWORDS="~amd64"
-       EGIT_COMMIT="${P}"
-       SRC_URI="https://github.com/Yawning/obfs4/archive/${P}.tar.gz -> ${P}.tar.gz"
-       inherit golang-vcs-snapshot
-fi
-
-DESCRIPTION="An obfuscating proxy supporting Tor's pluggable transport protocol obfs4"
-HOMEPAGE="https://github.com/Yawning/obfs4"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-go/ed25519
-       dev-go/go-crypto
-       dev-go/go-net
-       dev-go/goptlib
-       dev-go/siphash"
-RDEPEND=""
-
-src_compile() {
-       golang-build_src_compile
-       local binfile=$(find "${T}" -name a.out)
-       [[ -x ${binfile} ]] || die "a.out not found"
-       cp -a ${binfile} obfs4proxy
-}
-
-src_install() {
-       default
-       dobin obfs4proxy || die "install failed"
-       cd src/${EGO_SRC}
-       doman doc/obfs4proxy.1 || die "install failed"
-       dodoc README.md ChangeLog doc/obfs4-spec.txt || die "install failed"
-}