summaryrefslogtreecommitdiff
path: root/time/py-icalendar
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2009-05-19 09:19:45 +0000
committerwiz <wiz@pkgsrc.org>2009-05-19 09:19:45 +0000
commit3504ac35c09cc4a677f00ec34175608f54bd82eb (patch)
treea1be7a970013f93e912ec7c157247594246b05ac /time/py-icalendar
parent103cc81fbf3e2a3cbac0b79ef7b2ccbebc5b6381 (diff)
downloadpkgsrc-3504ac35c09cc4a677f00ec34175608f54bd82eb.tar.gz
Initial import of py-icalendar, packaged for pkgsrc-wip by mj_turner
with changed by jihbed. The iCalendar package is a parser/generator of iCalendar files for use with Python. It follows the RFC 2445 (iCalendar) specification The package can both generate and parse iCalendar files, and can easily be used as is. The aim is to make a package that is fully compliant to RFC 2445, well designed, simple to use and well documented.
Diffstat (limited to 'time/py-icalendar')
-rw-r--r--time/py-icalendar/DESCR8
-rw-r--r--time/py-icalendar/Makefile29
-rw-r--r--time/py-icalendar/PLIST39
-rw-r--r--time/py-icalendar/distinfo5
4 files changed, 81 insertions, 0 deletions
diff --git a/time/py-icalendar/DESCR b/time/py-icalendar/DESCR
new file mode 100644
index 00000000000..e0402252c45
--- /dev/null
+++ b/time/py-icalendar/DESCR
@@ -0,0 +1,8 @@
+The iCalendar package is a parser/generator of iCalendar files for
+use with Python. It follows the RFC 2445 (iCalendar) specification
+
+The package can both generate and parse iCalendar files, and can
+easily be used as is.
+
+The aim is to make a package that is fully compliant to RFC 2445,
+well designed, simple to use and well documented.
diff --git a/time/py-icalendar/Makefile b/time/py-icalendar/Makefile
new file mode 100644
index 00000000000..d864017ab3a
--- /dev/null
+++ b/time/py-icalendar/Makefile
@@ -0,0 +1,29 @@
+# $NetBSD: Makefile,v 1.1.1.1 2009/05/19 09:19:45 wiz Exp $
+#
+
+DISTNAME= iCalendar-1.2
+PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/Calendar/calendar/}
+CATEGORIES= time python
+MASTER_SITES= http://codespeak.net/icalendar/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= mj@turner.org.za
+HOMEPAGE= http://codespeak.net/icalendar/
+COMMENT= Python parser/generator for iCalendar files, as per RFC2445
+LICENSE= gnu-lgpl-v2.1
+
+PKG_DESTDIR_SUPPORT= user-destdir
+
+PY_PATCHPLIST= yes
+EGG_NAME= ${DISTNAME:S/C/c/}
+
+DOCDIR= ${PREFIX}/share/doc/${PKGNAME}
+
+INSTALLATION_DIRS= ${DOCDIR}
+
+# Install documentation manually
+post-install:
+ ${INSTALL_DATA} ${WRKSRC}/doc/* ${DESTDIR}${DOCDIR}
+
+.include "../../lang/python/egg.mk"
+.include "../../mk/bsd.pkg.mk"
diff --git a/time/py-icalendar/PLIST b/time/py-icalendar/PLIST
new file mode 100644
index 00000000000..8e4cdf2ccb4
--- /dev/null
+++ b/time/py-icalendar/PLIST
@@ -0,0 +1,39 @@
+@comment $NetBSD: PLIST,v 1.1.1.1 2009/05/19 09:19:45 wiz Exp $
+${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
+${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
+${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
+${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+${PYSITELIB}/icalendar/__init__.py
+${PYSITELIB}/icalendar/__init__.pyc
+${PYSITELIB}/icalendar/__init__.pyo
+${PYSITELIB}/icalendar/cal.py
+${PYSITELIB}/icalendar/cal.pyc
+${PYSITELIB}/icalendar/cal.pyo
+${PYSITELIB}/icalendar/caselessdict.py
+${PYSITELIB}/icalendar/caselessdict.pyc
+${PYSITELIB}/icalendar/caselessdict.pyo
+${PYSITELIB}/icalendar/interfaces.py
+${PYSITELIB}/icalendar/interfaces.pyc
+${PYSITELIB}/icalendar/interfaces.pyo
+${PYSITELIB}/icalendar/parser.py
+${PYSITELIB}/icalendar/parser.pyc
+${PYSITELIB}/icalendar/parser.pyo
+${PYSITELIB}/icalendar/prop.py
+${PYSITELIB}/icalendar/prop.pyc
+${PYSITELIB}/icalendar/prop.pyo
+${PYSITELIB}/icalendar/tools.py
+${PYSITELIB}/icalendar/tools.pyc
+${PYSITELIB}/icalendar/tools.pyo
+${PYSITELIB}/icalendar/util.py
+${PYSITELIB}/icalendar/util.pyc
+${PYSITELIB}/icalendar/util.pyo
+share/doc/${PKGNAME}/example.txt
+share/doc/${PKGNAME}/groupscheduled.ics
+share/doc/${PKGNAME}/groupscheduled.txt
+share/doc/${PKGNAME}/multiple.ics
+share/doc/${PKGNAME}/multiple.txt
+share/doc/${PKGNAME}/small.ics
+share/doc/${PKGNAME}/small.txt
+@dirrm share/doc/${PKGNAME}
+@dirrm ${PYSITELIB}/${EGG_INFODIR}
+@dirrm ${PYSITELIB}/icalendar
diff --git a/time/py-icalendar/distinfo b/time/py-icalendar/distinfo
new file mode 100644
index 00000000000..0e56c66542c
--- /dev/null
+++ b/time/py-icalendar/distinfo
@@ -0,0 +1,5 @@
+$NetBSD: distinfo,v 1.1.1.1 2009/05/19 09:19:45 wiz Exp $
+
+SHA1 (iCalendar-1.2.tgz) = 76caea7deb43cd299fb20bc940f305d43747fde9
+RMD160 (iCalendar-1.2.tgz) = 6809c1c2bc4688032c0145919e4ed569b0de6a04
+Size (iCalendar-1.2.tgz) = 71947 bytes