Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 8 additions & 7 deletions META.in.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"X_comment": "The pgxntool Makefile will strip out empty keys to produce a working META.json, so it's fine to leave them here.",
"X_comment": "NOTE: Don't get too cute with reformatting this file... some of the processing against it doesn't use a full JSON parser",
"X_comment": "",
"X_comment": "I've tried to put things in a logical order. Comments welcome at https://github.com/decibel/pgxntool/issues!",
"X_comment": "I've tried to put things in a logical order. Comments welcome at https://github.com/Postgres-Extensions/pgxntool/issues!",

"X_comment": "REQUIRED. Name of distribution.",
"X_comment": "Note! Distribution names currently can't contain spaces.",
Expand Down Expand Up @@ -58,13 +58,13 @@

"X_comment": "Optional. \"resources\": Web resources available for this distribution. http://pgxn.org/spec/#resources",
"resources": {
"homepage": "http://github.com/decibel/object_reference/",
"homepage": "http://github.com/Postgres-Extensions/object_reference/",
"bugtracker": {
"web": "http://github.com/decibel/object_reference/issues"
"web": "http://github.com/Postgres-Extensions/object_reference/issues"
},
"repository": {
"url": "git://github.com/decibel/object_reference.git",
"web": "http://github.com/decibel/object_reference/",
"url": "git://github.com/Postgres-Extensions/object_reference.git",
"web": "http://github.com/Postgres-Extensions/object_reference/",
"type": "git"
}
},
Expand All @@ -76,11 +76,12 @@

"build": {
"requires": {
"PostgreSQL": "9.5.0"
"PostgreSQL": "12.0.0"
}
},
"runtime": {
"requires": {
"cat_tools": 0,
"plpgsql": 0
}
},
Expand All @@ -95,7 +96,7 @@
"no_index": "",

"X_comment": "Unusual. Package/tool used to generate this file.",
"generated_by": "pgxntool https://github.com/decibel/pgxntool",
"generated_by": "pgxntool https://github.com/Postgres-Extensions/pgxntool",

"X_comment": "REQUIRED. Version info for this file. http://pgxn.org/spec/#meta-spec",
"meta-spec": {
Expand Down
15 changes: 8 additions & 7 deletions META.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"X_comment": "Keys marked REQUIRED or Optional are what you'd expect. Keys marked Unusual are keys you don't normally need to use.",
"X_comment": "The pgxntool Makefile will strip out empty keys to produce a working META.json, so it's fine to leave them here.",
"X_comment": "NOTE: Don't get too cute with reformatting this file... some of the processing against it doesn't use a full JSON parser",
"X_comment": "I've tried to put things in a logical order. Comments welcome at https://github.com/decibel/pgxntool/issues!",
"X_comment": "I've tried to put things in a logical order. Comments welcome at https://github.com/Postgres-Extensions/pgxntool/issues!",

"X_comment": "REQUIRED. Name of distribution.",
"X_comment": "Note! Distribution names currently can't contain spaces.",
Expand Down Expand Up @@ -56,13 +56,13 @@

"X_comment": "Optional. \"resources\": Web resources available for this distribution. http://pgxn.org/spec/#resources",
"resources": {
"homepage": "http://github.com/decibel/object_reference/",
"homepage": "http://github.com/Postgres-Extensions/object_reference/",
"bugtracker": {
"web": "http://github.com/decibel/object_reference/issues"
"web": "http://github.com/Postgres-Extensions/object_reference/issues"
},
"repository": {
"url": "git://github.com/decibel/object_reference.git",
"web": "http://github.com/decibel/object_reference/",
"url": "git://github.com/Postgres-Extensions/object_reference.git",
"web": "http://github.com/Postgres-Extensions/object_reference/",
"type": "git"
}
},
Expand All @@ -74,11 +74,12 @@

"build": {
"requires": {
"PostgreSQL": "9.5.0"
"PostgreSQL": "12.0.0"
}
},
"runtime": {
"requires": {
"cat_tools": 0,
"plpgsql": 0
}
},
Expand All @@ -92,7 +93,7 @@
"X_comment": "Unusual. \"no_index\": Files/directories that should not be indexed. http://pgxn.org/spec/#no_index",

"X_comment": "Unusual. Package/tool used to generate this file.",
"generated_by": "pgxntool https://github.com/decibel/pgxntool",
"generated_by": "pgxntool https://github.com/Postgres-Extensions/pgxntool",

"X_comment": "REQUIRED. Version info for this file. http://pgxn.org/spec/#meta-spec",
"meta-spec": {
Expand Down
7 changes: 1 addition & 6 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ include pgxntool/base.mk
testdeps: $(wildcard test/*.sql test/helpers/*.sql) # Be careful not to include directories in this
testdeps: test_factory

install: cat_tools count_nulls
install: cat_tools

test: dump_test
extra_clean += $(wildcard test/dump/*.log)
Expand All @@ -15,11 +15,6 @@ cat_tools: $(DESTDIR)$(datadir)/extension/cat_tools.control
$(DESTDIR)$(datadir)/extension/cat_tools.control:
pgxn install --unstable cat_tools

.PHONY: count_nulls
count_nulls: $(DESTDIR)$(datadir)/extension/count_nulls.control
$(DESTDIR)$(datadir)/extension/count_nulls.control:
pgxn install --unstable count_nulls

.PHONY: test_factory
test_factory: $(DESTDIR)$(datadir)/extension/test_factory.control
$(DESTDIR)$(datadir)/extension/test_factory.control:
Expand Down
Loading
Loading