From owner-svn-ports-all@freebsd.org Mon Mar 26 01:08:26 2018 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 5946DF5A630; Mon, 26 Mar 2018 01:08:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 0635182AB3; Mon, 26 Mar 2018 01:08:26 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id F147825C81; Mon, 26 Mar 2018 01:08:25 +0000 (UTC) (envelope-from yuri@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2Q18PcV028455; Mon, 26 Mar 2018 01:08:25 GMT (envelope-from yuri@FreeBSD.org) Received: (from yuri@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2Q18Pj4028451; Mon, 26 Mar 2018 01:08:25 GMT (envelope-from yuri@FreeBSD.org) Message-Id: <201803260108.w2Q18Pj4028451@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: yuri set sender to yuri@FreeBSD.org using -f From: Yuri Victorovich Date: Mon, 26 Mar 2018 01:08:25 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465556 - in head/net-im: . toxbot X-SVN-Group: ports-head X-SVN-Commit-Author: yuri X-SVN-Commit-Paths: in head/net-im: . toxbot X-SVN-Commit-Revision: 465556 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 26 Mar 2018 01:08:26 -0000 Author: yuri Date: Mon Mar 26 01:08:25 2018 New Revision: 465556 URL: https://svnweb.freebsd.org/changeset/ports/465556 Log: New port: net-im/toxbot: Groupchat control bot for Tox Added: head/net-im/toxbot/ head/net-im/toxbot/Makefile (contents, props changed) head/net-im/toxbot/distinfo (contents, props changed) head/net-im/toxbot/pkg-descr (contents, props changed) Modified: head/net-im/Makefile Modified: head/net-im/Makefile ============================================================================== --- head/net-im/Makefile Mon Mar 26 01:05:20 2018 (r465555) +++ head/net-im/Makefile Mon Mar 26 01:08:25 2018 (r465556) @@ -193,6 +193,7 @@ SUBDIR += tkabber-plugins SUBDIR += tox SUBDIR += tox12 + SUBDIR += toxbot SUBDIR += toxic SUBDIR += toxins SUBDIR += turpial Added: head/net-im/toxbot/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/toxbot/Makefile Mon Mar 26 01:08:25 2018 (r465556) @@ -0,0 +1,27 @@ +# $FreeBSD$ + +PORTNAME= toxbot +DISTVERSION= g20180325 +CATEGORIES= net-im net-p2p + +MAINTAINER= yuri@FreeBSD.org +COMMENT= Groupchat control bot for Tox + +LICENSE= GPLv3 +LICENSE_FILE= ${WRKSRC}/COPYING + +LIB_DEPENDS= libtoxcore.so:net-im/tox + +USE_GITHUB= yes +GH_ACCOUNT= JFreegman +GH_PROJECT= ToxBot +GH_TAGNAME= 1e4af05 + +USES= gmake pkgconfig + +PLIST_FILES= bin/${PORTNAME} + +post-install: + @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/${PORTNAME} + +.include Added: head/net-im/toxbot/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/toxbot/distinfo Mon Mar 26 01:08:25 2018 (r465556) @@ -0,0 +1,3 @@ +TIMESTAMP = 1522025608 +SHA256 (JFreegman-ToxBot-g20180325-1e4af05_GH0.tar.gz) = 1dff646f0ce792febb2b2a3ace272c8e38308d4f364cdfc2ebdaa24d41c5d6f6 +SIZE (JFreegman-ToxBot-g20180325-1e4af05_GH0.tar.gz) = 23473 Added: head/net-im/toxbot/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/net-im/toxbot/pkg-descr Mon Mar 26 01:08:25 2018 (r465556) @@ -0,0 +1,7 @@ +ToxBot is a remotely controlled Tox bot whose purpose is to auto-invite friends +to Tox groupchats. It accepts friend requests automatically and will auto-invite +friends to the specified group chat (default is group 0 unless set otherwise). +It also has the ability to create and leave groups, password protect invites, +and send messages to groups. + +WWW: https://github.com/JFreegman/ToxBot