From owner-svn-ports-all@freebsd.org Sun Jan 28 19:29:27 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 D1640EDAC18; Sun, 28 Jan 2018 19:29:27 +0000 (UTC) (envelope-from cs@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 865E86B15F; Sun, 28 Jan 2018 19:29:27 +0000 (UTC) (envelope-from cs@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 815571DDAF; Sun, 28 Jan 2018 19:29:27 +0000 (UTC) (envelope-from cs@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w0SJTRd5091177; Sun, 28 Jan 2018 19:29:27 GMT (envelope-from cs@FreeBSD.org) Received: (from cs@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w0SJTRmR091173; Sun, 28 Jan 2018 19:29:27 GMT (envelope-from cs@FreeBSD.org) Message-Id: <201801281929.w0SJTRmR091173@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: cs set sender to cs@FreeBSD.org using -f From: Carlo Strub Date: Sun, 28 Jan 2018 19:29:27 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r460228 - in head/mail: . sisyphus X-SVN-Group: ports-head X-SVN-Commit-Author: cs X-SVN-Commit-Paths: in head/mail: . sisyphus X-SVN-Commit-Revision: 460228 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: Sun, 28 Jan 2018 19:29:28 -0000 Author: cs Date: Sun Jan 28 19:29:26 2018 New Revision: 460228 URL: https://svnweb.freebsd.org/changeset/ports/460228 Log: Sisyphus is a junk mail handler of the latest generation. It has the following features: - requires zero configuration, neither on the server nor on the client - works with any MTA and any client - learns about your preferences based on all messages in your inbox and your junk folder - can handle multiple mail accounts with independant junk mail preferences - requires minimal resources, e.g. learning over 50000 mails and keeping track of roughly 90000 words requires only 10MB of storage WWW: https://github.com/carlostrub/sisyphus Added: head/mail/sisyphus/ head/mail/sisyphus/Makefile (contents, props changed) head/mail/sisyphus/distinfo (contents, props changed) head/mail/sisyphus/pkg-descr (contents, props changed) Modified: head/mail/Makefile Modified: head/mail/Makefile ============================================================================== --- head/mail/Makefile Sun Jan 28 17:40:47 2018 (r460227) +++ head/mail/Makefile Sun Jan 28 19:29:26 2018 (r460228) @@ -643,6 +643,7 @@ SUBDIR += sieve-connect SUBDIR += sigrot SUBDIR += simscan + SUBDIR += sisyphus SUBDIR += slapd-cyrus SUBDIR += sma SUBDIR += smfsav Added: head/mail/sisyphus/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/sisyphus/Makefile Sun Jan 28 19:29:26 2018 (r460228) @@ -0,0 +1,34 @@ +# Created by: Carlo Strub +# $FreeBSD$ + +PORTNAME= sisyphus +PORTVERSION= 1.1.1 +DISTVERSIONPREFIX= v +CATEGORIES= mail + +MAINTAINER= cs@FreeBSD.org +COMMENT= Intelligent Junk Mail Handler + +LICENSE= BSD3CLAUSE + +BUILD_DEPENDS= glide:devel/go-glide + +USES= go +USE_GITHUB= yes +GH_ACCOUNT= carlostrub +GO_PKGNAME= github.com/carlostrub/sisyphus +PLIST_FILES= bin/sisyphus + +post-configure: + @(cd ${WRKSRC}; glide install) + +do-build: + @(cd ${GO_WRKSRC}; ${SETENV} ${MAKE_ENV} ${GO_ENV} ${GO_CMD} build -o sisyphus/sisyphus -ldflags "-X main.version=${PORTVERSION}" -v sisyphus/sisyphus.go) + +do-install: + @(cd ${GO_WRKSRC}; ${MV} sisyphus/sisyphus ${STAGEDIR}/${LOCALBASE}/bin) + +post-install: + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/sisyphus + +.include Added: head/mail/sisyphus/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/sisyphus/distinfo Sun Jan 28 19:29:26 2018 (r460228) @@ -0,0 +1,3 @@ +TIMESTAMP = 1517080738 +SHA256 (carlostrub-sisyphus-v1.1.1_GH0.tar.gz) = a10cd6178a069ec0b61fab9203e4b4d0b89bad8f6bd8b191c018c90308342987 +SIZE (carlostrub-sisyphus-v1.1.1_GH0.tar.gz) = 1087010 Added: head/mail/sisyphus/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/sisyphus/pkg-descr Sun Jan 28 19:29:26 2018 (r460228) @@ -0,0 +1,12 @@ +Sisyphus is a junk mail handler of the latest generation. It has the following +features: + +- requires zero configuration, neither on the server nor on the client +- works with any MTA and any client +- learns about your preferences based on all messages in your inbox and your + junk folder +- can handle multiple mail accounts with independant junk mail preferences +- requires minimal resources, e.g. learning over 50000 mails and keeping track + of roughly 90000 words requires only 10MB of storage + +WWW: https://github.com/carlostrub/sisyphus