From 0baa64a4bc517b260358113176e690adc97a715d Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Tue, 14 Aug 2018 14:39:38 +0200 Subject: [PATCH 1/3] Add the carto-package.json file I added postgres 10.1.1 in reference to our fork. Although it shall be possible to build against 9.5+ versions, some of them are known to have subtle failures. See https://github.com/CartoDB/odbc_fdw/issues/71 for an example Mind that the intent of this file is the automation of the on-premise dependencies and packaging. So instead of trying to cover all the cases we shall focus on solving the problem at hand. --- carto-package.json | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 carto-package.json diff --git a/carto-package.json b/carto-package.json new file mode 100644 index 0000000..90414e1 --- /dev/null +++ b/carto-package.json @@ -0,0 +1,14 @@ +{ + "name": "postgis", + "current_version": { + "requires": { + "postgres": ">=10.1.1" + }, + "works_with": { + "builder": ">=4.12.74" + } + }, + + "exceptional_versions": { + } +} From 670ba6b2592fa010b98c99bd06d5d594330466e1 Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Tue, 14 Aug 2018 14:54:58 +0200 Subject: [PATCH 2/3] Fix package name --- carto-package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/carto-package.json b/carto-package.json index 90414e1..1abe5f8 100644 --- a/carto-package.json +++ b/carto-package.json @@ -1,5 +1,5 @@ { - "name": "postgis", + "name": "odbc_fdw", "current_version": { "requires": { "postgres": ">=10.1.1" From 39b5d1902da2d118c7b76db2aedc45d51a3679dc Mon Sep 17 00:00:00 2001 From: Rafa de la Torre Date: Tue, 14 Aug 2018 17:00:09 +0200 Subject: [PATCH 3/3] Remove the works_with --- carto-package.json | 1 - 1 file changed, 1 deletion(-) diff --git a/carto-package.json b/carto-package.json index 1abe5f8..b4f4cc6 100644 --- a/carto-package.json +++ b/carto-package.json @@ -5,7 +5,6 @@ "postgres": ">=10.1.1" }, "works_with": { - "builder": ">=4.12.74" } },