--- Makefile (revision 379206) +++ Makefile (working copy) @@ -2,8 +2,7 @@ # $FreeBSD$ PORTNAME= ansible -PORTVERSION= 1.8.2 -PORTREVISION= 3 +PORTVERSION= 1.8.4 CATEGORIES= sysutils python MASTER_SITES= http://releases.ansible.com/ansible/ --- distinfo (revision 379206) +++ distinfo (working copy) @@ -1,2 +1,2 @@ -SHA256 (ansible-1.8.2.tar.gz) = 2cd01ff4d67acb410bae0a9438956f6fc36d01babd956b0dc3b700620f2372b9 -SIZE (ansible-1.8.2.tar.gz) = 754435 +SHA256 (ansible-1.8.4.tar.gz) = d37c04b3abce9b036a6c8311fccb360c5cbc3ec895445f805243b0448d239ec1 +SIZE (ansible-1.8.4.tar.gz) = 758916 --- files/patch-lib_ansible_modules_core_database_postgresql_postgresql__privs.py (revision 379206) +++ files/patch-lib_ansible_modules_core_database_postgresql_postgresql__privs.py (working copy) @@ -1,20 +0,0 @@ - -$FreeBSD$ - ---- lib/ansible/modules/core/database/postgresql/postgresql_privs.py.orig -+++ lib/ansible/modules/core/database/postgresql/postgresql_privs.py -@@ -462,10 +462,13 @@ - if obj_type == 'group': - set_what = ','.join(pg_quote_identifier(i, 'role') for i in obj_ids) - else: -+ # function types are already quoted above -+ if obj_type != 'function': -+ obj_ids = [pg_quote_identifier(i, 'table') for i in obj_ids] - # Note: obj_type has been checked against a set of string literals - # and privs was escaped when it was parsed - set_what = '%s ON %s %s' % (','.join(privs), obj_type, -- ','.join(pg_quote_identifier(i, 'table') for i in obj_ids)) -+ ','.join(obj_ids)) - - # for_whom: SQL-fragment specifying for whom to set the above - if roles == 'PUBLIC':