summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSam James <sam@gentoo.org>2021-01-10 13:14:34 +0000
committerSam James <sam@gentoo.org>2021-01-10 13:14:34 +0000
commit77f4f2ac79765b0d22851ca41e64155e18066f11 (patch)
tree2d12ff784cdcbd7c75ff31837f69cc695a95c12a /net-vpn
parentmedia-gfx/gifsicle: cleanup old (diff)
downloadgentoo-77f4f2ac79765b0d22851ca41e64155e18066f11.tar.gz
gentoo-77f4f2ac79765b0d22851ca41e64155e18066f11.tar.bz2
gentoo-77f4f2ac79765b0d22851ca41e64155e18066f11.zip
net-vpn/httptunnel: cleanup old
Package-Manager: Portage-3.0.12, Repoman-3.0.2 Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-vpn')
-rw-r--r--net-vpn/httptunnel/Manifest1
-rw-r--r--net-vpn/httptunnel/files/httptunnel-3.3-fix_write_stdin.patch12
-rw-r--r--net-vpn/httptunnel/httptunnel-3.3-r2.ebuild17
3 files changed, 0 insertions, 30 deletions
diff --git a/net-vpn/httptunnel/Manifest b/net-vpn/httptunnel/Manifest
index 0b93ad67deba..fbdf7c5cf3c3 100644
--- a/net-vpn/httptunnel/Manifest
+++ b/net-vpn/httptunnel/Manifest
@@ -1,2 +1 @@
-DIST httptunnel-3.3.tar.gz 262749 BLAKE2B d16c06f709befd45e13ac8f13c13242c90d045a23cbb6f39b8d8355d5a9e56643bb7766d4d8ae6dece16686d555850fa4a0e682fc9bb3e33ec7a5144311e517b SHA512 84503e27e84cd39441a7592d6446e30fce07a54b940e4398407dc105fabc6c8f96d3b5d05137d6dab22b2088c5b114728551337429748c900bd6fe7d6b6109e5
DIST httptunnel-3.3_p20180119.tar.gz 376338 BLAKE2B 6625a0ef0bef7afad4ca9b5791abe51d72553877c31dfcb4e4d0bfd6d0e3bf3a0a9f7c529db6a9f9c60726e7e79284959ed8a8bf64e1165e40265341f39cbaf6 SHA512 593efe9ebdc3c41338306e5038cacd63ec171d228ebf13ba52949c353b1d45666bc836ce34102735a383b6cc91f2df1c01e87c2ab1cf5e650fe5fe7fcc658de0
diff --git a/net-vpn/httptunnel/files/httptunnel-3.3-fix_write_stdin.patch b/net-vpn/httptunnel/files/httptunnel-3.3-fix_write_stdin.patch
deleted file mode 100644
index 904df6f91159..000000000000
--- a/net-vpn/httptunnel/files/httptunnel-3.3-fix_write_stdin.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -dur httptunnel-3.3/common.c httptunnel-3.3-fix_write_stdin/common.c
---- httptunnel-3.3/common.c 2001-02-25 12:45:41.000000000 +0100
-+++ httptunnel-3.3-fix_write_stdin/common.c 2007-06-20 21:38:54.000000000 +0200
-@@ -314,7 +314,7 @@
-
- /* If fd == 0, then we are using --stdin-stdout so write to stdout,
- * not fd. */
-- m = write_all (fd ? fd : 0, buf, (size_t)n);
-+ m = write_all (fd ? fd : 1, buf, (size_t)n);
- log_annoying ("write_all (%d, %p, %d) = %d", fd ? fd : 1, buf, n, m);
- return m;
- }
diff --git a/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild b/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild
deleted file mode 100644
index f5887a74bbf4..000000000000
--- a/net-vpn/httptunnel/httptunnel-3.3-r2.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="httptunnel can create IP tunnels through firewalls/proxies using HTTP"
-HOMEPAGE="https://github.com/larsbrinkhoff/httptunnel"
-SRC_URI="http://www.nocrew.org/software/${PN}/${P}.tar.gz"
-LICENSE="GPL-2"
-KEYWORDS="amd64 ppc x86"
-SLOT="0"
-
-PATCHES=(
- "${FILESDIR}"/${P}-fix_write_stdin.patch
-)