File: python3

package info (click to toggle)
postgresql-pgmp 1.0.4-3
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 584 kB
  • sloc: ansic: 2,053; sql: 853; python: 589; makefile: 100; sh: 15
file content (26 lines) | stat: -rw-r--r-- 770 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- a/tools/unmix.py
+++ b/tools/unmix.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 """Convert a file containing a mix of python code and content into content.
 
 Write the input file to stdout. Python code included between blocks
--- a/tools/sql2extension.py
+++ b/tools/sql2extension.py
@@ -1,4 +1,4 @@
-#!/usr/bin/env python
+#!/usr/bin/python3
 """Generate "ALTER EXTENSION" statements to package a list of SQL definitions.
 
 The script doesn't try to be a robust parser: it relies on the input file
--- a/Makefile
+++ b/Makefile
@@ -94,7 +94,3 @@ $(SRCPKG): $(PKGFILES)
 	rm -f $(SRCPKG_ZIP)
 	zip -r $(SRCPKG_ZIP) $(addprefix $(PKGNAME)/,$^)
 	rm $(PKGNAME)
-
-# Required for testing in pgxn client on PG < 9.1
-installcheck: $(INSTALLSCRIPT)
-