From owner-svn-ports-all@freebsd.org Thu Oct 29 04:14:39 2020 Return-Path: Delivered-To: svn-ports-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id A742C43F0E1; Thu, 29 Oct 2020 04:14:39 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4CMBsq3kV3z46K1; Thu, 29 Oct 2020 04:14:39 +0000 (UTC) (envelope-from mi@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 5F2A827CB5; Thu, 29 Oct 2020 04:14:39 +0000 (UTC) (envelope-from mi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id 09T4EdeQ001794; Thu, 29 Oct 2020 04:14:39 GMT (envelope-from mi@FreeBSD.org) Received: (from mi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id 09T4EcWv001791; Thu, 29 Oct 2020 04:14:38 GMT (envelope-from mi@FreeBSD.org) Message-Id: <202010290414.09T4EcWv001791@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: mi set sender to mi@FreeBSD.org using -f From: Mikhail Teterin Date: Thu, 29 Oct 2020 04:14:38 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r553580 - in head/mail/cone: . files X-SVN-Group: ports-head X-SVN-Commit-Author: mi X-SVN-Commit-Paths: in head/mail/cone: . files X-SVN-Commit-Revision: 553580 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.33 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: Thu, 29 Oct 2020 04:14:39 -0000 Author: mi Date: Thu Oct 29 04:14:38 2020 New Revision: 553580 URL: https://svnweb.freebsd.org/changeset/ports/553580 Log: Upgrade from 1.0 to 1.1. Sponsored by: Association for Advancement of Marsupial Species Added: head/mail/cone/files/patch-c++ (contents, props changed) Modified: head/mail/cone/Makefile head/mail/cone/distinfo head/mail/cone/files/patch-libmail_envelope.H Modified: head/mail/cone/Makefile ============================================================================== --- head/mail/cone/Makefile Thu Oct 29 03:18:58 2020 (r553579) +++ head/mail/cone/Makefile Thu Oct 29 04:14:38 2020 (r553580) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= cone -PORTVERSION= 1.0 -PORTREVISION= 3 +PORTVERSION= 1.1 CATEGORIES= mail # This is for beta versions, leave it in please: #MASTER_SITES= http://www.courier-mta.org/beta/${PORTNAME}/ \ Modified: head/mail/cone/distinfo ============================================================================== --- head/mail/cone/distinfo Thu Oct 29 03:18:58 2020 (r553579) +++ head/mail/cone/distinfo Thu Oct 29 04:14:38 2020 (r553580) @@ -1,3 +1,3 @@ -TIMESTAMP = 1537265861 -SHA256 (cone-1.0.tar.bz2) = cffb5ae0292bd461d3a8cdddd09dccf43855f752ea4f4ae8c2aeacf67b69f9e9 -SIZE (cone-1.0.tar.bz2) = 3793288 +TIMESTAMP = 1603844375 +SHA256 (cone-1.1.tar.bz2) = 7ed5f50e65420063621ab4c7127ae9177944655490e98c5b3f202c57e715d3f0 +SIZE (cone-1.1.tar.bz2) = 4017709 Added: head/mail/cone/files/patch-c++ ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/mail/cone/files/patch-c++ Thu Oct 29 04:14:38 2020 (r553580) @@ -0,0 +1,23 @@ +These aren't a problem for GNU C++, but clang throws an error. +The fix is from upstream (by Sam Varshavchik). + + -mi + +--- libmail/mboxadd.H 2017-03-05 20:28:33.000000000 -0500 ++++ libmail/mboxadd.H 2020-10-29 00:01:46.241648000 -0400 +@@ -29,5 +29,5 @@ + FILE *fp; + +- ptr mboxAccount; ++ mail::ptr mboxAccount; + + void reportProgress(size_t bytesCompleted, +--- libmail/smtpfolder.H 2017-03-05 20:28:33.000000000 -0500 ++++ libmail/smtpfolder.H 2020-10-29 00:09:19.515780000 -0400 +@@ -85,5 +85,5 @@ + class smtpAddMessage : public addMessage { + +- ptr myServer; ++ mail::ptr myServer; + smtpInfo myInfo; + mail::callback &myCallback; Modified: head/mail/cone/files/patch-libmail_envelope.H ============================================================================== --- head/mail/cone/files/patch-libmail_envelope.H Thu Oct 29 03:18:58 2020 (r553579) +++ head/mail/cone/files/patch-libmail_envelope.H Thu Oct 29 04:14:38 2020 (r553580) @@ -1,4 +1,4 @@ ---- libmail/envelope.H.orig 2014-01-06 19:37:10 UTC +--- libmail/envelope.H 2014-01-06 19:37:10 UTC +++ libmail/envelope.H @@ -8,6 +8,7 @@