diff options
author | pi <pi@FreeBSD.org> | 2015-10-27 05:03:57 +0800 |
---|---|---|
committer | pi <pi@FreeBSD.org> | 2015-10-27 05:03:57 +0800 |
commit | aac3ab1fc3633139d8fcd4902645cb1a1a2c508f (patch) | |
tree | 39725ad5831d82c98309ad43d899459c8d54dbce /www/calendarserver | |
parent | 6ea8944ad17d7502181ab4fb9d90e91434d323c9 (diff) | |
download | freebsd-ports-gnome-aac3ab1fc3633139d8fcd4902645cb1a1a2c508f.tar.gz freebsd-ports-gnome-aac3ab1fc3633139d8fcd4902645cb1a1a2c508f.tar.zst freebsd-ports-gnome-aac3ab1fc3633139d8fcd4902645cb1a1a2c508f.zip |
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)
Diffstat (limited to 'www/calendarserver')
-rw-r--r-- | www/calendarserver/Makefile | 2 | ||||
-rw-r--r-- | www/calendarserver/files/patch-txdav__common__datastore__sql_schema__current.sql | 11 |
2 files changed, 12 insertions, 1 deletions
diff --git a/www/calendarserver/Makefile b/www/calendarserver/Makefile index 96a34fae6a77..f2410897d665 100644 --- a/www/calendarserver/Makefile +++ b/www/calendarserver/Makefile @@ -2,7 +2,7 @@ PORTNAME= calendarserver PORTVERSION= 5.1 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= www python MASTER_SITES= LOCAL/wg PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} diff --git a/www/calendarserver/files/patch-txdav__common__datastore__sql_schema__current.sql b/www/calendarserver/files/patch-txdav__common__datastore__sql_schema__current.sql new file mode 100644 index 000000000000..f7bd44b3486e --- /dev/null +++ b/www/calendarserver/files/patch-txdav__common__datastore__sql_schema__current.sql @@ -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') + ); + + ---------------------------- |