From owner-svn-ports-head@freebsd.org Wed Mar 21 22:40:09 2018 Return-Path: Delivered-To: svn-ports-head@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 D97CDC75; Wed, 21 Mar 2018 22:40:08 +0000 (UTC) (envelope-from tobik@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 7C4776C88F; Wed, 21 Mar 2018 22:40:08 +0000 (UTC) (envelope-from tobik@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 77116A4A; Wed, 21 Mar 2018 22:40:08 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2LMe8nc035841; Wed, 21 Mar 2018 22:40:08 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2LMe8ID035836; Wed, 21 Mar 2018 22:40:08 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201803212240.w2LMe8ID035836@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Wed, 21 Mar 2018 22:40:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r465245 - head/mail/alpine X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: head/mail/alpine X-SVN-Commit-Revision: 465245 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.25 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Mar 2018 22:40:09 -0000 Author: tobik Date: Wed Mar 21 22:40:07 2018 New Revision: 465245 URL: https://svnweb.freebsd.org/changeset/ports/465245 Log: mail/alpine: Update to 2.21.1 - Move to new master site. The old one is gone. - The maildir patch is gone too, so remove the MAILDIR option for now. - While here add LICENSE_FILE and fix plist PR: 226790 Submitted by: Alexandre C. GuimarĂ£es Approved by: Marco Beishuizen (maintainer) Modified: head/mail/alpine/Makefile head/mail/alpine/distinfo head/mail/alpine/pkg-descr head/mail/alpine/pkg-plist Modified: head/mail/alpine/Makefile ============================================================================== --- head/mail/alpine/Makefile Wed Mar 21 22:36:54 2018 (r465244) +++ head/mail/alpine/Makefile Wed Mar 21 22:40:07 2018 (r465245) @@ -1,18 +1,17 @@ # $FreeBSD$ PORTNAME?= alpine -PORTVERSION= 2.21 -PORTREVISION?= 1 +PORTVERSION= 2.21.1 CATEGORIES?= mail news ipv6 -MASTER_SITES= http://alpine.freeiz.com/alpine/release/src/ -DIST_SUBDIR= alpine-${PORTVERSION} +MASTER_SITES= http://repo.or.cz/alpine.git/snapshot/${GIT_COMMIT}${EXTRACT_SUFX}?dummy=/ MAINTAINER= mbeis@xs4all.nl COMMENT?= Mail and news client descended from Pine LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE -USES+= ssl libtool ncurses tar:xz gettext-runtime +USES+= ssl libtool ncurses gettext-runtime GNU_CONFIGURE= yes MAKE_JOBS_UNSAFE= yes CONFIGURE_ARGS+= --with-debug-level=2 \ @@ -28,11 +27,16 @@ CONFIGURE_ARGS+= --with-debug-level=2 \ --with-ssl-lib-dir=${OPENSSLLIB} \ --with-ssl-certs-dir=${OPENSSLDIR}/certs MAKE_ARGS+= CC="${CC}" CXX="${CXX}" GCCCFLAGS="${CFLAGS}" +# When you update please double check that the commit corresponds to +# the actual version you've set in PORTVERSION. +GIT_COMMIT= 843b2f16abfd949e09b1c5465387b1b0f724994a +GIT_COMMIT_SHORT= 843b2f1 +WRKSRC= ${WRKDIR}/alpine-${GIT_COMMIT_SHORT} -OPTIONS_DEFINE= ASPELL CONS25 DOCS IPV6 LDAP MAILDIR MOUSE PASSFILE NLS THREADS +OPTIONS_DEFINE= ASPELL CONS25 DOCS IPV6 LDAP MOUSE NLS PASSFILE THREADS OPTIONS_DEFAULT= ASPELL MOUSE THREADS .if defined(PICO_ALPINE_SLAVE) -OPTIONS_EXCLUDE= CONS25 IPV6 LDAP MAILDIR PASSFILE +OPTIONS_EXCLUDE= CONS25 IPV6 LDAP PASSFILE .endif CONS25_DESC= Add a patch to support color for default console @@ -55,10 +59,6 @@ IPV6_CONFIGURE_WITH= ipv6 LDAP_USE= openldap=yes LDAP_CONFIGURE_WITH= ldap LDAP_CONFIGURE_ON= --with-ldap-dir=${LOCALBASE} - -# Option MAILDIR -MAILDIR_PATCH_SITES= http://alpine.freeiz.com/alpine/patches/alpine-${PORTVERSION}/ -MAILDIR_PATCHFILES+= maildir.patch.gz:-p1 # Option MOUSE MOUSE_CONFIGURE_ENABLE= mouse Modified: head/mail/alpine/distinfo ============================================================================== --- head/mail/alpine/distinfo Wed Mar 21 22:36:54 2018 (r465244) +++ head/mail/alpine/distinfo Wed Mar 21 22:40:07 2018 (r465245) @@ -1,5 +1,3 @@ -TIMESTAMP = 1490818618 -SHA256 (alpine-2.21/alpine-2.21.tar.xz) = 6030b6881b8168546756ab3a5e43628d8d564539b0476578e287775573a77438 -SIZE (alpine-2.21/alpine-2.21.tar.xz) = 4720856 -SHA256 (alpine-2.21/maildir.patch.gz) = 1229ea9ec4e150dda1d2da866730a777148874e4667c54cd2c488101b5db8099 -SIZE (alpine-2.21/maildir.patch.gz) = 33789 +TIMESTAMP = 1521633649 +SHA256 (alpine-2.21.1.tar.gz) = 1583278a2adbb112e584879cac0faaf157f8a9a478559d7e4514d53219cce316 +SIZE (alpine-2.21.1.tar.gz) = 7490140 Modified: head/mail/alpine/pkg-descr ============================================================================== --- head/mail/alpine/pkg-descr Wed Mar 21 22:36:54 2018 (r465244) +++ head/mail/alpine/pkg-descr Wed Mar 21 22:40:07 2018 (r465245) @@ -18,4 +18,4 @@ Alpine's basic feature set includes: Alpine supports MIME (Multipurpose Internet Mail Extensions), an Internet Standard for representing multipart and multimedia data in email. -WWW: http://alpine.freeiz.com/alpine/ +WWW: http://repo.or.cz/alpine.git Modified: head/mail/alpine/pkg-plist ============================================================================== --- head/mail/alpine/pkg-plist Wed Mar 21 22:36:54 2018 (r465244) +++ head/mail/alpine/pkg-plist Wed Mar 21 22:40:07 2018 (r465245) @@ -1,7 +1,7 @@ bin/alpine bin/rpdump bin/rpload -%%ETCDIR%%.conf.sample +etc/alpine.conf.sample man/man1/alpine.1.gz man/man1/rpdump.1.gz man/man1/rpload.1.gz