pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/time/py-icalendar Initial import of py-icalendar, pack...
details: https://anonhg.NetBSD.org/pkgsrc/rev/e9d27caca0e5
branches: trunk
changeset: 559135:e9d27caca0e5
user: wiz <wiz%pkgsrc.org@localhost>
date: Tue May 19 09:19:45 2009 +0000
description:
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:
time/py-icalendar/DESCR | 8 ++++++++
time/py-icalendar/Makefile | 29 +++++++++++++++++++++++++++++
time/py-icalendar/PLIST | 39 +++++++++++++++++++++++++++++++++++++++
time/py-icalendar/distinfo | 5 +++++
4 files changed, 81 insertions(+), 0 deletions(-)
diffs (97 lines):
diff -r 0489e7ce9892 -r e9d27caca0e5 time/py-icalendar/DESCR
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/py-icalendar/DESCR Tue May 19 09:19:45 2009 +0000
@@ -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 -r 0489e7ce9892 -r e9d27caca0e5 time/py-icalendar/Makefile
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/py-icalendar/Makefile Tue May 19 09:19:45 2009 +0000
@@ -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@localhost
+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 -r 0489e7ce9892 -r e9d27caca0e5 time/py-icalendar/PLIST
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/py-icalendar/PLIST Tue May 19 09:19:45 2009 +0000
@@ -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 -r 0489e7ce9892 -r e9d27caca0e5 time/py-icalendar/distinfo
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/time/py-icalendar/distinfo Tue May 19 09:19:45 2009 +0000
@@ -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
Home |
Main Index |
Thread Index |
Old Index