Date: Fri, 25 Jan 2019 07:08:10 +0000 (UTC) From: Tobias Kortkamp <tobik@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r491126 - in head/net: . microsocks Message-ID: <201901250708.x0P78Awt079263@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: tobik Date: Fri Jan 25 07:08:09 2019 New Revision: 491126 URL: https://svnweb.freebsd.org/changeset/ports/491126 Log: New port: net/microsocks MicroSocks is a SOCKS5 service that you can run on your remote boxes to tunnel connections through them, if for some reason SSH does not cut it for you. WWW: https://github.com/rofl0r/microsocks PR: 233941 Submitted by: neel@neelc.org Added: head/net/microsocks/ head/net/microsocks/Makefile (contents, props changed) head/net/microsocks/distinfo (contents, props changed) head/net/microsocks/pkg-descr (contents, props changed) Modified: head/net/Makefile Modified: head/net/Makefile ============================================================================== --- head/net/Makefile Fri Jan 25 00:57:19 2019 (r491125) +++ head/net/Makefile Fri Jan 25 07:08:09 2019 (r491126) @@ -456,6 +456,7 @@ SUBDIR += mgen SUBDIR += micro_inetd SUBDIR += micro_proxy + SUBDIR += microsocks SUBDIR += minidlna SUBDIR += mininet SUBDIR += minisapserver Added: head/net/microsocks/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/microsocks/Makefile Fri Jan 25 07:08:09 2019 (r491126) @@ -0,0 +1,21 @@ +# $FreeBSD$ + +PORTNAME= microsocks +PORTVERSION= 1.0.1 +CATEGORIES= net +MASTER_SITES= http://ftp.barfooze.de/pub/sabotage/tarballs/ + +MAINTAINER= neel@neelc.org +COMMENT= Multithreaded, small, efficient SOCKS5 server + +LICENSE= MIT +LICENSE_FILE= ${WRKSRC}/COPYING + +USES= tar:xz + +PLIST_FILES= bin/${PORTNAME} + +do-install: + ${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin + +.include <bsd.port.mk> Added: head/net/microsocks/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/microsocks/distinfo Fri Jan 25 07:08:09 2019 (r491126) @@ -0,0 +1,3 @@ +TIMESTAMP = 1548399778 +SHA256 (microsocks-1.0.1.tar.xz) = 389f60fb1851601236017acda78f8650b278d2cdcd91e7843416f0f1ad521c70 +SIZE (microsocks-1.0.1.tar.xz) = 8056 Added: head/net/microsocks/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net/microsocks/pkg-descr Fri Jan 25 07:08:09 2019 (r491126) @@ -0,0 +1,5 @@ +MicroSocks is a SOCKS5 service that you can run on your remote boxes +to tunnel connections through them, if for some reason SSH does not +cut it for you. + +WWW: https://github.com/rofl0r/microsocks
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201901250708.x0P78Awt079263>