From owner-svn-ports-head@freebsd.org Sun Jun 26 13:55:01 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D8CB7B73D14; Sun, 26 Jun 2016 13:55:01 +0000 (UTC) (envelope-from pi@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 mx1.freebsd.org (Postfix) with ESMTPS id B4C382233; Sun, 26 Jun 2016 13:55:01 +0000 (UTC) (envelope-from pi@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u5QDt0bn094542; Sun, 26 Jun 2016 13:55:00 GMT (envelope-from pi@FreeBSD.org) Received: (from pi@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5QDt0hF094538; Sun, 26 Jun 2016 13:55:00 GMT (envelope-from pi@FreeBSD.org) Message-Id: <201606261355.u5QDt0hF094538@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: pi set sender to pi@FreeBSD.org using -f From: Kurt Jaeger Date: Sun, 26 Jun 2016 13:55:00 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417524 - in head/devel: . py-calendar X-SVN-Group: ports-head 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.22 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: Sun, 26 Jun 2016 13:55:01 -0000 Author: pi Date: Sun Jun 26 13:55:00 2016 New Revision: 417524 URL: https://svnweb.freebsd.org/changeset/ports/417524 Log: New port: devel/py-calendar calendar is a python library for parsing and generating iCalendar data. See RFC 5545 and 6350. http://svn.calendarserver.org/repository/calendarserver/PyCalendar/trunk WWW: http://trac.calendarserver.org/wiki/twext PR: 210262 Submitted by: Axel Rau Added: head/devel/py-calendar/ head/devel/py-calendar/Makefile (contents, props changed) head/devel/py-calendar/distinfo (contents, props changed) head/devel/py-calendar/pkg-descr (contents, props changed) Modified: head/devel/Makefile Modified: head/devel/Makefile ============================================================================== --- head/devel/Makefile Sun Jun 26 13:08:22 2016 (r417523) +++ head/devel/Makefile Sun Jun 26 13:55:00 2016 (r417524) @@ -4001,6 +4001,7 @@ SUBDIR += py-bluelet SUBDIR += py-boto SUBDIR += py-botocore + SUBDIR += py-calendar SUBDIR += py-canonicaljson SUBDIR += py-capstone SUBDIR += py-cclib Added: head/devel/py-calendar/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-calendar/Makefile Sun Jun 26 13:55:00 2016 (r417524) @@ -0,0 +1,38 @@ +# $FreeBSD$ + +PORTNAME= calendar +PORTVERSION= 0.15423 +CATEGORIES= devel python +MASTER_SITES= http://www.lechner-rau.de/downloads/ +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} +DISTNAME= pycalendar-${PORTVERSION} + +MAINTAINER= axel.rau@chaos1.de +COMMENT= Library for iCalendar/vCard data + +LICENSE= APACHE20 + +FETCH_DEPENDS= svn:devel/subversion + +USES= python:2.7 +USE_PYTHON= distutils autoplist +NO_ARCH=yes + +SVN_REPOSITORY_URL= http://svn.calendarserver.org/repository/calendarserver +SVN_TAG2= PyCalendar/trunk +SVN_CMD2= svn export -r15423 + +maint-gen-distfile: + @if [ ! -f "${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}" ] ; then \ + ${MKDIR} ${WRKDIR} ; cd ${WRKDIR} ; ${RM} -Rf ${WRKDIR}/${DISTNAME} ; \ + ${ECHO_MSG} "=> Checking out PyCalendar from svn.calendarserver.org/..."; \ + ${SVN_CMD2} ${SVN_REPOSITORY_URL}/${SVN_TAG2} > /dev/null ; \ + ${MV} trunk ${DISTNAME} ; \ + ${ECHO_MSG} "=> Creating tar archive ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX}"; \ + cd ${WRKDIR} ; tar -czf ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} ${DISTNAME} ; \ + ${RM} -Rf ${WRKDIR}/${DISTNAME} ; \ + else \ + ${ECHO_MSG} "===> ${DISTDIR}/${DISTNAME}${EXTRACT_SUFX} found." ; \ + fi + +.include Added: head/devel/py-calendar/distinfo ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-calendar/distinfo Sun Jun 26 13:55:00 2016 (r417524) @@ -0,0 +1,3 @@ +TIMESTAMP = 1464107977 +SHA256 (pycalendar-0.15423.tar.gz) = 1002682bc4d617c063b596103d8918068bc3eb3a1ac47b5d8f59bb881c61bd6f +SIZE (pycalendar-0.15423.tar.gz) = 128963 Added: head/devel/py-calendar/pkg-descr ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/devel/py-calendar/pkg-descr Sun Jun 26 13:55:00 2016 (r417524) @@ -0,0 +1,5 @@ +calendar is a python library for parsing and generating iCalendar data. +See RFC 5545 and 6350. +http://svn.calendarserver.org/repository/calendarserver/PyCalendar/trunk + +WWW: http://trac.calendarserver.org/wiki/twext