www/calendarserver: add patch to cope with databases/sqlparse in version 0.1.16

PR:		204038
Submitted by:	Axel Rau <Axel.Rau@Chaos1.DE> (maintainer)
This commit is contained in:
Kurt Jaeger 2015-10-26 21:03:57 +00:00
parent 9cdebd4c46
commit 2d3f2a4339
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=400207
2 changed files with 12 additions and 1 deletions

View file

@ -2,7 +2,7 @@
PORTNAME= calendarserver
PORTVERSION= 5.1
PORTREVISION= 5
PORTREVISION= 6
CATEGORIES= www python
MASTER_SITES= LOCAL/wg
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}

View file

@ -0,0 +1,11 @@
--- txdav/common/datastore/sql_schema/current.sql.orig 2015-10-26 13:54:07.000000000 +0000
+++ txdav/common/datastore/sql_schema/current.sql 2015-10-26 12:59:45.000000000 +0000
@@ -62,7 +62,7 @@
--------------
create table CALENDAR (
- RESOURCE_ID integer primary key default nextval('RESOURCE_ID_SEQ') -- implicit index
+ RESOURCE_ID integer primary key default nextval('RESOURCE_ID_SEQ')
);
----------------------------