summaryrefslogtreecommitdiff
path: root/net-proxy/obfs4proxy
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2023-06-28 01:36:25 +0100
committerV3n3RiX <venerix@koprulu.sector>2023-06-28 01:36:25 +0100
commitdab47ccc26a61cb1fa68f2ab787233a1d12af4d1 (patch)
treea62738c03c7054c5e9671a2f1d43542b84db1bfa /net-proxy/obfs4proxy
parentf2381eb1a950bcf1b75077ca00e589b06a905cc7 (diff)
gentoo auto-resync : 28:06:2023 - 01:36:25
Diffstat (limited to 'net-proxy/obfs4proxy')
-rw-r--r--net-proxy/obfs4proxy/Manifest4
-rw-r--r--net-proxy/obfs4proxy/metadata.xml11
-rw-r--r--net-proxy/obfs4proxy/obfs4proxy-0.0.14.ebuild30
3 files changed, 0 insertions, 45 deletions
diff --git a/net-proxy/obfs4proxy/Manifest b/net-proxy/obfs4proxy/Manifest
deleted file mode 100644
index fc6bd7bf098e..000000000000
--- a/net-proxy/obfs4proxy/Manifest
+++ /dev/null
@@ -1,4 +0,0 @@
-DIST obfs4proxy-0.0.14-deps.tar.xz 23134868 BLAKE2B befa45afeb9566dbf46be07ae469dca305d91584b04f6cb8529c50c2d1b3fb94e0adc6434ffa069b8fa1af6be2a29ffc550a7bcf1aa45eac0ed66252e37a31f8 SHA512 81f4bb778230c2f040dd1682ffaff3a635d4a57a5cef42b9d4ff7df486476cb037d7851d6e8ce5bb021c6a9a5116355e963eccfc2d1fd94cbc24df21bff7ff2e
-DIST obfs4proxy-0.0.14.tar.gz 88649 BLAKE2B 6d2198dee67998b1793c28d77dbfd8f922248e8acba481ea9496567652e132fe45c09061b3052dcdebe0dbc356744ea454641789dc688ed333ede73186b8c69a SHA512 2e28516ab888485d14d7f60fc0bee9a8268faf681803c71faff49185b7870cc0c5a6df3dbbb2a4d446307997812092ca64070be978997bc82cc89ee435698feb
-EBUILD obfs4proxy-0.0.14.ebuild 832 BLAKE2B abf5ac03810e5207d440fc4a6ad784b0edee908dbe93cbc440aad3d52e3bdec0a4de48e709f653b32ba82c8faa5f9477bfabadc9b388c33f01d18f96c4868bd6 SHA512 99c97ad987e27ad6269b3346f383fcf5a38b41147c39a91e96568a690e11f8b775accdd3deec386ef44e5b3cdcd07ad05c1a2f81559d8b034f53a916ed9020d0
-MISC metadata.xml 324 BLAKE2B c005c981e385e1b448350fadeca16f67b908f9c47309f7fc19f8ca09cd9de582606292ec235d0a96c75c9630575390f0abcfe024752a493acc4ad7536c13be86 SHA512 d66669c93b06b87b45d5a8603f16456f70009a26b29db57b27d7bbd4f09acd5cafa086842a8a3664851e74aa23b93b4c4de25a178033507344afdd341e072502
diff --git a/net-proxy/obfs4proxy/metadata.xml b/net-proxy/obfs4proxy/metadata.xml
deleted file mode 100644
index 54d2d763d12e..000000000000
--- a/net-proxy/obfs4proxy/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="person">
- <email>marecki@gentoo.org</email>
- <name>Marek Szuba</name>
- </maintainer>
- <upstream>
- <remote-id type="github">Yawning/obfs4</remote-id>
- </upstream>
-</pkgmetadata>
diff --git a/net-proxy/obfs4proxy/obfs4proxy-0.0.14.ebuild b/net-proxy/obfs4proxy/obfs4proxy-0.0.14.ebuild
deleted file mode 100644
index f2282b63925d..000000000000
--- a/net-proxy/obfs4proxy/obfs4proxy-0.0.14.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module
-
-DESCRIPTION="An obfuscating proxy supporting Tor's pluggable transport protocol obfs4"
-HOMEPAGE="https://gitlab.com/yawning/obfs4"
-SRC_URI="https://gitlab.com/yawning/obfs4/-/archive/${P}/obfs4-${P}.tar.gz -> ${P}.tar.gz
- https://dev.gentoo.org/~marecki/dists/${CATEGORY}/${PN}/${P}-deps.tar.xz"
-
-# See https://gitlab.com/yawning/obfs4/-/issues/5#note_573104796 for licence clarification
-LICENSE="BSD CC0-1.0 BZIP2 GPL-3+ MIT public-domain"
-SLOT="0"
-KEYWORDS="amd64 arm ~riscv x86"
-
-S="${WORKDIR}/obfs4-${P}"
-
-DOCS=( README.md ChangeLog LICENSE-GPL3.txt doc/obfs4-spec.txt )
-
-src_compile() {
- go build -o ${PN}/${PN} ./${PN} || die
-}
-
-src_install() {
- default
- dobin ${PN}/${PN}
- doman doc/${PN}.1
-}