diff options
author | Leo <thinkabit.ukim@gmail.com> | 2019-10-21 07:47:12 -0300 |
---|---|---|
committer | Sören Tempel <soeren+git@soeren-tempel.net> | 2019-10-25 17:51:02 +0200 |
commit | d7a8c44b9aa0cebf17cbe2c192adbd13b9fd0aa0 (patch) | |
tree | f67f06882c4ff770fcfee00fa1ebf371759703c5 /community/6tunnel | |
parent | 658966f8ac0168fd00883d33f42affe5c099ffb3 (diff) | |
download | aports-d7a8c44b9aa0cebf17cbe2c192adbd13b9fd0aa0.tar.bz2 aports-d7a8c44b9aa0cebf17cbe2c192adbd13b9fd0aa0.tar.xz |
community/6tunnel: upgrade to 0.13
Diffstat (limited to 'community/6tunnel')
-rw-r--r-- | community/6tunnel/APKBUILD | 27 | ||||
-rw-r--r-- | community/6tunnel/add-runit.patch | 26 | ||||
-rw-r--r-- | community/6tunnel/fix-help.patch | 21 |
3 files changed, 9 insertions, 65 deletions
diff --git a/community/6tunnel/APKBUILD b/community/6tunnel/APKBUILD index e2e399ec9b..cb21971056 100644 --- a/community/6tunnel/APKBUILD +++ b/community/6tunnel/APKBUILD @@ -1,39 +1,30 @@ # Contributor: Stuart Cardall <developer@it-offshore.co.uk> # Maintainer: Stuart Cardall <developer@it-offshore.co.uk> pkgname=6tunnel -pkgver=0.12 -pkgrel=1 +pkgver=0.13 +pkgrel=0 pkgdesc="TCP proxy for non-IPv6 applications" url="http://toxygen.net/6tunnel" arch="all" -license="GPL-2.0" +license="GPL-2.0-only" makedepends="automake autoconf" subpackages="$pkgname-doc" -source="$pkgname-$pkgver.tar.gz::https://github.com/wojtekka/$pkgname/archive/$pkgver.tar.gz - fix-help.patch - add-runit.patch - " -builddir="$srcdir/"$pkgname-$pkgver +source="$pkgname-$pkgver.tar.gz::https://github.com/wojtekka/6tunnel/archive/$pkgver.tar.gz" build() { - cd "$builddir" autoreconf --install ./configure \ --build=$CBUILD \ --host=$CHOST \ --prefix=/usr \ - --mandir=/usr/share/man \ - || return 1 - make || return 1 + --mandir=/usr/share/man + make } package() { - cd "$builddir" - make DESTDIR="$pkgdir" install || return 1 + make DESTDIR="$pkgdir" install mkdir -p "$pkgdir"/usr/share/6tunnel - install -m644 contrib/* "$pkgdir"/usr/share/6tunnel || return 1 + install -m644 contrib/* "$pkgdir"/usr/share/6tunnel } -sha512sums="8d6148fec0d10b4eaad0c7b646a38b1e1f2dd2ca5f4c7b34e99fea67e5dde8a6b8d150a0bca777902dccb468f4ddf78d1fc6e3a73581314492de1ecccbb03e30 6tunnel-0.12.tar.gz -20e6dbce54287fabdac12969ea63df598c4ed4e8a546b3dab71538ec0a942188ab7d0c91212e78f213f4fff953cf93f2462a1a858e01738ad0fce9d75ead088c fix-help.patch -a4544ce649ddc1a2855733116a9320f544d185f8dd04a4b7edd0a86ebc5bc0ef3e19f44841a92bbd3752afd257bb05e6b30f9669f75f8ed0f2ace15c0f44e3da add-runit.patch" +sha512sums="6b6f41e8dabd96a7997a467424865ab7d4e96442a7a91247a869959630a1606935d64cb0b2972264333d35b55f590d781a0cf987013bf8d1432b6fa81591df1b 6tunnel-0.13.tar.gz" diff --git a/community/6tunnel/add-runit.patch b/community/6tunnel/add-runit.patch deleted file mode 100644 index 9c006a4766..0000000000 --- a/community/6tunnel/add-runit.patch +++ /dev/null @@ -1,26 +0,0 @@ -From: Stuart Cardall <developer@it-offshore.co.uk> -Date: Fri, 10 Feb 2017 15:26:30 +0000 -Subject: [PATCH] add contrib/runit.run - -Adds example run script for service supervision with runit. - -Alpine notes: -* This patch is ported from upstream commit: - https://github.com/wojtekka/6tunnel/commit/f800eb1fe5b54ad1022c1bebd2a41a650b86752d - -new file mode 100755 -index 0000000..d87789e ---- /dev/null -+++ b/contrib/runit.run -@@ -0,0 +1,11 @@ -+#!/bin/sh -+# -+# example run script for service supervision with runit -+# http://smarden.org/runit/ -+# -+# redirect ipv4 port 80 to internal ipv6 port 80 & drop privileges -+# -+exec 2>&1 -+exec 6tunnel -u nobody -d -p /run/80.pid 80 a:dead:beef:1 80 -+ -+ diff --git a/community/6tunnel/fix-help.patch b/community/6tunnel/fix-help.patch deleted file mode 100644 index f24ffc25bc..0000000000 --- a/community/6tunnel/fix-help.patch +++ /dev/null @@ -1,21 +0,0 @@ -From: Stuart Cardall <developer@it-offshore.co.uk> -Date: Fri, 10 Feb 2017 15:26:30 +0000 -Subject: [PATCH] fix help message - -Adds -u option to help message. - -Alpine notes: -* This patch is ported from upstream commit: - https://github.com/wojtekka/6tunnel/commit/f800eb1fe5b54ad1022c1bebd2a41a650b86752d - -index c33865a..b8d551e 100644 ---- a/6tunnel.c -+++ b/6tunnel.c -@@ -460,6 +460,7 @@ - " -d don't detach\n" - " -f force tunneling (even if remotehost isn't resolvable)\n" - " -h print hex dump of packets\n" -+" -u change UID and GID after bind()\n" - " -i act like irc proxy and ask for password\n" - " -I send specified password to the irc server\n" - " -l bind to specified address\n" |