From owner-svn-ports-all@freebsd.org Sat Mar 17 10:44:19 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 B6C48F5B7C5; Sat, 17 Mar 2018 10:44:19 +0000 (UTC) (envelope-from sunpoet@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 486D07412B; Sat, 17 Mar 2018 10:44:19 +0000 (UTC) (envelope-from sunpoet@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 1F36911603; Sat, 17 Mar 2018 10:44:19 +0000 (UTC) (envelope-from sunpoet@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id w2HAiIgG059788; Sat, 17 Mar 2018 10:44:18 GMT (envelope-from sunpoet@FreeBSD.org) Received: (from sunpoet@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id w2HAiIjO059786; Sat, 17 Mar 2018 10:44:18 GMT (envelope-from sunpoet@FreeBSD.org) Message-Id: <201803171044.w2HAiIjO059786@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sunpoet set sender to sunpoet@FreeBSD.org using -f From: Sunpoet Po-Chuan Hsieh Date: Sat, 17 Mar 2018 10:44:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r464783 - head/www/radicale X-SVN-Group: ports-head X-SVN-Commit-Author: sunpoet X-SVN-Commit-Paths: head/www/radicale X-SVN-Commit-Revision: 464783 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: Sat, 17 Mar 2018 10:44:20 -0000 Author: sunpoet Date: Sat Mar 17 10:44:18 2018 New Revision: 464783 URL: https://svnweb.freebsd.org/changeset/ports/464783 Log: Convert to options dependency helper - Fix indent - Add GitHub repository to WWW - Take maintainership Modified: head/www/radicale/Makefile head/www/radicale/pkg-descr Modified: head/www/radicale/Makefile ============================================================================== --- head/www/radicale/Makefile Sat Mar 17 10:44:12 2018 (r464782) +++ head/www/radicale/Makefile Sat Mar 17 10:44:18 2018 (r464783) @@ -1,44 +1,39 @@ # Created by: Mark Felder # $FreeBSD$ -PORTNAME= radicale -PORTVERSION= 1.1.6 -CATEGORIES= www python -MASTER_SITES= CHEESESHOP -PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} -DISTNAME= Radicale-${PORTVERSION} +PORTNAME= radicale +PORTVERSION= 1.1.6 +CATEGORIES= www python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= Radicale-${PORTVERSION} -MAINTAINER= ports@FreeBSD.org -COMMENT= Python based CalDAV/CardDAV server +MAINTAINER= sunpoet@FreeBSD.org +COMMENT= Python based CalDAV/CardDAV server -LICENSE= GPLv3 +LICENSE= GPLv3 -USE_PYTHON= autoplist distutils +USE_PYTHON= autoplist distutils NO_ARCH= yes -USERS= radicale -GROUPS= radicale -USE_RC_SUBR= radicale -SUB_LIST+= USERS="${USERS}" PYTHON_CMD="${PYTHON_CMD}" +USERS= radicale +GROUPS= radicale +USE_RC_SUBR= radicale +SUB_LIST= USERS="${USERS}" PYTHON_CMD="${PYTHON_CMD}" -OPTIONS_DEFINE= HTTP LDAP -HTTP_DESC= HTTP authentication support +OPTIONS_DEFINE= HTTP LDAP +HTTP_DESC= HTTP authentication support +HTTP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}requests1>=0:www/py-requests1@${FLAVOR} +LDAP_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}ldap>=0:net/py-ldap@${FLAVOR} + .include .if ${PORT_OPTIONS:MHTTP} || ${PORT_OPTIONS:MLDAP} USES+= python:2.7 .else USES+= python -.endif - -.if ${PORT_OPTIONS:MHTTP} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}requests1>=0:www/py-requests1@${FLAVOR} -.endif - -.if ${PORT_OPTIONS:MLDAP} -RUN_DEPENDS+= ${PYTHON_PKGNAMEPREFIX}ldap>=0:net/py-ldap@${FLAVOR} .endif post-patch: Modified: head/www/radicale/pkg-descr ============================================================================== --- head/www/radicale/pkg-descr Sat Mar 17 10:44:12 2018 (r464782) +++ head/www/radicale/pkg-descr Sat Mar 17 10:44:18 2018 (r464783) @@ -2,3 +2,4 @@ The Radicale Project is a complete CalDAV (calendar) a server solution. WWW: http://radicale.org/ +WWW: https://github.com/Kozea/Radicale