Gentoo Archives: gentoo-commits

From: Craig Andrews <candrews@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: net-misc/proxytunnel/
Date: Fri, 29 Jan 2021 14:53:08
Message-Id: 1611931981.0ba7bdbf3ea3e566e3e818972996fd5b91c05c6d.candrews@gentoo
1 commit: 0ba7bdbf3ea3e566e3e818972996fd5b91c05c6d
2 Author: Craig Andrews <candrews <AT> gentoo <DOT> org>
3 AuthorDate: Fri Jan 29 14:52:05 2021 +0000
4 Commit: Craig Andrews <candrews <AT> gentoo <DOT> org>
5 CommitDate: Fri Jan 29 14:53:01 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ba7bdbf
7
8 net-misc/proxytunnel: 1.10.20210128 version bump
9
10 Package-Manager: Portage-3.0.14, Repoman-3.0.2
11 Signed-off-by: Craig Andrews <candrews <AT> gentoo.org>
12
13 net-misc/proxytunnel/Manifest | 1 +
14 .../proxytunnel/proxytunnel-1.10.20210128.ebuild | 45 ++++++++++++++++++++++
15 2 files changed, 46 insertions(+)
16
17 diff --git a/net-misc/proxytunnel/Manifest b/net-misc/proxytunnel/Manifest
18 index ef12592d2ee..b607a10d868 100644
19 --- a/net-misc/proxytunnel/Manifest
20 +++ b/net-misc/proxytunnel/Manifest
21 @@ -1 +1,2 @@
22 DIST proxytunnel-1.10.20200907.tar.gz 54711 BLAKE2B 79b5fc459ece793997b4407679498af29c53aa495802259f95ec600665fca815f9e43cafcbf1d0407c4f7184c21e7dae3f899413dbeeaf0924034e1bbd26cddb SHA512 f04570e87a0fda024661135b6598f87f1d7407c368fe3453300a655fefedb66ade96a742223de08b500ba9fc1fdc2e6519005ea38529ceaa3c1815f5012fca84
23 +DIST proxytunnel-1.10.20210128.tar.gz 54702 BLAKE2B e873f20c37b5c0dc66a2a6767cfb8d9f73e7cfceaf99e03750eb5fd72acd33bd42281c2eec7e1a72ccecdd7fcd62c8592926c55c206aad220ed5b0b9bc3d357e SHA512 188ab239362cc7c9fd05ddaeaa85aee45c9040ac8f39f10cd0a97c2b92f49a9f5b854690b945109474492955c46b1f5c87e3251bfe68b22d3f1b3a21cf17eda0
24
25 diff --git a/net-misc/proxytunnel/proxytunnel-1.10.20210128.ebuild b/net-misc/proxytunnel/proxytunnel-1.10.20210128.ebuild
26 new file mode 100644
27 index 00000000000..e15bad2afce
28 --- /dev/null
29 +++ b/net-misc/proxytunnel/proxytunnel-1.10.20210128.ebuild
30 @@ -0,0 +1,45 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=7
35 +
36 +inherit flag-o-matic toolchain-funcs
37 +
38 +DESCRIPTION="Connect stdin and stdout to a server via an HTTPS proxy"
39 +HOMEPAGE="https://github.com/proxytunnel/proxytunnel/ https://proxytunnel.sourceforge.net/"
40 +
41 +LICENSE="GPL-2"
42 +SLOT="0"
43 +IUSE="static"
44 +
45 +RDEPEND="dev-libs/openssl:="
46 +DEPEND="${RDEPEND}
47 + app-text/asciidoc
48 + app-text/xmlto
49 + "
50 +BDEPEND="virtual/pkgconfig"
51 +
52 +DOCS=( CHANGES CREDITS INSTALL.md KNOWN_ISSUES LICENSE.txt README.md RELNOTES TODO )
53 +
54 +if [[ ${PV} == *9999 ]] ; then
55 + EGIT_REPO_URI="https://github.com/${PN}/${PN}.git"
56 + inherit git-r3
57 +else
58 + SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
59 + KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
60 +fi
61 +
62 +src_prepare() {
63 + default
64 + sed -i -e 's/libssl/libssl libcrypto/' Makefile || die "Sed failed!"
65 +}
66 +
67 +src_compile() {
68 + use static && append-ldflags -static
69 + emake CC="$(tc-getCC)"
70 +}
71 +
72 +src_install() {
73 + emake install prefix="${EPREFIX}"/usr DESTDIR="${D}"
74 + einstalldocs
75 +}